diff --git a/deployment/ansible/group_vars/all b/deployment/ansible/group_vars/all index 08426ebf5..474a00072 100644 --- a/deployment/ansible/group_vars/all +++ b/deployment/ansible/group_vars/all @@ -20,7 +20,7 @@ postgresql_support_repository_channel: "main" postgresql_support_libpq_version: "13.*.pgdg20.04+1" postgresql_support_psycopg2_version: "2.8.*" postgis_version: "3" -postgis_package_version: "3.2*pgdg20.04+1" +postgis_package_version: "3.3*pgdg20.04+1" daemontools_version: "1:0.76-7" diff --git a/deployment/ansible/roles/model-my-watershed.app/tasks/dev-and-test-dependencies.yml b/deployment/ansible/roles/model-my-watershed.app/tasks/dev-and-test-dependencies.yml index f1df9d8d1..5053fa062 100644 --- a/deployment/ansible/roles/model-my-watershed.app/tasks/dev-and-test-dependencies.yml +++ b/deployment/ansible/roles/model-my-watershed.app/tasks/dev-and-test-dependencies.yml @@ -1,6 +1,6 @@ --- - name: Install Firefox for UI tests - apt: pkg="firefox=9*" state=present + apt: pkg="firefox" state=present - name: Install Xvfb for JavaScript tests apt: pkg="xvfb=2:1.20.*" state=present diff --git a/src/mmw/apps/geoprocessing_api/schemas.py b/src/mmw/apps/geoprocessing_api/schemas.py index 006ef4a49..44fd327c5 100644 --- a/src/mmw/apps/geoprocessing_api/schemas.py +++ b/src/mmw/apps/geoprocessing_api/schemas.py @@ -192,11 +192,11 @@ ) nlcd_override_allowed_values = '", "'.join([ - 'nlcd-2019-30m-epsg5070-512-byte', - 'nlcd-2016-30m-epsg5070-512-byte', - 'nlcd-2011-30m-epsg5070-512-byte', - 'nlcd-2006-30m-epsg5070-512-byte', - 'nlcd-2001-30m-epsg5070-512-byte', + 'nlcd-2019-30m-epsg5070-512-uint8raw', + 'nlcd-2016-30m-epsg5070-512-uint8raw', + 'nlcd-2011-30m-epsg5070-512-uint8raw', + 'nlcd-2006-30m-epsg5070-512-uint8raw', + 'nlcd-2001-30m-epsg5070-512-uint8raw', 'nlcd-2011-30m-epsg5070-512-int8', ]) LAYER_OVERRIDES = Schema( @@ -209,12 +209,12 @@ properties={ '__LAND__': Schema( type=TYPE_STRING, - example='nlcd-2019-30m-epsg5070-512-byte', + example='nlcd-2019-30m-epsg5070-512-uint8raw', description='The NLCD layer to use. Valid options are: ' - f'"{nlcd_override_allowed_values}". All "-byte" ' + f'"{nlcd_override_allowed_values}". All "-uint8raw" ' 'layers are from the NLCD19 product. The "-int8" ' 'layer is from the NLCD11 product. The default value ' - 'is NLCD19 2019 "nlcd-2019-30m-epsg5070-512-byte".', + 'is NLCD19 2019 "nlcd-2019-30m-epsg5070-512-uint8raw".' ), '__STREAMS__': Schema( type=TYPE_STRING, diff --git a/src/mmw/apps/geoprocessing_api/views.py b/src/mmw/apps/geoprocessing_api/views.py index 830840ffd..9a7385d10 100644 --- a/src/mmw/apps/geoprocessing_api/views.py +++ b/src/mmw/apps/geoprocessing_api/views.py @@ -426,7 +426,7 @@ def start_analyze_land(request, nlcd_year, format=None): nlcd, year = nlcd_year.split('_') if nlcd == '2019' and year in ['2019', '2016', '2011', '2006', '2001']: - layer_overrides['__LAND__'] = f'nlcd-{year}-30m-epsg5070-512-byte' + layer_overrides['__LAND__'] = f'nlcd-{year}-30m-epsg5070-512-uint8raw' return start_celery_job([ geoprocessing.run.s('nlcd_ara', geop_input, wkaoi, diff --git a/src/mmw/apps/home/views.py b/src/mmw/apps/home/views.py index 53cc0e6c8..e2b5dbcdb 100644 --- a/src/mmw/apps/home/views.py +++ b/src/mmw/apps/home/views.py @@ -340,6 +340,7 @@ def get_client_settings(request): 'stream_layers': create_layer_config_with_urls('stream'), 'nhd_perimeter': settings.NHD_REGION2_PERIMETER, 'conus_perimeter': settings.CONUS_PERIMETER, + 'drwi_simple_perimeter': settings.DRWI_SIMPLE_PERIMETER_JSON, 'draw_tools': settings.DRAW_TOOLS, 'map_controls': settings.MAP_CONTROLS, 'vizer_urls': settings.VIZER_URLS, diff --git a/src/mmw/apps/modeling/calcs.py b/src/mmw/apps/modeling/calcs.py index bf383863d..383588516 100644 --- a/src/mmw/apps/modeling/calcs.py +++ b/src/mmw/apps/modeling/calcs.py @@ -400,7 +400,7 @@ def get_layer_value(layer, layer_overrides=dict): If the default config is something like: { - '__LAND__': 'nlcd-2019-30m-epsg5070-512-byte', + '__LAND__': 'nlcd-2019-30m-epsg5070-512-uint8raw', '__SOIL__': 'ssurgo-hydro-groups-30m-epsg5070-512-int8', '__STREAMS__': 'nhd', } diff --git a/src/mmw/apps/modeling/migrations/0041_clear_nlcd2019_gwlfe_results.py b/src/mmw/apps/modeling/migrations/0041_clear_nlcd2019_gwlfe_results.py new file mode 100644 index 000000000..58def7406 --- /dev/null +++ b/src/mmw/apps/modeling/migrations/0041_clear_nlcd2019_gwlfe_results.py @@ -0,0 +1,45 @@ +# Generated by Django 3.2.13 on 2022-10-17 13:47 + +from django.db import migrations + + +def clear_nlcd2019_gwlfe_results(apps, schema_editor): + """ + Clear the results for all scenarios belonging to GWLF-E projects made after + the release of 1.33.0, which had incorrectly aligned NLCD19 2019 on + 2022-01-17: + https://github.com/WikiWatershed/model-my-watershed/releases/tag/1.33.0 + + These results will be recalculated with the correclty aligned NLCD19 values + when these projects are accessed again. + """ + Project = apps.get_model('modeling', 'Project') + Scenario = apps.get_model('modeling', 'Scenario') + + Project.objects.filter( + model_package='gwlfe', + created_at__gte='2022-01-17', + ).update( + gis_data=None, + mapshed_job_uuid=None, + subbasin_mapshed_job_uuid=None, + ) + + Scenario.objects.filter( + project__model_package='gwlfe', + project__created_at__gte='2022-01-17', + ).update( + results='[]', + modification_hash='', + ) + + +class Migration(migrations.Migration): + + dependencies = [ + ('modeling', '0040_clear_nlcd2019_tr55_results'), + ] + + operations = [ + migrations.RunPython(clear_nlcd2019_gwlfe_results), + ] diff --git a/src/mmw/apps/modeling/models.py b/src/mmw/apps/modeling/models.py index 8ad5299a3..847fa3586 100644 --- a/src/mmw/apps/modeling/models.py +++ b/src/mmw/apps/modeling/models.py @@ -82,6 +82,10 @@ def __unicode__(self): def in_drb(self): return self.area_of_interest.within(settings.DRB_SIMPLE_PERIMETER) + @property + def in_drwi(self): + return self.area_of_interest.within(settings.DRWI_SIMPLE_PERIMETER) + class WeatherType: diff --git a/src/mmw/apps/modeling/serializers.py b/src/mmw/apps/modeling/serializers.py index 49ffcb543..90e3931b6 100644 --- a/src/mmw/apps/modeling/serializers.py +++ b/src/mmw/apps/modeling/serializers.py @@ -112,7 +112,7 @@ class Meta: 'scenarios', 'model_package', 'created_at', 'modified_at', 'is_private', 'is_activity', 'gis_data', 'mapshed_job_uuid', 'subbasin_mapshed_job_uuid', 'wkaoi', 'user', 'hydroshare', - 'in_drb', 'layer_overrides') + 'in_drb', 'in_drwi', 'layer_overrides') user = UserSerializer(default=serializers.CurrentUserDefault()) gis_data = JsonField(required=False, allow_null=True) diff --git a/src/mmw/apps/modeling/views.py b/src/mmw/apps/modeling/views.py index 7d743ca9d..cc8b94a3b 100644 --- a/src/mmw/apps/modeling/views.py +++ b/src/mmw/apps/modeling/views.py @@ -141,10 +141,13 @@ def project_weather(request, proj_id, category): return Response({'errors': ['Invalid category specified.']}, status=status.HTTP_400_BAD_REQUEST) - # This applies to all current weather categories. If in the future there - # are categories to which it doesn't apply, this will have to be further - # qualified. - if not project.in_drb: + if category == 'NASA_NLDAS_2000_2019' and not project.in_drwi: + return Response({'errors': ['Only supported within' + ' Delware River Watershed Initiative.']}, + status=status.HTTP_400_BAD_REQUEST) + + if category in ['RCP45_2080_2099', 'RCP85_2080_2099'] \ + and not project.in_drb: return Response({'errors': ['Only supported within' ' Delware River Basin.']}, status=status.HTTP_400_BAD_REQUEST) diff --git a/src/mmw/js/src/analyze/models.js b/src/mmw/js/src/analyze/models.js index 00599a39d..9c54a0651 100644 --- a/src/mmw/js/src/analyze/models.js +++ b/src/mmw/js/src/analyze/models.js @@ -76,6 +76,7 @@ var AnalyzeTaskModel = coreModels.TaskModel.extend({ token: settings.get('api_token'), // Include this task in Catalog Search results (ie, BigCZ) enabledForCatalogMode: false, + lazy: false, // Will not execute immediately if lazy is true }, coreModels.TaskModel.prototype.defaults ), @@ -167,11 +168,13 @@ var AnalyzeTaskGroupModel = Backbone.Model.extend({ /** * Returns a promise that completes when Analysis has been fetched. If * fetching is not required, returns an immediatley resolved promise. + * Skips lazy analyses, which should be triggered explicitly on the task. */ fetchAnalysisIfNeeded: function() { - var taskAnalysisFetches = this.get('tasks').map(function(t) { - return t.fetchAnalysisIfNeeded(); - }); + var taskAnalysisFetches = + this.get('tasks') + .filter(function(t) { return !t.get('lazy'); }) + .map(function(t) { return t.fetchAnalysisIfNeeded(); }); return $.when.apply($, taskAnalysisFetches); }, @@ -220,18 +223,19 @@ function createAnalyzeTaskGroupCollection(aoi, wkaoi) { displayName: "Streams", tasks: [ { - name: "streams_nhdhr", - displayName: "NHD High Resolution Streams", + name: "streams_nhd", + displayName: "NHD Medium Resolution Streams", area_of_interest: aoi, wkaoi: wkaoi, - taskName: "analyze/streams/nhdhr" + taskName: "analyze/streams/nhd", }, { - name: "streams_nhd", - displayName: "NHD Medium Resolution Streams", + name: "streams_nhdhr", + displayName: "NHD High Resolution Streams", area_of_interest: aoi, wkaoi: wkaoi, - taskName: "analyze/streams/nhd" + taskName: "analyze/streams/nhdhr", + lazy: true, }, ] }, diff --git a/src/mmw/js/src/analyze/views.js b/src/mmw/js/src/analyze/views.js index 1a7405f39..84dcf0eec 100644 --- a/src/mmw/js/src/analyze/views.js +++ b/src/mmw/js/src/analyze/views.js @@ -1568,6 +1568,7 @@ var TaskSelectorView = Marionette.ItemView.extend({ updateTask: function() { var taskName = this.ui.selector.val(); this.model.setActiveTask(taskName); + this.model.get('activeTask').fetchAnalysisIfNeeded(); } }); diff --git a/src/mmw/js/src/core/utils.js b/src/mmw/js/src/core/utils.js index 4c483f50d..3ab57907c 100644 --- a/src/mmw/js/src/core/utils.js +++ b/src/mmw/js/src/core/utils.js @@ -575,16 +575,27 @@ var utils = { } }, - // Check if a geom is completely within DRB_SIMPLE_PERIMETER - isInDrb: _.memoize(function(geom) { - var layers = settings.get('stream_layers'), - drb = _.find(layers, {code: 'drb_streams_v2'}).perimeter, - coordCount = this.coordinates(geom).length, - intersection = intersect(geom, drb), + _containedIn: function(perimeter, geom) { + var coordCount = this.coordinates(geom).length, + intersection = intersect(geom, perimeter), intersectionCount = intersection && this.coordinates(intersection.geometry).length; return intersection && coordCount === intersectionCount; + }, + + isInDrb: _.memoize(function(geom) { + var DRB_SIMPLE_PERIMETER = + _.find(settings.get('stream_layers'), + {code: 'drb_streams_v2'}).perimeter; + + return this._containedIn(DRB_SIMPLE_PERIMETER, geom); + }), + + isInDrwi: _.memoize(function(geom) { + var DRWI_SIMPLE_PERIMETER = settings.get('drwi_simple_perimeter'); + + return this._containedIn(DRWI_SIMPLE_PERIMETER, geom); }), // Calculates a range from 0 to the upper bound diff --git a/src/mmw/js/src/modeling/constants.js b/src/mmw/js/src/modeling/constants.js index a34410532..e210ff081 100644 --- a/src/mmw/js/src/modeling/constants.js +++ b/src/mmw/js/src/modeling/constants.js @@ -27,16 +27,16 @@ module.exports = { }, // In sync with apps.modeling.models.WeatherType.simulations Simulations: [ - // { - // group: 'Recent Weather', - // items: [ - // { - // name: 'NASA_NLDAS_2000_2019', - // label: 'NASA NLDAS 2000-2019', - // }, - // ], - // in_drb: true, - // }, + { + group: 'Recent Weather', + items: [ + { + name: 'NASA_NLDAS_2000_2019', + label: 'NASA NLDAS 2000-2019', + }, + ], + in_drwi: true, + }, { group: 'Future Weather Simulations', items: [ diff --git a/src/mmw/js/src/modeling/controllers.js b/src/mmw/js/src/modeling/controllers.js index ee34137ea..80fef3f60 100644 --- a/src/mmw/js/src/modeling/controllers.js +++ b/src/mmw/js/src/modeling/controllers.js @@ -132,6 +132,7 @@ var ModelingController = { model_package: modelPackage, scenarios: new models.ScenariosCollection(), in_drb: utils.isInDrb(App.map.get('areaOfInterest')), + in_drwi: utils.isInDrwi(App.map.get('areaOfInterest')), }); App.currentProject = project; diff --git a/src/mmw/js/src/modeling/gwlfe/weather/models.js b/src/mmw/js/src/modeling/gwlfe/weather/models.js index 2f5e81a8f..fe9b9247f 100644 --- a/src/mmw/js/src/modeling/gwlfe/weather/models.js +++ b/src/mmw/js/src/modeling/gwlfe/weather/models.js @@ -9,6 +9,7 @@ var WindowModel = Backbone.Model.extend({ defaults: { project_id: null, // Must be specified in_drb: false, + in_drwi: false, scenario_id: null, // Must be specified weather_type: WeatherType.DEFAULT, available_data: 'DEFAULT', diff --git a/src/mmw/js/src/modeling/gwlfe/weather/templates/modal.html b/src/mmw/js/src/modeling/gwlfe/weather/templates/modal.html index d2a6d9ad9..8fdf51784 100644 --- a/src/mmw/js/src/modeling/gwlfe/weather/templates/modal.html +++ b/src/mmw/js/src/modeling/gwlfe/weather/templates/modal.html @@ -32,9 +32,9 @@

{% for s in Simulations %} - + {% for i in s.items %} - + {% endfor %} {% endfor %} diff --git a/src/mmw/js/src/modeling/gwlfe/weather/views.js b/src/mmw/js/src/modeling/gwlfe/weather/views.js index e9ef41ca3..01648427e 100644 --- a/src/mmw/js/src/modeling/gwlfe/weather/views.js +++ b/src/mmw/js/src/modeling/gwlfe/weather/views.js @@ -278,6 +278,7 @@ function showWeatherDataModal(project, addModification) { is_editable: utils.isEditable(scenario), project_id: project.get('id'), in_drb: project.get('in_drb'), + in_drwi: project.get('in_drwi'), scenario_id: scenario.get('id'), weather_type: weather_type, available_data: diff --git a/src/mmw/js/src/modeling/utils.js b/src/mmw/js/src/modeling/utils.js index bee17dd24..4d893eb29 100644 --- a/src/mmw/js/src/modeling/utils.js +++ b/src/mmw/js/src/modeling/utils.js @@ -64,11 +64,11 @@ module.exports = { layerOverrideToDefaultLandCoverType: function(layer_overrides) { var raster = layer_overrides && _.get(layer_overrides, "__LAND__"), mapping = { - "nlcd-2019-30m-epsg5070-512-byte": "land_2019_2019", - "nlcd-2016-30m-epsg5070-512-byte": "land_2019_2016", - "nlcd-2011-30m-epsg5070-512-byte": "land_2019_2011", - "nlcd-2006-30m-epsg5070-512-byte": "land_2019_2006", - "nlcd-2001-30m-epsg5070-512-byte": "land_2019_2001", + "nlcd-2019-30m-epsg5070-512-uint8raw": "land_2019_2019", + "nlcd-2016-30m-epsg5070-512-uint8raw": "land_2019_2016", + "nlcd-2011-30m-epsg5070-512-uint8raw": "land_2019_2011", + "nlcd-2006-30m-epsg5070-512-uint8raw": "land_2019_2006", + "nlcd-2001-30m-epsg5070-512-uint8raw": "land_2019_2001", "nlcd-2011-30m-epsg5070-512-int8": "land_2011_2011", }; diff --git a/src/mmw/mmw/settings/base.py b/src/mmw/mmw/settings/base.py index ec56aecb9..0f74aa8cd 100644 --- a/src/mmw/mmw/settings/base.py +++ b/src/mmw/mmw/settings/base.py @@ -16,6 +16,7 @@ from mmw.settings.layer_settings import ( LAYER_GROUPS, VIZER_URLS, VIZER_IGNORE, VIZER_NAMES, DRB_PERIMETER, DRB_SIMPLE_PERIMETER, STREAM_TABLES, + DRWI_SIMPLE_PERIMETER, DRWI_SIMPLE_PERIMETER_JSON, NHD_REGION2_PERIMETER, CONUS_PERIMETER) from mmw.settings.gwlfe_settings import ( GWLFE_DEFAULTS, GWLFE_CONFIG, SOIL_GROUP, @@ -477,7 +478,7 @@ def get_env_setting(setting): '__BFI__': 'bfi48grd-epsg5070', '__GWN__': 'us-groundwater-nitrogen-30m-epsg5070-512', '__KFACTOR__': 'us-ssugro-kfactor-30m-epsg5070-512', - '__LAND__': 'nlcd-2019-30m-epsg5070-512-byte', + '__LAND__': 'nlcd-2019-30m-epsg5070-512-uint8raw', '__NED__': 'ned-nhdplus-30m-epsg5070-512', '__PROTECTED_LANDS__': 'protected-lands-30m-epsg5070-512', '__SLOPE__': 'us-percent-slope-30m-epsg5070-512', diff --git a/src/mmw/mmw/settings/data/drwi_perimeter.json b/src/mmw/mmw/settings/data/drwi_perimeter.json new file mode 100644 index 000000000..e472689c3 --- /dev/null +++ b/src/mmw/mmw/settings/data/drwi_perimeter.json @@ -0,0 +1 @@ +{"type":"Polygon","coordinates":[[[-74.315580979,39.374489884],[-74.315581428,39.374489638],[-74.318308485,39.372995347],[-74.319968161,39.37213535],[-74.324176376,39.369962699],[-74.328860022,39.367380679],[-74.330225037,39.366473049],[-74.332716047,39.364976812],[-74.335745018,39.362705422],[-74.338535341,39.360707248],[-74.340554288,39.359208146],[-74.341808375,39.357521597],[-74.34431124,39.354697711],[-74.346988626,39.352103629],[-74.350263839,39.348597325],[-74.35204806,39.346913612],[-74.354489908,39.344226491],[-74.356272248,39.342725798],[-74.357283165,39.341770122],[-74.358654005,39.340129803],[-74.359785247,39.338900122],[-74.361870379,39.336485515],[-74.363535301,39.334892524],[-74.364964385,39.333298214],[-74.368520973,39.331074611],[-74.371602161,39.329260296],[-74.376278504,39.326996719],[-74.379766983,39.325733661],[-74.383254946,39.324516281],[-74.386564384,39.323480952],[-74.388926854,39.322898306],[-74.391411897,39.321766951],[-74.393775849,39.321001116],[-74.398985208,39.31828164],[-74.40212124,39.316787225],[-74.404840793,39.315748342],[-74.408508076,39.314119134],[-74.410697112,39.313077416],[-74.412829456,39.311760723],[-74.415202367,39.309850118],[-74.416077852,39.309355141],[-74.430602501,39.308363962],[-74.453376508,39.30312296],[-74.457715509,39.302418959],[-74.46161651,39.30103096],[-74.462260511,39.300556959],[-74.46371651,39.299482958],[-74.464931511,39.298237958],[-74.469059513,39.294394958],[-74.477315515,39.288699956],[-74.482819516,39.284142955],[-74.486948517,39.279586954],[-74.489700518,39.277308954],[-74.490820518,39.273957952],[-74.491067519,39.274075953],[-74.500214521,39.266674951],[-74.508472522,39.260978949],[-74.509762523,39.259629949],[-74.511309524,39.255765949],[-74.512005523,39.255764949],[-74.512951524,39.253935948],[-74.516932762,39.248168992],[-74.517329576,39.247926647],[-74.521467911,39.245380291],[-74.524187897,39.243606192],[-74.527023645,39.242107151],[-74.529680844,39.240881964],[-74.53145347,39.239882047],[-74.534528587,39.237742928],[-74.538016146,39.235513802],[-74.541921146,39.232416479],[-74.545292851,39.229820481],[-74.548427145,39.22749811],[-74.550791789,39.225859331],[-74.552742907,39.224447784],[-74.554398542,39.223218186],[-74.556116148,39.221485268],[-74.557713956,39.220072292],[-74.560733415,39.217154072],[-74.563869186,39.2144193],[-74.568190767,39.210178244],[-74.571031466,39.207487958],[-74.573574466,39.205345832],[-74.575882792,39.203065456],[-74.577245838,39.20142248],[-74.578785032,39.199825891],[-74.581090833,39.197911617],[-74.583398413,39.195676865],[-74.585883923,39.193168049],[-74.588791964,39.188783847],[-74.590572269,39.186089325],[-74.592586649,39.183578696],[-74.594542608,39.180976284],[-74.596321973,39.178373221],[-74.597862314,39.176410175],[-74.599046083,39.17508674],[-74.60041322,39.172527973],[-74.603374694,39.168784438],[-74.606393644,39.165224125],[-74.609292412,39.162075314],[-74.611423536,39.159473187],[-74.61378943,39.156917581],[-74.615974555,39.155139521],[-74.617630184,39.153405464],[-74.619641691,39.151077448],[-74.620766808,39.149570495],[-74.621772587,39.148383578],[-74.624078219,39.145964885],[-74.626626816,39.142036301],[-74.6282243,39.140073021],[-74.630237708,39.13724128],[-74.632602649,39.134593716],[-74.635029735,39.131259659],[-74.637100683,39.128565305],[-74.638579093,39.126784605],[-74.63958425,39.125597528],[-74.640650929,39.123861312],[-74.64242947,39.120799743],[-74.644384594,39.117647132],[-74.646397172,39.114723542],[-74.648172264,39.112256975],[-74.65053999,39.108739287],[-74.653197887,39.10590906],[-74.654082757,39.10517926],[-74.654791577,39.104403158],[-74.655500382,39.103627051],[-74.655975951,39.102484029],[-74.656218065,39.101019887],[-74.656344453,39.09918919],[-74.656538683,39.095481836],[-74.656676592,39.091270767],[-74.656921767,39.089165747],[-74.657283284,39.087289961],[-74.65782165,39.085277351],[-74.658303018,39.082898365],[-74.659426222,39.081391007],[-74.662090153,39.077004165],[-74.664158464,39.074309301],[-74.666403005,39.071569116],[-74.668761619,39.069515868],[-74.670234585,39.068467171],[-74.672061313,39.06709901],[-74.673415274,39.066370379],[-74.674829387,39.065321449],[-74.676832517,39.063862152],[-74.680253865,39.060392518],[-74.68178683,39.05897762],[-74.683378865,39.057471301],[-74.684617739,39.056147122],[-74.685621316,39.05491385],[-74.687513372,39.051897634],[-74.688577567,39.050206726],[-74.689345969,39.049018559],[-74.689999937,39.047143434],[-74.690653271,39.045405636],[-74.691953677,39.043349095],[-74.693196894,39.040926169],[-74.695501891,39.037270029],[-74.697449401,39.034803115],[-74.69975049,39.03197086],[-74.701756975,39.029366699],[-74.704176987,39.026076883],[-74.706419215,39.023152786],[-74.70859975,39.020915161],[-74.710309029,39.019088313],[-74.712255525,39.016621141],[-74.714970761,39.012645165],[-74.716090909,39.011320342],[-74.716917647,39.009994803],[-74.718038989,39.008349519],[-74.71910324,39.006292099],[-74.720108755,39.004234515],[-74.721467305,39.001903111],[-74.722234989,39.00062317],[-74.723123185,38.998519503],[-74.724424449,38.995775918],[-74.725548939,38.993215022],[-74.727022469,38.991387363],[-74.728319077,38.989788172],[-74.729791072,38.988326703],[-74.730970092,38.986772977],[-74.732324661,38.985311206],[-74.733797682,38.983529235],[-74.734799204,38.982341296],[-74.735917993,38.981153612],[-74.737683921,38.979418033],[-74.739213147,38.978231237],[-74.741860274,38.976039789],[-74.744860569,38.973437043],[-74.747745648,38.970193082],[-74.750157486,38.968046711],[-74.752333521,38.966220227],[-74.754802616,38.964394324],[-74.756388458,38.96361942],[-74.75744547,38.963163836],[-74.763088485,38.95896385],[-74.765850808,38.956955195],[-74.76896624,38.954489384],[-74.772082034,38.951840385],[-74.775430366,38.949741079],[-74.779542721,38.946956449],[-74.782538875,38.94485628],[-74.784244143,38.943119877],[-74.786420592,38.940606077],[-74.788359571,38.939053153],[-74.793058132,38.935857099],[-74.795699399,38.934579956],[-74.79757797,38.933530331],[-74.799516137,38.932114552],[-74.801278135,38.93078999],[-74.803510947,38.92873375],[-74.80410067,38.927407172],[-74.80451469,38.926034512],[-74.805339661,38.924387874],[-74.805987666,38.92315294],[-74.806812321,38.921597838],[-74.80787171,38.91990579],[-74.810810583,38.916568766],[-74.812280574,38.91464845],[-74.813691412,38.912911126],[-74.815511274,38.911586444],[-74.817623783,38.910353737],[-74.820674491,38.908801998],[-74.82302062,38.907798453],[-74.825190692,38.906886156],[-74.827008742,38.906156401],[-74.829296106,38.905152644],[-74.831466135,38.904194449],[-74.83463312,38.902779846],[-74.836744105,38.901958797],[-74.840319848,38.901048174],[-74.843602894,38.899999713],[-74.847061884,38.898814053],[-74.850109717,38.898085543],[-74.852454522,38.897356072],[-74.854622967,38.89690101],[-74.857611797,38.896309571],[-74.861538825,38.895215609],[-74.864528744,38.893983089],[-74.867519156,38.892430051],[-74.870098062,38.891608933],[-74.873146504,38.890238929],[-74.87584321,38.88896002],[-74.878305304,38.887818148],[-74.882466594,38.886265937],[-74.885689403,38.885445114],[-74.890435056,38.88457987],[-74.893716404,38.883667331],[-74.896528571,38.883120513],[-74.901156292,38.882620958],[-74.904261032,38.882211537],[-74.907073122,38.881618679],[-74.910295093,38.881071854],[-74.912814025,38.880661754],[-74.916797074,38.880298432],[-74.920311848,38.87965998],[-74.923064843,38.879341376],[-74.925349242,38.879068187],[-74.928394884,38.87888698],[-74.930561671,38.879071402],[-74.937003191,38.879990629],[-74.940516805,38.880496035],[-74.960901943,38.918159769],[-74.965500502,38.926650073],[-74.968585924,38.932345446],[-75.09484646,38.805739062],[-75.094825988,38.805500271],[-75.094598773,38.804869639],[-75.094436609,38.804437211],[-75.094532923,38.804058642],[-75.0945972,38.803680102],[-75.094693579,38.803351097],[-75.09495194,38.803044491],[-75.095178146,38.802918144],[-75.095210304,38.80274239],[-75.095112893,38.802566742],[-75.094951037,38.802364111],[-75.094756722,38.802111943],[-75.094853229,38.801882067],[-75.094982586,38.801728765],[-75.095079061,38.801476359],[-75.094852189,38.801098052],[-75.094755148,38.800922403],[-75.094690125,38.800742224],[-75.094625208,38.800363786],[-75.094365997,38.80001254],[-75.094203669,38.799453949],[-75.09394456,38.799174797],[-75.093555913,38.798643419],[-75.093199874,38.798265213],[-75.092811347,38.797810432],[-75.092422716,38.797279054],[-75.09229324,38.797053863],[-75.092292909,38.796797031],[-75.092195386,38.796522251],[-75.092001127,38.796292607],[-75.091904098,38.796116956],[-75.091903612,38.795738467],[-75.091903154,38.795382506],[-75.091870515,38.795179768],[-75.091482359,38.795004346],[-75.090868094,38.795004824],[-75.090479982,38.794851927],[-75.090091684,38.794550337],[-75.089768091,38.794194624],[-75.08976771,38.793892734],[-75.08950853,38.793536971],[-75.089346713,38.793334332],[-75.089216792,38.79303254],[-75.089184518,38.792829802],[-75.089119208,38.792401796],[-75.088989432,38.791919772],[-75.088859169,38.791338616],[-75.088729483,38.79093319],[-75.088405694,38.790401747],[-75.088179298,38.790352354],[-75.087920091,38.789947023],[-75.087887143,38.789491958],[-75.087675348,38.789019003],[-75.08798079,38.788685341],[-75.088441501,38.788509266],[-75.088850928,38.788468403],[-75.089277061,38.788269821],[-75.08966917,38.787909052],[-75.089941773,38.787507824],[-75.090487325,38.786998243],[-75.091186376,38.786664267],[-75.090981,38.786155268],[-75.091049022,38.785889369],[-75.09191909,38.785929239],[-75.092960066,38.785968969],[-75.093404397,38.786500305],[-75.094035863,38.786499797],[-75.095195962,38.786287085],[-75.096083807,38.786700896],[-75.096954264,38.786754247],[-75.09780626,38.785937979],[-75.098437859,38.786032071],[-75.098984025,38.786018092],[-75.09956436,38.786256409],[-75.099905782,38.786229082],[-75.100434532,38.786111478],[-75.100877935,38.785935367],[-75.101030948,38.785493663],[-75.101337033,38.784907639],[-75.101813826,38.784186289],[-75.102513203,38.783888292],[-75.103126991,38.783621905],[-75.103450458,38.783130483],[-75.104046494,38.782287361],[-75.10481377,38.781939724],[-75.105649671,38.781776761],[-75.106468407,38.781681397],[-75.107219527,38.78184292],[-75.107254342,38.782270943],[-75.106828584,38.782911164],[-75.106249616,38.783592075],[-75.106421413,38.78443451],[-75.106663205,38.784438796],[-75.107837623,38.784460246],[-75.109440822,38.783949596],[-75.110805092,38.783430138],[-75.111999045,38.783068533],[-75.113176267,38.782824083],[-75.114387359,38.782624646],[-75.11486505,38.78255659],[-75.115871697,38.782528562],[-75.116792992,38.78244654],[-75.117849296,38.781553321],[-75.118207447,38.781431301],[-75.119435921,38.781321912],[-75.120425856,38.7816318],[-75.120512196,38.782055259],[-75.121348231,38.782203088],[-75.122355188,38.782147969],[-75.123702416,38.781840152],[-75.124657497,38.781546258],[-75.125579006,38.781599341],[-75.126158974,38.781598717],[-75.126875328,38.781408696],[-75.127626298,38.781461947],[-75.128837937,38.781595792],[-75.130099624,38.781638643],[-75.130576529,38.781368826],[-75.131053318,38.781214537],[-75.131726265,38.780906251],[-75.132259057,38.780685993],[-75.132875416,38.780136145],[-75.134808332,38.778332725],[-75.137441594,38.775957345],[-75.138056092,38.775390989],[-75.138329397,38.774961478],[-75.138419873,38.774496425],[-75.138373249,38.77401365],[-75.138189674,38.773584679],[-75.137960376,38.773137888],[-75.137594261,38.77281643],[-75.137296672,38.772494899],[-75.137090469,38.77217325],[-75.137043992,38.771762002],[-75.137203144,38.771368397],[-75.137545307,38.771117642],[-75.137887329,38.770795348],[-75.138275006,38.770455118],[-75.138640072,38.770240099],[-75.139142233,38.770042794],[-75.139598883,38.769934952],[-75.140101141,38.769791286],[-75.140466376,38.769665674],[-75.140717257,38.769468664],[-75.140831224,38.769343346],[-75.141059154,38.769092708],[-75.141173011,38.768913747],[-75.141149849,38.768752832],[-75.141083784,38.768607898],[-75.140255878,38.7681109],[-75.139426772,38.76699639],[-75.13878876,38.766001166],[-75.138086576,38.764707217],[-75.137066477,38.763463441],[-75.135474074,38.762270115],[-75.133412633,38.761108826],[-75.13184512,38.760381901],[-75.130953585,38.759785311],[-75.131079786,38.75923738],[-75.132414881,38.758937079],[-75.133686174,38.758537239],[-75.135530335,38.758385717],[-75.136611368,38.758284856],[-75.137691918,38.757934998],[-75.1384559,38.758332486],[-75.138711495,38.758949692],[-75.139410919,38.758849264],[-75.140045736,38.758230996],[-75.140870489,38.757184219],[-75.141631136,38.755888518],[-75.142010363,38.754692875],[-75.142899345,38.753994603],[-75.143789007,38.753644923],[-75.145124651,38.753693064],[-75.145952221,38.754090434],[-75.146399136,38.754936462],[-75.14735383,38.755283853],[-75.148052896,38.755033975],[-75.148815252,38.754634614],[-75.149012472,38.753900759],[-75.149153866,38.753088227],[-75.14965335,38.752443309],[-75.150223719,38.751490167],[-75.150902148,38.75090104],[-75.151150369,38.749864271],[-75.151148835,38.74913596],[-75.151539946,38.748012165],[-75.151931515,38.747115267],[-75.151966165,38.746582996],[-75.151607512,38.746135268],[-75.151105797,38.74568772],[-75.150688876,38.744947289],[-75.150495191,38.744483992],[-75.150422294,38.743839802],[-75.149883783,38.742888085],[-75.149381742,38.742272454],[-75.148665282,38.74174114],[-75.148164078,38.74151768],[-75.147733946,38.741070029],[-75.147660629,38.74020175],[-75.147874185,38.739697254],[-75.148302341,38.739192497],[-75.149624226,38.738490509],[-75.150767795,38.738040844],[-75.152626405,38.737478187],[-75.1542347,38.736943849],[-75.155235212,38.736522339],[-75.155842421,38.736157375],[-75.156522679,38.736492613],[-75.157453616,38.736967569],[-75.157919238,38.737275079],[-75.158313277,38.737554663],[-75.158893996,38.737756222],[-75.159301429,38.738153692],[-75.159912506,38.738710086],[-75.160624959,38.739146934],[-75.16138914,38.739981729],[-75.161898415,38.740458658],[-75.162813552,38.740616591],[-75.163626139,38.740376645],[-75.164489447,38.740096815],[-75.165352761,38.739816985],[-75.166419515,38.739616458],[-75.168096772,38.739693667],[-75.169113734,38.739931012],[-75.170231976,38.740008995],[-75.171045948,38.740366024],[-75.172063321,38.740762556],[-75.173080983,38.741278484],[-75.173789915,38.741579628],[-75.17435365,38.742152238],[-75.175269906,38.742747897],[-75.176287914,38.743383203],[-75.177000413,38.743780151],[-75.177754568,38.744575053],[-75.178721404,38.745051202],[-75.17989046,38.745089216],[-75.181111743,38.745684358],[-75.182535327,38.745881157],[-75.183667034,38.745953247],[-75.184601566,38.746204104],[-75.185483253,38.745916315],[-75.186499118,38.745675888],[-75.187158903,38.745316616],[-75.188073528,38.745235542],[-75.188785063,38.745234394],[-75.189293411,38.745273372],[-75.189903715,38.745431595],[-75.190361986,38.745749267],[-75.191176238,38.746145962],[-75.191684168,38.746025717],[-75.192750941,38.745824959],[-75.193665031,38.74554483],[-75.19437538,38.745105827],[-75.19508519,38.74446781],[-75.195785277,38.744000954],[-75.19705607,38.744078425],[-75.198376704,38.743797572],[-75.199187772,38.743039952],[-75.199846135,38.742202981],[-75.200809295,38.741325685],[-75.201975835,38.740487828],[-75.203345845,38.739729209],[-75.20415806,38.739409376],[-75.204969927,38.738970133],[-75.206495085,38.739166461],[-75.207408689,38.738766818],[-75.208476118,38.738844527],[-75.209916025,38.738798791],[-75.210723437,38.738612598],[-75.211528238,38.737547759],[-75.21265408,38.737077106],[-75.213567063,38.736611334],[-75.213956072,38.735968863],[-75.214360947,38.735410892],[-75.214969433,38.73497195],[-75.215273148,38.734573369],[-75.215373098,38.734015953],[-75.215553521,38.733397899],[-75.215984915,38.732649848],[-75.216634351,38.732308984],[-75.217370828,38.732069854],[-75.218021698,38.732204506],[-75.218369434,38.732475586],[-75.218846853,38.73261056],[-75.219279871,38.732405951],[-75.219799198,38.732065312],[-75.220622806,38.731961864],[-75.221316625,38.731960552],[-75.222615533,38.731312731],[-75.223696967,38.730461504],[-75.225297835,38.729323964],[-75.226683706,38.728777819],[-75.227594098,38.728708117],[-75.228332544,38.72911428],[-75.229224636,38.729480419],[-75.230112888,38.729892009],[-75.230677364,38.73012866],[-75.231241418,38.730229444],[-75.231717638,38.729990738],[-75.232236888,38.729650047],[-75.232973163,38.729376853],[-75.233709213,38.729035723],[-75.234303346,38.729064821],[-75.234836854,38.729101396],[-75.23553031,38.728998101],[-75.235875864,38.728589803],[-75.236047857,38.728147896],[-75.235916209,38.727672635],[-75.235827925,38.727197288],[-75.236087194,38.726925034],[-75.236694804,38.727093637],[-75.237432835,38.72736387],[-75.237910941,38.72770256],[-75.238562373,38.728006928],[-75.238997569,38.728481565],[-75.239172602,38.728956741],[-75.239390544,38.729295956],[-75.239954478,38.729362732],[-75.240517274,38.729089847],[-75.240949182,38.728579457],[-75.242076594,38.728577128],[-75.243465199,38.72887994],[-75.24441858,38.72870812],[-75.244851386,38.728469452],[-75.24510994,38.727993384],[-75.245150516,38.72717811],[-75.245234914,38.726498611],[-75.245450206,38.72605659],[-75.24609944,38.725715564],[-75.247139142,38.725441641],[-75.248439108,38.725201124],[-75.24913228,38.725029818],[-75.249953742,38.72434874],[-75.250298719,38.723804544],[-75.25055638,38.723090694],[-75.251202593,38.721900491],[-75.251981011,38.721321391],[-75.252629811,38.720878432],[-75.253539465,38.720638698],[-75.254275568,38.720365362],[-75.254881716,38.72012628],[-75.255099705,38.720465466],[-75.255533886,38.720634356],[-75.255880498,38.720565658],[-75.255792211,38.720124291],[-75.255746677,38.719512999],[-75.256048956,38.719172675],[-75.256916073,38.719170773],[-75.257653122,38.71916915],[-75.258606828,38.719133079],[-75.259082895,38.718894262],[-75.259602423,38.718689313],[-75.260469782,38.718755316],[-75.260991531,38.719161747],[-75.26223761,38.718200393],[-75.263474457,38.717992562],[-75.264824844,38.717765641],[-75.265784987,38.717638028],[-75.266879157,38.71767735],[-75.267652743,38.717612867],[-75.268378839,38.717694825],[-75.268832768,38.717777395],[-75.269726831,38.717840909],[-75.270594738,38.718003285],[-75.271102125,38.718106639],[-75.27150332,38.718356564],[-75.272305738,38.718856415],[-75.273160975,38.719209811],[-75.273935679,38.719437946],[-75.274496124,38.71945754],[-75.275136219,38.719372413],[-75.275642015,38.719057654],[-75.276013981,38.718638673],[-75.276226004,38.718261889],[-75.276277998,38.717906373],[-75.276597873,38.717822005],[-75.277078498,38.717904479],[-75.277692385,38.717944837],[-75.277986473,38.718090473],[-75.278306831,38.718131518],[-75.278786487,38.717963141],[-75.279373281,38.717899019],[-75.279826653,38.717835222],[-75.280413845,38.717875628],[-75.280868198,38.718062679],[-75.281349567,38.718333284],[-75.281751219,38.718687701],[-75.282152794,38.719021217],[-75.282687539,38.719291686],[-75.283595616,38.719498536],[-75.284235949,38.719476082],[-75.284662568,38.719391423],[-75.284981855,38.71916069],[-75.285114283,38.718909503],[-75.284846284,38.718617488],[-75.284631402,38.718262628],[-75.28460281,38.717781886],[-75.284761497,38.717426118],[-75.284926733,38.717166518],[-75.285054014,38.716997058],[-75.285149344,38.716840209],[-75.28510062,38.716652375],[-75.284939972,38.716471089],[-75.284826877,38.716183185],[-75.284889747,38.715907378],[-75.285176328,38.715580903],[-75.28562242,38.715153804],[-75.286085007,38.714851958],[-75.286242731,38.714300265],[-75.28625658,38.713761458],[-75.286302056,38.713134854],[-75.286284358,38.712708887],[-75.28623494,38.71243328],[-75.286106529,38.71222693],[-75.286025672,38.712001596],[-75.286008985,38.711826217],[-75.286120119,38.711625475],[-75.286263349,38.711449706],[-75.286342407,38.711223972],[-75.286325019,38.710873185],[-75.286243963,38.71059773],[-75.286322122,38.710146467],[-75.286336709,38.709795602],[-75.286527156,38.709431771],[-75.28694223,38.709255337],[-75.287533702,38.709203768],[-75.287757381,38.709153097],[-75.287804498,38.708939976],[-75.28772384,38.708764754],[-75.287386667,38.708427282],[-75.287017776,38.708152534],[-75.286488672,38.707803003],[-75.286136022,38.707590861],[-75.285831396,38.707391126],[-75.285766343,38.707115632],[-75.285796979,38.706777254],[-75.286036039,38.706576198],[-75.28647379,38.706369632],[-75.286667677,38.705869004],[-75.286320273,38.704644251],[-75.286170375,38.703914664],[-75.285874914,38.703455785],[-75.285726547,38.703109192],[-75.285920275,38.702572516],[-75.286064524,38.701882762],[-75.286173619,38.700975064],[-75.28647697,38.700861551],[-75.286636413,38.700748399],[-75.286587786,38.700585626],[-75.286459376,38.700460643],[-75.286330813,38.700298075],[-75.286314231,38.700147757],[-75.286329616,38.699997362],[-75.286456976,38.699859227],[-75.28644029,38.699683849],[-75.286263958,38.699571511],[-75.286071937,38.699534392],[-75.285621857,38.698934062],[-75.285380929,38.698658996],[-75.285315877,38.698383499],[-75.285123313,38.698208558],[-75.28493085,38.69805867],[-75.284866158,38.697870875],[-75.284913375,38.697682815],[-75.284896646,38.697494909],[-75.28468809,38.697319998],[-75.284144082,38.697221085],[-75.283599482,38.696971815],[-75.283470837,38.696784181],[-75.283518256,38.696646234],[-75.283741549,38.696507869],[-75.28426818,38.696255996],[-75.284794844,38.696016649],[-75.285018185,38.695890806],[-75.285161675,38.695790222],[-75.285224437,38.695489352],[-75.285191712,38.695301487],[-75.285079295,38.695176465],[-75.284838434,38.694913923],[-75.284485208,38.69453889],[-75.284356366,38.694301139],[-75.284353059,38.694060187],[-75.284266933,38.693893898],[-75.284066026,38.693505987],[-75.283883298,38.692755098],[-75.28394006,38.691956679],[-75.283817638,38.691299564],[-75.283456289,38.690830868],[-75.282975491,38.690456363],[-75.282314764,38.690035338],[-75.282445183,38.68954755],[-75.28279076,38.689188946],[-75.282968278,38.688625023],[-75.282905772,38.687967762],[-75.282604363,38.687498917],[-75.281883393,38.686984118],[-75.281102888,38.686563374],[-75.280261929,38.6860019],[-75.279720319,38.685316757],[-75.279178969,38.684830537],[-75.278817319,38.684267905],[-75.278742962,38.683378748],[-75.280369269,38.683477267],[-75.282529926,38.683686663],[-75.283883842,38.683742994],[-75.285405503,38.683906196],[-75.286340809,38.68428653],[-75.287169772,38.684515354],[-75.288308624,38.684653422],[-75.289328035,38.684885696],[-75.290467464,38.685164624],[-75.291367634,38.685538045],[-75.292627282,38.685910563],[-75.292927794,38.686144601],[-75.292929135,38.686473307],[-75.292631106,38.686849716],[-75.292633019,38.687319291],[-75.293384522,38.687724988],[-75.294254298,38.688207417],[-75.295392834,38.688251508],[-75.296233163,38.688625044],[-75.297014361,38.689186563],[-75.297414028,38.68953967],[-75.297915599,38.689794723],[-75.298217119,38.690263536],[-75.29809904,38.690686457],[-75.29756214,38.691251317],[-75.29714371,38.691487171],[-75.297085346,38.69186298],[-75.296967258,38.692285901],[-75.296969005,38.692708517],[-75.297150509,38.693130678],[-75.29769015,38.693223216],[-75.297752005,38.693692639],[-75.298174161,38.694348977],[-75.298893756,38.69448801],[-75.299972084,38.694438296],[-75.300631775,38.694577475],[-75.300992653,38.694905246],[-75.300814476,38.695281376],[-75.300456336,38.695610997],[-75.300338861,38.69617479],[-75.300401532,38.696832039],[-75.300763405,38.697394602],[-75.301244537,38.697815984],[-75.301785206,38.698143299],[-75.302566947,38.698798689],[-75.30316894,38.69945454],[-75.303351687,38.700158428],[-75.304014806,38.701095868],[-75.304738268,38.702127054],[-75.305579408,38.70264139],[-75.306420157,38.703061811],[-75.307439485,38.703200014],[-75.308457603,38.703056455],[-75.309976118,38.702867189],[-75.310430311,38.703348116],[-75.310658435,38.703825135],[-75.311112413,38.704256492],[-75.311726872,38.704480151],[-75.312792195,38.704328612],[-75.313274645,38.703867718],[-75.313659092,38.703186298],[-75.314335484,38.702778952],[-75.315351305,38.702918693],[-75.316173664,38.70305446],[-75.316879034,38.703282524],[-75.317701594,38.70346427],[-75.319464336,38.703873428],[-75.321402371,38.70409809],[-75.32287145,38.704462003],[-75.323579144,38.705195966],[-75.323817464,38.705977224],[-75.323644891,38.706759613],[-75.323884667,38.707862836],[-75.324006005,38.708736396],[-75.324243303,38.709287686],[-75.324714379,38.709608336],[-75.325420885,38.710066325],[-75.326125515,38.710110354],[-75.326299744,38.709695918],[-75.326532458,38.709235313],[-75.327117577,38.708819727],[-75.327703333,38.708542113],[-75.328466017,38.708447987],[-75.329286354,38.708123714],[-75.330165593,38.707845269],[-75.330750256,38.707337672],[-75.331394044,38.706921888],[-75.331859387,38.706000671],[-75.332382783,38.704941301],[-75.332810831,38.704209914],[-75.333247857,38.703518744],[-75.333773557,38.702965305],[-75.334431475,38.702445977],[-75.335046657,38.702202742],[-75.335397384,38.701891272],[-75.335968694,38.701682656],[-75.336629012,38.701680758],[-75.337333675,38.701747715],[-75.337993027,38.701538835],[-75.338650249,38.700881505],[-75.339220239,38.700396905],[-75.339835713,38.70022264],[-75.340496833,38.700393195],[-75.341733845,38.701320988],[-75.343235842,38.702420467],[-75.343810107,38.702832731],[-75.344339361,38.703038158],[-75.344736881,38.703312953],[-75.34495849,38.703622763],[-75.345224614,38.704035937],[-75.345536594,38.704828429],[-75.346253683,38.70519407],[-75.347469191,38.705420266],[-75.3486848,38.705592376],[-75.349853724,38.70540203],[-75.350864581,38.705054038],[-75.351522392,38.704534613],[-75.352531364,38.703807161],[-75.354202696,38.703491638],[-75.35605129,38.703417035],[-75.357896613,38.702686977],[-75.359919199,38.702197827],[-75.362029456,38.701639375],[-75.3638417,38.701091019],[-75.366505644,38.700332248],[-75.367233361,38.699954731],[-75.36771017,38.69956014],[-75.368095686,38.699147965],[-75.368527066,38.69878924],[-75.369186733,38.698483405],[-75.369892536,38.698284627],[-75.370597882,38.697996507],[-75.371211922,38.697690797],[-75.371757739,38.697421045],[-75.372234053,38.696937094],[-75.37273389,38.696596005],[-75.373324829,38.696236761],[-75.374052572,38.695877077],[-75.374606988,38.695510792],[-75.375289013,38.695133378],[-75.375766409,38.694863819],[-75.376197911,38.694540809],[-75.37656064,38.694146547],[-75.376877857,38.69377029],[-75.377264042,38.693501027],[-75.377604804,38.693267645],[-75.377876323,38.692873673],[-75.378215855,38.692408],[-75.37905432,38.69144041],[-75.379462331,38.690992387],[-75.379734679,38.690759222],[-75.38005301,38.690597376],[-75.380349196,38.690560677],[-75.38062277,38.690559786],[-75.381147976,38.690718888],[-75.381605084,38.690931813],[-75.382556959,38.691009112],[-75.383834298,38.691124047],[-75.384656052,38.691311938],[-75.385235404,38.691643565],[-75.385481526,38.692190712],[-75.385424055,38.692810323],[-75.386157581,38.693546451],[-75.386919992,38.693996585],[-75.388168666,38.694421285],[-75.389417228,38.694822142],[-75.390497935,38.696051921],[-75.390709064,38.69682292],[-75.390604825,38.697383778],[-75.390356931,38.697833015],[-75.390538949,38.698420942],[-75.390934461,38.698811976],[-75.391780282,38.699250633],[-75.39283476,38.699702419],[-75.393837947,38.700035347],[-75.394305017,38.70042613],[-75.394807086,38.700676659],[-75.395487911,38.700915384],[-75.395704557,38.701290187],[-75.395813397,38.701570068],[-75.396172418,38.701821083],[-75.396658705,38.702073543],[-75.397191219,38.702361948],[-75.397786601,38.702684388],[-75.39843175,38.702934423],[-75.398826864,38.703241352],[-75.399435321,38.703323356],[-75.399686453,38.703462622],[-75.399866999,38.703770281],[-75.399761416,38.704078919],[-75.399834355,38.704330899],[-75.399729707,38.704807685],[-75.399481222,38.705144846],[-75.399411725,38.705509412],[-75.399307854,38.706126318],[-75.399453875,38.706658302],[-75.399956786,38.707048937],[-75.400352565,38.707467966],[-75.400676803,38.707887237],[-75.400607623,38.708307847],[-75.400111572,38.709150311],[-75.399759043,38.710076353],[-75.399227056,38.710890901],[-75.398372504,38.711594446],[-75.3980565,38.712660483],[-75.397163818,38.712943776],[-75.396233976,38.712974957],[-75.395373823,38.712669586],[-75.394478367,38.712448414],[-75.393726756,38.712366867],[-75.393144022,38.712620207],[-75.391083839,38.713104395],[-75.390294356,38.713035061],[-75.389431133,38.712807328],[-75.388841924,38.712710456],[-75.388484967,38.712794009],[-75.388296821,38.712992295],[-75.388297801,38.713173493],[-75.388550982,38.71333737],[-75.388993828,38.713582984],[-75.389311155,38.713944315],[-75.38986002,38.714354301],[-75.390196139,38.71482582],[-75.390326671,38.715110467],[-75.39037042,38.715423291],[-75.390119923,38.715753572],[-75.389911641,38.716116653],[-75.389829058,38.716396957],[-75.389559765,38.717139112],[-75.389331529,38.717699928],[-75.3891448,38.718161772],[-75.388532782,38.719103674],[-75.386893852,38.718439414],[-75.385396879,38.71814317],[-75.38311252,38.718150675],[-75.380313793,38.718140709],[-75.379645882,38.718346699],[-75.378978752,38.718698275],[-75.37805328,38.71940009],[-75.377385812,38.719693418],[-75.377015069,38.719869319],[-75.377127789,38.720101892],[-75.377463053,38.7202464],[-75.377796641,38.720070617],[-75.3783546,38.72015617],[-75.378876777,38.720503888],[-75.379138947,38.720881564],[-75.378844379,38.721406627],[-75.378660691,38.721814872],[-75.378736416,38.722076681],[-75.379219765,38.722552089],[-75.379465187,38.723388402],[-75.379600668,38.723850035],[-75.379641532,38.724548722],[-75.380165601,38.725245838],[-75.3806883,38.725680895],[-75.380988746,38.726262263],[-75.381326738,38.726913391],[-75.381627816,38.727611226],[-75.382371795,38.727874004],[-75.382855329,38.727770269],[-75.383228336,38.728013634],[-75.383490026,38.728292302],[-75.383603164,38.728594751],[-75.383830243,38.729351058],[-75.383840806,38.731325181],[-75.383625557,38.732781749],[-75.383335165,38.734092983],[-75.382638762,38.734581667],[-75.381408308,38.735263976],[-75.381113699,38.73578905],[-75.380819239,38.736343239],[-75.380637225,38.737071767],[-75.380565504,38.737566997],[-75.379716005,38.738617978],[-75.378531894,38.739670047],[-75.378200531,38.74028258],[-75.378097753,38.741942599],[-75.378474755,38.742931366],[-75.378255676,38.743689126],[-75.37855987,38.744969302],[-75.378785566,38.74546356],[-75.37904921,38.746103291],[-75.378755308,38.746773935],[-75.378721513,38.747414629],[-75.379245897,38.748140855],[-75.380102617,38.74842925],[-75.381256007,38.748571081],[-75.383371775,38.74789446],[-75.384594848,38.747162509],[-75.385968501,38.746779458],[-75.387527879,38.746366658],[-75.388701423,38.74587033],[-75.390164675,38.745804658],[-75.390743873,38.745521075],[-75.390883308,38.745513473],[-75.391611869,38.74614201],[-75.392500893,38.746643799],[-75.394038313,38.747837469],[-75.394608913,38.749034387],[-75.394700257,38.750990085],[-75.394624544,38.75187369],[-75.394630449,38.752946318],[-75.39270317,38.75415165],[-75.390697651,38.755798892],[-75.38949444,38.756812454],[-75.388279636,38.758357438],[-75.388383396,38.759970996],[-75.388953656,38.761104842],[-75.388958796,38.762051273],[-75.388881973,38.762745591],[-75.388727299,38.763944946],[-75.387683399,38.764642478],[-75.386879875,38.765086818],[-75.386560579,38.765655742],[-75.386805768,38.766285903],[-75.386972737,38.767357993],[-75.387621584,38.768113005],[-75.388028654,38.768868815],[-75.388032072,38.769499768],[-75.387955575,38.770257183],[-75.388283431,38.771265637],[-75.388449077,38.772085344],[-75.38869533,38.772904784],[-75.389102783,38.773723689],[-75.389348009,38.774353834],[-75.389673166,38.774857528],[-75.389433758,38.775300003],[-75.388788595,38.775239053],[-75.387901288,38.775115806],[-75.386932701,38.774866632],[-75.386207631,38.774932128],[-75.385565191,38.775375919],[-75.385729797,38.776006348],[-75.385977044,38.777015076],[-75.38620197,38.777851056],[-75.386473576,38.778860472],[-75.386741179,38.779913951],[-75.386747823,38.78114402],[-75.386939022,38.781904872],[-75.387862047,38.782750626],[-75.389070171,38.782557319],[-75.389796347,38.782681093],[-75.390605901,38.783309352],[-75.390932132,38.784002324],[-75.391591983,38.784642431],[-75.392471163,38.785347437],[-75.392635855,38.785977848],[-75.392316849,38.78660988],[-75.391835576,38.787053171],[-75.391838684,38.787621026],[-75.391922067,38.78812552],[-75.392169106,38.789071145],[-75.392334485,38.789827747],[-75.392418563,38.790458426],[-75.392421677,38.79102628],[-75.392344515,38.79165751],[-75.392267005,38.792225633],[-75.391837773,38.792661377],[-75.392254302,38.792725126],[-75.393104715,38.792633478],[-75.39442318,38.792163201],[-75.395099653,38.791975464],[-75.395822083,38.791629848],[-75.39655828,38.791405371],[-75.397523108,38.791490881],[-75.398373735,38.79144359],[-75.400470838,38.791125651],[-75.401548367,38.79107756],[-75.403307353,38.791160298],[-75.404326893,38.7908904],[-75.40545964,38.790575705],[-75.406250759,38.790040213],[-75.406819513,38.790304612],[-75.407049952,38.790925341],[-75.407393581,38.791501282],[-75.407512084,38.792388784],[-75.407629338,38.793054302],[-75.407688843,38.793542443],[-75.406670027,38.793945553],[-75.407243364,38.795009049],[-75.407588792,38.795895752],[-75.407821522,38.796916031],[-75.407882807,38.797714935],[-75.407661454,38.798692412],[-75.407270397,38.799759261],[-75.406935556,38.800737122],[-75.406700053,38.801796414],[-75.406439903,38.802626372],[-75.405294101,38.802975791],[-75.404724278,38.80366146],[-75.40490298,38.803606969],[-75.405380738,38.803853813],[-75.406123137,38.804099734],[-75.407114613,38.804547567],[-75.407988164,38.804908213],[-75.409268679,38.805312886],[-75.410259225,38.805809492],[-75.411249525,38.80626063],[-75.411948302,38.806530933],[-75.412704123,38.806619193],[-75.413522988,38.806910773],[-75.41421192,38.807053288],[-75.414821452,38.807196082],[-75.415556046,38.807472856],[-75.415798834,38.807841567],[-75.415952767,38.808075336],[-75.416547469,38.808228086],[-75.416719672,38.808317506],[-75.416845544,38.808428357],[-75.416883941,38.808558136],[-75.416986623,38.808861503],[-75.417482098,38.80896815],[-75.418125406,38.808981523],[-75.418794552,38.80901554],[-75.419063504,38.809251237],[-75.418339548,38.80979089],[-75.417670514,38.809775073],[-75.41757178,38.809802739],[-75.417548993,38.809884743],[-75.417601984,38.809993783],[-75.417719729,38.810234579],[-75.418286442,38.810655825],[-75.419070255,38.811400823],[-75.418971945,38.811922742],[-75.419153947,38.812344037],[-75.41927851,38.812640621],[-75.419568772,38.812630838],[-75.419993315,38.812409463],[-75.420931665,38.812099593],[-75.422025607,38.81160526],[-75.423352396,38.810742285],[-75.424131466,38.810003876],[-75.424751658,38.808898251],[-75.425846264,38.808526478],[-75.427175867,38.808153837],[-75.427719495,38.807354968],[-75.428812946,38.806799271],[-75.430537902,38.807038125],[-75.432181557,38.80678686],[-75.433592041,38.806842936],[-75.434456381,38.80726881],[-75.434385109,38.808433749],[-75.434624972,38.809229736],[-75.434786876,38.81008731],[-75.434401114,38.811069517],[-75.434407071,38.812050268],[-75.434803643,38.812845671],[-75.435513618,38.813639905],[-75.436296705,38.813575689],[-75.436135161,38.812779413],[-75.436442928,38.811858786],[-75.437380449,38.81142619],[-75.438004203,38.810933466],[-75.438077288,38.81007502],[-75.437915729,38.809278744],[-75.437206147,38.808545819],[-75.437356462,38.807503186],[-75.438137239,38.80707117],[-75.439103683,38.806777384],[-75.439525899,38.806911561],[-75.43965151,38.807182625],[-75.439752092,38.807414983],[-75.439679748,38.807744973],[-75.4399051,38.808112635],[-75.440253085,38.808266488],[-75.440550419,38.808245976],[-75.440971212,38.808147406],[-75.441291772,38.807874669],[-75.441834098,38.807387738],[-75.442253084,38.806998244],[-75.442895626,38.806685493],[-75.443440588,38.806625234],[-75.443936564,38.806662142],[-75.444183595,38.806525439],[-75.444355655,38.80629204],[-75.444776429,38.806193465],[-75.445322592,38.806327149],[-75.445774319,38.806422408],[-75.446171147,38.806459684],[-75.44656847,38.806574531],[-75.446817433,38.806748142],[-75.447116568,38.807018524],[-75.447415472,38.807250125],[-75.447714987,38.807578696],[-75.447965159,38.807946246],[-75.447818508,38.808276527],[-75.447770511,38.808528846],[-75.448093114,38.8085858],[-75.448488982,38.80846791],[-75.448859577,38.808272532],[-75.44918072,38.808096742],[-75.449327741,38.807824642],[-75.449724832,38.807900695],[-75.450023383,38.8080741],[-75.450198846,38.808383752],[-75.45042352,38.808635023],[-75.450673111,38.808905594],[-75.451045905,38.809059311],[-75.451467665,38.809115873],[-75.451765368,38.809153512],[-75.452137799,38.809249046],[-75.452423419,38.809336187],[-75.452498976,38.809524998],[-75.452407216,38.809714459],[-75.452445132,38.809830684],[-75.452686909,38.809844289],[-75.452911013,38.810003434],[-75.453210041,38.81024956],[-75.453581956,38.810262668],[-75.453991606,38.8103629],[-75.454290639,38.810609023],[-75.454740351,38.811160036],[-75.455465922,38.811947821],[-75.456112474,38.812531839],[-75.456553455,38.812930156],[-75.456872968,38.813218762],[-75.457358408,38.81353688],[-75.457584022,38.813928746],[-75.457381471,38.814235016],[-75.456731765,38.814397569],[-75.456249979,38.814652556],[-75.456437758,38.814942749],[-75.456848182,38.815159339],[-75.457165842,38.815405383],[-75.45759495,38.815636446],[-75.457968162,38.815847363],[-75.458063036,38.816143736],[-75.458176318,38.816413859],[-75.458345618,38.816718664],[-75.458606847,38.8168631],[-75.458812585,38.817051398],[-75.458739699,38.817284429],[-75.458423715,38.81730021],[-75.458015697,38.817461824],[-75.458110898,38.817810567],[-75.458187316,38.818130285],[-75.458337742,38.81839153],[-75.458395948,38.818769502],[-75.458353537,38.819133629],[-75.458344082,38.819380656],[-75.458289056,38.819642667],[-75.458347532,38.819918854],[-75.458589719,38.819990637],[-75.458905715,38.819974853],[-75.459258628,38.819915277],[-75.459554719,38.819695918],[-75.459945282,38.819708931],[-75.460314755,38.82000988],[-75.460957608,38.820495019],[-75.461239539,38.820767882],[-75.461474779,38.82104093],[-75.461360051,38.821351881],[-75.461268418,38.821626218],[-75.46148138,38.822063733],[-75.461950334,38.822372387],[-75.462442293,38.822626148],[-75.462819759,38.823227395],[-75.463177957,38.82445703],[-75.46334494,38.825004313],[-75.463677764,38.825918066],[-75.464148415,38.826482409],[-75.464713183,38.827155968],[-75.465352887,38.828578083],[-75.46585002,38.829617199],[-75.46643865,38.830363711],[-75.467185182,38.830977183],[-75.46915844,38.832051447],[-75.469884238,38.832340766],[-75.470421783,38.832411663],[-75.471051418,38.832281277],[-75.471447905,38.832206618],[-75.471868097,38.832186653],[-75.472612302,38.831727028],[-75.47340236,38.831139349],[-75.474371582,38.830948223],[-75.47543323,38.831037956],[-75.475897085,38.830561174],[-75.476432918,38.830376342],[-75.476970706,38.830483735],[-75.477459724,38.830280829],[-75.477668041,38.830006003],[-75.477758509,38.829567278],[-75.478025581,38.828856164],[-75.478637871,38.829262576],[-75.47902741,38.829770976],[-75.479143052,38.830023031],[-75.479340002,38.830130165],[-75.479455601,38.830377262],[-75.479528393,38.830847351],[-75.479599348,38.831045117],[-75.479449459,38.831347775],[-75.4793563,38.831615537],[-75.479263607,38.831952615],[-75.47922375,38.832281724],[-75.479509756,38.832975954],[-75.479634843,38.833169099],[-75.479761006,38.833520689],[-75.480085701,38.833790502],[-75.480507901,38.834132042],[-75.48076834,38.834368637],[-75.480893729,38.834605787],[-75.48086978,38.834620436],[-75.48104241,38.834957282],[-75.481199099,38.835256836],[-75.481530488,38.835571455],[-75.481813868,38.835869578],[-75.482345255,38.836228288],[-75.482999084,38.836384035],[-75.483551678,38.836548994],[-75.484027479,38.836010943],[-75.485350017,38.836744878],[-75.486923797,38.836468383],[-75.486916592,38.837172625],[-75.488841866,38.837821845],[-75.490403386,38.8379444],[-75.491106497,38.837624553],[-75.490450565,38.840444143],[-75.490578113,38.840866027],[-75.490351618,38.841334201],[-75.490476102,38.841979208],[-75.491146855,38.842185301],[-75.491613132,38.842335913],[-75.491861785,38.841395929],[-75.493202761,38.839993596],[-75.493819539,38.840209297],[-75.493929864,38.840971716],[-75.493963932,38.841558409],[-75.494162274,38.842027047],[-75.494478804,38.842225231],[-75.494759056,38.841519834],[-75.494621555,38.84116832],[-75.494408294,38.840711485],[-75.494991203,38.840368652],[-75.495623277,38.840624178],[-75.496351257,38.841724343],[-75.496850896,38.842356007],[-75.497439118,38.84277603],[-75.498235154,38.842866529],[-75.498881444,38.843004614],[-75.499627865,38.842438055],[-75.50334834,38.843091081],[-75.503121041,38.844911259],[-75.505114805,38.844585767],[-75.505707255,38.84559374],[-75.50632848,38.84642436],[-75.505795255,38.847424295],[-75.507135572,38.847641477],[-75.507522864,38.84722901],[-75.508241337,38.846955943],[-75.508765362,38.846777607],[-75.509563214,38.847114495],[-75.50920578,38.847503368],[-75.509088144,38.847844247],[-75.509784213,38.848639312],[-75.509878042,38.84916823],[-75.509715883,38.849579724],[-75.509583737,38.849991086],[-75.5096171,38.850460417],[-75.509515048,38.850883379],[-75.510446019,38.850938003],[-75.511793542,38.85047437],[-75.512662362,38.850235827],[-75.514160108,38.849794979],[-75.516286499,38.849116609],[-75.516468213,38.8493388],[-75.517234306,38.849425787],[-75.517954053,38.84933222],[-75.518213207,38.849882698],[-75.518268506,38.850110075],[-75.518287513,38.850108714],[-75.518204811,38.850794685],[-75.518253502,38.851299145],[-75.519052471,38.851776813],[-75.51932528,38.852139434],[-75.51970281,38.852454649],[-75.520016361,38.852577563],[-75.520209663,38.852743605],[-75.520211366,38.852977257],[-75.520298451,38.853210529],[-75.520599695,38.853542991],[-75.520794463,38.853909308],[-75.520881917,38.854192649],[-75.520716146,38.85487768],[-75.520696753,38.855144812],[-75.520934459,38.855544312],[-75.520957394,38.855761182],[-75.520768211,38.856162587],[-75.520684172,38.85634655],[-75.520836263,38.856713051],[-75.52107349,38.857045794],[-75.521396707,38.857461609],[-75.521484168,38.857744949],[-75.521444399,38.858145688],[-75.521426468,38.858613087],[-75.521279001,38.858880791],[-75.521045776,38.859098802],[-75.520662777,38.859267412],[-75.520345516,38.859669387],[-75.520219141,38.85990361],[-75.520241822,38.860087097],[-75.520606282,38.860302445],[-75.520800104,38.860535241],[-75.520758989,38.860752397],[-75.520504791,38.861020574],[-75.52016483,38.86123906],[-75.519909886,38.861407087],[-75.519398547,38.861542889],[-75.519036388,38.861644641],[-75.517500059,38.861734906],[-75.51654189,38.86207295],[-75.516437086,38.862340455],[-75.516224827,38.862508295],[-75.515972895,38.863093558],[-75.515911385,38.863444321],[-75.515742833,38.863614389],[-75.515032755,38.863889115],[-75.514570979,38.864067766],[-75.513804173,38.864304802],[-75.513505424,38.864322811],[-75.513291352,38.864240298],[-75.512927852,38.864158449],[-75.512629354,38.864209831],[-75.512141251,38.864612533],[-75.511887952,38.865014205],[-75.511873907,38.866032359],[-75.51186476,38.867734783],[-75.51182518,38.868168901],[-75.511828772,38.868669587],[-75.512023652,38.869052599],[-75.512773498,38.869416495],[-75.513480288,38.869730494],[-75.514954796,38.869924286],[-75.515874125,38.870103817],[-75.519359362,38.873760179],[-75.521187882,38.87563801],[-75.522135607,38.876768697],[-75.522092498,38.876987182],[-75.521862195,38.87733738],[-75.521655147,38.877912706],[-75.521590363,38.878123027],[-75.521634658,38.8783398],[-75.522301799,38.879054484],[-75.522604509,38.879570526],[-75.52269346,38.880054134],[-75.523491438,38.881135409],[-75.52372827,38.881401389],[-75.523985114,38.881483692],[-75.524368714,38.881381828],[-75.524795513,38.881346527],[-75.525181571,38.88157845],[-75.52615474,38.883243074],[-75.526630163,38.884008674],[-75.527066226,38.885225072],[-75.52728124,38.885424385],[-75.527602781,38.885589835],[-75.52803046,38.885671346],[-75.528928921,38.885884251],[-75.529550026,38.886131782],[-75.530171395,38.886412694],[-75.530834475,38.886559893],[-75.532461851,38.887153326],[-75.53306038,38.887234042],[-75.533743079,38.887147477],[-75.53421262,38.887111947],[-75.534617597,38.88700995],[-75.535042913,38.886774344],[-75.53574571,38.886520775],[-75.537217365,38.886280356],[-75.538647041,38.886140244],[-75.539501439,38.886169683],[-75.540121583,38.886283647],[-75.540784936,38.886464163],[-75.541470023,38.886694647],[-75.541854649,38.886726247],[-75.542152333,38.886557965],[-75.542492599,38.886372797],[-75.543173874,38.886199863],[-75.543537015,38.886117585],[-75.543836092,38.886132888],[-75.544114834,38.886281794],[-75.544350103,38.88633077],[-75.544563131,38.886263018],[-75.544860562,38.886061346],[-75.545478786,38.885924943],[-75.545927336,38.885939534],[-75.546334974,38.886187981],[-75.546486878,38.886504376],[-75.546683285,38.887054229],[-75.547049629,38.887486454],[-75.547628492,38.887784159],[-75.548378704,38.888147822],[-75.54908455,38.888294708],[-75.549276859,38.888310499],[-75.549363057,38.888410227],[-75.549322527,38.888694148],[-75.549280715,38.888811173],[-75.548790215,38.888896935],[-75.548858005,38.889380629],[-75.54916018,38.889796455],[-75.549418356,38.890045585],[-75.549633439,38.890495129],[-75.54970433,38.891129094],[-75.550004716,38.891311268],[-75.55023975,38.891326847],[-75.550475565,38.891442566],[-75.550713046,38.891775246],[-75.550713949,38.891892071],[-75.550629302,38.89199261],[-75.550309225,38.892027504],[-75.550096573,38.892145335],[-75.550098502,38.892395672],[-75.550314249,38.892678383],[-75.550571807,38.892844069],[-75.551047533,38.893034195],[-75.5516001,38.893256462],[-75.552008316,38.893571646],[-75.552222262,38.893620704],[-75.552563946,38.893619089],[-75.552778022,38.893684833],[-75.552907712,38.893884503],[-75.552910042,38.894184907],[-75.552911854,38.894418557],[-75.553019933,38.894584945],[-75.553170203,38.894684376],[-75.553383893,38.894700051],[-75.554195163,38.894662828],[-75.554472405,38.894611442],[-75.554685187,38.894510289],[-75.554834158,38.894442822],[-75.555004874,38.894425315],[-75.555347094,38.894490455],[-75.555748791,38.894449237],[-75.556122628,38.894330309],[-75.556290494,38.894045648],[-75.556341784,38.893599337],[-75.556149769,38.893351711],[-75.555806904,38.893203138],[-75.55537901,38.893105032],[-75.555015056,38.892989934],[-75.554863878,38.892773681],[-75.554839022,38.89232317],[-75.554879528,38.892039249],[-75.555601058,38.891451672],[-75.556110977,38.891115444],[-75.556686911,38.891029246],[-75.557584207,38.891075035],[-75.558375127,38.891171398],[-75.558824496,38.891286077],[-75.559338196,38.89143383],[-75.559552662,38.891549632],[-75.559575335,38.891716423],[-75.55940619,38.891934203],[-75.559261152,38.892502356],[-75.559305439,38.89270242],[-75.559455711,38.892801842],[-75.559776563,38.892867063],[-75.560439643,38.892997407],[-75.560804394,38.893212619],[-75.561265438,38.893629844],[-75.561691652,38.893848574],[-75.562006749,38.894024648],[-75.562391415,38.894056172],[-75.56266878,38.89402146],[-75.562966837,38.893903195],[-75.563180134,38.893868784],[-75.563672242,38.893983238],[-75.564078536,38.894048034],[-75.564229082,38.894180831],[-75.564272975,38.894330832],[-75.564338235,38.894480721],[-75.564617053,38.894629584],[-75.564939648,38.894911754],[-75.565347128,38.895126751],[-75.565668535,38.89525871],[-75.565903981,38.895324328],[-75.566181748,38.895339678],[-75.566565228,38.895220981],[-75.567292002,38.895300905],[-75.567763174,38.895465516],[-75.568812689,38.895844277],[-75.569260904,38.895808711],[-75.569515852,38.895640568],[-75.569556836,38.895423396],[-75.569427098,38.895223754],[-75.56916842,38.894924591],[-75.569037618,38.894591437],[-75.568970762,38.894241268],[-75.568990744,38.893970933],[-75.569315118,38.893482735],[-75.569559794,38.893120175],[-75.569643214,38.892869415],[-75.569619195,38.892535733],[-75.569702482,38.892268286],[-75.569871721,38.892067183],[-75.569955673,38.891883187],[-75.569824482,38.891499957],[-75.569813976,38.89106524],[-75.569965961,38.890604915],[-75.570475274,38.890094822],[-75.570773704,38.890026604],[-75.571008736,38.890042142],[-75.571244436,38.890141131],[-75.571415147,38.890123609],[-75.571564094,38.890056112],[-75.571753614,38.889721386],[-75.571772826,38.889454258],[-75.57179324,38.889337329],[-75.571870537,38.889269897],[-75.572568337,38.888907044],[-75.57269437,38.889834554],[-75.572767895,38.890003421],[-75.573076129,38.89018525],[-75.573582728,38.89035199],[-75.573854866,38.890533993],[-75.574308136,38.890799716],[-75.574364091,38.891025079],[-75.574384174,38.891278833],[-75.574656888,38.891531342],[-75.575362682,38.89178171],[-75.575544496,38.891950048],[-75.575582523,38.892189607],[-75.575531114,38.892528329],[-75.575406394,38.892726374],[-75.574993066,38.89293996],[-75.574669729,38.893124884],[-75.57427581,38.893507596],[-75.573954397,38.893932255],[-75.573848848,38.894271243],[-75.573868261,38.894440373],[-75.574051896,38.894834351],[-75.574197273,38.894960558],[-75.574884718,38.895168715],[-75.575445261,38.895306982],[-75.575790527,38.895601437],[-75.575990281,38.895755578],[-75.576300247,38.89614893],[-75.576521018,38.896669636],[-75.576627077,38.900857618],[-75.57672481,38.904016136],[-75.576880026,38.907583346],[-75.576946381,38.909092001],[-75.576951632,38.909740697],[-75.577117053,38.910106554],[-75.57724465,38.910261051],[-75.577459916,38.910247281],[-75.577749457,38.910188043],[-75.5785618,38.91019812],[-75.578850936,38.910238999],[-75.579032568,38.910379119],[-75.579790872,38.910403561],[-75.580155079,38.910796631],[-75.580212323,38.911177119],[-75.580254048,38.911867939],[-75.580294397,38.912389539],[-75.580405456,38.912727448],[-75.580789101,38.913289653],[-75.581263359,38.913893701],[-75.581645981,38.91432898],[-75.581773599,38.914483471],[-75.581902146,38.91475078],[-75.582032298,38.915215521],[-75.582057253,38.916061556],[-75.582130799,38.916895276],[-75.582192605,38.917160884],[-75.582313543,38.917384076],[-75.582758074,38.917877305],[-75.583355721,38.918114063],[-75.583918321,38.918477916],[-75.584686201,38.919658692],[-75.585111816,38.920925805],[-75.586055397,38.921513383],[-75.586895866,38.921768859],[-75.587069228,38.921860855],[-75.587151212,38.922002976],[-75.587494433,38.923071541],[-75.587875632,38.923323464],[-75.588509343,38.923545916],[-75.588890548,38.923797844],[-75.589199311,38.924021922],[-75.58941898,38.924387485],[-75.58954593,38.924457355],[-75.589762686,38.924470368],[-75.591330604,38.924138075],[-75.593113372,38.923593125],[-75.593292374,38.923408883],[-75.59343386,38.923055596],[-75.59370406,38.922983713],[-75.59390334,38.923067316],[-75.594086691,38.923404843],[-75.594304621,38.923558868],[-75.594628739,38.923458494],[-75.594970325,38.92328752],[-75.596356957,38.922871475],[-75.597689181,38.922427481],[-75.598481711,38.922211881],[-75.598984563,38.92189904],[-75.599847627,38.921485632],[-75.600100363,38.921484332],[-75.600300597,38.921680742],[-75.600591099,38.921876679],[-75.600755945,38.922157886],[-75.600632318,38.922482883],[-75.600308439,38.922611471],[-75.600094064,38.922880522],[-75.600041693,38.923092337],[-75.60010818,38.923246368],[-75.60013614,38.923687355],[-75.600084827,38.92411679],[-75.599758567,38.924519023],[-75.59930388,38.924893299],[-75.599234359,38.925337129],[-75.599294586,38.925966263],[-75.599205911,38.926310053],[-75.599079281,38.926496682],[-75.598877843,38.926497713],[-75.598455795,38.926399738],[-75.598235675,38.926357947],[-75.597851812,38.926445751],[-75.597395063,38.926576839],[-75.596736387,38.926651732],[-75.596497358,38.926538509],[-75.596348096,38.926210241],[-75.596251256,38.925581292],[-75.595882124,38.925239845],[-75.595349856,38.925099509],[-75.59468892,38.924902595],[-75.594249293,38.92489053],[-75.593939517,38.925078077],[-75.59346434,38.925194938],[-75.593043142,38.92519708],[-75.592658215,38.925156115],[-75.59227435,38.925243902],[-75.59207494,38.925488105],[-75.591968503,38.925903513],[-75.592007512,38.926189425],[-75.592210971,38.926431586],[-75.592816387,38.92655726],[-75.593348423,38.926669002],[-75.593715641,38.926781578],[-75.594010802,38.927037582],[-75.594176693,38.927165485],[-75.594308948,38.927651203],[-75.594402424,38.927879618],[-75.59489785,38.927991538],[-75.595339409,38.928232479],[-75.595489148,38.928617967],[-75.595327793,38.929033648],[-75.595240291,38.929520487],[-75.59533461,38.929849037],[-75.595429646,38.930263409],[-75.595242497,38.931390524],[-75.595981476,38.932735458],[-75.596445096,38.933419755],[-75.596835703,38.93413304],[-75.597260436,38.934545726],[-75.59761191,38.934958784],[-75.598018817,38.935428789],[-75.598115681,38.936057736],[-75.59781803,38.937000448],[-75.597876226,38.939550362],[-75.597795161,38.940073434],[-75.597541642,38.940800147],[-75.597225484,38.94171191],[-75.597051558,38.942400537],[-75.596983088,38.942973107],[-75.597005731,38.943487998],[-75.597155032,38.943816256],[-75.597781912,38.944299437],[-75.598241188,38.944454447],[-75.598700094,38.944566539],[-75.599381105,38.944949294],[-75.599787601,38.945362064],[-75.59993728,38.945733242],[-75.600051537,38.946247651],[-75.600385967,38.946803848],[-75.600637178,38.947542764],[-75.600579537,38.948033121],[-75.600435763,38.94836289],[-75.60053001,38.948677129],[-75.601206258,38.948954614],[-75.601651693,38.949172047],[-75.602186101,38.94954123],[-75.602537186,38.949897061],[-75.60259711,38.950483275],[-75.602694772,38.951198049],[-75.603787724,38.952919789],[-75.603946302,38.954437377],[-75.604946144,38.956612938],[-75.604728963,38.957739447],[-75.604312432,38.958313822],[-75.603822486,38.958874274],[-75.603494282,38.959061941],[-75.603240564,38.959392281],[-75.603078946,38.959779365],[-75.60302798,38.960251705],[-75.603031495,38.960666554],[-75.603345635,38.960979646],[-75.603901697,38.961325826],[-75.60406992,38.961465802],[-75.604217838,38.961574583],[-75.604245758,38.961715275],[-75.604173323,38.961840852],[-75.604147573,38.961955748],[-75.604155452,38.962096546],[-75.604169972,38.962232098],[-75.604451165,38.96256846],[-75.604957542,38.963074206],[-75.605665984,38.964318384],[-75.606260857,38.965499372],[-75.606576497,38.965984121],[-75.606781718,38.966412223],[-75.607011853,38.967612683],[-75.607801858,38.967851761],[-75.608152947,38.968193262],[-75.608669936,38.968648342],[-75.609458239,38.968687146],[-75.60998939,38.968655764],[-75.610411458,38.968725083],[-75.61101825,38.968965098],[-75.611788226,38.969003982],[-75.612724483,38.969199349],[-75.613424509,38.969624832],[-75.614162668,38.970221781],[-75.614442233,38.97076391],[-75.614925347,38.971533864],[-75.61546321,38.972274911],[-75.616018283,38.972887117],[-75.616462673,38.973414079],[-75.616833024,38.97385559],[-75.617350243,38.974324933],[-75.617849498,38.974837284],[-75.61818123,38.975050111],[-75.618467748,38.977223001],[-75.618593094,38.978857883],[-75.618923288,38.980649378],[-75.618932428,38.981699143],[-75.619699653,38.982010465],[-75.620330157,38.98211525],[-75.621004452,38.982111662],[-75.622262567,38.982032871],[-75.623746119,38.981988904],[-75.624554438,38.981880951],[-75.625766576,38.981662692],[-75.626981218,38.981728263],[-75.627819053,38.98120561],[-75.628806024,38.980902923],[-75.629540957,38.980781813],[-75.629892599,38.980360891],[-75.629823694,38.979765865],[-75.630021106,38.979292721],[-75.630824564,38.978959354],[-75.631442972,38.978426712],[-75.632561775,38.978520792],[-75.633697131,38.978414493],[-75.634464677,38.978167134],[-75.634996651,38.97822146],[-75.635565796,38.978332805],[-75.636118154,38.978615902],[-75.636562217,38.979085557],[-75.636711778,38.979413769],[-75.636732278,38.979656846],[-75.636535678,38.980215831],[-75.636502486,38.980602259],[-75.636523501,38.980902557],[-75.63696694,38.981300687],[-75.637466908,38.981870172],[-75.637967525,38.982511186],[-75.638411755,38.982995142],[-75.639021064,38.983492489],[-75.639718426,38.983588809],[-75.640360802,38.983685424],[-75.640930117,38.983811047],[-75.641189293,38.984095729],[-75.641267251,38.984610295],[-75.641309591,38.985239508],[-75.641240665,38.985726265],[-75.641575347,38.986253731],[-75.642202916,38.986736657],[-75.642353423,38.987164992],[-75.642558534,38.987550112],[-75.642342208,38.987951852],[-75.641942455,38.9883403],[-75.641817637,38.988727225],[-75.642039396,38.988926285],[-75.642534545,38.988952166],[-75.643266285,38.988790781],[-75.643900976,38.988547762],[-75.644456979,38.988305893],[-75.644989974,38.988271408],[-75.645543321,38.988453079],[-75.645601793,38.988813205],[-75.6459998,38.989047483],[-75.646551111,38.989201781],[-75.646938366,38.989457137],[-75.647052504,38.989914275],[-75.647002082,38.990415244],[-75.646914205,38.990830584],[-75.646697634,38.99120373],[-75.646573108,38.991619273],[-75.64666931,38.992119429],[-75.646723926,38.992812493],[-75.647225134,38.993287311],[-75.647725952,38.993757622],[-75.64846637,38.994226601],[-75.64908213,38.994439445],[-75.649516241,38.994716377],[-75.650327591,38.994612734],[-75.651415485,38.994210172],[-75.652431172,38.994118889],[-75.653022723,38.994213999],[-75.653995025,38.994294382],[-75.654969186,38.994575023],[-75.655983181,38.995198771],[-75.65647114,38.996426282],[-75.656740737,38.997826691],[-75.656965762,38.998851379],[-75.656918945,38.999256224],[-75.656191224,38.999861146],[-75.654145821,39.000716649],[-75.652035574,39.001028216],[-75.650430143,39.001366858],[-75.650246825,39.001367881],[-75.649752896,39.001485075],[-75.648634484,39.001476994],[-75.64768133,39.001496592],[-75.647534543,39.001483104],[-75.647251603,39.000612051],[-75.647228844,39.000125791],[-75.647154733,39.000040366],[-75.646640785,38.99997169],[-75.645924665,38.999846912],[-75.645239629,38.999106825],[-75.644498833,38.998281205],[-75.644019224,38.997954829],[-75.643744896,38.998027867],[-75.643124869,38.998388927],[-75.642724803,38.998748763],[-75.642480339,38.999315024],[-75.64161677,38.999884984],[-75.640867742,39.000175209],[-75.640721085,39.000176013],[-75.640269451,38.999994076],[-75.639827422,38.999767613],[-75.639377956,38.999639784],[-75.638772866,38.999628787],[-75.638187529,38.999775048],[-75.637843972,39.000306222],[-75.636783024,39.000569518],[-75.636107799,39.000916529],[-75.635596928,39.001191118],[-75.633764203,39.001258309],[-75.632136989,39.00108366],[-75.630721915,39.001374926],[-75.630211146,39.0016638],[-75.62883596,39.002227903],[-75.628164603,39.002433019],[-75.626568773,39.00234146],[-75.624768763,39.001992934],[-75.622456351,39.001691121],[-75.621062455,39.001627025],[-75.62003671,39.00173262],[-75.618715645,39.001610886],[-75.617795656,39.001229516],[-75.616784143,39.000862925],[-75.615209911,39.001143038],[-75.613322783,39.001281722],[-75.612057355,39.001231145],[-75.611032697,39.001465401],[-75.610411026,39.002172566],[-75.610089481,39.002643381],[-75.61042341,39.003099405],[-75.610444569,39.00342832],[-75.609549567,39.003819246],[-75.609459122,39.003962767],[-75.609878624,39.005063455],[-75.609654738,39.00539229],[-75.609127116,39.005867119],[-75.608359549,39.006157232],[-75.607683774,39.006461164],[-75.606880131,39.006822986],[-75.606222066,39.007055294],[-75.605290202,39.007432068],[-75.604249057,39.007895243],[-75.603503306,39.008600064],[-75.602775879,39.009304784],[-75.602542995,39.009949733],[-75.602089646,39.01057824],[-75.600815719,39.011675282],[-75.599830569,39.012266877],[-75.598843604,39.012643882],[-75.597423243,39.013215489],[-75.596998265,39.013370856],[-75.597024965,39.014427073],[-75.597710264,39.015238965],[-75.59988231,39.017091216],[-75.599528827,39.017935584],[-75.598910563,39.018501962],[-75.597534129,39.018585616],[-75.596152555,39.018056516],[-75.595069755,39.017985449],[-75.594300439,39.017530935],[-75.593070801,39.017408448],[-75.592063474,39.017556623],[-75.590746089,39.017906629],[-75.590269327,39.017909043],[-75.589622794,39.017340098],[-75.588849802,39.017000667],[-75.588464735,39.017002611],[-75.587844248,39.017363378],[-75.587223163,39.017652613],[-75.586271423,39.017871982],[-75.58471527,39.018180202],[-75.584625109,39.018366621],[-75.584297169,39.018625763],[-75.584290882,39.019112271],[-75.584037288,39.020185878],[-75.58512638,39.020822731],[-75.588342799,39.021691097],[-75.588389595,39.022174861],[-75.588951387,39.022839612],[-75.589873847,39.023135358],[-75.590493313,39.023015399],[-75.591264213,39.023094937],[-75.592038318,39.023558326],[-75.592621828,39.024256321],[-75.593094044,39.024437504],[-75.593628634,39.024401411],[-75.594309086,39.023897256],[-75.594888142,39.024061201],[-75.594956945,39.024611609],[-75.595113846,39.025461976],[-75.595310185,39.025911592],[-75.595846639,39.026853031],[-75.596685662,39.027411944],[-75.597679305,39.028024125],[-75.598439112,39.028434745],[-75.598935853,39.029243204],[-75.598710812,39.029785032],[-75.598328276,39.031089115],[-75.598533469,39.032088305],[-75.59890534,39.033587067],[-75.599196197,39.035087634],[-75.598964482,39.035522746],[-75.59828297,39.035910104],[-75.597663405,39.036030107],[-75.597215867,39.036249364],[-75.596853778,39.036451495],[-75.596408328,39.036921079],[-75.596030166,39.037757489],[-75.595630038,39.038527246],[-75.595507804,39.03926221],[-75.595791183,39.039878275],[-75.596178336,39.040109948],[-75.596371218,39.040142346],[-75.596754583,39.039923419],[-75.597161319,39.039938025],[-75.597738125,39.039818245],[-75.598188076,39.039882702],[-75.598727287,39.040380613],[-75.599139242,39.041012706],[-75.599250748,39.041546193],[-75.599810682,39.04196056],[-75.600647686,39.042239973],[-75.601080501,39.042805185],[-75.601705648,39.043336023],[-75.602158317,39.043717547],[-75.602867663,39.044081047],[-75.603473993,39.044264009],[-75.604282518,39.044390485],[-75.604854261,39.044360488],[-75.605440743,39.044651857],[-75.605807982,39.045050498],[-75.606068506,39.045483074],[-75.605943804,39.045917642],[-75.60551934,39.046337089],[-75.60504965,39.04647304],[-75.604172756,39.046544342],[-75.602788222,39.046682552],[-75.601845861,39.046660387],[-75.600970905,39.046664898],[-75.599995875,39.046751017],[-75.599155051,39.04677787],[-75.597965029,39.046426135],[-75.596882851,39.046690396],[-75.595821595,39.04687154],[-75.594917372,39.04657428],[-75.594131631,39.046145308],[-75.593125203,39.046083673],[-75.59259282,39.046403484],[-75.591741767,39.047008621],[-75.591337775,39.047327773],[-75.590998402,39.047696658],[-75.590570927,39.047765587],[-75.590207512,39.047817491],[-75.589657767,39.04784904],[-75.588647664,39.047890188],[-75.587486816,39.047693289],[-75.586711996,39.047494437],[-75.585842441,39.047498809],[-75.585954709,39.048237162],[-75.58591814,39.048444603],[-75.585676207,39.048557984],[-75.58535379,39.048392705],[-75.584730243,39.048045355],[-75.584045371,39.048048789],[-75.583705004,39.04830083],[-75.583558075,39.048652053],[-75.583603619,39.048985613],[-75.583951282,39.049618073],[-75.584704083,39.050064918],[-75.584913557,39.050643869],[-75.585070394,39.050787261],[-75.584995313,39.051098524],[-75.584793615,39.051207669],[-75.584408226,39.051597081],[-75.584703509,39.051974072],[-75.585150567,39.052318759],[-75.585520535,39.052555699],[-75.585518447,39.052781219],[-75.585413638,39.053048779],[-75.585029331,39.053167532],[-75.584173192,39.053171824],[-75.583232394,39.05329336],[-75.582849788,39.053396025],[-75.582730003,39.054448054],[-75.582799294,39.055065219],[-75.583103207,39.055581083],[-75.584010993,39.056644659],[-75.584921551,39.058042012],[-75.585286403,39.058157008],[-75.585564673,39.058155611],[-75.586697351,39.057932963],[-75.587319199,39.058063347],[-75.588115343,39.058560019],[-75.588483941,39.0591256],[-75.588489621,39.059809839],[-75.588149493,39.060095275],[-75.586803278,39.060385777],[-75.586654818,39.060553418],[-75.586616283,39.061070984],[-75.586553445,39.061238196],[-75.586149635,39.061590704],[-75.585320301,39.062262448],[-75.58482988,39.062498561],[-75.58459675,39.062783451],[-75.584597713,39.062900271],[-75.58494587,39.063582792],[-75.585570806,39.064080341],[-75.586279437,39.064343815],[-75.586921787,39.064357271],[-75.587456277,39.064271134],[-75.588205102,39.064217291],[-75.588483116,39.064182506],[-75.588741519,39.064364792],[-75.589565126,39.065578956],[-75.589866914,39.065827777],[-75.59063966,39.066074203],[-75.591134818,39.066405484],[-75.591331111,39.066838416],[-75.591570215,39.067271124],[-75.591981151,39.067769723],[-75.59215506,39.068085942],[-75.591986727,39.068437275],[-75.591866779,39.069455938],[-75.591035877,39.069944151],[-75.59099404,39.070061186],[-75.591193255,39.070844581],[-75.590745571,39.071610488],[-75.591593812,39.072661696],[-75.591577131,39.073229221],[-75.591388351,39.07369748],[-75.59081488,39.074251141],[-75.590058542,39.07478589],[-75.58951498,39.074992052],[-75.589195626,39.075210631],[-75.588963445,39.075612349],[-75.589117341,39.076095567],[-75.589595321,39.076927617],[-75.590134201,39.07735882],[-75.590929329,39.077705267],[-75.591747128,39.078201804],[-75.592567033,39.078948662],[-75.593002251,39.079461254],[-75.593940082,39.079900338],[-75.594562556,39.080080755],[-75.595210098,39.080694952],[-75.595642689,39.081210122],[-75.595457271,39.082078914],[-75.59539724,39.082579904],[-75.595466249,39.08314699],[-75.59566023,39.083296207],[-75.596426876,39.082791604],[-75.597173917,39.082504061],[-75.598498666,39.08216348],[-75.599249092,39.082276451],[-75.599399827,39.082375815],[-75.599274738,39.082777002],[-75.599195443,39.08352843],[-75.599390976,39.083861214],[-75.599715,39.084193337],[-75.60120113,39.085203736],[-75.601683003,39.086469638],[-75.600921029,39.087525002],[-75.600647742,39.088127231],[-75.600460119,39.088767627],[-75.60091756,39.089490665],[-75.601536693,39.090316495],[-75.601291713,39.090827592],[-75.601361346,39.091461426],[-75.601844105,39.092827461],[-75.602282637,39.094026829],[-75.603357987,39.094555332],[-75.603679652,39.094603737],[-75.6037402,39.094169497],[-75.603973506,39.093901257],[-75.605147667,39.093461251],[-75.606130354,39.093172428],[-75.606364363,39.092987622],[-75.606659611,39.092841761],[-75.607498522,39.092881589],[-75.608314903,39.093177736],[-75.608791207,39.093776072],[-75.609418302,39.094473744],[-75.609639075,39.095240303],[-75.610378685,39.095920508],[-75.610936139,39.096635414],[-75.61145893,39.097650721],[-75.611721274,39.098266852],[-75.612539553,39.098995479],[-75.612503089,39.099500291],[-75.612325586,39.100077932],[-75.612177302,39.100524761],[-75.612342013,39.100807747],[-75.612528501,39.101225782],[-75.612723654,39.101517618],[-75.612939873,39.101863408],[-75.613234041,39.102297727],[-75.613557636,39.102563058],[-75.613626668,39.103113436],[-75.613738533,39.103663596],[-75.613852145,39.104414022],[-75.614495006,39.104444011],[-75.614878081,39.104158272],[-75.615218174,39.103856073],[-75.615630045,39.1035792],[-75.616137239,39.103304862],[-75.616727254,39.103301741],[-75.61750536,39.103339418],[-75.61772174,39.103547246],[-75.617833568,39.104069075],[-75.617845973,39.105490009],[-75.617936102,39.106597077],[-75.618454084,39.10755559],[-75.618649503,39.108432233],[-75.618897464,39.109183213],[-75.619148365,39.110268526],[-75.619476805,39.111019067],[-75.620509591,39.112559955],[-75.621036458,39.114521474],[-75.621144842,39.114646275],[-75.621386253,39.114644988],[-75.621919778,39.114307792],[-75.622507669,39.114053893],[-75.623363051,39.113714969],[-75.624301845,39.113709945],[-75.624947809,39.113957245],[-75.625407121,39.114330929],[-75.626188495,39.114723778],[-75.62640253,39.114659937],[-75.626847754,39.113900351],[-75.627225335,39.113673354],[-75.627948986,39.113606767],[-75.628272905,39.113834887],[-75.628814748,39.114437983],[-75.629006959,39.114938471],[-75.629359376,39.115354508],[-75.630355376,39.115746173],[-75.63111147,39.116306296],[-75.632295814,39.116759616],[-75.633054168,39.117570485],[-75.632982857,39.118594822],[-75.633605999,39.119281038],[-75.634468703,39.119756979],[-75.636512664,39.120330948],[-75.637789975,39.121247888],[-75.63920049,39.12322618],[-75.639787862,39.124207621],[-75.640436342,39.124838257],[-75.641920889,39.125514351],[-75.642781998,39.125960214],[-75.64508608,39.127215865],[-75.645737084,39.12811348],[-75.647413232,39.128664315],[-75.648574228,39.129091786],[-75.649222383,39.129672296],[-75.649805959,39.13021979],[-75.650496982,39.130800056],[-75.651339859,39.131579745],[-75.651130813,39.132148345],[-75.650364495,39.132703369],[-75.649991384,39.134073965],[-75.651840087,39.135918955],[-75.651976752,39.136189849],[-75.652006281,39.136482239],[-75.651533141,39.137550627],[-75.651036428,39.13897439],[-75.650134897,39.140149652],[-75.649231228,39.141095048],[-75.648941249,39.141660882],[-75.648302423,39.14222865],[-75.64779776,39.142795678],[-75.64742592,39.143215675],[-75.646864714,39.143469559],[-75.645093671,39.143479375],[-75.643070776,39.143383192],[-75.64369837,39.144148704],[-75.644710692,39.145314539],[-75.645135229,39.145906919],[-75.64568729,39.146286829],[-75.646278297,39.146535861],[-75.646910011,39.146766643],[-75.647216969,39.14703527],[-75.647310351,39.147399697],[-75.647000939,39.147811417],[-75.646392613,39.148121167],[-75.646257615,39.148703125],[-75.646364634,39.149292753],[-75.646793943,39.149889602],[-75.646841708,39.150880549],[-75.64676905,39.151358535],[-75.646920903,39.152380442],[-75.647009874,39.153249509],[-75.647094872,39.153645521],[-75.647281556,39.154086025],[-75.64730935,39.154215523],[-75.647316686,39.154222625],[-75.647540287,39.154580922],[-75.647795346,39.154840192],[-75.648003223,39.155247998],[-75.648099245,39.155458099],[-75.648370036,39.155667851],[-75.64899012,39.155802694],[-75.649325076,39.156197869],[-75.649103413,39.15643335],[-75.648961307,39.156705781],[-75.648850545,39.15684207],[-75.648772077,39.157139118],[-75.64874111,39.157386576],[-75.648932832,39.157707825],[-75.649426076,39.157917138],[-75.649665135,39.158139319],[-75.650046795,39.158237516],[-75.650364894,39.158335845],[-75.650841883,39.158433842],[-75.651033458,39.15870561],[-75.650907241,39.158978003],[-75.65122589,39.15923714],[-75.651417214,39.159434674],[-75.651751869,39.159730886],[-75.652165396,39.159853752],[-75.652515161,39.159914895],[-75.652913424,39.160223348],[-75.653168484,39.160470237],[-75.653256823,39.160516443],[-75.653279876,39.160519492],[-75.653852468,39.160691512],[-75.654520323,39.16083859],[-75.655267367,39.16091128],[-75.655585115,39.160898262],[-75.656076975,39.160686964],[-75.656504846,39.160352082],[-75.656916874,39.160029608],[-75.657345835,39.160016359],[-75.657902338,39.160126536],[-75.658474815,39.160261426],[-75.658920177,39.160396572],[-75.659508596,39.160543791],[-75.659890273,39.160641957],[-75.660192687,39.160789769],[-75.660288741,39.16099986],[-75.66075125,39.161493703],[-75.661111431,39.161660918],[-75.661244459,39.161678219],[-75.661769457,39.161862667],[-75.662167306,39.162035016],[-75.662469678,39.162170453],[-75.662565879,39.16241765],[-75.662662378,39.162751441],[-75.662790834,39.163134645],[-75.662775846,39.163394451],[-75.663082275,39.163797481],[-75.663337166,39.163984425],[-75.664016067,39.16437207],[-75.66405051,39.164381377],[-75.664400351,39.164454853],[-75.664607049,39.164491521],[-75.664893727,39.164676461],[-75.664942177,39.164899027],[-75.664959071,39.165183505],[-75.66491318,39.165690782],[-75.664913876,39.165888701],[-75.664787625,39.166136379],[-75.664756756,39.16639622],[-75.664757379,39.166574346],[-75.66477334,39.166594103],[-75.664948789,39.166779286],[-75.665219407,39.166914782],[-75.665256674,39.166946663],[-75.665519638,39.166991109],[-75.66573582,39.167009348],[-75.666368553,39.167120146],[-75.666713048,39.167206638],[-75.66700965,39.167330628],[-75.667426399,39.167479274],[-75.667731187,39.167653079],[-75.667875756,39.167789847],[-75.668044636,39.1680138],[-75.668197614,39.168262707],[-75.668278521,39.168505541],[-75.668279302,39.168723627],[-75.668271913,39.168898104],[-75.668224193,39.16898544],[-75.668136893,39.16906355],[-75.668147507,39.169086385],[-75.668128634,39.169122727],[-75.668113514,39.169371999],[-75.668114204,39.169565157],[-75.668130715,39.169708435],[-75.668275554,39.169919976],[-75.668356155,39.170075576],[-75.668484561,39.170168759],[-75.668588896,39.170243303],[-75.668757482,39.17025524],[-75.668845108,39.170261444],[-75.669221574,39.170329168],[-75.669718218,39.170427785],[-75.670102504,39.170445646],[-75.670319162,39.17059472],[-75.670620837,39.170684691],[-75.670673574,39.170687147],[-75.671133372,39.170768335],[-75.671296408,39.170779513],[-75.671640703,39.170803684],[-75.671913132,39.170877864],[-75.672361801,39.170989034],[-75.67269852,39.171131603],[-75.673051222,39.17126791],[-75.673340096,39.171460434],[-75.673645232,39.171721463],[-75.673774556,39.172063877],[-75.673783305,39.172269481],[-75.673928185,39.172487241],[-75.674200968,39.172654882],[-75.674545502,39.172741351],[-75.674754844,39.172830544],[-75.675139446,39.172929385],[-75.675652692,39.173183019],[-75.675952195,39.173359593],[-75.676095478,39.173625124],[-75.676011353,39.17396871],[-75.676055392,39.174334161],[-75.675843425,39.174744487],[-75.67551769,39.175177224],[-75.675234646,39.175609866],[-75.675235741,39.175908949],[-75.675265172,39.176174742],[-75.675579495,39.176506358],[-75.675623449,39.17684965],[-75.675553344,39.177137817],[-75.67555448,39.177447975],[-75.675569847,39.1777581],[-75.675848174,39.17793501],[-75.675969286,39.178011992],[-75.676325124,39.178022279],[-75.676580809,39.177888783],[-75.676636506,39.177863517],[-75.676850764,39.177766329],[-75.677149557,39.177743508],[-75.677391539,39.177754045],[-75.677790648,39.177919305],[-75.678018857,39.178051724],[-75.678346757,39.178206064],[-75.678503931,39.178371877],[-75.678717707,39.178448937],[-75.678974335,39.178570204],[-75.679202874,39.178791238],[-75.679390837,39.178987982],[-75.679462123,39.179010757],[-75.679488463,39.179045369],[-75.680044883,39.179409663],[-75.680287986,39.17971927],[-75.680488107,39.179951443],[-75.680631388,39.180205896],[-75.680746121,39.180438257],[-75.681245004,39.180636515],[-75.681700191,39.180569014],[-75.681751573,39.180570009],[-75.682212602,39.180578926],[-75.682539996,39.180589255],[-75.683294401,39.180609687],[-75.683679144,39.180730659],[-75.684220561,39.180884492],[-75.684420696,39.18111666],[-75.684935646,39.181791184],[-75.685093556,39.182145294],[-75.685209734,39.182754268],[-75.685040162,39.183075899],[-75.684941706,39.183386289],[-75.684658225,39.183697104],[-75.684332459,39.18411879],[-75.68424832,39.184451297],[-75.684391411,39.18465036],[-75.684804976,39.184859875],[-75.685318341,39.185113472],[-75.685375532,39.185179799],[-75.685831969,39.185433524],[-75.686075164,39.1857542],[-75.686099782,39.185940164],[-75.688927388,39.187176533],[-75.688968013,39.187198444],[-75.688998769,39.187231749],[-75.689227323,39.187441679],[-75.689342053,39.187662955],[-75.689342689,39.187828377],[-75.689328545,39.187851298],[-75.688940223,39.188390721],[-75.688922525,39.188529577],[-75.688694629,39.188721661],[-75.688269115,39.189069877],[-75.687812733,39.189394426],[-75.687447088,39.189599239],[-75.68703479,39.189732796],[-75.686437407,39.189736318],[-75.686190581,39.189558963],[-75.686188494,39.189344399],[-75.686230623,39.188950766],[-75.686152995,39.188843946],[-75.685923235,39.188845298],[-75.685601913,39.188882945],[-75.685191361,39.189195304],[-75.684794375,39.189328764],[-75.684043591,39.189309337],[-75.68383007,39.18940595],[-75.683351171,39.189341447],[-75.683159626,39.189287801],[-75.682877308,39.189203394],[-75.682393914,39.189120163],[-75.682042811,39.189200459],[-75.681662144,39.189343518],[-75.681362216,39.189517398],[-75.681203699,39.189760866],[-75.681145575,39.189988095],[-75.681188278,39.190246032],[-75.681452532,39.190541797],[-75.681807359,39.190844858],[-75.681950222,39.191063084],[-75.681921954,39.191258852],[-75.681955213,39.19157943],[-75.681968743,39.191939258],[-75.682122115,39.19220437],[-75.682144728,39.192462426],[-75.682319569,39.192868245],[-75.682311785,39.193103009],[-75.682182829,39.193283712],[-75.682003445,39.193449065],[-75.681552989,39.193655118],[-75.681403695,39.193812471],[-75.681254015,39.1939307],[-75.681063366,39.193970939],[-75.680792066,39.19398817],[-75.680470491,39.194005696],[-75.680260262,39.19410081],[-75.680110816,39.194242515],[-75.680042772,39.194485453],[-75.679921701,39.194823439],[-75.68018489,39.195219145],[-75.680187404,39.195228765],[-75.68019088,39.195242096],[-75.680247035,39.195457327],[-75.680248177,39.195762379],[-75.680298284,39.196057785],[-75.680287386,39.196420062],[-75.68032521,39.196705964],[-75.680314636,39.197154032],[-75.680230342,39.197545075],[-75.680392237,39.198250143],[-75.680601797,39.198592857],[-75.680762498,39.198973811],[-75.680880835,39.199149619],[-75.681550267,39.19955367],[-75.682152892,39.199784425],[-75.682835889,39.199854561],[-75.682958835,39.199845837],[-75.683252701,39.199797502],[-75.683558594,39.199691942],[-75.683770914,39.199588726],[-75.683790901,39.199567482],[-75.683912743,39.199386074],[-75.683985782,39.199261983],[-75.684083359,39.199147363],[-75.684217581,39.199004057],[-75.684327481,39.198908477],[-75.684474245,39.198841408],[-75.684491318,39.198846583],[-75.684621125,39.198802938],[-75.684915264,39.198830862],[-75.685307355,39.198839492],[-75.685687552,39.198943478],[-75.685878333,39.199175401],[-75.686164005,39.199389229],[-75.686459052,39.199653092],[-75.68667084,39.199766994],[-75.68689189,39.199902321],[-75.687195582,39.200023161],[-75.6873708,39.200187199],[-75.687426806,39.200415861],[-75.687455151,39.200615981],[-75.687566045,39.200780169],[-75.687787294,39.200965545],[-75.68797176,39.201143863],[-75.688514707,39.201349937],[-75.688689573,39.201421026],[-75.688818298,39.201442177],[-75.68905735,39.201477365],[-75.68928738,39.201555471],[-75.689535986,39.201683586],[-75.689858869,39.20201171],[-75.690024935,39.202182918],[-75.690227877,39.202382635],[-75.690504358,39.202589319],[-75.690771946,39.202874682],[-75.691048429,39.203081374],[-75.691278466,39.203159477],[-75.691508952,39.203351976],[-75.691656568,39.20350177],[-75.691831748,39.203651499],[-75.691988491,39.203786969],[-75.692025864,39.203944176],[-75.692026566,39.204122913],[-75.691925957,39.204244701],[-75.691760991,39.204359488],[-75.691642225,39.204538511],[-75.69162457,39.204724436],[-75.691515019,39.204910589],[-75.691386876,39.205039592],[-75.691047616,39.205233431],[-75.6907262,39.205291382],[-75.690450518,39.205292028],[-75.690316003,39.205251441],[-75.690238913,39.205228182],[-75.690091742,39.20519278],[-75.689926254,39.205171717],[-75.689816337,39.205264919],[-75.689761561,39.205357997],[-75.689761866,39.205436643],[-75.689799179,39.205579549],[-75.689854806,39.205708107],[-75.689928776,39.20582233],[-75.690122053,39.205900522],[-75.690278446,39.205943054],[-75.690499271,39.206014035],[-75.690602462,39.206042431],[-75.690628062,39.20604948],[-75.690766212,39.2061278],[-75.690849251,39.206213403],[-75.690831455,39.206363591],[-75.690758666,39.206549656],[-75.690755137,39.206564404],[-75.690848268,39.206746053],[-75.69109406,39.206936135],[-75.691376437,39.20707846],[-75.691463171,39.207326115],[-75.691464363,39.207631167],[-75.691391327,39.207755262],[-75.691183245,39.207812956],[-75.690962621,39.207794408],[-75.690915517,39.207774396],[-75.690717152,39.207690124],[-75.69020233,39.207643666],[-75.689969605,39.207663278],[-75.689638694,39.207853271],[-75.689602823,39.207873865],[-75.689468959,39.208112503],[-75.689396546,39.208398659],[-75.68934816,39.20856083],[-75.689276372,39.209009048],[-75.689424442,39.209275624],[-75.689560522,39.20960895],[-75.689463495,39.209866566],[-75.689231487,39.210076836],[-75.689073036,39.210296466],[-75.689147704,39.210591804],[-75.689319695,39.2107058],[-75.689590272,39.210962555],[-75.689737902,39.211114736],[-75.689869855,39.211259236],[-75.690240904,39.21126767],[-75.690829278,39.211317135],[-75.691090787,39.211341935],[-75.691500238,39.211595186],[-75.691648273,39.211849044],[-75.691764174,39.212242796],[-75.691862808,39.212395094],[-75.691913007,39.212700028],[-75.691897663,39.212954275],[-75.691588567,39.213298189],[-75.691344676,39.213603811],[-75.691133212,39.213845812],[-75.690807075,39.214011818],[-75.690512972,39.214012505],[-75.690022469,39.213924689],[-75.689867055,39.213868996],[-75.689564334,39.213760526],[-75.68936852,39.213824533],[-75.689091449,39.214003131],[-75.688585772,39.214220392],[-75.688276412,39.214500747],[-75.688293971,39.214818464],[-75.688326923,39.215043019],[-75.688164803,39.215950678],[-75.688058516,39.216595583],[-75.687613946,39.217183917],[-75.687583991,39.217972546],[-75.687821918,39.218203901],[-75.688226328,39.218466547],[-75.688946863,39.218871603],[-75.689486765,39.219048283],[-75.689994002,39.219225046],[-75.690289353,39.219542112],[-75.690159517,39.219771207],[-75.690144318,39.220063585],[-75.690227346,39.220406573],[-75.689917918,39.220674218],[-75.689494593,39.221069239],[-75.689283394,39.221387499],[-75.689120973,39.221642084],[-75.689107165,39.221919849],[-75.689776319,39.222367342],[-75.68987555,39.22239024],[-75.690350215,39.222592498],[-75.690629939,39.223087545],[-75.69086173,39.223862344],[-75.691027416,39.224446634],[-75.691062577,39.225082077],[-75.691113973,39.225692062],[-75.691509446,39.226530027],[-75.691527526,39.226974853],[-75.691643156,39.227292341],[-75.69182605,39.228092665],[-75.691761973,39.228423295],[-75.692106644,39.228803792],[-75.692320683,39.229210024],[-75.692322523,39.229680307],[-75.692471745,39.23022651],[-75.69250583,39.230582319],[-75.692540406,39.231065236],[-75.692713279,39.231265583],[-75.69274476,39.231282574],[-75.692748629,39.23130534],[-75.692934173,39.23145833],[-75.693049778,39.231763104],[-75.693083753,39.232093501],[-75.69328137,39.232474345],[-75.693479093,39.232880607],[-75.693496126,39.233058519],[-75.693519748,39.233119087],[-75.693881866,39.233465576],[-75.694226258,39.233765045],[-75.694442139,39.234114863],[-75.694743309,39.234331014],[-75.694958351,39.23446396],[-75.694965845,39.234467618],[-75.695022767,39.234480491],[-75.695430671,39.234562932],[-75.69596747,39.234695102],[-75.696439524,39.23472733],[-75.696975673,39.234692676],[-75.697319424,39.234825315],[-75.69755651,39.235108344],[-75.697728858,39.235291437],[-75.697772895,39.235574933],[-75.69781692,39.235858429],[-75.697817723,39.236058621],[-75.697797402,39.236342265],[-75.697819983,39.236625815],[-75.697885877,39.237009356],[-75.697930106,39.237342895],[-75.697932436,39.237926786],[-75.69793351,39.238193695],[-75.697889342,39.238797434],[-75.6978934,39.238894457],[-75.697916183,39.239228058],[-75.697702597,39.239462129],[-75.697531703,39.239646048],[-75.697296125,39.239746709],[-75.696931825,39.239847681],[-75.696674599,39.239898346],[-75.696408096,39.24000277],[-75.696344051,39.240066008],[-75.695981497,39.240236349],[-75.695582289,39.240322043],[-75.694843413,39.240348802],[-75.694702862,39.240386864],[-75.694509856,39.240404004],[-75.694059411,39.240421762],[-75.693802042,39.240439055],[-75.693608963,39.240439517],[-75.693372786,39.240390028],[-75.693356797,39.24038262],[-75.693322455,39.240389117],[-75.691856737,39.240253659],[-75.690391037,39.240118182],[-75.689381464,39.240561189],[-75.689269874,39.240578453],[-75.689048985,39.240521764],[-75.68880367,39.24048659],[-75.688619789,39.240487022],[-75.68850767,39.240677412],[-75.688437104,39.240797264],[-75.688207935,39.240976542],[-75.687994285,39.241203444],[-75.687872199,39.241334807],[-75.687811678,39.241537523],[-75.687689689,39.241692712],[-75.687444327,39.241645617],[-75.687106153,39.241372332],[-75.68672274,39.241289809],[-75.686384847,39.241088025],[-75.686184685,39.240838245],[-75.685831191,39.240564994],[-75.685616075,39.240410579],[-75.685155867,39.240280564],[-75.684680019,39.240067176],[-75.684403389,39.239853321],[-75.684397288,39.23984215],[-75.684209159,39.23975218],[-75.68399957,39.239640053],[-75.683794347,39.239513158],[-75.683793923,39.239507589],[-75.683733376,39.239451423],[-75.683612281,39.239339096],[-75.683407033,39.239311417],[-75.683225783,39.239246145],[-75.68302018,39.239124622],[-75.682850605,39.238956097],[-75.682620587,39.238759558],[-75.682330375,39.238600702],[-75.68216102,39.238488477],[-75.681919181,39.238357655],[-75.681749826,39.238245429],[-75.681496353,39.238227244],[-75.681486908,39.238237317],[-75.681448089,39.238227354],[-75.681327378,39.238218238],[-75.681122245,39.23821871],[-75.680917104,39.238219171],[-75.680736105,39.238219583],[-75.680434612,39.238267185],[-75.680181448,39.238333445],[-75.679988838,39.238455871],[-75.679784401,39.238644014],[-75.679591893,39.238794587],[-75.679447753,39.238973213],[-75.679447842,39.238996673],[-75.679399655,39.239020236],[-75.67940018,39.239160997],[-75.679557712,39.239337371],[-75.679558298,39.239346871],[-75.679649363,39.239391435],[-75.679731017,39.239446679],[-75.67980284,39.239592988],[-75.679879899,39.239778884],[-75.67992632,39.239941094],[-75.679926663,39.240032144],[-75.679830263,39.240119455],[-75.67964218,39.240195097],[-75.679612308,39.240232503],[-75.679591513,39.240258552],[-75.679556241,39.240357606],[-75.679485311,39.240448818],[-75.67942544,39.240538996],[-75.679348379,39.240587687],[-75.679180861,39.240718705],[-75.679064041,39.24079023],[-75.678967573,39.240861706],[-75.678866102,39.240952989],[-75.678825708,39.241044126],[-75.67883616,39.241115367],[-75.678902635,39.24119439],[-75.678989414,39.241257541],[-75.67915766,39.241324462],[-75.679279979,39.241359818],[-75.679443004,39.241391117],[-75.679626501,39.241450083],[-75.679764088,39.241478114],[-75.679787481,39.241477847],[-75.679810583,39.241477794],[-75.679839109,39.241477734],[-75.67987444,39.241478706],[-75.679937686,39.241486153],[-75.679992634,39.241478542],[-75.680001509,39.241478071],[-75.680032072,39.241481523],[-75.680085067,39.241483515],[-75.68012859,39.241495041],[-75.680170737,39.241515495],[-75.680362715,39.241626788],[-75.680532151,39.241757783],[-75.6806053,39.241954675],[-75.680859765,39.242235614],[-75.681089725,39.242413389],[-75.681235276,39.242610122],[-75.68135672,39.24281629],[-75.681394233,39.243163408],[-75.68147934,39.243332124],[-75.681515754,39.243388344],[-75.681540948,39.243669803],[-75.681517809,39.243932603],[-75.68147024,39.24412039],[-75.681435158,39.244420754],[-75.68131494,39.244543023],[-75.681202715,39.244577257],[-75.681182438,39.244609012],[-75.681110251,39.244665482],[-75.681062085,39.244693738],[-75.680989776,39.244722054],[-75.680833036,39.244759948],[-75.680772731,39.244769466],[-75.680688461,39.244825957],[-75.680604098,39.244854302],[-75.680531721,39.24486385],[-75.680457541,39.244868831],[-75.680423185,39.244882866],[-75.68024248,39.244967732],[-75.680073873,39.245061954],[-75.679808595,39.245118853],[-75.679651921,39.245175511],[-75.67942297,39.245269866],[-75.679242273,39.245354728],[-75.678904821,39.245477482],[-75.678690224,39.245605377],[-75.678556104,39.245645953],[-75.678286772,39.245868304],[-75.678030106,39.246081577],[-75.677773394,39.246282342],[-75.677596994,39.246445393],[-75.677212194,39.246821613],[-75.676987939,39.247097373],[-75.676651461,39.247485991],[-75.676459469,39.24778671],[-75.676316038,39.248162385],[-75.676156274,39.248475538],[-75.676076919,39.248775994],[-75.675933342,39.249114135],[-75.675934261,39.249364371],[-75.676240376,39.249463786],[-75.676691124,39.249512823],[-75.677093929,39.249649562],[-75.677673551,39.24973584],[-75.678221469,39.249947313],[-75.678399409,39.250197155],[-75.678480889,39.250472233],[-75.678627488,39.250947354],[-75.678757384,39.251259856],[-75.678870957,39.251509834],[-75.678901955,39.251544961],[-75.679489929,39.251739303],[-75.679644738,39.251870932],[-75.67974157,39.251945789],[-75.679951379,39.252107971],[-75.680209793,39.25235762],[-75.680387702,39.252594941],[-75.680614356,39.252957278],[-75.680631437,39.253219983],[-75.680744294,39.253437524],[-75.680742164,39.253484],[-75.68099683,39.25401415],[-75.681080255,39.254071955],[-75.681230802,39.254269616],[-75.681392346,39.254431906],[-75.681473284,39.254556838],[-75.681554734,39.254819403],[-75.681539676,39.2550947],[-75.681460252,39.255370143],[-75.681316207,39.255583167],[-75.681171886,39.255721131],[-75.681011333,39.255821583],[-75.680980091,39.256071896],[-75.680980836,39.256272081],[-75.68117443,39.256396764],[-75.681400203,39.256521366],[-75.681577707,39.256646078],[-75.682012502,39.256720165],[-75.682286328,39.256782095],[-75.682592342,39.25684396],[-75.682635929,39.256854445],[-75.68263833,39.256859656],[-75.68283398,39.256905963],[-75.683108081,39.257042966],[-75.683479517,39.257379939],[-75.683608787,39.257517274],[-75.683738296,39.257717162],[-75.68377143,39.257967328],[-75.683771988,39.258114653],[-75.683827422,39.258143923],[-75.684045875,39.258191904],[-75.684448263,39.2582035],[-75.684705766,39.258202902],[-75.685221388,39.258364366],[-75.685479267,39.258463869],[-75.685672682,39.258538495],[-75.685946797,39.258675491],[-75.686060081,39.25883788],[-75.686173307,39.258987758],[-75.686399385,39.259187426],[-75.686673803,39.259399494],[-75.686851558,39.259586757],[-75.686932791,39.25978676],[-75.686932887,39.259811785],[-75.686933323,39.259924385],[-75.686937318,39.259939687],[-75.686949655,39.259986915],[-75.687014943,39.26022448],[-75.687047618,39.260349521],[-75.687048246,39.260512181],[-75.687081297,39.260737313],[-75.687275195,39.260937054],[-75.687581085,39.260961362],[-75.68782211,39.260860713],[-75.687880865,39.260793842],[-75.687933956,39.260647749],[-75.68810708,39.260438381],[-75.688126263,39.260434597],[-75.688367385,39.260358963],[-75.68862504,39.2603959],[-75.688715948,39.26040275],[-75.688737849,39.260433167],[-75.688759173,39.260459935],[-75.689028114,39.260582635],[-75.689512012,39.260856764],[-75.689638244,39.260927187],[-75.689802097,39.260956181],[-75.689963756,39.260997647],[-75.69060245,39.260936473],[-75.691731642,39.260731531],[-75.692434083,39.260838641],[-75.692457269,39.260849824],[-75.692586564,39.260987149],[-75.692683915,39.26118711],[-75.692763704,39.261371316],[-75.692750766,39.261562964],[-75.692775969,39.26167835],[-75.69277751,39.262073784],[-75.693201353,39.262627499],[-75.693468276,39.262843251],[-75.694896044,39.262866278],[-75.694940919,39.262890479],[-75.694997089,39.262887612],[-75.695505766,39.262886394],[-75.696815133,39.263222197],[-75.697217792,39.263460033],[-75.697430257,39.263492535],[-75.697988554,39.263574604],[-75.698353772,39.263673811],[-75.698783504,39.263806232],[-75.698955586,39.263905905],[-75.699278423,39.264138684],[-75.699279494,39.264405594],[-75.699228218,39.264580794],[-75.699284503,39.264762039],[-75.699388943,39.264939171],[-75.699604745,39.265238927],[-75.700013501,39.265488167],[-75.700078556,39.265654836],[-75.70018646,39.265804716],[-75.700294638,39.266021325],[-75.700295449,39.266221507],[-75.700403892,39.266504851],[-75.700254874,39.266805497],[-75.700221349,39.266855093],[-75.700221881,39.266986697],[-75.700207516,39.267225054],[-75.699993817,39.267451978],[-75.69968857,39.26778637],[-75.699612642,39.267965296],[-75.699706678,39.268477454],[-75.699861124,39.268763063],[-75.700229947,39.268988564],[-75.700629439,39.269213994],[-75.700837642,39.269417673],[-75.701082921,39.270215749],[-75.701093423,39.270225729],[-75.701171467,39.270571101],[-75.701187518,39.270749805],[-75.701218756,39.270892715],[-75.701327471,39.271238019],[-75.701620136,39.271582868],[-75.702035653,39.271975078],[-75.702297422,39.27226042],[-75.702375138,39.272522378],[-75.702483714,39.272831934],[-75.702441082,39.27290353],[-75.702438117,39.27292737],[-75.702437226,39.272932274],[-75.702453539,39.272951164],[-75.702454316,39.273141818],[-75.702455081,39.273332475],[-75.702456105,39.273582707],[-75.702456973,39.273797192],[-75.702454325,39.273831858],[-75.702457218,39.273856769],[-75.702597379,39.274392647],[-75.702567969,39.274702533],[-75.702323697,39.274953368],[-75.702293995,39.27519176],[-75.702341394,39.275537211],[-75.70243483,39.275894456],[-75.702466951,39.27625186],[-75.702498432,39.276454356],[-75.702513094,39.276718407],[-75.702561111,39.276787852],[-75.702576929,39.27690697],[-75.702746055,39.277025719],[-75.702838627,39.277168481],[-75.70296674,39.277333253],[-75.703054187,39.27739436],[-75.70331546,39.277548618],[-75.703638391,39.277786141],[-75.703900344,39.278107225],[-75.704116057,39.278368848],[-75.704332112,39.278713876],[-75.704409946,39.278999669],[-75.704442169,39.2793809],[-75.704413594,39.279893362],[-75.704430245,39.280215053],[-75.704431322,39.280477203],[-75.704540497,39.280929736],[-75.705063406,39.281321669],[-75.70538602,39.281475782],[-75.70575429,39.281546365],[-75.706030909,39.281700583],[-75.706276423,39.281747639],[-75.706568484,39.281925648],[-75.706799406,39.282151481],[-75.706922701,39.282306079],[-75.706984871,39.282508494],[-75.707125775,39.282557845],[-75.70749235,39.282555617],[-75.707813655,39.282725117],[-75.707811444,39.282733821],[-75.707628179,39.282909047],[-75.70738384,39.283147974],[-75.706975696,39.283323763],[-75.706546377,39.283324829],[-75.70615814,39.283373459],[-75.705995176,39.283516858],[-75.705995963,39.283707513],[-75.706222222,39.284040597],[-75.706263829,39.284215261],[-75.706367022,39.284453321],[-75.706388195,39.284628044],[-75.706429674,39.284770923],[-75.706450771,39.284929755],[-75.70645188,39.28519985],[-75.706452475,39.285342838],[-75.706371543,39.285549586],[-75.706228959,39.285677044],[-75.706188718,39.285836017],[-75.706046523,39.286058807],[-75.706047245,39.286233571],[-75.706027917,39.286503716],[-75.706151689,39.286773502],[-75.706274883,39.286900298],[-75.70639827,39.28707476],[-75.706276585,39.287313384],[-75.706011583,39.2875047],[-75.705930528,39.287679665],[-75.706074881,39.287981184],[-75.706075345,39.288092398],[-75.70603504,39.288235489],[-75.705974162,39.288346853],[-75.705974349,39.288391503],[-75.705780082,39.288377963],[-75.7052204,39.288755301],[-75.705122736,39.289458733],[-75.705141261,39.289634503],[-75.704897345,39.290001873],[-75.7045103,39.290352359],[-75.703999492,39.290433066],[-75.703488339,39.290434329],[-75.702916571,39.290610501],[-75.702570222,39.290913224],[-75.702448383,39.291120069],[-75.70249011,39.291266978],[-75.702466337,39.291281622],[-75.702531591,39.291469397],[-75.702676268,39.291850352],[-75.702841133,39.292167707],[-75.702862799,39.292469518],[-75.702864355,39.292850828],[-75.702845396,39.293216298],[-75.702723884,39.293502583],[-75.702664223,39.293915814],[-75.702550404,39.294103066],[-75.702556606,39.294186878],[-75.702553694,39.294253886],[-75.702441631,39.294488326],[-75.702340172,39.294679229],[-75.70219782,39.294870232],[-75.702192536,39.294883714],[-75.702116864,39.295076977],[-75.701954387,39.295347468],[-75.701914269,39.295538223],[-75.70195191,39.295653678],[-75.702017337,39.295744513],[-75.702058687,39.295855629],[-75.702140868,39.295950753],[-75.702304964,39.296077453],[-75.702489563,39.296219996],[-75.702592323,39.296346846],[-75.702663274,39.296417267],[-75.703138364,39.29658924],[-75.703463145,39.29672896],[-75.70371348,39.296751219],[-75.704128426,39.296964682],[-75.704343814,39.297130972],[-75.704299065,39.297440893],[-75.704146634,39.297667674],[-75.703656718,39.297871453],[-75.703366057,39.29805091],[-75.703059387,39.298063583],[-75.702660997,39.298147971],[-75.702308793,39.298279915],[-75.702125054,39.298351856],[-75.701956453,39.298376103],[-75.70145095,39.298520334],[-75.701190714,39.29864013],[-75.7009612,39.298771767],[-75.700854426,39.298915017],[-75.700732896,39.299201293],[-75.700779866,39.299439499],[-75.700719338,39.299642222],[-75.700750733,39.299820879],[-75.700705833,39.300095061],[-75.700666408,39.300132733],[-75.7007218,39.300249925],[-75.700737947,39.300452454],[-75.700738967,39.300702693],[-75.700739639,39.300869512],[-75.700602954,39.301203495],[-75.700511853,39.301430114],[-75.700512905,39.301692265],[-75.700513723,39.301894836],[-75.700514451,39.302073572],[-75.700668493,39.302240016],[-75.700899173,39.302394359],[-75.701099128,39.302536868],[-75.701452749,39.302750487],[-75.701729443,39.302904714],[-75.701898494,39.302987717],[-75.702082774,39.303046847],[-75.70232836,39.303093909],[-75.702497165,39.303117326],[-75.702660986,39.303185335],[-75.703658038,39.303249555],[-75.704392731,39.303542468],[-75.705234888,39.304105047],[-75.706596671,39.304367112],[-75.706879501,39.304775384],[-75.706874499,39.304799136],[-75.706921874,39.304953343],[-75.707014885,39.305191432],[-75.707138623,39.30544136],[-75.707247615,39.305834311],[-75.707248992,39.306167954],[-75.70723459,39.306394392],[-75.707020796,39.306621329],[-75.706607957,39.306932175],[-75.70637877,39.307147235],[-75.706210593,39.307278722],[-75.706058193,39.307517424],[-75.706028641,39.307791563],[-75.705952888,39.308018151],[-75.705800681,39.308304518],[-75.705602022,39.30848375],[-75.70543408,39.30867482],[-75.705297642,39.308817091],[-75.705288021,39.308849285],[-75.705250809,39.308865925],[-75.704867838,39.308986033],[-75.704423554,39.309118205],[-75.704178581,39.309226057],[-75.703949731,39.309524525],[-75.703859061,39.309858388],[-75.703814597,39.31023981],[-75.703724367,39.310680925],[-75.703864125,39.311097637],[-75.703941846,39.311347675],[-75.704050822,39.311740637],[-75.704080438,39.31183702],[-75.704204904,39.311909058],[-75.704369631,39.312178752],[-75.704493896,39.312559752],[-75.704720767,39.313019941],[-75.704742128,39.313242321],[-75.704742912,39.313432966],[-75.704723175,39.313607789],[-75.704519947,39.31392605],[-75.704438987,39.314132787],[-75.70437536,39.314182534],[-75.704940548,39.316456051],[-75.705477097,39.317831443],[-75.705434697,39.318031427],[-75.70537568,39.318102436],[-75.70537627,39.318245433],[-75.705386105,39.318260586],[-75.705458612,39.31837233],[-75.705582312,39.318610338],[-75.705582894,39.318753328],[-75.705606414,39.318787319],[-75.705644517,39.318816726],[-75.705931856,39.319054333],[-75.706219134,39.319276048],[-75.706384078,39.319593398],[-75.706364733,39.319863541],[-75.70585476,39.320198451],[-75.705548788,39.32040575],[-75.705365616,39.320628638],[-75.705059772,39.320867712],[-75.704794383,39.320995476],[-75.70471595,39.321026179],[-75.704707729,39.32103491],[-75.703944456,39.32141798],[-75.703148637,39.321990467],[-75.701900111,39.322646773],[-75.700547158,39.323303695],[-75.700047941,39.323667127],[-75.699875908,39.324303418],[-75.700569065,39.324736268],[-75.701503144,39.324789212],[-75.702384666,39.325784087],[-75.703130192,39.327135699],[-75.703352369,39.328431899],[-75.703996239,39.33005444],[-75.70442873,39.331457495],[-75.703810129,39.332357803],[-75.703227087,39.333334483],[-75.702997734,39.334800108],[-75.702973212,39.335827477],[-75.70322157,39.33625849],[-75.703646488,39.336904694],[-75.703757833,39.337557295],[-75.704327436,39.338743262],[-75.70577024,39.340036568],[-75.706545309,39.340842827],[-75.707458373,39.341486053],[-75.708402803,39.341750628],[-75.710114713,39.342064581],[-75.712707657,39.343323744],[-75.714286705,39.344260185],[-75.716283627,39.345167003],[-75.717792273,39.346054271],[-75.719788182,39.346852905],[-75.720421735,39.347416658],[-75.721267005,39.34825392],[-75.721903652,39.349115],[-75.722123191,39.350113823],[-75.722655457,39.350980048],[-75.722662975,39.351709866],[-75.722107621,39.351983634],[-75.721596057,39.353095119],[-75.721984737,39.353610822],[-75.722586895,39.35449914],[-75.72381324,39.35503216],[-75.725104769,39.355132248],[-75.725735085,39.355371607],[-75.726089224,39.355910038],[-75.725432798,39.356513339],[-75.724810006,39.357003796],[-75.724673806,39.357301997],[-75.724679671,39.357869632],[-75.725140027,39.358542564],[-75.72535355,39.358951219],[-75.725989496,39.359731179],[-75.726521748,39.360619914],[-75.727370705,39.361754457],[-75.728181927,39.36264144],[-75.729685711,39.363010467],[-75.730906623,39.363002805],[-75.731130363,39.362960852],[-75.730173695,39.363890449],[-75.73022881,39.36500292],[-75.73041663,39.366353338],[-75.73038643,39.367633039],[-75.729747238,39.368853487],[-75.72975249,39.369358049],[-75.729890462,39.370100562],[-75.729813952,39.371114739],[-75.729170143,39.371929732],[-75.729137137,39.372907593],[-75.729624037,39.373747035],[-75.730804327,39.374347846],[-75.73189581,39.374746466],[-75.733555676,39.375443348],[-75.735295954,39.375535985],[-75.736552347,39.375086519],[-75.738813575,39.375072184],[-75.741207559,39.37529574],[-75.741813809,39.37591361],[-75.742394577,39.37682899],[-75.742478726,39.377580841],[-75.741808128,39.378598813],[-75.741385625,39.379781896],[-75.741045549,39.380527438],[-75.740407118,39.381847054],[-75.740024198,39.382660445],[-75.739607372,39.384352586],[-75.739584468,39.386308036],[-75.739593743,39.38718651],[-75.740520214,39.388428588],[-75.742032806,39.391626727],[-75.742843053,39.394185072],[-75.742998037,39.396513322],[-75.742010405,39.397700012],[-75.741804832,39.398850175],[-75.742339569,39.400027151],[-75.742524479,39.401071199],[-75.741454,39.402699932],[-75.740774665,39.40425408],[-75.740838571,39.406177433],[-75.740987074,39.407897506],[-75.742092033,39.409512367],[-75.742108843,39.411098122],[-75.741164191,39.412284528],[-75.741043917,39.413267448],[-75.74101357,39.414515604],[-75.74115889,39.415897799],[-75.741560205,39.41680531],[-75.742178248,39.417643856],[-75.743755037,39.418615937],[-75.74493333,39.418946295],[-75.746504759,39.419409274],[-75.748209394,39.420105651],[-75.749390965,39.420737794],[-75.750624081,39.422112965],[-75.751244117,39.423122649],[-75.75260986,39.42466814],[-75.754272577,39.425499855],[-75.754434132,39.425498809],[-75.754422854,39.425530418],[-75.754211828,39.426094945],[-75.75405015,39.427028585],[-75.753044376,39.42810285],[-75.751769667,39.42908874],[-75.75170156,39.429440592],[-75.752710543,39.430145899],[-75.753465436,39.43129436],[-75.7534083,39.431821846],[-75.752814154,39.432587085],[-75.752292901,39.433446457],[-75.751750071,39.433954557],[-75.751034763,39.434328609],[-75.750476418,39.435084594],[-75.749995882,39.43554723],[-75.747975052,39.436830728],[-75.745929043,39.438177426],[-75.743249956,39.439212766],[-75.740286909,39.440430065],[-75.738293428,39.441375324],[-75.736927579,39.44209582],[-75.736650788,39.44298511],[-75.737293096,39.44417944],[-75.737365551,39.445643189],[-75.737219058,39.448040916],[-75.736725601,39.450084926],[-75.735544506,39.452088231],[-75.734929659,39.453511273],[-75.734537923,39.454356231],[-75.734664497,39.455513283],[-75.735255098,39.457239568],[-75.736710344,39.459491994],[-75.738286776,39.462410407],[-75.738941978,39.464803038],[-75.738623682,39.467201851],[-75.737619842,39.469740168],[-75.736557423,39.472139187],[-75.735879916,39.47307606],[-75.73365134,39.473491108],[-75.73268518,39.474209028],[-75.731442334,39.475811708],[-75.729910401,39.477154886],[-75.728781522,39.478756821],[-75.72856885,39.480312459],[-75.72772937,39.482182883],[-75.727745993,39.483777632],[-75.728783769,39.484437908],[-75.728809617,39.48444225],[-75.728132702,39.485388086],[-75.72784154,39.486110746],[-75.727580839,39.486549385],[-75.727455441,39.487243974],[-75.727367939,39.488402367],[-75.727414147,39.489663542],[-75.727458199,39.49071749],[-75.728129492,39.491456651],[-75.728634061,39.492097738],[-75.729140386,39.492941545],[-75.729180183,39.493585542],[-75.729121294,39.494279717],[-75.728664912,39.495052973],[-75.728074705,39.495750474],[-75.727549488,39.496267358],[-75.726888288,39.496501259],[-75.725765077,39.496972315],[-75.724408279,39.497314163],[-75.7225184,39.497456575],[-75.720627765,39.497490835],[-75.719434549,39.497628876],[-75.718240354,39.497636259],[-75.717211878,39.497642606],[-75.715952385,39.497803547],[-75.715165082,39.498682407],[-75.714875938,39.49958523],[-75.713197481,39.50093359],[-75.712049126,39.502197586],[-75.711628745,39.503281412],[-75.7111552,39.505676582],[-75.710421056,39.508505845],[-75.710431514,39.509532971],[-75.710444868,39.510843906],[-75.710988138,39.512075014],[-75.711266449,39.513307741],[-75.711614044,39.514846398],[-75.711923522,39.515925752],[-75.712730246,39.516925472],[-75.713133365,39.517382531],[-75.713472134,39.51805173],[-75.714117481,39.51951196],[-75.714921301,39.519759311],[-75.716107297,39.520085395],[-75.716869045,39.520553748],[-75.717135183,39.521119762],[-75.717400213,39.5216137],[-75.717853491,39.521957803],[-75.718777336,39.522100765],[-75.720223836,39.522438714],[-75.721645615,39.522704712],[-75.723019678,39.523417009],[-75.725382084,39.52396544],[-75.72731276,39.524494001],[-75.728208928,39.524488391],[-75.729263069,39.523733919],[-75.730357659,39.523650458],[-75.731557005,39.524057395],[-75.73289325,39.524895956],[-75.733095992,39.525228062],[-75.733202101,39.525844606],[-75.73317712,39.526615152],[-75.733050251,39.527206134],[-75.732759901,39.527982859],[-75.73260104,39.528677661],[-75.732574678,39.529317565],[-75.732615054,39.530011111],[-75.732656371,39.530758713],[-75.73272846,39.531321409],[-75.732836236,39.532095623],[-75.732842724,39.532712794],[-75.7327362,39.535204839],[-75.731723809,39.536346525],[-75.731401211,39.537173005],[-75.731433872,39.53803329],[-75.731657942,39.539113127],[-75.731523099,39.539812281],[-75.732404642,39.540126599],[-75.733422412,39.540494111],[-75.735451619,39.540868734],[-75.735919076,39.541122572],[-75.735996422,39.541387887],[-75.736001465,39.541865406],[-75.736003322,39.542041097],[-75.735740605,39.542750073],[-75.735511196,39.543377748],[-75.734438752,39.5441414],[-75.733937159,39.544617614],[-75.733874013,39.545009963],[-75.733884168,39.545974009],[-75.734131769,39.547071711],[-75.734277546,39.548066434],[-75.734046097,39.548536435],[-75.733211038,39.549402197],[-75.733462331,39.550815239],[-75.733680619,39.552305074],[-75.734774394,39.553550605],[-75.736035351,39.554641889],[-75.73732977,39.555728443],[-75.738185615,39.556822274],[-75.738805069,39.557917599],[-75.740132679,39.558900292],[-75.74186332,39.559673157],[-75.743151071,39.56008391],[-75.743528036,39.5606041],[-75.743437476,39.561627351],[-75.742336652,39.562886826],[-75.741701935,39.56354413],[-75.741015428,39.565692969],[-75.740687,39.566555551],[-75.740797333,39.567419838],[-75.741424409,39.569217906],[-75.742249159,39.57054617],[-75.743234439,39.571062473],[-75.743824454,39.572549907],[-75.74356729,39.573781462],[-75.743141245,39.575009592],[-75.742843034,39.575534096],[-75.742748254,39.576165425],[-75.742143619,39.576480143],[-75.741406531,39.577034478],[-75.741412677,39.577611099],[-75.741926627,39.578310625],[-75.742791195,39.580188257],[-75.743003913,39.581128473],[-75.743119675,39.58246126],[-75.742718515,39.582855774],[-75.742316245,39.583146674],[-75.74186489,39.58381632],[-75.741778939,39.584253868],[-75.741875362,39.584798375],[-75.742169887,39.58521998],[-75.743256823,39.585830238],[-75.744036331,39.586036992],[-75.74457949,39.586294812],[-75.744788586,39.586892655],[-75.745104562,39.587989888],[-75.745212716,39.588642442],[-75.745521716,39.589086469],[-75.746138198,39.589866408],[-75.747227681,39.590670334],[-75.748855521,39.591209481],[-75.751018312,39.59127211],[-75.752135854,39.591499147],[-75.753755713,39.591330971],[-75.754362133,39.59117386],[-75.755124532,39.591069796],[-75.755447387,39.591576779],[-75.756069217,39.591698878],[-75.7567402,39.591955809],[-75.757338628,39.592100579],[-75.757867167,39.59244403],[-75.758490285,39.59268324],[-75.7590649,39.592846179],[-75.759405219,39.593416108],[-75.758991923,39.594229735],[-75.759794833,39.595166061],[-75.760117625,39.595695557],[-75.760330472,39.59585635],[-75.760654604,39.596507473],[-75.760448887,39.59699988],[-75.760507477,39.597531105],[-75.760462288,39.598225192],[-75.76142624,39.599403728],[-75.761802724,39.600013961],[-75.762654011,39.600539981],[-75.763184837,39.600784279],[-75.764514509,39.60155042],[-75.765738347,39.602321751],[-75.766908946,39.603048367],[-75.768659115,39.603649498],[-75.770727148,39.604289041],[-75.772103078,39.604487143],[-75.773213741,39.604560849],[-75.77384778,39.604556627],[-75.774952962,39.604139294],[-75.77626969,39.603761083],[-75.777491832,39.604365608],[-75.778238705,39.60497781],[-75.779410014,39.605785388],[-75.780472523,39.606269314],[-75.782274225,39.606482453],[-75.782900849,39.607014343],[-75.783740364,39.607378102],[-75.784765048,39.607344155],[-75.785242766,39.607215047],[-75.785262824,39.60720957],[-75.78987619,39.608416937],[-75.790585729,39.608722947],[-75.792806565,39.609671967],[-75.79363665,39.609986057],[-75.794628171,39.610641591],[-75.795366472,39.611555599],[-75.795651232,39.612445647],[-75.795623812,39.612882929],[-75.795390759,39.613591781],[-75.794890708,39.614162881],[-75.794640899,39.614448421],[-75.793087839,39.615621346],[-75.792172638,39.616239271],[-75.792122721,39.616288447],[-75.792037998,39.616387303],[-75.791957827,39.616487763],[-75.791875302,39.616584442],[-75.791786135,39.616675308],[-75.791691933,39.616762209],[-75.791595879,39.616848249],[-75.791496304,39.616933811],[-75.791388487,39.617017439],[-75.791271836,39.617099099],[-75.791150961,39.61717998],[-75.791031627,39.617260748],[-75.790918498,39.617341987],[-75.790813744,39.617424841],[-75.790715641,39.617509838],[-75.790618604,39.617595251],[-75.790516471,39.617678815],[-75.790406733,39.617760441],[-75.790292506,39.617841262],[-75.790179398,39.617922],[-75.790069764,39.618003208],[-75.789963099,39.618086058],[-75.789859384,39.618171148],[-75.789757286,39.618257127],[-75.789655364,39.618343435],[-75.789556469,39.618431644],[-75.789463813,39.618522638],[-75.789376764,39.61861589],[-75.789294301,39.618711885],[-75.78921512,39.618810797],[-75.78913555,39.618912538],[-75.78905293,39.619019143],[-75.788968061,39.619130963],[-75.788881774,39.61924117],[-75.78878984,39.619339998],[-75.788686726,39.619425198],[-75.788574721,39.61950334],[-75.788461833,39.619581275],[-75.788350706,39.619660491],[-75.788237727,39.619738903],[-75.788121013,39.619815756],[-75.788005646,39.619893872],[-75.787922921,39.619956784],[-75.787897708,39.619975975],[-75.787796354,39.620060498],[-75.787697079,39.620144507],[-75.787598611,39.620228824],[-75.787502769,39.620316651],[-75.787409547,39.620408613],[-75.787316738,39.620501391],[-75.78722188,39.620591212],[-75.787124221,39.620678593],[-75.787026705,39.620767439],[-75.786934491,39.620860633],[-75.786850599,39.620958291],[-75.786774013,39.621059502],[-75.78670073,39.621162437],[-75.786625806,39.621264482],[-75.786545251,39.621363927],[-75.786457363,39.621459627],[-75.78636143,39.621549184],[-75.786286754,39.621604897],[-75.785578439,39.621917233],[-75.785102708,39.622379972],[-75.785112075,39.62320885],[-75.784785163,39.623729148],[-75.783730587,39.625362614],[-75.782253241,39.625575302],[-75.780702282,39.625815495],[-75.779745172,39.626249909],[-75.779047636,39.626714112],[-75.778425574,39.627317463],[-75.777879318,39.628091496],[-75.777519027,39.628954385],[-75.777523515,39.62935531],[-75.777681879,39.630295818],[-75.778024019,39.631095436],[-75.778476212,39.63183575],[-75.779074011,39.632376862],[-75.779486857,39.632887674],[-75.780052055,39.633798418],[-75.780489913,39.634070288],[-75.781057939,39.634422375],[-75.782766331,39.634983021],[-75.784507357,39.635174006],[-75.785764711,39.635133972],[-75.787333464,39.635020436],[-75.787550239,39.635003502],[-75.787804629,39.635004455],[-75.788034077,39.63502028],[-75.788263765,39.635042067],[-75.788489526,39.635064271],[-75.788719117,39.635087993],[-75.788944248,39.635118957],[-75.789164511,39.635164404],[-75.789348928,39.635216556],[-75.789526878,39.635285282],[-75.789736092,39.635380894],[-75.789930107,39.635466661],[-75.790088003,39.635530527],[-75.790246402,39.635589923],[-75.79043401,39.635633019],[-75.790650523,39.63563442],[-75.790897605,39.635601162],[-75.791138743,39.635568646],[-75.791357995,39.635555857],[-75.791575706,39.63556417],[-75.791795258,39.63559797],[-75.79197052,39.635650746],[-75.792047916,39.635852211],[-75.792132644,39.636166893],[-75.792383616,39.637453641],[-75.792572266,39.638700301],[-75.793050713,39.639949558],[-75.793829688,39.640885795],[-75.794004589,39.641091794],[-75.795001896,39.641931948],[-75.796077488,39.642839133],[-75.797897525,39.643696061],[-75.799675055,39.644445297],[-75.801573969,39.645184601],[-75.80362076,39.646053308],[-75.805469518,39.646901156],[-75.806977427,39.647850183],[-75.80830736,39.649093385],[-75.809303595,39.650406479],[-75.809988152,39.651802717],[-75.810509993,39.653056086],[-75.810947672,39.653823376],[-75.81220073,39.65463009],[-75.81279514,39.654950256],[-75.813510335,39.655693053],[-75.813358323,39.656865504],[-75.813326365,39.65813169],[-75.813017432,39.659737704],[-75.812729604,39.661329897],[-75.812625005,39.66324547],[-75.812848283,39.664780172],[-75.81347705,39.665518969],[-75.814618063,39.666137158],[-75.815787329,39.666421887],[-75.815565898,39.667153209],[-75.815316869,39.66733515],[-75.81524564,39.667556466],[-75.815143869,39.668512222],[-75.815240577,39.669286368],[-75.815365416,39.670447889],[-75.815560734,39.671775548],[-75.815571891,39.672910667],[-75.815591019,39.673861119],[-75.815943674,39.674575006],[-75.816233821,39.674906316],[-75.817269393,39.675016255],[-75.818468193,39.675111412],[-75.818524732,39.67523709],[-75.81803287,39.676047028],[-75.817050829,39.677166735],[-75.816551162,39.678413633],[-75.816357063,39.679554796],[-75.81678049,39.680470826],[-75.817240193,39.680999132],[-75.817473425,39.681394044],[-75.817301078,39.682269132],[-75.816879733,39.683267806],[-75.816387035,39.684307494],[-75.81593029,39.685509001],[-75.815885136,39.686504937],[-75.81622262,39.687570248],[-75.816766244,39.688737849],[-75.817641332,39.690565232],[-75.81786014,39.691131238],[-75.817808975,39.691667799],[-75.817139257,39.692614087],[-75.816121712,39.693797086],[-75.815630625,39.694471814],[-75.814981718,39.695472005],[-75.814412426,39.696093093],[-75.813579904,39.697153186],[-75.812995356,39.697995132],[-75.812702463,39.698767578],[-75.812842348,39.699536987],[-75.813436228,39.700307705],[-75.814598162,39.70111499],[-75.815682869,39.70160288],[-75.816924024,39.701927579],[-75.817817969,39.702160102],[-75.818456306,39.70237631],[-75.818561811,39.702708882],[-75.818297701,39.703278462],[-75.817486124,39.704225726],[-75.817008445,39.70494539],[-75.816373484,39.706328343],[-75.816129995,39.707388856],[-75.816296653,39.708631078],[-75.816953939,39.709865341],[-75.817924312,39.710795591],[-75.818823411,39.711469448],[-75.819574458,39.712202918],[-75.820090245,39.713032858],[-75.820472259,39.713678908],[-75.820846992,39.714068181],[-75.821527047,39.714905781],[-75.821843403,39.715971179],[-75.822733327,39.717681302],[-75.82340653,39.718293678],[-75.824270445,39.719116604],[-75.824368377,39.719746598],[-75.823961965,39.720348578],[-75.823023219,39.721107587],[-75.82213454,39.721794168],[-75.822015186,39.721916182],[-75.821871833,39.722071711],[-75.820360143,39.723815785],[-75.820199867,39.724506188],[-75.820177111,39.725263192],[-75.82024586,39.725771775],[-75.820398473,39.726464473],[-75.82050528,39.726954766],[-75.820825726,39.727718355],[-75.821108004,39.728243446],[-75.821390249,39.728705468],[-75.82171825,39.72918068],[-75.822183588,39.729767535],[-75.822641562,39.730255347],[-75.822992216,39.730671829],[-75.823290124,39.731160764],[-75.823328029,39.731710108],[-75.823312826,39.732210274],[-75.823267156,39.732877341],[-75.823236384,39.733418162],[-75.82320584,39.733977002],[-75.823099349,39.734712076],[-75.823030433,39.735203614],[-75.8232594,39.735720067],[-75.823808647,39.736090087],[-75.824296906,39.736483063],[-75.824808145,39.736997509],[-75.824998895,39.737640371],[-75.825006723,39.738144878],[-75.824899701,39.738681735],[-75.82462525,39.739399985],[-75.824434488,39.739887881],[-75.824213055,39.740709367],[-75.823984275,39.741283129],[-75.823724662,39.741870624],[-75.823457867,39.742498714],[-75.823083865,39.743159098],[-75.822771076,39.743846079],[-75.822534665,39.744424388],[-75.822382086,39.744966078],[-75.822473479,39.745627669],[-75.822679579,39.74621186],[-75.82276336,39.746693302],[-75.822740501,39.747378227],[-75.822336239,39.748043329],[-75.823152489,39.748650225],[-75.823801172,39.748785279],[-75.824289376,39.749196273],[-75.824754839,39.750116494],[-75.825151547,39.750501105],[-75.825471789,39.750926804],[-75.825990627,39.751396139],[-75.82669262,39.751715503],[-75.827303144,39.751981453],[-75.827890409,39.752161971],[-75.828554158,39.75233293],[-75.829279134,39.752498952],[-75.830034384,39.752664734],[-75.830690365,39.752795192],[-75.831026288,39.753337902],[-75.831071827,39.753909703],[-75.830972588,39.75454562],[-75.830797341,39.755110001],[-75.830522723,39.755571477],[-75.830225119,39.756033116],[-75.83059119,39.756625157],[-75.831125232,39.757017784],[-75.832391946,39.757058252],[-75.833208304,39.756840661],[-75.833940691,39.756709261],[-75.834573826,39.756605599],[-75.835191847,39.756398435],[-75.836023353,39.75659067],[-75.836496429,39.756916119],[-75.836992463,39.757209872],[-75.837450038,39.757580489],[-75.837885027,39.758014332],[-75.838464959,39.758366041],[-75.839136269,39.758672034],[-75.839654974,39.758997148],[-75.840288224,39.759172765],[-75.841280179,39.758724089],[-75.842210829,39.758487586],[-75.842821272,39.75867687],[-75.84340105,39.758893402],[-75.844041725,39.75901939],[-75.844850706,39.759094594],[-75.845522155,39.75922936],[-75.846086559,39.75968025],[-75.84654447,39.760222018],[-75.846918078,39.760701327],[-75.847444509,39.761206549],[-75.847696539,39.761677733],[-75.848291602,39.762096854],[-75.849031343,39.76229417],[-75.849649401,39.762564453],[-75.85023704,39.763060203],[-75.850511563,39.763607803],[-75.851190665,39.763945202],[-75.851732304,39.764288113],[-75.851846936,39.764827873],[-75.852014681,39.76529516],[-75.852380786,39.765810547],[-75.85251797,39.766314107],[-75.852342667,39.766892025],[-75.852052724,39.767344653],[-75.851701792,39.767793223],[-75.851343222,39.768214818],[-75.851259207,39.768710984],[-75.851938348,39.768958279],[-75.852601981,39.76910208],[-75.853220226,39.769174112],[-75.853876314,39.76932696],[-75.854417893,39.769602285],[-75.854631441,39.770141311],[-75.854616268,39.770654991],[-75.854837301,39.77123902],[-75.855310465,39.77164548],[-75.856020046,39.771842972],[-75.856668346,39.771982348],[-75.857477256,39.772039443],[-75.858148609,39.772007452],[-75.858850533,39.77214642],[-75.859590524,39.772352675],[-75.860109503,39.772713734],[-75.86069668,39.773101315],[-75.861261394,39.773412474],[-75.861818327,39.773714671],[-75.862428599,39.774079554],[-75.862924513,39.774548892],[-75.863092476,39.775200864],[-75.863099952,39.775741408],[-75.863100229,39.776552302],[-75.863435871,39.777013819],[-75.864053813,39.777288528],[-75.864686985,39.777468516],[-75.865266935,39.777738999],[-75.867487166,39.779114462],[-75.86808228,39.779456896],[-75.868867828,39.779622206],[-75.86956993,39.779477292],[-75.870210559,39.77946348],[-75.870805863,39.779733819],[-75.871378061,39.780080912],[-75.871744299,39.780474592],[-75.872415799,39.780766874],[-75.873064058,39.780924185],[-75.87369724,39.781099619],[-75.874620419,39.781754896],[-75.87527651,39.782096834],[-75.876047157,39.782118048],[-75.876619388,39.782320955],[-75.877252714,39.782419786],[-75.877931789,39.782500244],[-75.878297899,39.782965992],[-75.878442741,39.783451432],[-75.87875546,39.78407976],[-75.879175251,39.784518068],[-75.879739711,39.784968791],[-75.879907744,39.785553165],[-75.880296793,39.786041256],[-75.880655316,39.786538587],[-75.8814337,39.787190404],[-75.881982789,39.787519598],[-75.88269999,39.78775291],[-75.882906112,39.788260402],[-75.883226508,39.788712966],[-75.883584922,39.789142715],[-75.883379275,39.789671362],[-75.883310321,39.790158423],[-75.883256794,39.790739971],[-75.883409396,39.791369507],[-75.883913023,39.791708048],[-75.884691267,39.79188683],[-75.885309457,39.792192948],[-75.885782368,39.792554242],[-75.886324135,39.793018621],[-75.886758779,39.793497333],[-75.887125125,39.793972058],[-75.887415035,39.794519439],[-75.887895664,39.795024832],[-75.887872844,39.795606155],[-75.887552298,39.796054591],[-75.88723207,39.79655709],[-75.887025963,39.7971353],[-75.886979971,39.797617683],[-75.886926697,39.798244279],[-75.887109721,39.798909614],[-75.887453241,39.799366493],[-75.887415064,39.79988936],[-75.886873373,39.800145782],[-75.886347092,39.800550751],[-75.885949991,39.800981746],[-75.885545898,39.801493891],[-75.885278973,39.801941929],[-75.885027015,39.802448397],[-75.884744589,39.803027186],[-75.884516052,39.803537987],[-75.884157155,39.803932653],[-75.883684228,39.804346209],[-75.883165336,39.804904269],[-75.882791619,39.805339588],[-75.882493959,39.805814874],[-75.882074332,39.806372174],[-75.880907021,39.806984707],[-75.880327212,39.807263908],[-75.879717106,39.807601902],[-75.879030239,39.807931465],[-75.87845811,39.808242135],[-75.878053577,39.808727228],[-75.877885898,39.809206021],[-75.877756222,39.809774628],[-75.877710301,39.810297549],[-75.877512061,39.810785584],[-75.87713064,39.811252477],[-75.876787236,39.811723588],[-75.876405805,39.81219048],[-75.876024357,39.812598806],[-75.875810528,39.81315453],[-75.875703946,39.813876126],[-75.875574247,39.814386165],[-75.875299445,39.814856745],[-75.874895297,39.815319306],[-75.874620526,39.815821427],[-75.874170341,39.816311347],[-75.873956913,39.816785983],[-75.873880452,39.817349677],[-75.873865178,39.81793093],[-75.873483634,39.818537467],[-75.872903874,39.81903287],[-75.872377317,39.819577423],[-75.872011063,39.820066711],[-75.871728869,39.820591407],[-75.871515479,39.821070533],[-75.871545819,39.821592888],[-75.871477364,39.822070919],[-75.871080336,39.822668552],[-75.870492976,39.823231574],[-75.869981832,39.823555259],[-75.869493402,39.823914812],[-75.869051186,39.824319066],[-75.86885287,39.82486565],[-75.868341568,39.825585765],[-75.868318538,39.826076975],[-75.868440601,39.826549081],[-75.868570574,39.827039146],[-75.868791718,39.827578082],[-75.869005385,39.828103561],[-75.86938679,39.828492634],[-75.870019907,39.829005954],[-75.870485449,39.829376373],[-75.871065247,39.829714397],[-75.871561075,39.830111613],[-75.871896717,39.830519041],[-75.872354631,39.8310652],[-75.872629183,39.831549669],[-75.872873391,39.83200283],[-75.873094441,39.832559779],[-75.873254889,39.833117193],[-75.873277712,39.833621564],[-75.873354108,39.834175098],[-75.873926339,39.834459111],[-75.874521335,39.834666352],[-75.874590038,39.839247344],[-75.874193272,39.839727865],[-75.874589911,39.841887243],[-75.874246627,39.842322305],[-75.873758545,39.842803503],[-75.873468479,39.843404843],[-75.873384469,39.843923543],[-75.873346549,39.844504964],[-75.87338469,39.84503626],[-75.873415267,39.845518056],[-75.873300597,39.846009956],[-75.873056515,39.846493829],[-75.872743834,39.847041271],[-75.872003801,39.847447765],[-75.871446701,39.847731266],[-75.870767876,39.848096758],[-75.87014201,39.84846185],[-75.869554616,39.848750064],[-75.869195875,39.8491537],[-75.869203572,39.849676203],[-75.869302847,39.850220556],[-75.869302822,39.850797188],[-75.869074099,39.851343998],[-75.868852767,39.85192679],[-75.868402415,39.852308568],[-75.867883696,39.852686367],[-75.86754823,39.853170903],[-75.867021818,39.853954191],[-75.867639686,39.854138778],[-75.868616251,39.854347713],[-75.86947088,39.854620607],[-75.870065899,39.854787332],[-75.870836266,39.854925708],[-75.871370429,39.855277594],[-75.871751745,39.85567566],[-75.8722477,39.8560098],[-75.872865762,39.856379067],[-75.873491252,39.856671675],[-75.874040655,39.856955852],[-75.874650992,39.857117932],[-75.875925224,39.857374107],[-75.876779617,39.857651462],[-75.877542736,39.857934007],[-75.878252293,39.858140366],[-75.878900697,39.858536394],[-75.879198137,39.858998146],[-75.87917512,39.859484852],[-75.879014932,39.860044675],[-75.878824319,39.860681313],[-75.878503822,39.861219823],[-75.878168379,39.861645826],[-75.878259792,39.862253298],[-75.878526724,39.862728798],[-75.878946432,39.863180614],[-75.879366198,39.863663963],[-75.879693887,39.864089454],[-75.880914936,39.864260375],[-75.881677749,39.864254578],[-75.882478917,39.864248485],[-75.88311977,39.864248113],[-75.88395897,39.864102069],[-75.884828746,39.864203554],[-75.885614442,39.864328199],[-75.886232339,39.864418083],[-75.88697248,39.864439455],[-75.887781064,39.864554901],[-75.888429573,39.864779687],[-75.888856881,39.865190865],[-75.888811315,39.865821894],[-75.888666253,39.866332066],[-75.888803647,39.866813046],[-75.888795833,39.867340172],[-75.88881117,39.867849109],[-75.889101022,39.868337925],[-75.889490313,39.868717856],[-75.889764975,39.869161736],[-75.89036006,39.869404938],[-75.890978044,39.869215491],[-75.891527208,39.868846375],[-75.8922063,39.868579867],[-75.89278605,39.868372686],[-75.893465102,39.868187259],[-75.894106026,39.867993116],[-75.894830775,39.867951488],[-75.895524976,39.867892069],[-75.896272887,39.867890799],[-75.897005015,39.867966226],[-75.897638378,39.868173056],[-75.898477709,39.868427842],[-75.899087986,39.868797021],[-75.89961432,39.869229916],[-75.900201806,39.869644313],[-75.900972314,39.869859071],[-75.901796514,39.869960773],[-75.902498277,39.870031907],[-75.903162112,39.870107836],[-75.903879136,39.870088728],[-75.904680178,39.870123026],[-75.905077056,39.870516361],[-75.905245075,39.87112322],[-75.905443392,39.871644232],[-75.905801937,39.872150486],[-75.906374172,39.872483883],[-75.907007221,39.872551013],[-75.907846615,39.872526425],[-75.908533372,39.872372386],[-75.909357155,39.872217269],[-75.91020396,39.872228647],[-75.910921107,39.87227257],[-75.911661287,39.872510019],[-75.912172475,39.872839363],[-75.912775072,39.873172488],[-75.913271222,39.873497441],[-75.913889019,39.873735839],[-75.914575684,39.873793494],[-75.915643944,39.873942736],[-75.91623119,39.874411113],[-75.916612859,39.875110863],[-75.916864344,39.875581888],[-75.91712404,39.876066363],[-75.917268659,39.876772479],[-75.917436682,39.87739734],[-75.917528178,39.877901162],[-75.917833464,39.878569976],[-75.91833718,39.879210188],[-75.919191323,39.879545794],[-75.919748398,39.879856722],[-75.920320646,39.880181035],[-75.920610471,39.880647246],[-75.921037697,39.881139401],[-75.921716927,39.881647552],[-75.922441735,39.881736393],[-75.923197051,39.8818385],[-75.923814765,39.882063329],[-75.924219253,39.882465548],[-75.924608497,39.88303907],[-75.924944103,39.883509406],[-75.925744998,39.883683213],[-75.926248717,39.883990029],[-75.925775583,39.884327167],[-75.925569734,39.884945979],[-75.925325342,39.885416438],[-75.925126994,39.885913558],[-75.924867891,39.886731008],[-75.924448133,39.887153311],[-75.923692614,39.887285468],[-75.923135993,39.887614252],[-75.922914537,39.888134076],[-75.922853724,39.888940935],[-75.922907142,39.889517135],[-75.922983153,39.89006162],[-75.923136038,39.890614505],[-75.923349607,39.891085807],[-75.923654672,39.891538379],[-75.924119924,39.89213382],[-75.924203915,39.892835912],[-75.923616436,39.893182965],[-75.923212098,39.893695237],[-75.922922202,39.894319215],[-75.922754482,39.895005293],[-75.922708482,39.895717431],[-75.921648159,39.895861009],[-75.921022361,39.895915536],[-75.92042761,39.896104958],[-75.919756064,39.896538248],[-75.91942025,39.897203129],[-75.919260311,39.897763003],[-75.918924566,39.898297238],[-75.918291158,39.898522994],[-75.91763516,39.898699372],[-75.917047825,39.899172525],[-75.916620253,39.899675948],[-75.916261818,39.900183327],[-75.915827089,39.900781405],[-75.915407279,39.90134783],[-75.914667296,39.902412316],[-75.914400328,39.902900949],[-75.914293449,39.903523462],[-75.914110434,39.904056482],[-75.91348456,39.904331707],[-75.912912379,39.904547939],[-75.912279322,39.904751137],[-75.911554296,39.904882975],[-75.910928906,39.904892402],[-75.91030307,39.904784688],[-75.909906463,39.905175221],[-75.909639482,39.905609781],[-75.909502137,39.906088375],[-75.909234926,39.906671601],[-75.908937653,39.907110903],[-75.9088307,39.907787475],[-75.908792507,39.908328355],[-75.908677977,39.908874345],[-75.908273843,39.909472154],[-75.907610065,39.909927837],[-75.907083591,39.910287842],[-75.906427467,39.91074346],[-75.905954622,39.911179624],[-75.906687038,39.911768541],[-75.907144783,39.912210935],[-75.907571802,39.912707644],[-75.907770332,39.913179098],[-75.907976191,39.913650491],[-75.908029619,39.914262743],[-75.908098506,39.91493794],[-75.908319754,39.915521833],[-75.908716402,39.915987232],[-75.909189415,39.916447525],[-75.909814752,39.916757961],[-75.910570237,39.91712143],[-75.911165202,39.917567241],[-75.91189786,39.917669599],[-75.91263018,39.917690865],[-75.913324371,39.917649361],[-75.914026248,39.917526705],[-75.914667097,39.917571201],[-75.915002991,39.918001019],[-75.915498912,39.918528679],[-75.915857473,39.919012371],[-75.916162721,39.919528018],[-75.916284796,39.920072144],[-75.916193004,39.920730579],[-75.915979415,39.921358442],[-75.916040532,39.921993145],[-75.916177727,39.922492099],[-75.916292174,39.923094849],[-75.916299861,39.92367141],[-75.916017741,39.924151153],[-75.915430116,39.924511677],[-75.915659164,39.924960348],[-75.915865176,39.925463271],[-75.916078766,39.926123797],[-75.916239036,39.926681132],[-75.916498204,39.927219669],[-75.916712016,39.927704505],[-75.916971303,39.928197984],[-75.917200193,39.928660176],[-75.917467152,39.929234685],[-75.917619917,39.929720008],[-75.917978308,39.930266754],[-75.918680484,39.930513465],[-75.919359458,39.930773871],[-75.919839902,39.931202524],[-75.920107067,39.93179054],[-75.920297657,39.932257533],[-75.920580128,39.932867948],[-75.920885283,39.933424129],[-75.921175085,39.934007457],[-75.921380963,39.934686054],[-75.921518338,39.935166982],[-75.920709799,39.935421169],[-75.920030523,39.935687844],[-75.919351557,39.935841888],[-75.918657306,39.9359465],[-75.91790978,39.936033509],[-75.918276119,39.936598218],[-75.918664974,39.937176262],[-75.919016161,39.937727577],[-75.919237144,39.938333978],[-75.919321261,39.939153194],[-75.919405108,39.939733654],[-75.919481486,39.940521397],[-75.919557704,39.941241568],[-75.919900909,39.94190556],[-75.920229169,39.942326411],[-75.920671483,39.942741849],[-75.92104534,39.943180355],[-75.921457532,39.943722164],[-75.921457225,39.944271757],[-75.921373577,39.944880576],[-75.921426679,39.945402716],[-75.921686442,39.945896183],[-75.922067801,39.94637517],[-75.922540746,39.946889465],[-75.923059717,39.94747997],[-75.923357109,39.94799566],[-75.923601387,39.948696467],[-75.923692646,39.949335427],[-75.923822465,39.949820917],[-75.924287876,39.950344273],[-75.924776169,39.950826899],[-75.925065965,39.951266061],[-75.925188229,39.951922793],[-75.925287388,39.952467086],[-75.925424832,39.953002063],[-75.925447536,39.953709143],[-75.925363669,39.954245888],[-75.925066293,39.954820374],[-75.924653933,39.955278652],[-75.923860762,39.955739965],[-75.923746163,39.956249925],[-75.924005653,39.956774923],[-75.924615774,39.956900687],[-75.925279867,39.957066582],[-75.925745222,39.957553894],[-75.926034875,39.957979546],[-75.926195199,39.958635961],[-75.926286992,39.959283918],[-75.926279284,39.959851596],[-75.926507915,39.960444406],[-75.926752265,39.960983032],[-75.927149003,39.961615049],[-75.927690624,39.962191828],[-75.928209331,39.96269672],[-75.928888286,39.962740837],[-75.929582612,39.96256859],[-75.930200838,39.962423981],[-75.93097119,39.962246614],[-75.931848727,39.962041352],[-75.9325506,39.961887048],[-75.933282839,39.96189467],[-75.934000258,39.961780775],[-75.934709566,39.961716494],[-75.935373562,39.961548972],[-75.936075307,39.961412659],[-75.936761854,39.961371073],[-75.937403036,39.961221739],[-75.938219346,39.961197115],[-75.939027803,39.96124012],[-75.939684057,39.961203269],[-75.939836693,39.962062452],[-75.939920374,39.962615866],[-75.940103556,39.963087387],[-75.940385774,39.963603153],[-75.940797965,39.963991728],[-75.941263483,39.964424918],[-75.941514942,39.965044532],[-75.941255521,39.965578216],[-75.940942807,39.96620242],[-75.94048517,39.966611568],[-75.939828963,39.966842131],[-75.93915757,39.967167415],[-75.938654111,39.967464298],[-75.93808182,39.967919421],[-75.937662344,39.968445375],[-75.937601182,39.968950411],[-75.937654546,39.969454528],[-75.937761506,39.969998735],[-75.937807152,39.970741662],[-75.937753875,39.971287175],[-75.937326446,39.971822202],[-75.936716149,39.97201633],[-75.936060235,39.972219839],[-75.935724215,39.972749626],[-75.935716825,39.973308283],[-75.935831114,39.97393353],[-75.936174583,39.974538908],[-75.936266194,39.975191363],[-75.936273841,39.97602019],[-75.936220418,39.976610751],[-75.935899863,39.977176442],[-75.935266781,39.977420307],[-75.934618123,39.977623751],[-75.933954216,39.97786336],[-75.93397713,39.978363203],[-75.934534128,39.978872261],[-75.935228476,39.97938922],[-75.935747244,39.979858039],[-75.93593021,39.980392634],[-75.936029431,39.980905378],[-75.936235646,39.981507357],[-75.936388009,39.98205121],[-75.936632113,39.982747484],[-75.936899458,39.983375997],[-75.937196861,39.983819567],[-75.937501944,39.984263076],[-75.937822343,39.984701956],[-75.938097091,39.985334909],[-75.938181158,39.98594238],[-75.938165921,39.986433525],[-75.938226922,39.986933065],[-75.938417373,39.987476605],[-75.938722551,39.987951643],[-75.939142407,39.988434761],[-75.93986699,39.988744225],[-75.940568953,39.989058367],[-75.940927711,39.989569004],[-75.941332073,39.990227926],[-75.941698073,39.990783547],[-75.942163617,39.991419448],[-75.942613702,39.991834735],[-75.943216298,39.992266798],[-75.943788689,39.992604504],[-75.944208296,39.99306508],[-75.944742169,39.993529229],[-75.945238421,39.993971154],[-75.945665588,39.9943686],[-75.946191968,39.994738201],[-75.946809924,39.995165612],[-75.947404878,39.995543661],[-75.947999908,39.995953244],[-75.948671407,39.996465792],[-75.949098822,39.99693079],[-75.949541234,39.997499277],[-75.949754834,39.997961522],[-75.949914944,39.998446724],[-75.95005994,39.998977104],[-75.950250674,39.999480067],[-75.950395775,40.000096044],[-75.950555873,40.000711885],[-75.950868915,40.001294942],[-75.951112739,40.001743421],[-75.95146381,40.002348686],[-75.950853349,40.002547401],[-75.950311586,40.0027906],[-75.949647932,40.003034795],[-75.948946089,40.003324346],[-75.948091697,40.003543064],[-75.947489038,40.003804764],[-75.946863221,40.004165757],[-75.94613845,40.004387908],[-75.945398395,40.00469577],[-75.944650871,40.004940619],[-75.943956636,40.005067906],[-75.943300296,40.005208393],[-75.942590742,40.0053403],[-75.941797537,40.005459371],[-75.941072425,40.005577878],[-75.940416606,40.005650774],[-75.939554505,40.005765884],[-75.938760931,40.005938993],[-75.938074125,40.006102222],[-75.937318855,40.006265999],[-75.936716008,40.006464581],[-75.935907541,40.006700856],[-75.935090996,40.00680205],[-75.93421355,40.00700283],[-75.93356512,40.007134193],[-75.932924469,40.007274495],[-75.932215005,40.007523462],[-75.931581504,40.007785331],[-75.930887225,40.008128769],[-75.930238814,40.008318677],[-75.929658868,40.008616138],[-75.92904859,40.008837262],[-75.928201687,40.009159383],[-75.927423601,40.009399861],[-75.926790503,40.009422946],[-75.92610357,40.009338344],[-75.92547815,40.009361357],[-75.924653936,40.009250812],[-75.92385311,40.009135569],[-75.922929743,40.009111393],[-75.922166842,40.009230089],[-75.921526045,40.00930726],[-75.920724934,40.009471298],[-75.919946666,40.009427924],[-75.919252366,40.009392891],[-75.918489731,40.009394434],[-75.917741742,40.009562534],[-75.91693321,40.010294205],[-75.916551532,40.010774733],[-75.916277045,40.011249907],[-75.915803947,40.011740164],[-75.915491288,40.012373305],[-75.915453165,40.012945715],[-75.915727827,40.01357872],[-75.915933659,40.01418524],[-75.916200653,40.014737219],[-75.916506105,40.015207804],[-75.916765236,40.015746333],[-75.916963729,40.016267318],[-75.917017226,40.016762419],[-75.916544238,40.017126544],[-75.915964386,40.017468989],[-75.915186004,40.017862552],[-75.914316417,40.018144207],[-75.913568603,40.018249211],[-75.912660671,40.018540167],[-75.911928309,40.018568455],[-75.911157714,40.01866912],[-75.910364303,40.018760946],[-75.909357125,40.018831919],[-75.90849526,40.018843184],[-75.907343044,40.01882969],[-75.90648863,40.018822862],[-75.905374816,40.018971221],[-75.904680217,40.01917035],[-75.904031783,40.019427679],[-75.90329929,40.019613582],[-75.9026433,40.019659237],[-75.902109226,40.019924674],[-75.901659265,40.020266035],[-75.901796382,40.020778516],[-75.902086487,40.021312326],[-75.902147498,40.021829901],[-75.902292175,40.022387369],[-75.902818843,40.023058984],[-75.903261227,40.023447444],[-75.903627593,40.023931115],[-75.903856478,40.024569007],[-75.90345954,40.025072133],[-75.903001855,40.02544059],[-75.902529007,40.025881239],[-75.902528751,40.026417309],[-75.902788107,40.027005414],[-75.903108679,40.02759755],[-75.903307133,40.028204147],[-75.903322136,40.028704063],[-75.903268865,40.029357671],[-75.903177491,40.030038604],[-75.90307821,40.030647525],[-75.902742614,40.031222247],[-75.902238867,40.031573039],[-75.901834477,40.031959092],[-75.901643939,40.032537187],[-75.901613352,40.03305097],[-75.901681852,40.033636058],[-75.901804209,40.034193699],[-75.901994819,40.034845407],[-75.902238988,40.035361555],[-75.902490786,40.035819082],[-75.902711985,40.036344417],[-75.902864597,40.036834249],[-75.902673923,40.037290715],[-75.902254238,40.037685902],[-75.901727906,40.038244084],[-75.901277555,40.038648515],[-75.900797127,40.039161293],[-75.900247777,40.039670097],[-75.899576463,40.040292464],[-75.899164436,40.040827224],[-75.89874471,40.041389073],[-75.898386162,40.041869361],[-75.897951128,40.042327713],[-75.897447705,40.042822633],[-75.896898423,40.043200784],[-75.896440558,40.043623273],[-75.895837801,40.043974801],[-75.895265608,40.044339605],[-75.894472097,40.044868289],[-75.893541355,40.045465593],[-75.892870022,40.046011353],[-75.892480821,40.046392742],[-75.892153037,40.046877279],[-75.892068832,40.047386965],[-75.891992735,40.047901096],[-75.892030625,40.048418852],[-75.892046245,40.049139494],[-75.89286252,40.049142215],[-75.893648323,40.049280312],[-75.894342486,40.049387581],[-75.895151459,40.049223658],[-75.895952187,40.048906639],[-75.896722846,40.048756525],[-75.897462897,40.048674214],[-75.898134399,40.048700544],[-75.899141485,40.04861615],[-75.899927395,40.04817759],[-75.900636907,40.047919811],[-75.901323467,40.047698244],[-75.901895727,40.047450532],[-75.902498454,40.047180057],[-75.903101135,40.047044726],[-75.903749554,40.047044174],[-75.904581229,40.047105252],[-75.905420246,40.047058158],[-75.906091764,40.046615944],[-75.906595307,40.046215585],[-75.907739598,40.045265131],[-75.908159285,40.044896955],[-75.908609556,40.044542062],[-75.909273303,40.044207998],[-75.910013331,40.043936398],[-75.910135563,40.044836401],[-75.909967404,40.045468387],[-75.909692886,40.046065171],[-75.909525219,40.046652107],[-75.909494711,40.047251483],[-75.909769021,40.047686299],[-75.910150467,40.048187829],[-75.91069979,40.048697056],[-75.91097471,40.04923096],[-75.911180454,40.04971586],[-75.911584964,40.05037938],[-75.912088688,40.050789853],[-75.911989459,40.051398778],[-75.91180611,40.051963318],[-75.911623181,40.052505326],[-75.911546682,40.053060014],[-75.911386638,40.053836093],[-75.911226209,40.054553614],[-75.911073688,40.055068355],[-75.911027995,40.055681364],[-75.911317873,40.056291728],[-75.911653749,40.056834162],[-75.91192064,40.057395156],[-75.912363078,40.057932244],[-75.912676154,40.058411788],[-75.913034611,40.058886466],[-75.913339787,40.059514727],[-75.913599193,40.060008205],[-75.913973083,40.060676464],[-75.914186612,40.061273911],[-75.914140777,40.061819349],[-75.914247657,40.062332047],[-75.914255437,40.062886071],[-75.914102487,40.063396324],[-75.914758808,40.06348123],[-75.915178374,40.063865325],[-75.915605719,40.064501623],[-75.916292263,40.06468089],[-75.917100863,40.064863689],[-75.918008907,40.065027678],[-75.919252327,40.065089895],[-75.920114592,40.065146115],[-75.920748075,40.065249198],[-75.921510646,40.065522429],[-75.922144029,40.065535406],[-75.922784855,40.065665444],[-75.924036178,40.065714041],[-75.924684823,40.065744896],[-75.92560792,40.065611392],[-75.926691061,40.065499121],[-75.927416046,40.065349168],[-75.928056696,40.065195382],[-75.929063991,40.065191811],[-75.93199344,40.064879976],[-75.932604115,40.06508228],[-75.933267842,40.065171536],[-75.933954192,40.065332679],[-75.934450216,40.065779155],[-75.935045527,40.066490604],[-75.935274284,40.067033833],[-75.935594487,40.067670923],[-75.93604493,40.068212364],[-75.936121295,40.070202838],[-75.935259038,40.07074136],[-75.934839275,40.071159185],[-75.934992137,40.071644466],[-75.935136998,40.07216133],[-75.935373287,40.072636934],[-75.935731874,40.073345787],[-75.936075375,40.07396917],[-75.936304362,40.074552938],[-75.936525334,40.075087214],[-75.936891822,40.075701402],[-75.936998404,40.076178041],[-75.937631661,40.076281023],[-75.938272531,40.076298367],[-75.939005012,40.076580733],[-75.939523766,40.077072046],[-75.940202786,40.077571068],[-75.940645375,40.077986416],[-75.940744533,40.078638796],[-75.940859078,40.079160417],[-75.941141224,40.07982032],[-75.941515039,40.080429927],[-75.941995806,40.081007127],[-75.942545044,40.081579265],[-75.943048443,40.082201327],[-75.943513872,40.082675037],[-75.944093706,40.083098263],[-75.94477287,40.083520675],[-75.945268823,40.083813942],[-75.945863924,40.084146938],[-75.946504659,40.084493074],[-75.947321088,40.084662085],[-75.948030484,40.084566185],[-75.949312322,40.084357481],[-75.950044697,40.08414876],[-75.950685673,40.083877724],[-75.951479233,40.08345677],[-75.952005668,40.083042518],[-75.952516851,40.082506756],[-75.953195852,40.08207322],[-75.953928081,40.081751863],[-75.954698552,40.081623887],[-75.955377644,40.08172189],[-75.956171068,40.081949596],[-75.956758657,40.082215029],[-75.957261998,40.082562239],[-75.957857119,40.082971752],[-75.95873476,40.08300954],[-75.959444081,40.082963124],[-75.960031584,40.082751038],[-75.960573315,40.083115936],[-75.961183701,40.083565848],[-75.962099303,40.083540228],[-75.962732506,40.083449377],[-75.963342724,40.083340696],[-75.964052449,40.083168116],[-75.964754105,40.083045151],[-75.965471315,40.083350001],[-75.965547647,40.083849391],[-75.965753815,40.084406256],[-75.966043606,40.08496693],[-75.966318431,40.085401598],[-75.966707269,40.085992978],[-75.967287144,40.086614286],[-75.967683909,40.087142533],[-75.968202837,40.087755344],[-75.968744268,40.088196785],[-75.969423576,40.088718155],[-75.970209382,40.089071953],[-75.971048499,40.089308178],[-75.971956366,40.089273534],[-75.972612409,40.08931758],[-75.973283872,40.089388519],[-75.974222463,40.089452704],[-75.975137693,40.089472029],[-75.976045636,40.089468886],[-75.976877262,40.089511428],[-75.977617317,40.08973943],[-75.978380433,40.089989756],[-75.979051686,40.090173283],[-75.979746119,40.090464722],[-75.980440258,40.090760664],[-75.981210797,40.091042441],[-75.981951103,40.091283926],[-75.982744157,40.091651093],[-75.983469072,40.092045858],[-75.984064039,40.09258137],[-75.984422844,40.093033297],[-75.984651745,40.093526872],[-75.984888262,40.094065428],[-75.985086572,40.094649352],[-75.985345854,40.09529132],[-75.98561295,40.095865652],[-75.985910587,40.09642171],[-75.986337821,40.096913591],[-75.986963276,40.097295659],[-75.986269237,40.097571856],[-75.985620624,40.097667471],[-75.984918582,40.097745518],[-75.984270068,40.097823108],[-75.983377716,40.097898259],[-75.982622374,40.097940707],[-75.981821062,40.097947501],[-75.98102765,40.097918186],[-75.980234092,40.09792941],[-75.97941037,40.097958901],[-75.978464407,40.098002934],[-75.977754796,40.098040463],[-75.976770459,40.098143376],[-75.975954042,40.098222322],[-75.975038523,40.098320127],[-75.974268233,40.098394181],[-75.973611905,40.098516823],[-75.972948347,40.098621502],[-75.972162322,40.098749731],[-75.971330712,40.098716165],[-75.970682333,40.098753135],[-75.969896582,40.098849809],[-75.969217455,40.098787924],[-75.968271376,40.098566098],[-75.967348141,40.098456689],[-75.966692024,40.098543252],[-75.965997822,40.098787786],[-75.965448694,40.099130226],[-75.965234827,40.099717622],[-75.965089996,40.100313451],[-75.964784826,40.100874578],[-75.964563505,40.101480052],[-75.964540608,40.102065856],[-75.964731435,40.102649879],[-75.964380609,40.103197871],[-75.963861635,40.103549054],[-75.963190103,40.103820418],[-75.962526307,40.104172802],[-75.961755878,40.104269297],[-75.961023287,40.104189786],[-75.960229981,40.103858513],[-75.959512875,40.103810399],[-75.95853626,40.103687852],[-75.957780808,40.103703109],[-75.956949526,40.103957742],[-75.956369551,40.104223802],[-75.955652421,40.104540551],[-75.954919924,40.104780836],[-75.954332299,40.105051458],[-75.953821145,40.105416044],[-75.953310185,40.105978835],[-75.952882932,40.106392281],[-75.952570191,40.10681379],[-75.952188547,40.107343979],[-75.951295995,40.107468439],[-75.950540759,40.10768636],[-75.949976157,40.108033353],[-75.949403807,40.108245261],[-75.948747653,40.108417312],[-75.947961858,40.108626459],[-75.947267733,40.108915935],[-75.946542746,40.109016464],[-75.945886855,40.109314627],[-75.945230495,40.109473145],[-75.944483068,40.109699984],[-75.943941159,40.110100809],[-75.943292891,40.110155641],[-75.94249151,40.110036035],[-75.941347349,40.11026607],[-75.940759745,40.110545634],[-75.940515669,40.111061161],[-75.94026395,40.111581236],[-75.939958817,40.112083736],[-75.939493448,40.112533482],[-75.938799061,40.112809393],[-75.938089565,40.113080913],[-75.937273099,40.113519983],[-75.936754459,40.113884563],[-75.936258472,40.114190381],[-75.935716658,40.114550633],[-75.934839315,40.115179369],[-75.934282277,40.115634335],[-75.933755832,40.115940398],[-75.932710816,40.11643082],[-75.932092638,40.11670608],[-75.931123776,40.117029206],[-75.930452333,40.117219295],[-75.929773504,40.117269793],[-75.929071383,40.117415074],[-75.928415596,40.117866301],[-75.927538194,40.118148118],[-75.926454642,40.118400042],[-75.925066254,40.118807558],[-75.92429547,40.119083993],[-75.923585925,40.119278861],[-75.922937549,40.119414659],[-75.922273826,40.119528061],[-75.921091371,40.119762706],[-75.919916213,40.119997282],[-75.919000872,40.120189244],[-75.918199498,40.120321732],[-75.917169557,40.120474043],[-75.916376374,40.120588435],[-75.915682084,40.120720059],[-75.914934131,40.120816064],[-75.91423241,40.121051347],[-75.913293967,40.121383092],[-75.912660868,40.121622328],[-75.912034985,40.121852491],[-75.911089221,40.122269871],[-75.910410206,40.122504945],[-75.909364785,40.12281948],[-75.906984275,40.123734586],[-75.906091727,40.123827161],[-75.905405313,40.123976681],[-75.904580982,40.124235386],[-75.903711322,40.124422366],[-75.903017002,40.124558419],[-75.90213222,40.12462838],[-75.901514059,40.124781848],[-75.900888701,40.124890323],[-75.899011622,40.12539142],[-75.89832501,40.125640003],[-75.89769167,40.125838617],[-75.897051041,40.125875114],[-75.896379612,40.125911845],[-75.895700621,40.125903586],[-75.89478507,40.126063822],[-75.894060099,40.126100957],[-75.893381213,40.12638098],[-75.892137522,40.126606797],[-75.891359303,40.126752435],[-75.890733781,40.126878875],[-75.889726733,40.126774006],[-75.889108755,40.126607565],[-75.8882085,40.126817186],[-75.887483824,40.126849771],[-75.886629123,40.127009478],[-75.885851184,40.127177602],[-75.885118646,40.127255279],[-75.884241237,40.127446672],[-75.883623068,40.127604551],[-75.882822173,40.127813374],[-75.882196673,40.128142481],[-75.881593831,40.128295724],[-75.880876815,40.128553446],[-75.880243284,40.128801517],[-75.879541486,40.128932982],[-75.878885234,40.129068602],[-75.878168127,40.1293218],[-75.877336555,40.129373148],[-75.876634624,40.129608204],[-75.876016874,40.129887669],[-75.875444507,40.13013074],[-75.874628264,40.130434219],[-75.873598359,40.130523086],[-75.872873462,40.130686214],[-75.872263222,40.130952087],[-75.871828024,40.131311237],[-75.871614631,40.131776829],[-75.871438989,40.132269165],[-75.871156691,40.132739775],[-75.870515867,40.133082448],[-75.869813952,40.13297961],[-75.869028116,40.133026053],[-75.868356789,40.133422999],[-75.867555854,40.133609189],[-75.866846274,40.133537923],[-75.866205151,40.133831022],[-75.865625314,40.134213754],[-75.864755784,40.134459002],[-75.863985264,40.13458638],[-75.862863536,40.134991159],[-75.86228363,40.135283779],[-75.861696446,40.135580957],[-75.861108768,40.135869127],[-75.860315393,40.136221884],[-75.859750667,40.136469333],[-75.859026003,40.136803556],[-75.858507343,40.137068674],[-75.857736704,40.137335668],[-75.856927796,40.137535349],[-75.856172708,40.137757162],[-75.855577514,40.138004808],[-75.85504369,40.138436706],[-75.85471538,40.138876085],[-75.854234609,40.139357132],[-75.853639742,40.139631803],[-75.852838545,40.140011594],[-75.851991777,40.140297122],[-75.851351011,40.140364899],[-75.850557598,40.140429293],[-75.849581026,40.140544565],[-75.848665373,40.140749487],[-75.848070043,40.140902511],[-75.847330346,40.140980005],[-75.846521578,40.14119764],[-75.845903532,40.141382351],[-75.845743269,40.141861023],[-75.845705296,40.142347799],[-75.845613741,40.142952097],[-75.845445874,40.143615518],[-75.845210397,40.143956318],[-75.844914305,40.144089051],[-75.844362443,40.144141464],[-75.843736932,40.144200079],[-75.842950754,40.144467078],[-75.842256493,40.144634301],[-75.841493513,40.144702914],[-75.840746169,40.144789436],[-75.840066825,40.145033107],[-75.839609099,40.145491401],[-75.839342248,40.146105969],[-75.839113179,40.146571622],[-75.83876222,40.147060671],[-75.838380756,40.147545438],[-75.838159547,40.14802454],[-75.838304573,40.148600091],[-75.838373347,40.149180699],[-75.838136921,40.149646396],[-75.837923089,40.150278602],[-75.837778224,40.150761655],[-75.837534169,40.15126344],[-75.837030465,40.151686022],[-75.836282764,40.151749985],[-75.835474012,40.151832401],[-75.834833148,40.152021708],[-75.834192268,40.152120935],[-75.833482904,40.152229645],[-75.832826697,40.152455105],[-75.832262319,40.152688902],[-75.831926475,40.153101244],[-75.831911315,40.153632906],[-75.83199519,40.154132328],[-75.83201044,40.154749363],[-75.832010352,40.155253888],[-75.8318426,40.155849713],[-75.831758554,40.156359347],[-75.831514525,40.156928694],[-75.831110057,40.157341524],[-75.830743761,40.157875717],[-75.830316647,40.158266175],[-75.829530614,40.158564615],[-75.828813525,40.158587768],[-75.828027809,40.158579876],[-75.827371848,40.158530511],[-75.826730666,40.158458518],[-75.826036603,40.158535538],[-75.825342107,40.158788251],[-75.824663289,40.159275088],[-75.824533461,40.159857123],[-75.824541297,40.160595835],[-75.824564074,40.16123534],[-75.824617463,40.16173498],[-75.824632728,40.162329494],[-75.824571804,40.162996622],[-75.82438084,40.163561068],[-75.824098541,40.164099137],[-75.823877436,40.1645692],[-75.823526359,40.165004147],[-75.823045981,40.165732819],[-75.824129258,40.166396312],[-75.824358087,40.166867675],[-75.824663229,40.167306954],[-75.82511325,40.167677645],[-75.825815413,40.168051032],[-75.826326469,40.168551911],[-75.826631433,40.169004711],[-75.826860572,40.169620216],[-75.827028292,40.170164084],[-75.827341011,40.170711422],[-75.827989877,40.171103198],[-75.82835576,40.171524021],[-75.82859243,40.171972797],[-75.828767791,40.172750852],[-75.828790882,40.173291258],[-75.829187631,40.173743382],[-75.829500442,40.174205125],[-75.829843442,40.174702686],[-75.830202326,40.175209142],[-75.830537835,40.17563468],[-75.83089632,40.176046539],[-75.831117598,40.17655398],[-75.831111756,40.176969591],[-75.831204616,40.177074302],[-75.831888141,40.176895307],[-75.832643511,40.176655631],[-75.83352875,40.176410514],[-75.834459319,40.176331736],[-75.835313991,40.176348097],[-75.836206591,40.176494805],[-75.836938785,40.176611148],[-75.837884948,40.176784489],[-75.838495544,40.176951248],[-75.839441545,40.177111066],[-75.840372186,40.176888087],[-75.841226525,40.176818817],[-75.841951633,40.176894631],[-75.84262278,40.177029393],[-75.843408787,40.177280436],[-75.844003795,40.177668008],[-75.844644574,40.177839018],[-75.845331388,40.177815986],[-75.846071231,40.178071854],[-75.846551896,40.178383665],[-75.847017426,40.178835233],[-75.847391317,40.179296481],[-75.847986305,40.178647963],[-75.848489879,40.178234338],[-75.848825459,40.17774087],[-75.849184007,40.177206686],[-75.849535015,40.176744635],[-75.850130312,40.176330338],[-75.850854965,40.176104286],[-75.851648592,40.176170525],[-75.852273989,40.176256014],[-75.852968343,40.176602267],[-75.853319431,40.177027625],[-75.853815166,40.177339298],[-75.85465427,40.177576356],[-75.855447805,40.177926368],[-75.856142048,40.178056373],[-75.856981275,40.178185315],[-75.857690847,40.178396274],[-75.858308948,40.178279079],[-75.85896511,40.178094025],[-75.859628647,40.177854857],[-75.860277323,40.177485161],[-75.861047801,40.177141587],[-75.861864265,40.177009372],[-75.862428695,40.177234908],[-75.863115491,40.17755864],[-75.863748704,40.178026901],[-75.864412419,40.1785535],[-75.864855034,40.178955613],[-75.865312704,40.179299056],[-75.866327404,40.179832025],[-75.86708276,40.18023179],[-75.867967624,40.180626076],[-75.868646863,40.180985861],[-75.869127398,40.181392179],[-75.869661383,40.181816114],[-75.870477791,40.182251434],[-75.871011692,40.182724913],[-75.871652579,40.18298136],[-75.872392772,40.183052366],[-75.873430471,40.182936429],[-75.874651075,40.182886678],[-75.876238013,40.184090932],[-75.876543317,40.184624675],[-75.876894267,40.185140055],[-75.877153485,40.185629102],[-75.877664724,40.186075693],[-75.878335939,40.186430974],[-75.879274444,40.186590523],[-75.879945995,40.186459288],[-75.88054845,40.186179925],[-75.881174302,40.185949929],[-75.882013274,40.185623716],[-75.88277623,40.185352117],[-75.883333157,40.185073082],[-75.8840811,40.184806102],[-75.88479068,40.184354729],[-75.885134007,40.183910639],[-75.885660408,40.183600294],[-75.886270739,40.183451467],[-75.886987878,40.183216245],[-75.88769753,40.182886477],[-75.888330612,40.182539258],[-75.88904758,40.182236446],[-75.889925156,40.182229704],[-75.890756692,40.182155736],[-75.891534943,40.182104702],[-75.892275072,40.181945838],[-75.89297669,40.181845831],[-75.89382365,40.181771724],[-75.894853644,40.181772777],[-75.895753966,40.182045104],[-75.896402421,40.182256308],[-75.896997434,40.182422879],[-75.897585061,40.182670576],[-75.898248826,40.18287265],[-75.898950846,40.18333118],[-75.899339756,40.183733581],[-75.899721369,40.184140547],[-75.900178873,40.184537897],[-75.900797123,40.18498806],[-75.901338517,40.185317189],[-75.902009871,40.18559125],[-75.902628006,40.186059421],[-75.903230579,40.186266442],[-75.904199665,40.186015625],[-75.904886266,40.185888634],[-75.905542298,40.185919542],[-75.90622152,40.186175498],[-75.90675543,40.186491145],[-75.907304765,40.186806675],[-75.907808403,40.18713607],[-75.908365303,40.187577664],[-75.908876726,40.187857443],[-75.909448893,40.188204319],[-75.910020983,40.188627758],[-75.910699826,40.18915397],[-75.911149949,40.189542332],[-75.911668982,40.189894115],[-75.912134296,40.190237307],[-75.912622678,40.190683925],[-75.913278558,40.191030114],[-75.913904456,40.191272933],[-75.914835161,40.19144126],[-75.915506588,40.191575599],[-75.916437119,40.191649319],[-75.917253692,40.191575281],[-75.918016412,40.19167284],[-75.918687926,40.191703553],[-75.919473772,40.191665779],[-75.920129748,40.191741652],[-75.920824271,40.191682072],[-75.921991506,40.191776389],[-75.922235411,40.192301484],[-75.92291469,40.192579873],[-75.92363924,40.192920951],[-75.924120123,40.193241447],[-75.924814231,40.193501679],[-75.925630751,40.193666327],[-75.926500452,40.193717932],[-75.927331905,40.193765328],[-75.928323951,40.193716836],[-75.929132596,40.193651789],[-75.929781065,40.193741179],[-75.930399137,40.193916399],[-75.931116338,40.19419893],[-75.931719003,40.194428322],[-75.932382736,40.194666229],[-75.933008228,40.194872908],[-75.934259662,40.19537184],[-75.933817006,40.195861913],[-75.933328752,40.196239737],[-75.93274901,40.196532707],[-75.932184181,40.196789516],[-75.931490199,40.196997814],[-75.930712001,40.197170744],[-75.930093739,40.197279319],[-75.929392026,40.197406583],[-75.928659652,40.197493544],[-75.928049216,40.197719168],[-75.927629568,40.198123444],[-75.92736251,40.198625598],[-75.926813321,40.199143529],[-75.926149588,40.200121846],[-75.925646086,40.200679946],[-75.92519569,40.201120495],[-75.92455499,40.20139139],[-75.923921813,40.20159465],[-75.923356968,40.201991062],[-75.922884033,40.202476829],[-75.922174525,40.202658165],[-75.921457328,40.202650364],[-75.920717232,40.20249859],[-75.920053534,40.202292149],[-75.919405242,40.202139638],[-75.918771894,40.201977994],[-75.918054638,40.201884582],[-75.917169548,40.201869076],[-75.916323012,40.201772173],[-75.915536848,40.201769386],[-75.91486565,40.201905325],[-75.914240079,40.202158026],[-75.913652664,40.202491495],[-75.913179548,40.202860111],[-75.912698912,40.203188237],[-75.912172278,40.20362033],[-75.911569847,40.204012474],[-75.911073729,40.20455694],[-75.910898265,40.205026804],[-75.910646452,40.20566394],[-75.910707596,40.20619952],[-75.910982308,40.206724393],[-75.911256983,40.207163685],[-75.911050778,40.207696858],[-75.910814473,40.208176208],[-75.910524429,40.208674004],[-75.910188726,40.20919017],[-75.909883593,40.20982322],[-75.909624224,40.21047393],[-75.909318975,40.211043918],[-75.909143438,40.211950723],[-75.909845623,40.211981243],[-75.910554908,40.211966658],[-75.911279916,40.212001493],[-75.911997092,40.212000347],[-75.912630254,40.21197734],[-75.913316897,40.211998952],[-75.913980579,40.212061282],[-75.914628974,40.212078683],[-75.915262258,40.21203764],[-75.915888016,40.211983139],[-75.91657465,40.212085815],[-75.916971227,40.212492594],[-75.91734529,40.212890545],[-75.917833628,40.21329209],[-75.918435969,40.213679217],[-75.918939736,40.214107665],[-75.919450739,40.214391902],[-75.92001534,40.214837881],[-75.920458039,40.215257798],[-75.920961411,40.215654703],[-75.921472849,40.215970463],[-75.922121027,40.216158998],[-75.922800123,40.216189633],[-75.923502175,40.216071409],[-75.924074223,40.215846116],[-75.924677181,40.215598049],[-75.925279836,40.215462599],[-75.925935965,40.215479875],[-75.926569091,40.215452286],[-75.927278592,40.215478137],[-75.928026469,40.215544215],[-75.928774058,40.215695882],[-75.929499006,40.215829704],[-75.930208463,40.215905089],[-75.930849191,40.216165713],[-75.931070606,40.216618898],[-75.931139153,40.217118362],[-75.931177222,40.217834292],[-75.931764868,40.218131371],[-75.932565795,40.218260062],[-75.933534915,40.218468478],[-75.934228977,40.218543953],[-75.934869826,40.218462199],[-75.935533535,40.218173048],[-75.936266154,40.217901348],[-75.937120401,40.217768304],[-75.937845246,40.217546214],[-75.939089073,40.217274858],[-75.93970693,40.217337422],[-75.940553987,40.217375579],[-75.94121744,40.217442261],[-75.942079676,40.217543358],[-75.942957046,40.217594773],[-75.943849687,40.217582989],[-75.944673742,40.217657351],[-75.945375641,40.217926403],[-75.946191911,40.217942256],[-75.94706152,40.217989199],[-75.947916313,40.21810833],[-75.948610329,40.218021562],[-75.949457292,40.217947047],[-75.950083025,40.218099575],[-75.950700752,40.218256669],[-75.951532677,40.218393981],[-75.952226853,40.21839728],[-75.953111806,40.21841252],[-75.953905106,40.218518599],[-75.954393393,40.218951523],[-75.954797896,40.21935361],[-75.955011646,40.219824826],[-75.95523256,40.220282475],[-75.955522836,40.220762072],[-75.955942207,40.221281145],[-75.956285566,40.221773821],[-75.956505382,40.222164626],[-75.956757648,40.222169206],[-75.957201241,40.221829321],[-75.957826572,40.221427742],[-75.958360963,40.221062941],[-75.958917914,40.220761022],[-75.959497436,40.220368823],[-75.9600622,40.220048815],[-75.960657242,40.219845673],[-75.961267743,40.21959285],[-75.961900727,40.21937137],[-75.962488481,40.219172785],[-75.963197821,40.219157876],[-75.963884438,40.219197206],[-75.964746486,40.219280114],[-75.965471441,40.219382181],[-75.966249448,40.219546863],[-75.966943889,40.219748277],[-75.967592256,40.219990612],[-75.967905278,40.22048801],[-75.967592324,40.221157308],[-75.967355754,40.221618756],[-75.967271823,40.222146501],[-75.967187803,40.222457088],[-75.967360439,40.222742809],[-75.967676451,40.222913407],[-75.968393312,40.22329481],[-75.968996053,40.22352851],[-75.969614074,40.223442251],[-75.97031607,40.223269695],[-75.971178143,40.223118309],[-75.972070922,40.223034244],[-75.972719386,40.222920686],[-75.973535616,40.222877785],[-75.974191989,40.222624507],[-75.974786872,40.222281653],[-75.975359254,40.221934471],[-75.976305088,40.221633704],[-75.976953765,40.221407504],[-75.977594633,40.221149834],[-75.97824316,40.220914618],[-75.978540268,40.220795945],[-75.97883033,40.220568637],[-75.978899145,40.220201855],[-75.978838315,40.219598743],[-75.978769398,40.219072285],[-75.978868675,40.218544404],[-75.978815261,40.217869165],[-75.978510183,40.217290648],[-75.978669968,40.216825009],[-75.97884454,40.216695033],[-75.979486594,40.216516603],[-75.980196035,40.216357438],[-75.980898184,40.216126259],[-75.981554261,40.21590898],[-75.982073018,40.21556673],[-75.982507913,40.215216184],[-75.982912316,40.21471274],[-75.983270748,40.214254727],[-75.983667508,40.213782867],[-75.984201563,40.213332379],[-75.98503315,40.2132172],[-75.985727615,40.213193261],[-75.986368439,40.213142756],[-75.986993799,40.213038322],[-75.987695636,40.213068373],[-75.988542747,40.213137719],[-75.989267319,40.21331622],[-75.990328088,40.213455801],[-75.9912513,40.213605559],[-75.992095931,40.2141408],[-75.992146114,40.214156931],[-75.992834937,40.214484743],[-75.993336195,40.214742645],[-75.993712051,40.214930119],[-75.993772373,40.215203114],[-75.993811934,40.215382164],[-75.993950844,40.215574727],[-75.993985912,40.215623347],[-75.993952199,40.215914692],[-75.993824816,40.216264016],[-75.993586199,40.216957346],[-75.993375875,40.217459727],[-75.993135846,40.218057707],[-75.993004081,40.218497734],[-75.9930364,40.218684983],[-75.993112861,40.219242897],[-75.99337201,40.219862312],[-75.993608611,40.220445881],[-75.993921311,40.221159429],[-75.994211337,40.221855155],[-75.994676745,40.222436754],[-75.995378801,40.223151465],[-75.995912823,40.223601822],[-75.996782422,40.224143905],[-75.997316586,40.22460328],[-75.997675062,40.225077679],[-75.997972554,40.225552603],[-75.998041229,40.226052021],[-75.998087269,40.226560645],[-75.998071851,40.227137368],[-75.99806438,40.227754565],[-75.998247445,40.228239484],[-75.998873043,40.228644006],[-75.999582614,40.229137892],[-76.000185271,40.229803871],[-76.000658057,40.230331328],[-76.001062586,40.23083685],[-76.001413368,40.231234726],[-76.001764409,40.231650614],[-76.002428082,40.231892624],[-76.003129954,40.232035195],[-76.00374062,40.232169541],[-76.00424384,40.232566087],[-76.004747745,40.233106769],[-76.005334829,40.233583662],[-76.00599101,40.23388878],[-76.006609011,40.234144671],[-76.007158605,40.234396652],[-76.007753462,40.23460319],[-76.008340918,40.235003487],[-76.008935986,40.235421735],[-76.00952362,40.235808509],[-76.010149285,40.236158912],[-76.010812901,40.236540513],[-76.011400552,40.236927281],[-76.012079383,40.237367307],[-76.012933895,40.237886864],[-76.011743728,40.238140523],[-76.010973155,40.238102212],[-76.010278958,40.238085748],[-76.009462469,40.238047829],[-76.008775909,40.238026788],[-76.008020465,40.237943279],[-76.00733391,40.238219533],[-76.006540522,40.238699419],[-76.006227621,40.239152599],[-76.005769851,40.239647582],[-76.005067929,40.240203241],[-76.004267001,40.240448937],[-76.003320986,40.240497686],[-76.002435636,40.240550403],[-76.001657652,40.240633715],[-76.000925146,40.240712121],[-76.000261478,40.240699851],[-75.999605216,40.240692005],[-75.99901008,40.240868321],[-75.998605785,40.241331276],[-75.998262662,40.241757671],[-75.998109929,40.242340081],[-75.997911723,40.242828286],[-75.997652364,40.243429634],[-75.997240286,40.243915179],[-75.996866213,40.244386881],[-75.997171461,40.244933809],[-75.997667357,40.245402519],[-75.998071969,40.245858497],[-75.998407583,40.246495256],[-75.998254752,40.246996587],[-75.998117516,40.247533815],[-75.998003315,40.248088867],[-75.998033607,40.248849881],[-75.998666987,40.249195778],[-75.999124515,40.249601752],[-75.999658777,40.250101643],[-76.0000555,40.250494622],[-76.000536148,40.250846327],[-76.001077909,40.251206516],[-76.00173391,40.251214353],[-76.002382494,40.251019551],[-76.003290333,40.250813481],[-76.004137268,40.250788106],[-76.005014453,40.250771483],[-76.00570141,40.250810562],[-76.006441262,40.250601423],[-76.007003039,40.25061399],[-76.007187532,40.250659336],[-76.007202023,40.250667861],[-76.007524791,40.251119031],[-76.007860425,40.251575577],[-76.008295046,40.252017735],[-76.008974401,40.252435253],[-76.009203209,40.25289723],[-76.009203089,40.253433279],[-76.009183555,40.253714936],[-76.009230317,40.254036198],[-76.009714305,40.254428837],[-76.010431581,40.254503661],[-76.011080098,40.254425922],[-76.011858062,40.254356056],[-76.012300454,40.254699041],[-76.012590535,40.255178494],[-76.013101724,40.255575239],[-76.013372583,40.255607386],[-76.013887632,40.25549597],[-76.014658151,40.255664896],[-76.015428658,40.255955438],[-76.016206962,40.256178337],[-76.016954491,40.256185287],[-76.017717636,40.256228128],[-76.01844999,40.256645116],[-76.019251192,40.256971399],[-76.019876627,40.257533466],[-76.020189553,40.258012698],[-76.020486921,40.258483057],[-76.020998314,40.259109186],[-76.021332428,40.259263127],[-76.02156823,40.259511575],[-76.0215809,40.25971977],[-76.021554937,40.259883558],[-76.021585496,40.260522945],[-76.021646757,40.261175569],[-76.022272182,40.261611493],[-76.02302771,40.261730945],[-76.023653137,40.26199569],[-76.023900637,40.262371547],[-76.024312629,40.262718473],[-76.024350205,40.263147187],[-76.024306217,40.263178241],[-76.024324631,40.263219496],[-76.023729613,40.263729273],[-76.023225898,40.264152656],[-76.022785683,40.264551804],[-76.022768195,40.26483529],[-76.022981745,40.265217894],[-76.023309788,40.265962755],[-76.02382854,40.266633851],[-76.024141531,40.267185143],[-76.02447735,40.267641636],[-76.024759248,40.268202211],[-76.025018851,40.268672891],[-76.025270694,40.269238237],[-76.025247819,40.269914133],[-76.024538256,40.270168162],[-76.023737265,40.27047706],[-76.023035379,40.27070399],[-76.022501284,40.271042051],[-76.022317966,40.271512146],[-76.022157952,40.272162218],[-76.022249428,40.272769526],[-76.022584897,40.273226029],[-76.023088439,40.273712574],[-76.02377544,40.274080377],[-76.024629727,40.274036777],[-76.025217128,40.273819861],[-76.02583515,40.273683749],[-76.026735575,40.27365324],[-76.027277167,40.274053844],[-76.02730787,40.27462565],[-76.027154978,40.275136024],[-76.027063418,40.275790001],[-76.026811825,40.276458908],[-76.026392286,40.277057233],[-76.02601819,40.277502001],[-76.025552719,40.277956584],[-76.025095206,40.278451626],[-76.024431332,40.278962025],[-76.02400419,40.279375722],[-76.023630353,40.279766423],[-76.022951318,40.280394061],[-76.022478054,40.280992845],[-76.022051004,40.28165879],[-76.02152456,40.282095876],[-76.021097302,40.28245551],[-76.020426095,40.283240721],[-76.019922359,40.283722648],[-76.019327413,40.284128802],[-76.01911356,40.284747802],[-76.019029946,40.285226024],[-76.01900704,40.285708214],[-76.018915539,40.286249566],[-76.019022129,40.286762149],[-76.019052698,40.287279896],[-76.019533492,40.287739636],[-76.020174038,40.287797054],[-76.020799865,40.287755498],[-76.021478726,40.287866626],[-76.022257131,40.287972364],[-76.022913241,40.28811071],[-76.023477656,40.28833545],[-76.023981168,40.28864181],[-76.023904938,40.289583937],[-76.025079785,40.288843796],[-76.025194355,40.288225656],[-76.025598636,40.287659002],[-76.026003226,40.287259015],[-76.02648359,40.286885378],[-76.027238874,40.286338127],[-76.027880034,40.285805399],[-76.02829199,40.285382814],[-76.028795213,40.28499095],[-76.029367626,40.284508376],[-76.029886457,40.284080329],[-76.030397454,40.283742443],[-76.031183481,40.28326246],[-76.031763258,40.283000531],[-76.032434751,40.282701746],[-76.033243307,40.282424253],[-76.034013969,40.282241689],[-76.034921649,40.282125463],[-76.035547478,40.282160405],[-76.036264771,40.282190019],[-76.037058206,40.282223453],[-76.037782972,40.282406146],[-76.038500122,40.282570876],[-76.039163648,40.282763116],[-76.039728138,40.28299229],[-76.040376776,40.28324322],[-76.041124427,40.283430189],[-76.042520848,40.283205902],[-76.043123444,40.283020289],[-76.043787121,40.282766552],[-76.044473825,40.282336924],[-76.045030795,40.281958026],[-76.045511532,40.281570788],[-76.04610641,40.281362706],[-76.046900027,40.281098766],[-76.047693577,40.28066365],[-76.048303829,40.280356319],[-76.048990588,40.280219458],[-76.049715338,40.280257933],[-76.050401706,40.28023819],[-76.05102748,40.279962224],[-76.052019205,40.279935202],[-76.052019304,40.280439709],[-76.05198117,40.281039162],[-76.052202305,40.281645269],[-76.052538004,40.282218796],[-76.0529501,40.282859198],[-76.053354559,40.283409577],[-76.053606269,40.283853238],[-76.053949708,40.284521289],[-76.054063987,40.285038268],[-76.053880818,40.285648054],[-76.053896073,40.286251525],[-76.054353915,40.286639249],[-76.055086253,40.286947891],[-76.055727016,40.28694655],[-76.056604664,40.28681241],[-76.05742102,40.286755402],[-76.057863303,40.287134247],[-76.05848121,40.287529498],[-76.0591224,40.287649761],[-76.05990796,40.287903837],[-76.060602408,40.288208278],[-76.061266218,40.288175162],[-76.061914644,40.287934976],[-76.062448634,40.287641773],[-76.06312782,40.287230132],[-76.063829635,40.287066022],[-76.064584802,40.286928445],[-76.065401164,40.286848858],[-76.066187286,40.286787562],[-76.066988084,40.286793691],[-76.067728259,40.286755332],[-76.068361407,40.286690928],[-76.068994735,40.286567959],[-76.069688859,40.286291271],[-76.070177312,40.285980443],[-76.070680843,40.285646952],[-76.071428327,40.285234623],[-76.072054173,40.285057645],[-76.072786644,40.284929241],[-76.073450279,40.284864524],[-76.074137075,40.284777068],[-76.074762719,40.284681168],[-76.075601836,40.284740937],[-76.076380025,40.284760735],[-76.077242085,40.284829281],[-76.077966724,40.284926135],[-76.078546768,40.285200012],[-76.07853909,40.285803695],[-76.078501062,40.286371621],[-76.078470493,40.287016056],[-76.078417041,40.287561606],[-76.078523636,40.288069626],[-76.07863053,40.28859566],[-76.078485752,40.289178105],[-76.078104305,40.289560033],[-76.078043207,40.290110154],[-76.078600152,40.290361725],[-76.079080683,40.290686074],[-76.079675813,40.291049894],[-76.080331961,40.291273499],[-76.080995595,40.291159192],[-76.08133159,40.290741634],[-76.081865459,40.290421324],[-76.082598019,40.290364922],[-76.083315191,40.290565418],[-76.083971349,40.290766481],[-76.08465769,40.291106896],[-76.085283589,40.291231658],[-76.086031037,40.291301222],[-76.086733149,40.29129463],[-76.087770702,40.291136229],[-76.08852606,40.291079573],[-76.089311782,40.291265875],[-76.090044338,40.291529245],[-76.090875626,40.291805196],[-76.091554723,40.291852845],[-76.092126128,40.291794388],[-76.092318487,40.291932568],[-76.092500915,40.292253827],[-76.092592473,40.292825038],[-76.092752672,40.293526235],[-76.093050159,40.294054959],[-76.093309618,40.294502963],[-76.093507871,40.295055146],[-76.093782568,40.295696698],[-76.093835845,40.296218718],[-76.093645395,40.296720515],[-76.093317233,40.297165071],[-76.093759895,40.297620348],[-76.094286167,40.298264026],[-76.094583634,40.298743195],[-76.09498813,40.299428559],[-76.095285764,40.299939258],[-76.095743332,40.300403397],[-76.096239208,40.300871675],[-76.096681624,40.301376494],[-76.097101485,40.301962606],[-76.097902482,40.30172077],[-76.098673252,40.301564796],[-76.099390333,40.301431864],[-76.100244756,40.301378695],[-76.101198376,40.30136512],[-76.101869703,40.301403769],[-76.102579494,40.301320431],[-76.103296351,40.301173956],[-76.104135779,40.300922704],[-76.105035934,40.300810502],[-76.105768435,40.30078999],[-76.106561817,40.300602221],[-76.107301745,40.300405954],[-76.108156445,40.300168044],[-76.108896361,40.300016802],[-76.109529587,40.29995217],[-76.110330672,40.299764304],[-76.110798901,40.299682199],[-76.111261403,40.299649398],[-76.111853207,40.299667553],[-76.112163314,40.299593056],[-76.112550892,40.299326748],[-76.112619717,40.299300866],[-76.113117478,40.299094391],[-76.113582725,40.299163435],[-76.113908957,40.299306479],[-76.114526783,40.299692421],[-76.11525923,40.299937615],[-76.11593719,40.300117793],[-76.116010261,40.300243929],[-76.115816218,40.30060342],[-76.115648558,40.301073509],[-76.115518786,40.301790977],[-76.115602756,40.302402786],[-76.115831664,40.30295013],[-76.116144534,40.303438095],[-76.116625203,40.303933467],[-76.117319432,40.304399739],[-76.118326463,40.304412532],[-76.118997758,40.304424058],[-76.119836907,40.304357376],[-76.120615318,40.304286785],[-76.121423984,40.304332993],[-76.122143292,40.304430836],[-76.122362033,40.304682257],[-76.122446206,40.304886145],[-76.122415838,40.305539594],[-76.122400525,40.30610281],[-76.122454023,40.30660229],[-76.122759137,40.307306541],[-76.122949887,40.307921807],[-76.123155986,40.308419807],[-76.123369445,40.308940259],[-76.123773948,40.309427323],[-76.124109545,40.309861001],[-76.124658701,40.310288087],[-76.125314786,40.310443879],[-76.125963524,40.310599726],[-76.126665363,40.310786588],[-76.127007768,40.310939724],[-76.127266012,40.311055232],[-76.127668743,40.310932128],[-76.127954721,40.310697446],[-76.128158132,40.310402958],[-76.128528934,40.310232483],[-76.128964779,40.310228233],[-76.129431354,40.310199835],[-76.129854182,40.310057284],[-76.130464823,40.309735996],[-76.131075173,40.309486794],[-76.131792252,40.309286084],[-76.132393491,40.309102756],[-76.132681861,40.30907158],[-76.133365946,40.309017204],[-76.134016907,40.30884397],[-76.134387291,40.30864965],[-76.134789205,40.308478852],[-76.135301701,40.308341775],[-76.135927315,40.308083388],[-76.136537551,40.307807123],[-76.137155683,40.307936185],[-76.137857792,40.308050904],[-76.138468007,40.308211557],[-76.139093784,40.308336035],[-76.140176954,40.308564101],[-76.141973841,40.308549188],[-76.142728335,40.308448362],[-76.143846638,40.308294297],[-76.144906682,40.308379156],[-76.145629536,40.308777216],[-76.146325706,40.309437742],[-76.146583599,40.309959584],[-76.146876693,40.310719449],[-76.146821283,40.311125214],[-76.14704566,40.311504374],[-76.147175741,40.311575174],[-76.147501323,40.311712403],[-76.149744125,40.312329774],[-76.151468477,40.314163966],[-76.152193133,40.315427028],[-76.152849243,40.315555627],[-76.153597289,40.315683303],[-76.15422289,40.315618504],[-76.155039082,40.315407656],[-76.155687396,40.315230007],[-76.156290269,40.315061822],[-76.156992136,40.315005252],[-76.15738112,40.314940503],[-76.157619439,40.314744309],[-76.15760254,40.314309956],[-76.157640784,40.313814077],[-76.157755288,40.313326444],[-76.15837141,40.312845527],[-76.159342035,40.312562806],[-76.160188953,40.312387648],[-76.160867817,40.312299756],[-76.161516419,40.31216262],[-76.162218171,40.312015926],[-76.162882066,40.311806549],[-76.163599315,40.311619158],[-76.164186618,40.311383528],[-76.164842942,40.311012045],[-76.165376832,40.310664326],[-76.165893148,40.310243307],[-76.166152704,40.310094886],[-76.166167592,40.309906829],[-76.166288839,40.309714913],[-76.166438345,40.309355861],[-76.166741856,40.308899909],[-76.166986797,40.308659075],[-76.167259996,40.308251104],[-76.167502477,40.307867271],[-76.167899776,40.307434203],[-76.168114401,40.307241348],[-76.168487135,40.307189901],[-76.168954492,40.307209021],[-76.16946257,40.307274449],[-76.169640999,40.307297429],[-76.170077641,40.307340687],[-76.17082517,40.307356957],[-76.171634137,40.307324933],[-76.172565551,40.307172471],[-76.173402762,40.306973293],[-76.173863534,40.306797653],[-76.174242254,40.306772867],[-76.175371488,40.306216148],[-76.175718064,40.305829474],[-76.176025218,40.305587989],[-76.176238161,40.30529979],[-76.176766109,40.305222911],[-76.177354661,40.305050067],[-76.177694596,40.304903578],[-76.178441684,40.304895968],[-76.179251857,40.304935397],[-76.179476371,40.305072254],[-76.180109202,40.305235686],[-76.180704292,40.305495378],[-76.181345284,40.305687034],[-76.182104868,40.305666814],[-76.182624138,40.305496874],[-76.183275767,40.305371028],[-76.183864716,40.305221989],[-76.184176418,40.305242637],[-76.18419033,40.305254469],[-76.184221637,40.305243208],[-76.18480117,40.305579617],[-76.185198179,40.306035007],[-76.185556725,40.306540343],[-76.18603722,40.306868752],[-76.186464647,40.307274268],[-76.186937551,40.307652311],[-76.187525026,40.308020155],[-76.188112483,40.308365471],[-76.188692396,40.308679334],[-76.189363637,40.308852614],[-76.190080931,40.308926317],[-76.190935165,40.308944553],[-76.191743983,40.308931717],[-76.19236188,40.308727152],[-76.19287331,40.308429087],[-76.193452875,40.308616805],[-76.193910949,40.309026489],[-76.194429765,40.309440051],[-76.194887183,40.309791184],[-76.195268794,40.310201654],[-76.195614998,40.310501035],[-76.195533366,40.310747185],[-76.195284271,40.311016808],[-76.19487206,40.311394941],[-76.194566962,40.311862055],[-76.194414312,40.312444711],[-76.194376339,40.3129406],[-76.194376071,40.313530682],[-76.194383652,40.314044124],[-76.194467648,40.314615328],[-76.194673573,40.315135722],[-76.194719375,40.315752365],[-76.194826401,40.316273783],[-76.194894954,40.316908206],[-76.195024622,40.317420381],[-76.195070292,40.317924411],[-76.19517743,40.318409789],[-76.195276285,40.318926784],[-76.195528338,40.319433188],[-76.195802733,40.320038456],[-76.196169155,40.320543667],[-76.196573533,40.32098994],[-76.197145855,40.321384919],[-76.197641704,40.321699604],[-76.198282539,40.322183957],[-76.198831749,40.321750341],[-76.199251333,40.321245992],[-76.199808182,40.320767246],[-76.200464431,40.320210888],[-76.201013952,40.319651133],[-76.201555286,40.319190557],[-76.202265164,40.318507506],[-76.20282951,40.317893534],[-76.203416963,40.317297334],[-76.20374513,40.316888515],[-76.204248524,40.316365259],[-76.204828283,40.31595833],[-76.205347207,40.315502467],[-76.205743848,40.315056884],[-76.206186394,40.314628858],[-76.206644212,40.314047506],[-76.206949591,40.3136209],[-76.207414819,40.313165593],[-76.207864928,40.312750987],[-76.208307594,40.31237249],[-76.208902453,40.311825736],[-76.209291648,40.311398244],[-76.209650286,40.310908009],[-76.209970836,40.31046772],[-76.210313973,40.309747917],[-76.210580984,40.309069447],[-76.210794474,40.308360007],[-76.210893829,40.307642754],[-76.21097034,40.30704736],[-76.21076433,40.306486454],[-76.210626621,40.305983388],[-76.210672623,40.305469395],[-76.210955045,40.304934909],[-76.211351693,40.304556883],[-76.211740856,40.304151907],[-76.21216807,40.303530316],[-76.212541714,40.302936309],[-76.212762907,40.302474531],[-76.212953883,40.301968017],[-76.213426892,40.301544147],[-76.214121073,40.301356683],[-76.214647689,40.300846648],[-76.215090157,40.300463625],[-76.215684961,40.300024944],[-76.216211513,40.299677065],[-76.216974585,40.299272653],[-76.217523871,40.298942542],[-76.218278985,40.298628285],[-76.218866633,40.298203177],[-76.219408412,40.297742513],[-76.220254915,40.296949805],[-76.221185821,40.297579618],[-76.221834502,40.297788986],[-76.222490622,40.298164937],[-76.223131304,40.298419425],[-76.223665312,40.298711076],[-76.224367571,40.298933371],[-76.225053853,40.29914682],[-76.225709976,40.299297535],[-76.2263661,40.299448239],[-76.227030105,40.299486242],[-76.227854032,40.299563085],[-76.228517672,40.299722705],[-76.229211906,40.299805421],[-76.23004381,40.299855139],[-76.230753124,40.299816061],[-76.231569535,40.299681244],[-76.231965679,40.299617937],[-76.232177519,40.299664149],[-76.232463493,40.299838271],[-76.23262999,40.300106889],[-76.232904507,40.300644502],[-76.233240177,40.301289572],[-76.233637083,40.301803356],[-76.233934699,40.302376757],[-76.234163573,40.302950889],[-76.23433524,40.303272292],[-76.234474368,40.303419266],[-76.235292528,40.30356046],[-76.236048123,40.303556892],[-76.236856653,40.303552755],[-76.237482087,40.303469488],[-76.238252961,40.303375654],[-76.238893572,40.303238157],[-76.23963375,40.3030951],[-76.240366368,40.303001661],[-76.241007013,40.3028056],[-76.241632797,40.30246105],[-76.242044526,40.30207375],[-76.242426033,40.301641725],[-76.242838156,40.301096767],[-76.243364708,40.300595598],[-76.243807026,40.300072834],[-76.244241859,40.299703296],[-76.244776019,40.299377731],[-76.245500903,40.299225777],[-76.246187491,40.299551721],[-76.246691001,40.299839088],[-76.247370022,40.300232669],[-76.248155971,40.300562027],[-76.248728125,40.300862157],[-76.249628356,40.300947032],[-76.250406606,40.301136819],[-76.250940489,40.301414828],[-76.251497637,40.30173763],[-76.252039086,40.302146175],[-76.25282488,40.302583619],[-76.25345052,40.302811077],[-76.253778488,40.303366079],[-76.253937173,40.303575079],[-76.254296779,40.303883817],[-76.254992904,40.304381938],[-76.255297118,40.304516271],[-76.255876788,40.304762231],[-76.256593812,40.305137323],[-76.257395171,40.305241227],[-76.258173392,40.305286821],[-76.258836849,40.305567888],[-76.259096221,40.306069569],[-76.259409279,40.306512105],[-76.259844201,40.30702088],[-76.260431486,40.307298264],[-76.261118143,40.307619607],[-76.261827605,40.307683942],[-76.262514335,40.307613384],[-76.263094037,40.307404356],[-76.263765493,40.307599725],[-76.264414201,40.307817856],[-76.265054745,40.308031576],[-76.265726251,40.308208912],[-76.266428401,40.308412938],[-76.26703086,40.308654085],[-76.267786326,40.309073733],[-76.268449942,40.309516907],[-76.269266204,40.309548494],[-76.269899505,40.309392896],[-76.270479352,40.308976609],[-76.271089746,40.308659106],[-76.271776621,40.308831734],[-76.272562135,40.308773545],[-76.273569341,40.308595793],[-76.2743476,40.308366505],[-76.274896797,40.308022618],[-76.275652181,40.307771038],[-76.276277628,40.307903787],[-76.277093987,40.308156037],[-76.277658546,40.308375027],[-76.278223435,40.308688603],[-76.278925179,40.309122287],[-76.279535612,40.308867788],[-76.280191491,40.308585759],[-76.280641871,40.308170856],[-76.281061445,40.307702258],[-76.281320913,40.307149836],[-76.281389578,40.306599531],[-76.281610735,40.305849337],[-76.282564534,40.305960386],[-76.283220706,40.306065722],[-76.284044651,40.306290812],[-76.284624423,40.306536623],[-76.28530327,40.306614677],[-76.285875579,40.30631102],[-76.286386732,40.305845874],[-76.287027445,40.305329741],[-76.287515868,40.304869351],[-76.287783034,40.304298813],[-76.288233207,40.303838851],[-76.288797601,40.303391125],[-76.28944603,40.30324426],[-76.290216716,40.303280711],[-76.291040651,40.303294039],[-76.291811381,40.30337102],[-76.292520821,40.303435167],[-76.293207228,40.303409478],[-76.293932079,40.303221192],[-76.294847515,40.302904645],[-76.295465634,40.302595923],[-76.296037932,40.302314731],[-76.296831348,40.301963509],[-76.297472368,40.301834698],[-76.29815112,40.302101856],[-76.298700744,40.302595684],[-76.299219515,40.30307183],[-76.299654104,40.303472357],[-76.300394298,40.303873949],[-76.300958855,40.304128859],[-76.301637863,40.304368965],[-76.302446409,40.30457608],[-76.303262811,40.304751569],[-76.304002995,40.304882865],[-76.304765815,40.30506345],[-76.305475361,40.305303192],[-76.30584161,40.305781035],[-76.306352778,40.306221206],[-76.306703665,40.306663184],[-76.307100561,40.307127165],[-76.30739808,40.307623798],[-76.307741459,40.308038833],[-76.308130545,40.308439837],[-76.308550022,40.308948609],[-76.309053611,40.309469926],[-76.309564671,40.309883055],[-76.310075884,40.310228615],[-76.310518384,40.310574949],[-76.311113745,40.310897028],[-76.311808002,40.311159425],[-76.312410624,40.311323761],[-76.31305909,40.311424509],[-76.313768822,40.311574106],[-76.314539328,40.311709494],[-76.315309804,40.31178632],[-76.316118476,40.311727571],[-76.316759358,40.311607667],[-76.317964954,40.311422768],[-76.318758122,40.311229034],[-76.319376077,40.310839117],[-76.32007822,40.310371652],[-76.320673061,40.310211709],[-76.321314186,40.310105289],[-76.32203134,40.310182681],[-76.322733128,40.310282763],[-76.32352649,40.310552964],[-76.324144709,40.310667509],[-76.324838738,40.310821723],[-76.325731363,40.310806992],[-76.3265478,40.310770605],[-76.327501759,40.310602006],[-76.328234001,40.310341347],[-76.329095987,40.309890009],[-76.329889684,40.309651158],[-76.330698414,40.30944816],[-76.331422923,40.309412803],[-76.332254499,40.309398724],[-76.333002247,40.309367587],[-76.333887301,40.309231258],[-76.334581738,40.309070097],[-76.335222476,40.308945587],[-76.336023419,40.308945348],[-76.336694991,40.309005156],[-76.337496237,40.309094991],[-76.33817498,40.309033086],[-76.338831151,40.308908378],[-76.339685852,40.308781368],[-76.340486793,40.308781105],[-76.341097107,40.309053299],[-76.341677011,40.309330355],[-76.343042588,40.310098292],[-76.343637606,40.310487772],[-76.344240507,40.310922198],[-76.344804887,40.311379592],[-76.345400188,40.311800597],[-76.346079036,40.312243143],[-76.346628328,40.312606113],[-76.347124505,40.312960692],[-76.34787192,40.313447473],[-76.348184911,40.313984362],[-76.348490096,40.314480797],[-76.348970812,40.315092303],[-76.34939779,40.315645872],[-76.349878729,40.316212326],[-76.350336418,40.316774546],[-76.350763685,40.317156939],[-76.351221292,40.317529975],[-76.351801224,40.31798715],[-76.3523047,40.318391167],[-76.353105859,40.318764676],[-76.353670532,40.31928509],[-76.354097719,40.319919721],[-76.354441032,40.320478757],[-76.35479199,40.320961126],[-76.355371625,40.321584956],[-76.355875351,40.321961931],[-76.356501066,40.322350986],[-76.357012252,40.322714353],[-76.35718001,40.323230395],[-76.357469861,40.323763024],[-76.357523319,40.324375],[-76.35767574,40.324877705],[-76.358133571,40.325403856],[-76.358690676,40.325726138],[-76.359262562,40.326160854],[-76.359659312,40.326557085],[-76.360063957,40.326998265],[-76.360696896,40.327450273],[-76.361124486,40.327805599],[-76.36175762,40.328266605],[-76.362238151,40.328657337],[-76.362833166,40.329087258],[-76.363359592,40.329472939],[-76.363870848,40.32989033],[-76.364481218,40.330369609],[-76.364999976,40.330683301],[-76.365442723,40.331223114],[-76.365686622,40.331715719],[-76.36579359,40.332277511],[-76.365915715,40.332933714],[-76.365999352,40.333432723],[-76.366121684,40.333971805],[-76.366167334,40.334574863],[-76.36624341,40.335173052],[-76.366357988,40.33587439],[-76.366510777,40.336408611],[-76.366655761,40.336902385],[-76.366838601,40.3374858],[-76.367006471,40.338019844],[-76.367159271,40.338536056],[-76.367144063,40.339130812],[-76.36700673,40.339672964],[-76.366861792,40.340147643],[-76.366487955,40.340692592],[-76.366067996,40.341395741],[-76.365831803,40.341979597],[-76.365724803,40.342512385],[-76.365892873,40.343019403],[-76.366380954,40.343576688],[-76.366892153,40.34402109],[-76.367487337,40.344432964],[-76.36804436,40.344759704],[-76.368563133,40.345140946],[-76.369188421,40.345493898],[-76.369867568,40.345963325],[-76.37043216,40.34631699],[-76.3709893,40.346756324],[-76.371408684,40.347134225],[-76.371904778,40.347484192],[-76.372476659,40.347887309],[-76.37298058,40.348313751],[-76.373522217,40.348658662],[-76.373888374,40.349077728],[-76.37637363,40.351619518],[-76.377692877,40.350886543],[-76.378872388,40.350375916],[-76.379909933,40.349977314],[-76.381310772,40.349712311],[-76.382283516,40.349673102],[-76.383471989,40.349603717],[-76.384197472,40.349815725],[-76.384671745,40.350085921],[-76.385035622,40.350247089],[-76.385687321,40.350377217],[-76.386553048,40.350394422],[-76.387494852,40.350603828],[-76.388218659,40.350733073],[-76.388805628,40.35122259],[-76.389579096,40.352013332],[-76.390377844,40.352279598],[-76.391065615,40.35240926],[-76.391909516,40.353116373],[-76.392533711,40.353660605],[-76.393226621,40.354038475],[-76.393774767,40.354390504],[-76.394446978,40.355513462],[-76.394712411,40.356144772],[-76.394906319,40.356804521],[-76.394958795,40.357135692],[-76.394919934,40.357363853],[-76.394097282,40.357793618],[-76.393311506,40.358161711],[-76.391985489,40.358563906],[-76.391306724,40.358875534],[-76.390698632,40.359117338],[-76.390416154,40.359410399],[-76.390353109,40.359852551],[-76.39047148,40.360347692],[-76.390700267,40.360951857],[-76.391145402,40.361553416],[-76.39133588,40.362047692],[-76.391598472,40.362541104],[-76.391985131,40.363805456],[-76.39225114,40.364464334],[-76.392162841,40.365430944],[-76.392363552,40.366421665],[-76.392293861,40.366897653],[-76.392244535,40.367862278],[-76.39251165,40.368304999],[-76.392610917,40.368871357],[-76.392496275,40.369417769],[-76.39242764,40.369891557],[-76.392778853,40.370306235],[-76.393098977,40.370730298],[-76.393533998,40.371157477],[-76.394052661,40.371480044],[-76.394624935,40.37174341],[-76.395159144,40.372034254],[-76.395555634,40.372412345],[-76.395090289,40.372800832],[-76.394487723,40.372997286],[-76.393869882,40.373166895],[-76.393198234,40.373386693],[-76.392549668,40.373655763],[-76.391855371,40.373884837],[-76.391199431,40.374099943],[-76.390634669,40.374381495],[-76.389887335,40.375093165],[-76.389238593,40.375677525],[-76.388467999,40.375957045],[-76.387788929,40.376104831],[-76.387148208,40.376184591],[-76.386362503,40.376248068],[-76.385553587,40.376257764],[-76.384439882,40.376230566],[-76.383592975,40.376218179],[-76.382806886,40.376137496],[-76.38192199,40.376085015],[-76.381136356,40.376044853],[-76.380327548,40.376113066],[-76.379564737,40.376108659],[-76.378862739,40.376071989],[-76.378046377,40.376203339],[-76.377245102,40.376352524],[-76.376306821,40.376480808],[-76.37545245,40.376554038],[-76.374689279,40.376441494],[-76.374155129,40.376132536],[-76.373613715,40.3758642],[-76.372927012,40.375764258],[-76.372247826,40.375799341],[-76.371477557,40.375862532],[-76.370683997,40.375993559],[-76.369829548,40.376044227],[-76.369120012,40.37598056],[-76.368303488,40.375904644],[-76.367728083,40.375977099],[-76.367585091,40.376062391],[-76.367463345,40.376206852],[-76.367623958,40.376443307],[-76.367639549,40.376452852],[-76.367639833,40.376471039],[-76.367990737,40.376912826],[-76.368425547,40.377461726],[-76.368486739,40.377974496],[-76.368555346,40.378545743],[-76.368517068,40.379037176],[-76.368318876,40.379521492],[-76.36804432,40.379979684],[-76.367609401,40.380354191],[-76.367029322,40.380541226],[-76.366312411,40.380770416],[-76.365610313,40.381021946],[-76.364923646,40.380962491],[-76.364222006,40.38116446],[-76.363428277,40.381619749],[-76.362978119,40.38206199],[-76.362574029,40.382616292],[-76.362192486,40.383138791],[-76.361719492,40.383563273],[-76.361238711,40.383893251],[-76.360659049,40.384120789],[-76.359964464,40.384219049],[-76.359346774,40.384460531],[-76.358675256,40.384954909],[-76.358125825,40.385222618],[-76.357363058,40.385573919],[-76.35679853,40.385823772],[-76.356065852,40.386134164],[-76.355470945,40.386393386],[-76.354853026,40.386643866],[-76.354356979,40.387041559],[-76.353632276,40.387365356],[-76.352892263,40.387567711],[-76.352167217,40.387783391],[-76.351381439,40.38805383],[-76.350740684,40.388250503],[-76.350084513,40.38855996],[-76.349489499,40.388945278],[-76.349115514,40.389337019],[-76.348878955,40.389862289],[-76.348543435,40.390429253],[-76.348085851,40.390894037],[-76.347627828,40.391264232],[-76.34704797,40.391635839],[-76.346315797,40.391829055],[-76.345628957,40.391913625],[-76.344988139,40.391979641],[-76.344194611,40.391772659],[-76.343661419,40.391628555],[-76.343425655,40.391481382],[-76.343016709,40.391295441],[-76.342642239,40.391275956],[-76.342052442,40.391401983],[-76.341555193,40.39147926],[-76.341189678,40.391651234],[-76.340532407,40.391765629],[-76.33990696,40.391975575],[-76.33934981,40.392306348],[-76.338770339,40.392700438],[-76.338274313,40.393125097],[-76.33774778,40.393608649],[-76.337282583,40.394159061],[-76.33679415,40.394484523],[-76.336138136,40.394789395],[-76.335466781,40.395044896],[-76.334863939,40.395227529],[-76.334284036,40.395639618],[-76.333894917,40.396054009],[-76.333445021,40.396505132],[-76.333093991,40.396910071],[-76.332849947,40.397381343],[-76.33259025,40.397861803],[-76.33243773,40.398399583],[-76.332346221,40.398950175],[-76.332584149,40.399705708],[-76.332420961,40.399811272],[-76.331308547,40.399885529],[-76.330553233,40.399826658],[-76.329828696,40.39985301],[-76.3290886,40.399987646],[-76.328249062,40.40006486],[-76.327425057,40.400164409],[-76.326662276,40.400344334],[-76.325991024,40.400478159],[-76.325250956,40.40057673],[-76.324518605,40.400675212],[-76.323694633,40.400720692],[-76.323023129,40.400804943],[-76.322275386,40.400831518],[-76.321397929,40.400873081],[-76.320665747,40.400980544],[-76.319971345,40.401042526],[-76.31969757,40.401076277],[-76.319246541,40.401131879],[-76.31845324,40.401240026],[-76.317781548,40.401315247],[-76.317041646,40.401404758],[-76.316172057,40.401585828],[-76.315843967,40.402134595],[-76.315508343,40.402543811],[-76.315080978,40.40302614],[-76.314638469,40.403468099],[-76.314249434,40.403895935],[-76.313913662,40.404354696],[-76.313570488,40.404944167],[-76.313379671,40.405509383],[-76.31342536,40.406022363],[-76.313921369,40.406985174],[-76.312593639,40.407284041],[-76.311983494,40.407421588],[-76.311319544,40.407424615],[-76.310693997,40.407319098],[-76.310060912,40.407299249],[-76.309084143,40.407161667],[-76.308374584,40.407034577],[-76.307687955,40.406988285],[-76.306947984,40.407059713],[-76.3062155,40.406946374],[-76.305696676,40.406645936],[-76.305139965,40.406327906],[-76.304552486,40.406037246],[-76.303941938,40.405791885],[-76.303323994,40.405582647],[-76.302309405,40.405467953],[-76.301630312,40.405678299],[-76.300844587,40.405934886],[-76.30002063,40.406196402],[-76.299395045,40.406298026],[-76.298807536,40.40650282],[-76.298174023,40.406613539],[-76.297434181,40.4065768],[-76.296823828,40.40634041],[-76.295938928,40.406228715],[-76.295145173,40.406471837],[-76.294527402,40.406712987],[-76.293810202,40.406973262],[-76.293207583,40.407236753],[-76.29259703,40.40737421],[-76.292009578,40.407583475],[-76.29135339,40.407626841],[-76.290628735,40.407517817],[-76.289911507,40.40743123],[-76.289262844,40.407501528],[-76.288774839,40.407808754],[-76.288210332,40.408315044],[-76.28769885,40.408685601],[-76.287187963,40.409087677],[-76.286745227,40.409529532],[-76.286340908,40.409939426],[-76.285944149,40.410340228],[-76.285371997,40.410562801],[-76.284593881,40.410296683],[-76.283746828,40.410026819],[-76.282907681,40.409707312],[-76.282335523,40.409425369],[-76.281854811,40.408935227],[-76.281374323,40.408476601],[-76.281015555,40.407949055],[-76.280672179,40.407475396],[-76.28019181,40.407138377],[-76.279505002,40.406848693],[-76.278772504,40.406712663],[-76.27796404,40.406590969],[-76.277422318,40.406241108],[-76.277040598,40.405763353],[-76.276705071,40.405294096],[-76.27656671,40.404866215],[-76.276454524,40.404741503],[-76.275842847,40.404663989],[-76.275217168,40.40480152],[-76.274576573,40.404948221],[-76.273889695,40.405081906],[-76.273111649,40.405126521],[-76.272417475,40.404931466],[-76.271784078,40.404776274],[-76.270883886,40.404709599],[-76.270250603,40.404599444],[-76.269365578,40.404379433],[-76.268740038,40.404210635],[-76.268030429,40.404173376],[-76.267320991,40.404145127],[-76.266664608,40.404098259],[-76.265939846,40.404097189],[-76.265169291,40.404069597],[-76.264490315,40.403937374],[-76.263674122,40.403851715],[-76.262804153,40.403825185],[-76.261942132,40.40388865],[-76.261278477,40.403945441],[-76.260431618,40.404071789],[-76.259584454,40.404063003],[-76.258798771,40.404053545],[-76.25786814,40.404032141],[-76.257188971,40.404066558],[-76.25631935,40.404098532],[-76.255418929,40.404018228],[-76.254556762,40.403955513],[-76.25383972,40.403913745],[-76.253084286,40.403926439],[-76.251871536,40.404241373],[-76.252115653,40.404716197],[-76.252183995,40.405224454],[-76.252138336,40.405760977],[-76.252039303,40.406379151],[-76.252077476,40.406928276],[-76.25197056,40.407478971],[-76.251901853,40.40798421],[-76.251634799,40.408617722],[-76.250994188,40.408728255],[-76.250513403,40.409057772],[-76.250154617,40.409611193],[-76.249720011,40.410147412],[-76.24958249,40.410617357],[-76.248865287,40.410949425],[-76.247995569,40.411080434],[-76.247263126,40.411245993],[-76.246484994,40.411330961],[-76.245790658,40.411406011],[-76.245249157,40.411740667],[-76.244928525,40.412248616],[-76.244531985,40.412775395],[-76.244142823,40.413202997],[-76.243616176,40.413645592],[-76.242975558,40.414179497],[-76.242685963,40.414610022],[-76.242709388,40.414718955],[-76.243364423,40.414855482],[-76.244012998,40.415033183],[-76.244539628,40.415468949],[-76.244776123,40.415930354],[-76.244959229,40.416392339],[-76.245195574,40.416885279],[-76.245600009,40.417344874],[-76.246362948,40.417530341],[-76.247087806,40.417509008],[-76.247766773,40.417555736],[-76.248430407,40.417728748],[-76.24876613,40.4182161],[-76.248743288,40.418932548],[-76.248514504,40.419448522],[-76.248224628,40.419947137],[-76.247728508,40.420488516],[-76.247460092,40.420952097],[-76.247530344,40.421055793],[-76.248148098,40.421128116],[-76.248865458,40.421196944],[-76.249628197,40.421269779],[-76.250772577,40.421581722],[-76.251375391,40.421849963],[-76.251688196,40.42231053],[-76.251627329,40.422941807],[-76.251489777,40.423470318],[-76.251238298,40.424112658],[-76.25128384,40.424661699],[-76.251367489,40.425084799],[-76.251604377,40.425164006],[-76.252039034,40.42500036],[-76.252794498,40.424996683],[-76.253565021,40.425267599],[-76.254251576,40.425539417],[-76.254862198,40.425947204],[-76.255296878,40.426343376],[-76.255762234,40.426842812],[-76.256136222,40.427460363],[-76.256197263,40.428108325],[-76.255670693,40.428596016],[-76.255052938,40.428895511],[-76.25468655,40.429340917],[-76.255052773,40.429778375],[-76.255380977,40.430211738],[-76.25493069,40.430563473],[-76.25432053,40.43077729],[-76.253778668,40.431098475],[-76.253381922,40.431517183],[-76.2531758,40.431983367],[-76.252908816,40.432486243],[-76.252664613,40.433024919],[-76.252893814,40.433504404],[-76.253679476,40.433513903],[-76.254358396,40.433628156],[-76.254976679,40.433770091],[-76.255731969,40.433869992],[-76.256395633,40.43401593],[-76.256945014,40.434275719],[-76.257486709,40.434558107],[-76.258028161,40.435025168],[-76.258341109,40.435566799],[-76.258234454,40.436189569],[-76.258127606,40.436762787],[-76.257768885,40.4371856],[-76.257211792,40.437461924],[-76.256555933,40.437757334],[-76.256288878,40.438255722],[-76.256303874,40.438863648],[-76.256235423,40.439382389],[-76.256067487,40.439960785],[-76.25590713,40.440471523],[-76.25565561,40.440974249],[-76.25547241,40.441485229],[-76.255724022,40.442135629],[-76.256151365,40.442585929],[-76.256281062,40.443120542],[-76.256632205,40.443594191],[-76.256983051,40.4441309],[-76.256990605,40.444734405],[-76.256509937,40.445081962],[-76.256097989,40.445676516],[-76.255777573,40.446220521],[-76.255617355,40.446798823],[-76.255472414,40.447385969],[-76.255342699,40.447900874],[-76.255113984,40.448461904],[-76.254518563,40.448981865],[-76.253855015,40.449187259],[-76.253267468,40.449378319],[-76.252718162,40.449663535],[-76.252077332,40.449485802],[-76.251474694,40.449181525],[-76.250933083,40.448908124],[-76.250337763,40.449117257],[-76.249643699,40.449228361],[-76.249162844,40.448733574],[-76.249063724,40.448077014],[-76.24903338,40.447572843],[-76.24903313,40.446942232],[-76.249216317,40.446327654],[-76.249147498,40.445774361],[-76.248522099,40.445492837],[-76.247797284,40.445433097],[-76.247164071,40.44534534],[-76.246446932,40.445362085],[-76.245775636,40.445486438],[-76.24512692,40.445736663],[-76.24471489,40.446272619],[-76.244356516,40.44668188],[-76.243829831,40.447155996],[-76.243944508,40.447699791],[-76.244051219,40.448410336],[-76.244074225,40.448919083],[-76.243654604,40.449324491],[-76.243044086,40.449610329],[-76.242426122,40.449711564],[-76.241800676,40.449808373],[-76.241113855,40.449892326],[-76.240473002,40.450052354],[-76.239687227,40.450186907],[-76.239038532,40.450301967],[-76.238359559,40.450192124],[-76.237627258,40.450249522],[-76.23716173,40.450605849],[-76.236414067,40.450568804],[-76.235391758,40.450606761],[-76.234705055,40.450618605],[-76.234140745,40.450894896],[-76.233652171,40.451503698],[-76.23390404,40.451955953],[-76.233720927,40.452421859],[-76.233209996,40.452756131],[-76.232454491,40.452836258],[-76.231699241,40.452889355],[-76.230882773,40.452920571],[-76.230173368,40.452941637],[-76.229471496,40.452890551],[-76.228212589,40.452728262],[-76.227380814,40.452809169],[-76.226816377,40.453162],[-76.226564474,40.453637632],[-76.226328167,40.454140127],[-76.22593146,40.454536217],[-76.225328633,40.454866933],[-76.224672473,40.455040542],[-76.223825839,40.455076535],[-76.222780556,40.45533534],[-76.222345523,40.455754344],[-76.221826784,40.456232791],[-76.22112495,40.456510471],[-76.220629184,40.457056241],[-76.220651986,40.457542466],[-76.22075868,40.458041327],[-76.220979747,40.458525463],[-76.221185934,40.45902327],[-76.221613095,40.459694413],[-76.221895322,40.460380601],[-76.222093959,40.460887494],[-76.221857183,40.46136746],[-76.221582734,40.461883862],[-76.221376829,40.462358998],[-76.221224178,40.462986719],[-76.221292606,40.463467964],[-76.221506383,40.464037754],[-76.22112497,40.464550784],[-76.220506824,40.464651908],[-76.219751595,40.464713934],[-76.219034404,40.464739519],[-76.218217948,40.464820198],[-76.217546764,40.464903845],[-76.216898104,40.465050311],[-76.215891275,40.465141989],[-76.214983293,40.465196588],[-76.214312001,40.465212645],[-76.213587017,40.465215753],[-76.212968995,40.465037561],[-76.212366367,40.464854702],[-76.211573066,40.464768428],[-76.21104638,40.465057724],[-76.21064954,40.465660965],[-76.21048167,40.46618523],[-76.210481929,40.46681584],[-76.210901299,40.467261884],[-76.211191527,40.467700273],[-76.211496629,40.46835021],[-76.211603395,40.468876096],[-76.211061651,40.46917006],[-76.210451539,40.469311584],[-76.209627358,40.469396788],[-76.208925333,40.469489716],[-76.207857306,40.469627004],[-76.207018291,40.46974838],[-76.20614851,40.469861061],[-76.205171671,40.470006385],[-76.204576818,40.470300867],[-76.204134068,40.470773936],[-76.204073054,40.47127906],[-76.203935813,40.471789484],[-76.203630646,40.472288144],[-76.203165071,40.472887569],[-76.202608286,40.473231193],[-76.202120044,40.47361464],[-76.201791978,40.474154074],[-76.201288431,40.474672807],[-76.200678198,40.474976437],[-76.200021802,40.475172438],[-76.199297067,40.475319598],[-76.198679184,40.475546712],[-76.198152888,40.476052164],[-76.197687451,40.476435356],[-76.197328587,40.476862485],[-76.196802346,40.477268825],[-76.196207424,40.477482185],[-76.19566558,40.477861657],[-76.195398581,40.478355398],[-76.195314713,40.478865257],[-76.195497795,40.479417401],[-76.195589097,40.479929955],[-76.195673089,40.480424567],[-76.195551082,40.480966355],[-76.19487211,40.481099499],[-76.194269519,40.481276886],[-76.193643729,40.481499569],[-76.193025781,40.481623063],[-76.192628912,40.482113631],[-76.192736067,40.482689085],[-76.192789143,40.483188521],[-76.192850393,40.483836521],[-76.19278162,40.484346222],[-76.192591016,40.484888714],[-76.192507063,40.48539407],[-76.192522355,40.485925427],[-76.192560412,40.486429523],[-76.192751132,40.486914028],[-76.192980228,40.487420657],[-76.193498797,40.487762129],[-76.194216143,40.487979944],[-76.194864366,40.488126393],[-76.195978448,40.488218467],[-76.196710829,40.488327999],[-76.197466028,40.488558906],[-76.198137652,40.488817706],[-76.198732666,40.489162873],[-76.199228544,40.489594653],[-76.199694074,40.489936666],[-76.199937863,40.49041609],[-76.200327229,40.490952571],[-76.200517904,40.491513633],[-76.200662782,40.492007611],[-76.200708493,40.492565675],[-76.20076213,40.49309213],[-76.200914499,40.49361305],[-76.201212222,40.494096429],[-76.201372388,40.494599249],[-76.201288372,40.495244246],[-76.201181526,40.495745343],[-76.201105314,40.496228101],[-76.201151247,40.496777155],[-76.201158864,40.497349128],[-76.200952794,40.497932332],[-76.200792652,40.498402459],[-76.200594256,40.49894053],[-76.200227839,40.500025383],[-76.200266211,40.500502444],[-76.200243271,40.501056719],[-76.200182207,40.501665441],[-76.200151487,40.502197275],[-76.200151549,40.502697255],[-76.200266157,40.503209561],[-76.200510281,40.503828626],[-76.200792781,40.50440283],[-76.200949366,40.504607525],[-76.201095964,40.504850333],[-76.201389146,40.505335946],[-76.201717904,40.505821189],[-76.201974093,40.506225745],[-76.202302847,40.506710978],[-76.202485505,40.506980559],[-76.202704682,40.507304049],[-76.202925318,40.50770897],[-76.203188127,40.508219539],[-76.203432142,40.508685452],[-76.203615543,40.509206048],[-76.203730002,40.509686819],[-76.203729869,40.510236352],[-76.203737574,40.510749766],[-76.203623055,40.511503185],[-76.203592483,40.512021503],[-76.203685915,40.512451915],[-76.203692712,40.512831913],[-76.203733119,40.513102964],[-76.203809589,40.513400796],[-76.20395962,40.513833601],[-76.204111582,40.51437498],[-76.204192425,40.514917089],[-76.204377044,40.515295226],[-76.204489573,40.515619831],[-76.204677111,40.516160827],[-76.204796444,40.516865426],[-76.204804222,40.517299709],[-76.204818311,40.518086846],[-76.204754476,40.51849473],[-76.204656036,40.518957269],[-76.2044572,40.519773777],[-76.20421989,40.52042779],[-76.203840309,40.521083295],[-76.203422229,40.521576313],[-76.202970524,40.52217826],[-76.202552427,40.522671275],[-76.201957955,40.523247562],[-76.201463967,40.523682874],[-76.201358458,40.523821632],[-76.201135956,40.524114195],[-76.200678257,40.524452273],[-76.200411033,40.52490098],[-76.200151855,40.525385645],[-76.199869308,40.525843502],[-76.199632816,40.526318923],[-76.199495416,40.526910415],[-76.199152127,40.527418466],[-76.198816486,40.528003006],[-76.198580116,40.5284649],[-76.198282319,40.528958965],[-76.19811474,40.529451673],[-76.197847707,40.529891364],[-76.197565393,40.530385264],[-76.197443095,40.531183796],[-76.199533824,40.531112561],[-76.200311711,40.530829709],[-76.201433495,40.530714458],[-76.20333322,40.530609103],[-76.204187601,40.530334456],[-76.205812613,40.530362542],[-76.207033234,40.530142597],[-76.207964194,40.529880623],[-76.210436011,40.529399815],[-76.212267351,40.529515744],[-76.213853956,40.529440519],[-76.214220303,40.530256466],[-76.214365242,40.530763933],[-76.214510172,40.531311936],[-76.214617082,40.531797282],[-76.214723903,40.532318661],[-76.214906966,40.532893289],[-76.215181723,40.533336327],[-76.215341961,40.533893179],[-76.215440959,40.534491211],[-76.215502131,40.534977034],[-76.215578135,40.535507747],[-76.215624064,40.536007242],[-76.215662104,40.536641952],[-76.215723204,40.53712327],[-76.215814661,40.537712377],[-76.215921754,40.538206725],[-76.215936897,40.538697538],[-76.21600562,40.539232829],[-76.216043729,40.539727901],[-76.216188826,40.540262387],[-76.216318468,40.540819559],[-76.216386859,40.541377367],[-76.216364127,40.541895613],[-76.216371848,40.542485596],[-76.216379291,40.54299901],[-76.216547311,40.543515244],[-76.21625734,40.543968722],[-76.216295568,40.54449082],[-76.216318478,40.54498155],[-76.216295323,40.545477269],[-76.216173387,40.546019072],[-76.21592144,40.546575753],[-76.215723325,40.547068801],[-76.215624124,40.547583346],[-76.2155249,40.548075362],[-76.215341902,40.548752932],[-76.215174087,40.549227648],[-76.214617043,40.549485749],[-76.21434224,40.549943577],[-76.21461716,40.550431654],[-76.214853619,40.550915635],[-76.215105173,40.551376931],[-76.215387396,40.551860431],[-76.215692635,40.552330169],[-76.215998022,40.552849449],[-76.216341361,40.5533233],[-76.216593107,40.553793592],[-76.216737979,40.554274037],[-76.21674556,40.554773934],[-76.216135337,40.555032602],[-76.215425807,40.555148174],[-76.214731629,40.555254568],[-76.214006547,40.555469391],[-76.21336578,40.555692331],[-76.212740252,40.555861054],[-76.212084147,40.556012078],[-76.211496506,40.556193909],[-76.210756573,40.556363823],[-76.210123149,40.556586667],[-76.209505408,40.556696734],[-76.208765047,40.556925195],[-76.208322731,40.557348724],[-76.208086111,40.557819647],[-76.207987088,40.558347687],[-76.207971957,40.558861337],[-76.208017479,40.559360839],[-76.208139803,40.559882059],[-76.208208487,40.560417352],[-76.208292258,40.560970509],[-76.208337986,40.561460999],[-76.208460167,40.561932673],[-76.208681359,40.562430337],[-76.208765249,40.563051053],[-76.208925632,40.563594395],[-76.208956105,40.564139099],[-76.209009379,40.564679057],[-76.209230551,40.565379421],[-76.209291581,40.565878751],[-76.20948251,40.566394747],[-76.20951299,40.566898911],[-76.209535861,40.56738964],[-76.209451803,40.567908514],[-76.209513001,40.5684574],[-76.209818032,40.568913644],[-76.209528385,40.569394132],[-76.208933232,40.569616571],[-76.208238777,40.569840041],[-76.207658907,40.570071321],[-76.207048548,40.570352463],[-76.206522254,40.570628221],[-76.205911789,40.57098593],[-76.205431276,40.571324262],[-76.204919892,40.571649404],[-76.20446997,40.572005433],[-76.203836784,40.572250761],[-76.203867207,40.572836005],[-76.204157213,40.573278906],[-76.204569028,40.573720538],[-76.204813291,40.574226974],[-76.204988732,40.574725122],[-76.205247986,40.575325994],[-76.205515274,40.57581868],[-76.20575927,40.57643322],[-76.205934862,40.576917852],[-76.206156173,40.577420019],[-76.206270519,40.577968351],[-76.20637732,40.578467212],[-76.206552746,40.578983372],[-76.207193813,40.579111803],[-76.207727533,40.579389996],[-76.208009828,40.579914046],[-76.208002409,40.580405099],[-76.207910706,40.58091053],[-76.207689625,40.581408316],[-76.207346155,40.581835307],[-76.207307929,40.582358206],[-76.207224326,40.582944638],[-76.206865445,40.583439354],[-76.206545047,40.583897636],[-76.206301019,40.584413677],[-76.2061485,40.584946774],[-76.206064443,40.585447627],[-76.205949983,40.585962313],[-76.205957651,40.586471218],[-76.206045903,40.586878129],[-76.206075922,40.586898546],[-76.206543245,40.58705463],[-76.207163101,40.587035175],[-76.207803824,40.586996946],[-76.208589663,40.586916656],[-76.209230645,40.586995528],[-76.209978216,40.587127333],[-76.210695418,40.587214406],[-76.211412834,40.587251927],[-76.212000096,40.587074603],[-76.212412056,40.587475664],[-76.212740156,40.587976701],[-76.213091068,40.588472991],[-76.213404045,40.588974183],[-76.213655895,40.589525565],[-76.213846535,40.590082092],[-76.21402209,40.590580223],[-76.214128916,40.591218706],[-76.21393795,40.591828793],[-76.213648,40.592336321],[-76.21333532,40.592772015],[-76.213014773,40.593221307],[-76.212885262,40.59371814],[-76.213289645,40.594330976],[-76.213556423,40.594787613],[-76.213861757,40.595252848],[-76.214060226,40.595750746],[-76.214182257,40.596289967],[-76.214235628,40.59689298],[-76.214250827,40.597446847],[-76.214311896,40.597923658],[-76.214418668,40.598517101],[-76.214479498,40.599020941],[-76.214723889,40.599504832],[-76.21500601,40.600033368],[-76.215570638,40.600293177],[-76.216211686,40.600448584],[-76.216829685,40.600351988],[-76.217416895,40.600003475],[-76.217935936,40.599705224],[-76.218431638,40.599362175],[-76.218942804,40.598996439],[-76.219515,40.598738162],[-76.220209299,40.598654253],[-76.220842742,40.598778181],[-76.221429982,40.599001694],[-76.22201,40.599234283],[-76.222696542,40.599190981],[-76.223306768,40.599013358],[-76.223726616,40.598522448],[-76.224146163,40.598076581],[-76.224558198,40.597603769],[-76.225084699,40.597210817],[-76.225641598,40.596966184],[-76.22636617,40.596661209],[-76.226991743,40.596415837],[-76.227632618,40.596300934],[-76.228289032,40.596469613],[-76.228922056,40.59661152],[-76.229509649,40.596934086],[-76.230150533,40.597161474],[-76.230859939,40.597158421],[-76.231508385,40.597174028],[-76.232195264,40.597130668],[-76.232889311,40.596974621],[-76.233538011,40.596823557],[-76.234232165,40.596613448],[-76.234796863,40.596373189],[-76.235330946,40.596074702],[-76.235910854,40.595838781],[-76.236475326,40.595566986],[-76.2370704,40.595272338],[-76.237863797,40.594998086],[-76.238542937,40.59493676],[-76.239176091,40.594925458],[-76.24019073,40.595193831],[-76.239656573,40.596005831],[-76.23925999,40.596428983],[-76.239130426,40.596952873],[-76.239282774,40.597482732],[-76.239656838,40.597879605],[-76.240129745,40.598207846],[-76.240633299,40.598576291],[-76.240999424,40.598982245],[-76.241289524,40.599510631],[-76.2414724,40.599972606],[-76.241808307,40.600401404],[-76.242212539,40.600870007],[-76.242556022,40.601348267],[-76.242914438,40.601794838],[-76.243158543,40.602251646],[-76.24334937,40.602763079],[-76.243601132,40.603273853],[-76.243776726,40.603740405],[-76.24386815,40.604248404],[-76.244012954,40.604746818],[-76.243753723,40.605209044],[-76.243143456,40.605364265],[-76.242410848,40.605475739],[-76.241731749,40.605604656],[-76.241075896,40.605791876],[-76.240442447,40.606032906],[-76.239839688,40.606255584],[-76.239259995,40.606487017],[-76.238687561,40.606772423],[-76.238138507,40.607044063],[-76.237413556,40.607371636],[-76.236841642,40.607625498],[-76.236299576,40.607897054],[-76.235727388,40.608195955],[-76.235132327,40.608517618],[-76.234506802,40.608790057],[-76.233904254,40.609066755],[-76.233339741,40.609383578],[-76.232706315,40.609629068],[-76.232088398,40.609914926],[-76.231096322,40.610484027],[-76.23196639,40.611235978],[-76.232248754,40.611746452],[-76.232439149,40.612217368],[-76.232698637,40.61276862],[-76.232851291,40.613275975],[-76.232942795,40.613752442],[-76.232988769,40.614323999],[-76.233141224,40.61484037],[-76.233781935,40.61466686],[-76.233928448,40.614635916],[-76.233973676,40.614633987],[-76.23481668,40.614553472],[-76.235565433,40.61445012],[-76.236595186,40.614319924],[-76.236751835,40.614267673],[-76.237314465,40.614214674],[-76.237840726,40.614506316],[-76.238397807,40.614766091],[-76.238992759,40.615016453],[-76.239610985,40.615226014],[-76.240167958,40.615539847],[-76.240610445,40.615994526],[-76.240923125,40.616441593],[-76.241205435,40.616884481],[-76.241403834,40.617364304],[-76.241518128,40.617890072],[-76.241594607,40.618569393],[-76.241701421,40.6190502],[-76.241678673,40.619577442],[-76.241640327,40.62010035],[-76.241296884,40.620527442],[-76.240999503,40.621008088],[-76.240854676,40.621487095],[-76.240679,40.62201598],[-76.240350943,40.622456418],[-76.239809246,40.62273249],[-76.239137776,40.622744201],[-76.238451158,40.622715534],[-76.237810492,40.622753933],[-76.237161998,40.622950062],[-76.236559317,40.623145694],[-76.23601001,40.623471377],[-76.235620803,40.623943994],[-76.235269793,40.624384653],[-76.234888491,40.624785106],[-76.234300956,40.625102181],[-76.233202165,40.625465252],[-76.232462252,40.625815474],[-76.231991002,40.625980167],[-76.231746816,40.62621777],[-76.231835122,40.626495084],[-76.232035004,40.626792953],[-76.23235547,40.62722194],[-76.232805642,40.627811695],[-76.233186831,40.628267062],[-76.233598837,40.628830196],[-76.234049119,40.629284817],[-76.234575384,40.629711601],[-76.23520865,40.629988587],[-76.235819309,40.630342402],[-76.236230913,40.630801932],[-76.236520931,40.631240246],[-76.237032366,40.631662668],[-76.23761978,40.632057254],[-76.238146154,40.632366906],[-76.238771785,40.632689008],[-76.239298162,40.633138287],[-76.239656613,40.633638914],[-76.2400304,40.634328367],[-76.240281535,40.634373343],[-76.240678913,40.634208992],[-76.241319846,40.634098496],[-76.242113188,40.633936822],[-76.242822825,40.63396522],[-76.243425759,40.634296547],[-76.244173167,40.634567765],[-76.244844719,40.634812757],[-76.245416879,40.635157918],[-76.245805979,40.635653693],[-76.246294186,40.636292532],[-76.246706321,40.636675448],[-76.247332027,40.637195686],[-76.24775902,40.637600957],[-76.248262545,40.638208094],[-76.24891118,40.638192069],[-76.249513266,40.638087396],[-76.249779505,40.638127413],[-76.250475013,40.638900325],[-76.250871851,40.639292401],[-76.251222911,40.639707493],[-76.251448501,40.639948866],[-76.252011394,40.640133417],[-76.252336846,40.640127823],[-76.25304614,40.64013364],[-76.253877919,40.640187668],[-76.254541478,40.640198469],[-76.254970623,40.640221037],[-76.255499775,40.640072279],[-76.255907488,40.639908871],[-76.256487266,40.639708882],[-76.257181221,40.63944909],[-76.257806952,40.639217064],[-76.258424954,40.638967101],[-76.259104213,40.638811057],[-76.259729656,40.638524972],[-76.260522992,40.63820552],[-76.26110288,40.63781633],[-76.261652161,40.637549082],[-76.262346665,40.637320777],[-76.262979943,40.637196751],[-76.263651232,40.637148873],[-76.264276864,40.637069951],[-76.264917666,40.636914294],[-76.265520401,40.636759048],[-76.266168771,40.636553753],[-76.266832551,40.636168118],[-76.267473434,40.635899839],[-76.268099093,40.635667757],[-76.268755314,40.635448859],[-76.269342653,40.635203661],[-76.270014199,40.634917021],[-76.270632021,40.63468051],[-76.27122707,40.634453252],[-76.271784246,40.634176864],[-76.272730043,40.63385565],[-76.27302764,40.63464061],[-76.273225977,40.635102368],[-76.273409064,40.635577791],[-76.273515854,40.636063068],[-76.273683781,40.636538667],[-76.273935759,40.637022344],[-76.27420264,40.637492343],[-76.274469717,40.637953331],[-76.274874111,40.638502885],[-76.27503421,40.639109192],[-76.27518688,40.639616491],[-76.275324008,40.640141962],[-76.275507154,40.640657928],[-76.275675133,40.641250629],[-76.276491569,40.642088402],[-76.276934063,40.642443847],[-76.277429998,40.642771672],[-76.277941006,40.643153383],[-76.278436895,40.643517241],[-76.278772497,40.643963947],[-76.279100634,40.644464777],[-76.279459368,40.644960778],[-76.279672843,40.645417843],[-76.280000904,40.645855623],[-76.280351797,40.646347197],[-76.280611429,40.646839782],[-76.280916075,40.646689263],[-76.281470021,40.646570132],[-76.281913008,40.64646636],[-76.282300117,40.646349088],[-76.282833904,40.646145438],[-76.283385676,40.645913359],[-76.284140539,40.645636637],[-76.284858589,40.645374445],[-76.285687297,40.64508278],[-76.286772008,40.644604659],[-76.28721416,40.64445851],[-76.288613136,40.64393451],[-76.289349693,40.643672086],[-76.290179185,40.643422728],[-76.291117169,40.643030954],[-76.292147282,40.642609892],[-76.293010823,40.642204794],[-76.294041719,40.641826068],[-76.29477796,40.641549486],[-76.29592005,40.641169496],[-76.2968607,40.640918861],[-76.29724257,40.640838074],[-76.297724051,40.640640077],[-76.29840327,40.640524342],[-76.298708369,40.641011871],[-76.29899829,40.64145903],[-76.299326248,40.641905761],[-76.299722833,40.642365233],[-76.300157924,40.642846793],[-76.300440155,40.643316555],[-76.300760657,40.643853454],[-76.301073215,40.644304858],[-76.301439378,40.64473764],[-76.301805749,40.645237982],[-76.302172039,40.645639233],[-76.302591554,40.646134468],[-76.303003652,40.646553216],[-76.303362088,40.646986071],[-76.303621645,40.647447083],[-76.304117375,40.647945956],[-76.304460669,40.648378987],[-76.304933893,40.648765507],[-76.305528837,40.649024528],[-76.306162164,40.649053391],[-76.30649782,40.649472999],[-76.30678772,40.650010223],[-76.306757077,40.65054207],[-76.306353053,40.650938508],[-76.305887376,40.651281592],[-76.305399076,40.651602407],[-76.304857547,40.651844896],[-76.3047638,40.652007426],[-76.305154959,40.652542045],[-76.305612755,40.652969274],[-76.305910265,40.653479388],[-76.306246172,40.653948531],[-76.306894648,40.653936687],[-76.307542974,40.6538798],[-76.30824502,40.653997964],[-76.308893542,40.654121238],[-76.309549477,40.654037227],[-76.310198054,40.653822676],[-76.310907547,40.653566888],[-76.311609553,40.653306682],[-76.312265783,40.653087526],[-76.312679875,40.652928374],[-76.312993277,40.652950353],[-76.313394647,40.653182793],[-76.313867915,40.653528736],[-76.314424617,40.653851205],[-76.315180241,40.654175914],[-76.315721697,40.654530081],[-76.31637023,40.654671325],[-76.317148611,40.65476154],[-76.317850375,40.654884157],[-76.318384479,40.655314968],[-76.318628467,40.65578513],[-76.318979185,40.656060311],[-76.319098895,40.656074102],[-76.319440443,40.65600492],[-76.319681434,40.6558902],[-76.319697587,40.655883451],[-76.320390845,40.655593821],[-76.320947707,40.655321701],[-76.321512485,40.655076515],[-76.322153398,40.65481244],[-76.32299276,40.65478931],[-76.323671817,40.654772519],[-76.32435837,40.654742124],[-76.32507561,40.654823978],[-76.325357692,40.655311691],[-76.325678114,40.655794474],[-76.326242556,40.656130309],[-76.326822607,40.656357863],[-76.32723473,40.656785532],[-76.327639018,40.657190765],[-76.32812718,40.657667101],[-76.328325481,40.658160281],[-76.328081257,40.658613513],[-76.327974515,40.659195781],[-76.327898374,40.659755178],[-76.327776247,40.660270063],[-76.327386964,40.660697933],[-76.326738789,40.660989147],[-76.326067104,40.661195053],[-76.325479754,40.661440518],[-76.324785348,40.66175027],[-76.324533623,40.662424286],[-76.325006616,40.662788201],[-76.325518055,40.66316969],[-76.325739181,40.663658111],[-76.325754361,40.664144388],[-76.325679415,40.664551211],[-76.325787715,40.664645317],[-76.326624392,40.664674898],[-76.327264926,40.664816166],[-76.327898149,40.664944017],[-76.328737332,40.664961387],[-76.329424048,40.664971502],[-76.330064967,40.664946102],[-76.330866099,40.664927859],[-76.331522327,40.664929301],[-76.332163214,40.664957934],[-76.332781089,40.665279618],[-76.33317024,40.665662483],[-76.333383947,40.666164487],[-76.333544049,40.666685116],[-76.33374991,40.667182712],[-76.33394835,40.667716418],[-76.334101008,40.668196603],[-76.334329767,40.668729956],[-76.334947674,40.668920999],[-76.335657252,40.668944321],[-76.336321086,40.668806016],[-76.337061363,40.668792942],[-76.337686901,40.669069459],[-76.338083663,40.669479246],[-76.338640577,40.669707009],[-76.339204941,40.670011252],[-76.339189807,40.67052941],[-76.338876949,40.670969944],[-76.338518521,40.671460563],[-76.338297046,40.671922549],[-76.338197929,40.672401141],[-76.338251238,40.672923012],[-76.338480152,40.673442841],[-76.338793112,40.673876118],[-76.339098141,40.674300479],[-76.339220169,40.67478101],[-76.339762127,40.675053982],[-76.340372347,40.674875739],[-76.34102095,40.67460246],[-76.341661761,40.67438332],[-76.34240182,40.674172027],[-76.343149375,40.673929112],[-76.343851359,40.673718255],[-76.344561068,40.673543337],[-76.345255171,40.67336409],[-76.34593427,40.673230059],[-76.346635936,40.673059726],[-76.347391291,40.672893263],[-76.348039919,40.67291722],[-76.348757266,40.672791734],[-76.349390191,40.672568135],[-76.350000831,40.67235831],[-76.350610971,40.672216046],[-76.351152398,40.672162113],[-76.35136003,40.672283025],[-76.351442628,40.67264322],[-76.35148856,40.673160661],[-76.351694223,40.673622185],[-76.35194616,40.674159737],[-76.352190323,40.674715395],[-76.352472467,40.675284125],[-76.35270132,40.675776902],[-76.352975951,40.676485345],[-76.353289035,40.677193336],[-76.353517886,40.67775818],[-76.353846082,40.678335371],[-76.35418928,40.67883131],[-76.354570799,40.679448409],[-76.354830144,40.680093967],[-76.354982843,40.680713751],[-76.355074018,40.681235167],[-76.355173417,40.681760986],[-76.355270645,40.68211684],[-76.355476094,40.682237007],[-76.356058277,40.68214246],[-76.356684121,40.682369327],[-76.357134327,40.682724366],[-76.357385807,40.683198852],[-76.357530791,40.683710621],[-76.357721629,40.684221856],[-76.358011661,40.684664355],[-76.358324411,40.685205683],[-76.358507493,40.685717003],[-76.358812701,40.686159325],[-76.35911032,40.686610742],[-76.359232414,40.687086748],[-76.359369669,40.687580591],[-76.359621273,40.688023537],[-76.359697799,40.688531608],[-76.359651861,40.689018593],[-76.359690027,40.689531627],[-76.360063851,40.689928095],[-76.360529201,40.690260424],[-76.36117011,40.690496094],[-76.361826104,40.690618978],[-76.362451879,40.690764734],[-76.363001271,40.691118588],[-76.363573504,40.691377566],[-76.364214163,40.691617728],[-76.364992385,40.691658073],[-76.36564843,40.691600767],[-76.366571794,40.69150426],[-76.367235503,40.69133425],[-76.36794488,40.691226755],[-76.368692794,40.691087267],[-76.369356397,40.691074894],[-76.370027964,40.690837221],[-76.370722171,40.690657812],[-76.371462026,40.690649026],[-76.372102894,40.690519795],[-76.372583647,40.690176269],[-76.373026317,40.689779142],[-76.3735983,40.689430019],[-76.374094118,40.689063783],[-76.374681713,40.688773027],[-76.375467573,40.688610523],[-76.376222841,40.688542966],[-76.377130991,40.688482588],[-76.377993124,40.688485813],[-76.378832222,40.6883767],[-76.379465379,40.688396162],[-76.380716749,40.688462275],[-76.381685462,40.688486717],[-76.382585866,40.688696639],[-76.383242004,40.689004073],[-76.383844804,40.689253583],[-76.384409201,40.689719753],[-76.383531863,40.690090605],[-76.382707853,40.690375233],[-76.381960088,40.690717496],[-76.381291031,40.690976548],[-76.380602102,40.691436397],[-76.379922994,40.691701252],[-76.379274671,40.692024294],[-76.378832214,40.692484501],[-76.378252277,40.692770684],[-76.377649703,40.693250815],[-76.377252981,40.69366993],[-76.376772418,40.694238684],[-76.376398245,40.69481968],[-76.376146648,40.695426237],[-76.375955879,40.696131162],[-76.375795519,40.696696092],[-76.375627669,40.697184544],[-76.37563527,40.697896111],[-76.375795791,40.698452705],[-76.375932908,40.698987074],[-76.376238309,40.699681576],[-76.376871337,40.700155972],[-76.377420515,40.700617852],[-76.377954737,40.701179],[-76.378198861,40.701860716],[-76.378412557,40.702322094],[-76.378862751,40.702807667],[-76.379114641,40.703309125],[-76.37936637,40.703981739],[-76.379610221,40.704469779],[-76.379777909,40.704773533],[-76.379645834,40.704988681],[-76.379152632,40.705096821],[-76.378374436,40.705119628],[-76.377657069,40.705150715],[-76.376894316,40.70524089],[-76.376154202,40.705335297],[-76.375307212,40.705358905],[-76.374666677,40.705366533],[-76.373865356,40.705254463],[-76.373224355,40.705347671],[-76.372461774,40.705446822],[-76.371736732,40.705500483],[-76.37104256,40.705652864],[-76.370271842,40.70580615],[-76.369608257,40.706079771],[-76.369287679,40.706592545],[-76.368967297,40.707024241],[-76.368601315,40.707433954],[-76.368158592,40.707871601],[-76.367723704,40.708349692],[-76.367288845,40.708827779],[-76.36688447,40.709314514],[-76.366487676,40.709720081],[-76.366052872,40.710220686],[-76.365618167,40.710581659],[-76.365022925,40.710962545],[-76.364404871,40.711222085],[-76.363840255,40.711453967],[-76.363146263,40.711655841],[-76.362467265,40.71186655],[-76.361879796,40.712121209],[-76.361353052,40.712433704],[-76.360872634,40.712786191],[-76.360285114,40.713184979],[-76.359758557,40.713452423],[-76.359102569,40.713559241],[-76.358385284,40.713581198],[-76.357683447,40.713634498],[-76.357012188,40.713736979],[-76.356256992,40.71380441],[-76.355516853,40.713885171],[-76.354891004,40.713964585],[-76.354204568,40.714085245],[-76.3534721,40.714179417],[-76.352770223,40.714304755],[-76.352129101,40.714415862],[-76.351419813,40.71457731],[-76.350801707,40.714692647],[-76.350092139,40.71482256],[-76.34942836,40.71489338],[-76.348741818,40.715027524],[-76.348139042,40.715187707],[-76.347482913,40.715307972],[-76.346758009,40.715374986],[-76.346048446,40.715468844],[-76.345407613,40.715485326],[-76.344774632,40.715744934],[-76.344270808,40.716079604],[-76.343836184,40.716508058],[-76.343653162,40.716992134],[-76.343477438,40.717489636],[-76.343195185,40.717952346],[-76.342912939,40.71843307],[-76.342531554,40.718878915],[-76.342203608,40.71935116],[-76.341806606,40.719756646],[-76.341409883,40.720157625],[-76.341074358,40.720584912],[-76.340822592,40.72105627],[-76.340662237,40.72162115],[-76.340662292,40.722121114],[-76.340586002,40.72268952],[-76.340273089,40.723193124],[-76.339861086,40.723589761],[-76.339298286,40.723695763],[-76.338731955,40.723598361],[-76.338625083,40.724081543],[-76.338240524,40.724065556],[-76.337834296,40.724117928],[-76.337373973,40.724447372],[-76.336855263,40.724728134],[-76.336252492,40.725005365],[-76.335619325,40.725206374],[-76.33497064,40.725353514],[-76.334337301,40.725527485],[-76.333696819,40.725733071],[-76.333223477,40.726062838],[-76.332910803,40.726489839],[-76.33263632,40.726938919],[-76.331751031,40.727543687],[-76.331156026,40.727748734],[-76.330798895,40.727941291],[-76.330582006,40.728062963],[-76.330206119,40.728067296],[-76.329706379,40.728144556],[-76.329241049,40.728491473],[-76.328722205,40.7288803],[-76.328172971,40.729210919],[-76.327562699,40.729357569],[-76.326944707,40.729468272],[-76.326204497,40.729742526],[-76.325434043,40.729891005],[-76.324678631,40.729809604],[-76.32390812,40.729750876],[-76.323236691,40.729668493],[-76.32256536,40.729459986],[-76.321848259,40.729238492],[-76.321100607,40.72906238],[-76.320436843,40.728768193],[-76.319803481,40.728514206],[-76.319697592,40.728434861],[-76.319353509,40.728177031],[-76.318895586,40.72771834],[-76.318759017,40.727483626],[-76.318535522,40.727271671],[-76.317804471,40.727181297],[-76.317087391,40.727090389],[-76.316347205,40.72710334],[-76.315691186,40.727106314],[-76.315012087,40.727064511],[-76.31434852,40.727022523],[-76.313639105,40.727057625],[-76.312990551,40.727195627],[-76.312387649,40.727378143],[-76.311853543,40.727672483],[-76.311365521,40.728033858],[-76.310816009,40.728467996],[-76.310282016,40.728825391],[-76.309526704,40.72906817],[-76.30884773,40.729260546],[-76.308214562,40.729317271],[-76.307512407,40.729383783],[-76.30679534,40.729463967],[-76.306039896,40.729625653],[-76.305322988,40.729638276],[-76.304636499,40.729655047],[-76.303934354,40.729685501],[-76.303354625,40.729957796],[-76.303102871,40.730483123],[-76.302972987,40.730957524],[-76.302797656,40.731549549],[-76.302652489,40.732037637],[-76.302626552,40.732433755],[-76.302568081,40.732648926],[-76.302383839,40.73284168],[-76.30207012,40.732821379],[-76.301727402,40.732920587],[-76.301332741,40.73321009],[-76.300760475,40.733545348],[-76.300226648,40.733916199],[-76.300241751,40.734406982],[-76.300341104,40.735004915],[-76.300493398,40.735489648],[-76.300646151,40.735978878],[-76.300783505,40.736513324],[-76.300943584,40.737074538],[-76.301012413,40.737681824],[-76.301081085,40.738262087],[-76.301134348,40.738887561],[-76.301164811,40.739387178],[-76.301020119,40.740014886],[-76.300852274,40.740480708],[-76.300600221,40.740992518],[-76.30035597,40.741450187],[-76.300020411,40.741913384],[-76.299883091,40.742464445],[-76.300043279,40.742935574],[-76.300226319,40.743401943],[-76.300455508,40.743975891],[-76.300768029,40.744476835],[-76.300981682,40.744974389],[-76.301263996,40.74544414],[-76.301470241,40.745941772],[-76.301737037,40.746506287],[-76.30204977,40.746998214],[-76.302309327,40.747495246],[-76.302729017,40.747985964],[-76.303346895,40.748217706],[-76.303980282,40.748296132],[-76.304788973,40.748386083],[-76.305422122,40.748527565],[-76.30604784,40.748592543],[-76.306673519,40.748711583],[-76.30730674,40.748875562],[-76.307740731,40.749058538],[-76.307882481,40.749235715],[-76.307893895,40.749616596],[-76.307871134,40.750116812],[-76.30787124,40.75059425],[-76.307802458,40.751221105],[-76.307726242,40.751866061],[-76.307581108,40.752507294],[-76.30730662,40.75314099],[-76.30668103,40.753481373],[-76.305864531,40.753828428],[-76.305078954,40.754242689],[-76.304521798,40.754487705],[-76.303873145,40.754711235],[-76.303179216,40.75470106],[-76.302408505,40.754759305],[-76.301607302,40.75477285],[-76.300943688,40.754874919],[-76.300012899,40.75511512],[-76.299211651,40.75541241],[-76.298326794,40.755769189],[-76.297640153,40.755925546],[-76.29689226,40.756168171],[-76.296045443,40.756330824],[-76.295374075,40.756473488],[-76.294672248,40.756629993],[-76.293817862,40.756765701],[-76.29319223,40.756880812],[-76.292459649,40.756979104],[-76.291811229,40.756873758],[-76.290895612,40.756906525],[-76.290171092,40.757153351],[-76.289614147,40.757452344],[-76.288980623,40.757810745],[-76.288477061,40.758113643],[-76.287859191,40.758287194],[-76.286959022,40.758450376],[-76.286318258,40.758588141],[-76.285432923,40.758791685],[-76.284662341,40.75912907],[-76.28396817,40.759474604],[-76.28333512,40.759706856],[-76.282556669,40.759963235],[-76.281938759,40.760213327],[-76.281183386,40.760496468],[-76.280458586,40.760752243],[-76.279695831,40.760805744],[-76.278925113,40.76067466],[-76.278223275,40.760506774],[-76.277498469,40.760492283],[-76.276834803,40.76055818],[-76.27616349,40.760669202],[-76.275385172,40.760799418],[-76.27461453,40.761001614],[-76.273897358,40.761077094],[-76.273210726,40.761084672],[-76.272440246,40.760926516],[-76.271814543,40.760712714],[-76.271196556,40.760494317],[-76.270342232,40.760638849],[-76.269632534,40.760912405],[-76.268991834,40.761270773],[-76.268480727,40.761650236],[-76.267908476,40.762007849],[-76.267435433,40.762422922],[-76.2668328,40.762974544],[-76.26625293,40.763516901],[-76.265703357,40.763919294],[-76.265054797,40.764237192],[-76.264589685,40.764584605],[-76.263879997,40.765038291],[-76.263208697,40.765505063],[-76.262659187,40.766011036],[-76.262132921,40.766453697],[-76.261598748,40.766968505],[-76.261049579,40.767375377],[-76.260446759,40.767805352],[-76.259760336,40.768200203],[-76.259058303,40.768631256],[-76.258531689,40.768920762],[-76.257913721,40.769215766],[-76.257112641,40.769265026],[-76.255991085,40.769029518],[-76.255304775,40.769077526],[-76.254328067,40.769160213],[-76.253656787,40.769280109],[-76.252992772,40.769273812],[-76.252138454,40.769229035],[-76.251444154,40.769227549],[-76.250734582,40.769239759],[-76.249643378,40.769476786],[-76.248369364,40.769778842],[-76.247423348,40.770018786],[-76.246553834,40.770230867],[-76.245844334,40.770387165],[-76.244776149,40.770768036],[-76.244142903,40.771022592],[-76.243074778,40.771507038],[-76.242349833,40.771749061],[-76.241693668,40.771927281],[-76.240884923,40.772084618],[-76.240160316,40.772087904],[-76.239313389,40.772223121],[-76.238176769,40.772451523],[-76.237360297,40.772631439],[-76.236490597,40.772798405],[-76.235475895,40.773052498],[-76.234621459,40.773223794],[-76.233881243,40.773344313],[-76.232981062,40.773525094],[-76.232225729,40.77374936],[-76.231569393,40.773900502],[-76.230852218,40.774187409],[-76.230112379,40.774569146],[-76.229509711,40.774980942],[-76.229059514,40.775328053],[-76.228479814,40.775640508],[-76.227914877,40.775889745],[-76.227136816,40.77602864],[-76.226381442,40.775991632],[-76.225786526,40.77579977],[-76.225153156,40.775630845],[-76.224504783,40.775592676],[-76.223886743,40.77573436],[-76.223001781,40.776081554],[-76.222421796,40.776461542],[-76.221956589,40.776840315],[-76.221483655,40.777322762],[-76.220995186,40.777706279],[-76.22041538,40.778077257],[-76.219736267,40.778282619],[-76.218920033,40.77850293],[-76.218149403,40.778605658],[-76.21726425,40.778723097],[-76.216363986,40.778804661],[-76.215761288,40.779099276],[-76.215257843,40.779415367],[-76.214685776,40.7798673],[-76.2142279,40.780327038],[-76.213983622,40.780802542],[-76.214052298,40.781319797],[-76.214197281,40.781899305],[-76.214334707,40.78238881],[-76.214609496,40.782957944],[-76.215143515,40.78332167],[-76.215723478,40.783666874],[-76.216288024,40.783958197],[-76.216493938,40.78450553],[-76.216402296,40.785105546],[-76.216333689,40.785709823],[-76.216188807,40.786517593],[-76.215929283,40.787213965],[-76.215776744,40.78772454],[-76.215608854,40.788226269],[-76.215433173,40.788890227],[-76.214853504,40.789274681],[-76.214258314,40.78943859],[-76.213503034,40.789455544],[-76.212953594,40.789374563],[-76.212514213,40.789355344],[-76.211920232,40.789456924],[-76.211577939,40.789603529],[-76.211078011,40.789704102],[-76.210484456,40.789829509],[-76.209780112,40.789589226],[-76.20905503,40.789677903],[-76.20829232,40.789816512],[-76.207651521,40.78973314],[-76.206911173,40.789470637],[-76.206369648,40.789224069],[-76.205522733,40.789192382],[-76.204889434,40.789379164],[-76.204294534,40.789642112],[-76.203752817,40.78991802],[-76.203404552,40.790237254],[-76.203065687,40.79057447],[-76.202753,40.790625403],[-76.20247874,40.790557375],[-76.201349319,40.790470049],[-76.200647552,40.790333223],[-76.200014403,40.79026324],[-76.199343052,40.790252202],[-76.198366384,40.790419996],[-76.197733181,40.790552684],[-76.196794659,40.790823663],[-76.196222685,40.791045804],[-76.195337635,40.791325216],[-76.194772952,40.791727428],[-76.194139595,40.791873614],[-76.193231774,40.79204065],[-76.192514612,40.792016537],[-76.191866353,40.791951169],[-76.191286491,40.791754472],[-76.190729329,40.791521505],[-76.189996868,40.791303854],[-76.1890892,40.791479864],[-76.188394707,40.791667187],[-76.187578552,40.791720633],[-76.186929873,40.791610197],[-76.186273716,40.791391742],[-76.185678696,40.791195172],[-76.185083558,40.790971572],[-76.184412175,40.791041526],[-76.183908683,40.791389006],[-76.183672213,40.791859865],[-76.183580681,40.792378779],[-76.183206649,40.792842037],[-76.182512429,40.793087867],[-76.181765015,40.793280201],[-76.181139152,40.793412728],[-76.180498345,40.793558914],[-76.179743059,40.79362069],[-76.179003078,40.793542676],[-76.178423216,40.79332339],[-76.177507458,40.792918361],[-76.176683721,40.792543912],[-76.176050494,40.79228012],[-76.175363934,40.792079925],[-76.174631281,40.792100901],[-76.174058981,40.792372469],[-76.173494683,40.792783575],[-76.172914942,40.793221876],[-76.172281378,40.793507573],[-76.171724477,40.793792495],[-76.170908379,40.794125071],[-76.170274898,40.794226084],[-76.169542654,40.794188466],[-76.168321883,40.794299927],[-76.167467452,40.79441217],[-76.166742429,40.794532108],[-76.165987323,40.794710901],[-76.165323657,40.79486624],[-76.164392679,40.795177416],[-76.16379772,40.795449165],[-76.163194943,40.795675947],[-76.162408892,40.795994655],[-76.161844393,40.796293109],[-76.161119531,40.796615697],[-76.160593214,40.796895754],[-76.159921876,40.797186258],[-76.159250325,40.797422719],[-76.15867054,40.797653749],[-76.157846735,40.797869212],[-76.15707628,40.798106651],[-76.156069262,40.798544632],[-76.15499319,40.798996825],[-76.15427615,40.799260738],[-76.153558938,40.799515637],[-76.15277329,40.799775721],[-76.152010084,40.799963512],[-76.151071599,40.800148539],[-76.150240335,40.800278441],[-76.149507767,40.800438882],[-76.148737154,40.800649247],[-76.147455529,40.800828653],[-76.146005754,40.801032236],[-76.145281149,40.801183564],[-76.144533428,40.801303587],[-76.143785695,40.801338027],[-76.142831848,40.801212362],[-76.141580879,40.801107633],[-76.140825675,40.801029524],[-76.140207468,40.800882493],[-76.139543845,40.800722397],[-76.138887672,40.800629788],[-76.138178291,40.80071786],[-76.137560046,40.800980696],[-76.136873448,40.801275728],[-76.136095131,40.801558148],[-76.135240766,40.801791764],[-76.134569534,40.801924483],[-76.133638713,40.802041733],[-76.133012872,40.802142467],[-76.132036345,40.802404286],[-76.131204877,40.802547564],[-76.130579275,40.802706837],[-76.129869758,40.80292098],[-76.12918298,40.80307634],[-76.128435205,40.803088162],[-76.127809741,40.803233906],[-76.127268125,40.803518455],[-76.126489683,40.803710729],[-76.125627866,40.803813729],[-76.12461308,40.803940732],[-76.123758657,40.804021126],[-76.122820307,40.803980714],[-76.122072364,40.803938443],[-76.121309345,40.803990904],[-76.120416899,40.80405813],[-76.119432802,40.804270368],[-76.11875372,40.80435803],[-76.118082314,40.804373546],[-76.117441586,40.804406779],[-76.116693686,40.804544643],[-76.115472947,40.805029386],[-76.115175596,40.805590776],[-76.114633687,40.805906798],[-76.113908997,40.806125493],[-76.113176715,40.806312726],[-76.112444162,40.806617065],[-76.111932909,40.806973319],[-76.111612456,40.807440333],[-76.11137616,40.80791104],[-76.110994651,40.808338103],[-76.110292613,40.808452962],[-76.10947612,40.808546397],[-76.108705875,40.808747482],[-76.107980755,40.808966139],[-76.107301792,40.809287948],[-76.106653556,40.80960946],[-76.106103971,40.809979565],[-76.105387037,40.810270198],[-76.104692709,40.810425485],[-76.104051999,40.810553231],[-76.103289051,40.810704662],[-76.102617298,40.810882243],[-76.101786037,40.811250514],[-76.101045837,40.811590889],[-76.100466171,40.811893693],[-76.099886134,40.812241538],[-76.099161531,40.81260877],[-76.098405964,40.813007834],[-76.097666161,40.813307644],[-76.097116848,40.813632665],[-76.096453045,40.813913728],[-76.095751161,40.814199652],[-76.09507216,40.814458332],[-76.094423399,40.814707713],[-76.093691038,40.815056966],[-76.093042547,40.815459475],[-76.092432206,40.815816587],[-76.091798966,40.816200933],[-76.091219069,40.816584766],[-76.09063924,40.816883016],[-76.090074592,40.817203645],[-76.089372932,40.817642669],[-76.088793005,40.817981452],[-76.088228269,40.818342607],[-76.087572452,40.818731644],[-76.086916171,40.81918374],[-76.086471332,40.819570036],[-76.086046506,40.819980153],[-76.085939511,40.820463103],[-76.085657481,40.820938697],[-76.085214944,40.821433808],[-76.084635037,40.821822116],[-76.08394057,40.822161948],[-76.083330496,40.822496483],[-76.082620826,40.822768889],[-76.081934073,40.822946489],[-76.081354231,40.823204156],[-76.080797575,40.82352016],[-76.080347083,40.82391624],[-76.079790271,40.824155666],[-76.079172299,40.824508269],[-76.078646006,40.82509873],[-76.077967071,40.825555491],[-76.077310829,40.825948976],[-76.076784399,40.826372777],[-76.076143621,40.82680665],[-76.075426294,40.827137637],[-76.074609908,40.827438014],[-76.073923308,40.827606556],[-76.073076514,40.827884685],[-76.072321256,40.828139435],[-76.071458947,40.828467242],[-76.07058175,40.828768154],[-76.069902602,40.829148298],[-76.069216014,40.82959607],[-76.068719953,40.830069098],[-76.068277428,40.830438031],[-76.067308555,40.831149653],[-76.066767026,40.831469946],[-76.066263569,40.831830428],[-76.065378473,40.832221457],[-76.064653635,40.832390298],[-76.063745822,40.832682431],[-76.063530274,40.832892765],[-76.063093683,40.833063631],[-76.062509572,40.83315775],[-76.061968105,40.833414967],[-76.061357779,40.833699851],[-76.060640404,40.833990202],[-76.059938589,40.834280413],[-76.059191023,40.834584551],[-76.058504442,40.835063788],[-76.058740859,40.835642652],[-76.059427598,40.836127298],[-76.060197879,40.836480554],[-76.060854264,40.83664117],[-76.061502807,40.836635206],[-76.062250281,40.836511217],[-76.063242233,40.83633092],[-76.063890682,40.836203329],[-76.064592663,40.836039209],[-76.065340072,40.835843134],[-76.066293813,40.835730727],[-76.066934656,40.835684265],[-76.067888415,40.835688954],[-76.068796458,40.835594962],[-76.069662319,40.835648528],[-76.07019457,40.835572092],[-76.070612064,40.83537544],[-76.071260534,40.835342395],[-76.072206861,40.835347117],[-76.073076371,40.835460641],[-76.073900469,40.835516031],[-76.074808179,40.835539107],[-76.075731469,40.835494465],[-76.076624116,40.835342006],[-76.077539615,40.835067716],[-76.078738923,40.834620801],[-76.078902395,40.83474193],[-76.078836544,40.835231255],[-76.078371124,40.835695029],[-76.077859943,40.83619526],[-76.077440548,40.836618063],[-76.077028491,40.837013769],[-76.07663173,40.837575986],[-76.076349327,40.838083084],[-76.075991025,40.838617913],[-76.075647723,40.839049007],[-76.075296566,40.839660339],[-76.075380606,40.840227077],[-76.075640108,40.840733625],[-76.075517848,40.841311291],[-76.075029492,40.841689687],[-76.075288924,40.842191732],[-76.075754253,40.84256574],[-76.076303594,40.843092101],[-76.076913976,40.843541321],[-76.077562461,40.843458696],[-76.078416821,40.843337033],[-76.078823224,40.843237894],[-76.079248707,40.843069086],[-76.079996389,40.842863908],[-76.080728668,40.842942627],[-76.080835573,40.843522659],[-76.081033817,40.8440658],[-76.081385167,40.844453293],[-76.081863238,40.844901663],[-76.082209984,40.84499375],[-76.082493967,40.845086417],[-76.082716737,40.845275007],[-76.082721779,40.845584803],[-76.08271995,40.845878659],[-76.08236143,40.846445038],[-76.081865402,40.846967668],[-76.081438229,40.847462623],[-76.081026119,40.847948428],[-76.080843257,40.848513157],[-76.080736233,40.849113206],[-76.080644766,40.849758151],[-76.080706005,40.850424116],[-76.080019185,40.850385589],[-76.079286759,40.850532105],[-76.078706856,40.850942917],[-76.078577154,40.851561136],[-76.078524066,40.852102146],[-76.078493427,40.852678934],[-76.07848553,40.853363632],[-76.078447485,40.854035177],[-76.07830261,40.854815678],[-76.07802792,40.855507399],[-76.077653989,40.85608739],[-76.077318579,40.856576934],[-76.077059147,40.857065768],[-76.076822611,40.857590544],[-76.076532475,40.858264365],[-76.076166275,40.858866757],[-76.07589936,40.859351212],[-76.075670557,40.859808303],[-76.075342572,40.860342901],[-76.075006795,40.860764833],[-76.074488011,40.861197615],[-76.073984227,40.861553517],[-76.073465489,40.86187372],[-76.072657071,40.862228085],[-76.071878767,40.862532583],[-76.071161406,40.86274642],[-76.070505492,40.86293261],[-76.069605113,40.863184206],[-76.068720033,40.863390536],[-76.068109608,40.863549429],[-76.067468887,40.863685965],[-76.066736372,40.863836849],[-76.066103278,40.863919362],[-76.065210658,40.864008627],[-76.064508775,40.864127686],[-76.063707671,40.864184644],[-76.063013199,40.86423609],[-76.062257868,40.864468263],[-76.061586514,40.86464556],[-76.060838858,40.864819189],[-76.059869949,40.865003648],[-76.058985019,40.865160413],[-76.058313496,40.865252129],[-76.057398135,40.865476765],[-76.056673332,40.865650076],[-76.056032424,40.8656874],[-76.055277132,40.865757478],[-76.054460632,40.865904517],[-76.053804597,40.866018636],[-76.052973167,40.866242469],[-76.052171792,40.866452435],[-76.051447079,40.866675273],[-76.050813765,40.866892673],[-76.049921185,40.867121575],[-76.04928775,40.867289473],[-76.048410635,40.867441556],[-76.047456942,40.867558255],[-76.04655668,40.867728649],[-76.04593097,40.867869455],[-76.045221457,40.868042548],[-76.044496574,40.868242794],[-76.043848286,40.868374738],[-76.043016846,40.868517463],[-76.042223235,40.868704728],[-76.041597502,40.868809439],[-76.040872721,40.868919577],[-76.039987565,40.869089784],[-76.03921725,40.869227321],[-76.038499967,40.869364384],[-76.038472171,40.869367994],[-76.038453384,40.869374607],[-76.037890626,40.869522699],[-76.037170759,40.869672185],[-76.036763398,40.869723492],[-76.036264763,40.86980338],[-76.035471381,40.869837517],[-76.034814901,40.869757844],[-76.034273607,40.870028434],[-76.033701121,40.870398443],[-76.033220553,40.870830605],[-76.032632861,40.871146636],[-76.031953765,40.871332888],[-76.031092059,40.871579312],[-76.030290636,40.871816216],[-76.029443932,40.872026431],[-76.028772708,40.87224413],[-76.028070511,40.872525093],[-76.027376478,40.872747515],[-76.02672781,40.873009961],[-76.025942051,40.873161141],[-76.025179141,40.873447156],[-76.024515268,40.873727838],[-76.023859373,40.874003925],[-76.023348188,40.874355213],[-76.022760671,40.874644186],[-76.022401761,40.8751113],[-76.021677136,40.875446611],[-76.021059079,40.875582599],[-76.020418274,40.87565588],[-76.019701079,40.875806411],[-76.018907674,40.876470943],[-76.019037603,40.876987742],[-76.019144338,40.877635434],[-76.018694221,40.878080881],[-76.017893033,40.878290588],[-76.017305447,40.87855706],[-76.017000449,40.8790777],[-76.017122256,40.879599103],[-76.017168048,40.880121092],[-76.017259906,40.88078695],[-76.01729016,40.881340703],[-76.017259887,40.88192644],[-76.016847976,40.882466144],[-76.01652724,40.883013928],[-76.016412897,40.883537411],[-76.016237235,40.8841335],[-76.016039139,40.884729854],[-76.01552047,40.88530186],[-76.014688704,40.885534392],[-76.013994627,40.885824256],[-76.014368339,40.88641995],[-76.014925308,40.886820428],[-76.015421106,40.887419743],[-76.015848322,40.888051022],[-76.01600094,40.888540617],[-76.015131243,40.888723917],[-76.01412433,40.888926447],[-76.013262018,40.889015059],[-76.012392083,40.889103814],[-76.011522348,40.889111443],[-76.010500061,40.889161002],[-76.00967619,40.889379845],[-76.008890199,40.889530821],[-76.007921362,40.889683473],[-76.00700598,40.889862628],[-76.006304113,40.890008382],[-76.005541152,40.890087101],[-76.004801162,40.890237682],[-76.004060894,40.890370245],[-76.003435199,40.890524325],[-76.00251225,40.890744045],[-76.001733929,40.890863413],[-76.001016942,40.890991248],[-76.000131605,40.891246646],[-75.999544248,40.89150848],[-75.998842561,40.89176679],[-75.998331367,40.892086506],[-75.997820063,40.89237469],[-75.99718689,40.892749501],[-75.996546083,40.893011777],[-75.99597366,40.893232917],[-75.995302528,40.893279249],[-75.994516577,40.893164419],[-75.993829803,40.893008192],[-75.993173749,40.892847192],[-75.992479362,40.892826144],[-75.991739509,40.893138791],[-75.991037699,40.893442093],[-75.99022885,40.893557139],[-75.989534519,40.893491034],[-75.988756289,40.893520229],[-75.987901787,40.893734743],[-75.987238287,40.89369539],[-75.986589605,40.893705437],[-75.985979366,40.893931356],[-75.985201164,40.894437965],[-75.984651899,40.894798479],[-75.984155883,40.895122505],[-75.983415743,40.89557023],[-75.982797802,40.895904288],[-75.982301705,40.896223805],[-75.981607596,40.896626073],[-75.980875316,40.897006147],[-75.979921342,40.897473674],[-75.979204564,40.897722985],[-75.978586266,40.897858855],[-75.977937992,40.89794993],[-75.977258943,40.89799172],[-75.976495925,40.898025216],[-75.975946709,40.898318119],[-75.975465826,40.898768093],[-75.974970081,40.899191167],[-75.974336722,40.899642429],[-75.97376464,40.899971556],[-75.973093232,40.900333047],[-75.972269377,40.90074987],[-75.97149865,40.901197767],[-75.972162396,40.901678617],[-75.972765225,40.902078901],[-75.973268669,40.90250705],[-75.973703635,40.902895235],[-75.974291026,40.903354195],[-75.974825186,40.903750547],[-75.975389813,40.904124115],[-75.976084007,40.904528116],[-75.976747599,40.90466663],[-75.977632612,40.904875328],[-75.977487663,40.905412543],[-75.977342884,40.906012816],[-75.977228257,40.90664436],[-75.977113929,40.907271398],[-75.977144329,40.907924235],[-75.977304689,40.908508409],[-75.977442163,40.909151331],[-75.976869759,40.909588583],[-75.976221271,40.909774229],[-75.975526794,40.909910724],[-75.975008368,40.91031147],[-75.974253058,40.910398927],[-75.973497616,40.910553942],[-75.973352629,40.911041609],[-75.973398311,40.911550187],[-75.973329581,40.912050723],[-75.972787868,40.912307522],[-75.971987105,40.912562001],[-75.971391831,40.91276069],[-75.970827301,40.913031189],[-75.970667203,40.9136541],[-75.970377302,40.914156496],[-75.969713459,40.914310713],[-75.969133481,40.914617365],[-75.969148627,40.915198268],[-75.969270923,40.915719714],[-75.969362283,40.916232413],[-75.969362621,40.916763891],[-75.969553126,40.917356832],[-75.970178875,40.917513713],[-75.970812139,40.917499376],[-75.971590152,40.917587409],[-75.972307507,40.917612892],[-75.973199905,40.917605365],[-75.973947828,40.91766661],[-75.974870823,40.917694844],[-75.975534619,40.917662203],[-75.9762443,40.917494052],[-75.977067993,40.917433025],[-75.977213118,40.917913733],[-75.977770114,40.918363925],[-75.977945328,40.918871401],[-75.978342073,40.919300435],[-75.979013461,40.919128079],[-75.979814792,40.919008671],[-75.980791433,40.918874253],[-75.981493076,40.918715145],[-75.982126348,40.918525083],[-75.982797654,40.918397752],[-75.98354529,40.918112125],[-75.984171103,40.917895093],[-75.984933911,40.917807506],[-75.985567262,40.918099365],[-75.985872344,40.918650761],[-75.985933472,40.919168209],[-75.985994645,40.919663135],[-75.986246271,40.920237504],[-75.986627659,40.920779236],[-75.986948329,40.921204381],[-75.987245722,40.92166125],[-75.987566053,40.922162967],[-75.988130656,40.922743662],[-75.988664671,40.923288582],[-75.989076614,40.923685912],[-75.989526797,40.924033368],[-75.990076269,40.924294391],[-75.990793445,40.924675585],[-75.990534096,40.925177774],[-75.990137357,40.92577571],[-75.989786487,40.926364253],[-75.989984608,40.927353452],[-75.98948898,40.927668485],[-75.988985355,40.928019622],[-75.988268123,40.928458162],[-75.987764554,40.928813794],[-75.986803187,40.929335494],[-75.9860325,40.929625843],[-75.98529275,40.929875387],[-75.984590501,40.930102084],[-75.983980274,40.93030097],[-75.983133436,40.930488357],[-75.982423888,40.930773657],[-75.981699352,40.93092396],[-75.980974251,40.93096166],[-75.980287594,40.931089109],[-75.979623835,40.931283924],[-75.978914476,40.931357517],[-75.978166719,40.931444927],[-75.977464916,40.93152744],[-75.976785956,40.931623282],[-75.975931317,40.93166205],[-75.975092103,40.931790761],[-75.974382587,40.931904855],[-75.97352804,40.931975131],[-75.972894779,40.93207506],[-75.972017391,40.932334691],[-75.971414893,40.932533444],[-75.970461106,40.932798208],[-75.969713398,40.932763963],[-75.968935304,40.932581333],[-75.967745156,40.932929134],[-75.968126462,40.93352047],[-75.968492662,40.933940786],[-75.968904601,40.934315661],[-75.969339561,40.934843486],[-75.969705793,40.935416929],[-75.970049165,40.936026586],[-75.970415229,40.93661355],[-75.970842618,40.937281059],[-75.971216366,40.937935506],[-75.971567199,40.938418988],[-75.971948756,40.938947257],[-75.972292264,40.939385758],[-75.972666114,40.93991859],[-75.972803363,40.940417385],[-75.972795663,40.940980458],[-75.97267343,40.941530994],[-75.972490429,40.942140582],[-75.972383727,40.942812587],[-75.97225391,40.943453261],[-75.972093895,40.943959067],[-75.971811547,40.944655073],[-75.971628354,40.945530405],[-75.971689261,40.946367649],[-75.971742728,40.946849134],[-75.971979312,40.947360605],[-75.972368363,40.947762691],[-75.972864266,40.948235939],[-75.973535622,40.948797785],[-75.974161515,40.949296954],[-75.974840341,40.949885751],[-75.97535927,40.950381314],[-75.975725479,40.950995271],[-75.975931541,40.95157455],[-75.976251786,40.952116833],[-75.976732265,40.952621724],[-75.977129327,40.953235417],[-75.977258756,40.953905423],[-75.977090991,40.954438324],[-75.976968929,40.955151],[-75.977228329,40.955819907],[-75.977709152,40.956495944],[-75.978059868,40.956911849],[-75.978426069,40.957395179],[-75.978830624,40.957909711],[-75.979303559,40.958302051],[-75.980074213,40.95863781],[-75.980661582,40.958858019],[-75.981340749,40.958982859],[-75.982118938,40.95917441],[-75.982729028,40.959448472],[-75.98302687,40.959900826],[-75.982324976,40.959996896],[-75.981577233,40.960106857],[-75.980638736,40.960249969],[-75.979883236,40.960337465],[-75.979143321,40.960600483],[-75.978571173,40.960983682],[-75.977815804,40.961408969],[-75.97708359,40.961843062],[-75.976450099,40.962172722],[-75.975893193,40.962483713],[-75.975435469,40.96284791],[-75.975359308,40.96337553],[-75.975328733,40.963871234],[-75.974863192,40.96428504],[-75.974268288,40.964564819],[-75.973581582,40.964687724],[-75.972559008,40.964953089],[-75.971925736,40.965048508],[-75.971109717,40.965217531],[-75.970400087,40.965399163],[-75.96969059,40.965589801],[-75.968942721,40.965798773],[-75.968180068,40.966012369],[-75.967546659,40.966251897],[-75.966860096,40.966667524],[-75.966241994,40.967015025],[-75.965456118,40.967242297],[-75.964807849,40.967279255],[-75.964105955,40.967357189],[-75.963388667,40.967448763],[-75.962534095,40.967627057],[-75.961801568,40.967795317],[-75.961084637,40.967886872],[-75.960207195,40.967948233],[-75.959276274,40.968086599],[-75.958093781,40.968344155],[-75.957185818,40.968657976],[-75.956232319,40.968931628],[-75.955431075,40.969127441],[-75.954576797,40.969328194],[-75.953783325,40.9696005],[-75.952936283,40.969814689],[-75.952341205,40.970040306],[-75.951684967,40.970248409],[-75.951006066,40.970353101],[-75.950136381,40.970621508],[-75.949350627,40.970812647],[-75.948648758,40.971025612],[-75.947862659,40.971167193],[-75.946878659,40.971260861],[-75.945902199,40.971232847],[-75.94508579,40.971176485],[-75.944414193,40.971195493],[-75.943452887,40.97126643],[-75.942751137,40.971411797],[-75.941858449,40.971554222],[-75.941026742,40.971493444],[-75.940317459,40.971683901],[-75.939531406,40.971987578],[-75.938623451,40.972364304],[-75.93766999,40.972597259],[-75.936662821,40.972736073],[-75.935831229,40.972814892],[-75.935045465,40.972983413],[-75.934411977,40.973204744],[-75.933717842,40.973444582],[-75.933016184,40.973625928],[-75.932336978,40.973766537],[-75.931642709,40.97383971],[-75.930658532,40.973978277],[-75.929910763,40.973997826],[-75.929101921,40.974085419],[-75.928339029,40.974271735],[-75.927637121,40.974489076],[-75.927004149,40.974696843],[-75.926378535,40.97490005],[-75.925569663,40.974987623],[-75.92479905,40.97496678],[-75.924013365,40.974905519],[-75.923357195,40.974915281],[-75.922594062,40.975033993],[-75.921747405,40.975180399],[-75.920839501,40.975277728],[-75.920190951,40.97540902],[-75.919245066,40.975713836],[-75.918466608,40.976012802],[-75.917818117,40.976229659],[-75.917002012,40.976519911],[-75.916277124,40.976719348],[-75.915559782,40.976900705],[-75.914880943,40.977045721],[-75.913927328,40.977224433],[-75.912851644,40.977521221],[-75.911714911,40.977674348],[-75.910974649,40.97775677],[-75.909898937,40.977864356],[-75.908853867,40.978093297],[-75.907877304,40.978335203],[-75.906992193,40.978580888],[-75.906198714,40.978767289],[-75.905244922,40.978990977],[-75.904230342,40.979143062],[-75.903467318,40.97930219],[-75.902528802,40.979476193],[-75.90164409,40.979591212],[-75.900629116,40.97971625],[-75.899965375,40.979829526],[-75.899065053,40.979890609],[-75.898294487,40.979932649],[-75.897417166,40.979826879],[-75.896722878,40.979742201],[-75.896059146,40.979801419],[-75.895303728,40.979919883],[-75.894335054,40.980008476],[-75.893602655,40.980099731],[-75.892870184,40.980267553],[-75.89206896,40.980516975],[-75.891763702,40.981019286],[-75.891496984,40.981597867],[-75.891046545,40.982105808],[-75.890436322,40.982416796],[-75.889810831,40.982642335],[-75.889154444,40.982890609],[-75.888505984,40.98303974],[-75.887827089,40.983135053],[-75.887102377,40.983275752],[-75.886301079,40.983412532],[-75.885446608,40.983545216],[-75.884759962,40.983645072],[-75.884042716,40.983817225],[-75.883241825,40.983985509],[-75.88240277,40.984217139],[-75.881609071,40.984340315],[-75.880876904,40.984454019],[-75.879961316,40.984573607],[-75.879106824,40.984679215],[-75.878442934,40.984675268],[-75.877763836,40.984617384],[-75.876718722,40.984355094],[-75.876077824,40.984067203],[-75.87552842,40.983787622],[-75.87505548,40.983390351],[-75.874643328,40.983010634],[-75.873606929,40.982172794],[-75.873164228,40.982100071],[-75.871713624,40.982397751],[-75.869424797,40.983005069],[-75.867609123,40.983266466],[-75.866541201,40.983328554],[-75.865335745,40.983270049],[-75.864374406,40.983443913],[-75.862741522,40.983938078],[-75.862054951,40.984159409],[-75.86157446,40.984518823],[-75.861070629,40.985508977],[-75.860887773,40.986131902],[-75.860178059,40.986691201],[-75.859514512,40.986858295],[-75.858514882,40.986518932],[-75.857660356,40.986426204],[-75.857072957,40.986822427],[-75.85656924,40.987227033],[-75.85572248,40.98747654],[-75.854883253,40.987532311],[-75.854105256,40.987641673],[-75.853227941,40.987913908],[-75.853617025,40.990199089],[-75.853380374,40.990660254],[-75.852518242,40.991653022],[-75.851930918,40.992148307],[-75.852182608,40.992853582],[-75.852197733,40.994200182],[-75.853426071,40.994578444],[-75.853113398,40.995080718],[-75.852579118,40.9955711],[-75.851290004,40.996188676],[-75.850122622,40.996710755],[-75.849588565,40.997133566],[-75.849206909,40.997793971],[-75.849260393,40.998487203],[-75.849413211,40.999508493],[-75.849550509,41.000102016],[-75.849321575,41.001054058],[-75.848474723,41.001253978],[-75.847147202,41.001205182],[-75.845758645,41.001264921],[-75.844884398,41.001425062],[-75.844773739,41.001567892],[-75.845247502,41.002119937],[-75.846018104,41.002348494],[-75.848154374,41.00281473],[-75.848163018,41.002819433],[-75.848257174,41.00282891],[-75.848919933,41.002990869],[-75.850027701,41.003507059],[-75.850597328,41.003765025],[-75.850750335,41.00383524],[-75.851261918,41.004069962],[-75.851559953,41.004067763],[-75.851922559,41.00406508],[-75.8530896,41.004294787],[-75.854319249,41.004500182],[-75.854855906,41.004639207],[-75.855769441,41.004727768],[-75.856011978,41.004806476],[-75.856561897,41.004855947],[-75.857378075,41.005183178],[-75.857774977,41.00564414],[-75.85838521,41.006193597],[-75.859125351,41.006701545],[-75.859796563,41.006908228],[-75.860597939,41.007122946],[-75.861681191,41.007123861],[-75.862390755,41.006965417],[-75.863664868,41.006784723],[-75.86528999,41.006506796],[-75.86736524,41.006238972],[-75.868074389,41.006107519],[-75.868723086,41.00609813],[-75.869646216,41.006131704],[-75.870546636,41.006332093],[-75.871401056,41.006339147],[-75.872759141,41.006328872],[-75.874056216,41.006089336],[-75.874643579,41.0057696],[-75.875253693,41.005400142],[-75.876314265,41.004982215],[-75.87705436,41.004832456],[-75.877228641,41.004790249],[-75.877571233,41.004635338],[-75.878260165,41.004391755],[-75.879109856,41.004409114],[-75.879353976,41.004499258],[-75.879426034,41.004525872],[-75.879497636,41.0046186],[-75.87934323,41.005071749],[-75.879106747,41.005564492],[-75.878809219,41.006048692],[-75.878503965,41.007127487],[-75.878870123,41.007723731],[-75.87870239,41.008607802],[-75.878168192,41.008958685],[-75.878442811,41.009573645],[-75.878519364,41.010077513],[-75.878358837,41.010889465],[-75.877962349,41.011788789],[-75.877916353,41.012410696],[-75.877748506,41.014632464],[-75.877786767,41.016199576],[-75.878267265,41.016894041],[-75.878565144,41.017495309],[-75.879007357,41.018077471],[-75.879282292,41.018656387],[-75.879434789,41.019474956],[-75.879999354,41.019781425],[-75.881570997,41.019990112],[-75.883509007,41.020439179],[-75.883829117,41.02089164],[-75.884225986,41.021690315],[-75.884393682,41.022472735],[-75.884473497,41.023111662],[-75.884615236,41.023195764],[-75.884790254,41.023223819],[-75.885797765,41.023069987],[-75.887163357,41.02254152],[-75.888956299,41.022090816],[-75.89108465,41.021403278],[-75.892801484,41.021101737],[-75.89492996,41.020869034],[-75.896684815,41.020522097],[-75.89743241,41.020313599],[-75.899057681,41.020251385],[-75.900247946,41.020097968],[-75.900865691,41.019962522],[-75.9020939,41.019349378],[-75.902742424,41.019155128],[-75.904047204,41.018951228],[-75.906168131,41.018637307],[-75.906824132,41.018393436],[-75.908121329,41.018099468],[-75.909540385,41.01772345],[-75.911104425,41.017269704],[-75.912111277,41.017081577],[-75.912752271,41.017153071],[-75.914621733,41.017232839],[-75.915811654,41.017732342],[-75.916051093,41.017860589],[-75.916169701,41.01789648],[-75.916769508,41.018034711],[-75.917211326,41.018126532],[-75.917935348,41.018144609],[-75.918658706,41.018115006],[-75.919571175,41.01810773],[-75.920324987,41.018006374],[-75.920920501,41.017834782],[-75.920945295,41.017827989],[-75.921694001,41.017329635],[-75.922479827,41.016859434],[-75.923212332,41.016484245],[-75.923891334,41.016402227],[-75.924432946,41.017127529],[-75.925394312,41.01804765],[-75.925897744,41.018539052],[-75.925829147,41.019269271],[-75.925584716,41.019892763],[-75.925210944,41.020296607],[-75.924425333,41.021446999],[-75.924394845,41.022244485],[-75.924669324,41.023530385],[-75.924066713,41.023688372],[-75.923204622,41.023942888],[-75.922472112,41.024214571],[-75.92215163,41.024748569],[-75.921663305,41.02554972],[-75.92167865,41.026198217],[-75.921816003,41.027485208],[-75.921823731,41.028340862],[-75.921693901,41.028864454],[-75.921350541,41.029380692],[-75.92087009,41.030217767],[-75.920976909,41.030793395],[-75.921358149,41.0316911],[-75.921365992,41.032172998],[-75.921022642,41.032645548],[-75.92097002,41.03268285],[-75.920657629,41.032852175],[-75.920375712,41.032949772],[-75.919275858,41.033077719],[-75.918899527,41.033176058],[-75.918826284,41.033270736],[-75.918733916,41.033279457],[-75.918062338,41.033973936],[-75.917246013,41.034935294],[-75.916788115,41.035321749],[-75.916071068,41.035998629],[-75.915885161,41.036257344],[-75.915795283,41.036299159],[-75.915545151,41.036420315],[-75.915357625,41.036517143],[-75.91513072,41.036456698],[-75.914308512,41.035972033],[-75.913728829,41.035643393],[-75.913026894,41.035581346],[-75.912210655,41.035817544],[-75.911752849,41.036172449],[-75.91119602,41.03693803],[-75.910661925,41.037352159],[-75.909791941,41.037516638],[-75.908899468,41.037721792],[-75.907593602,41.038127377],[-75.907418078,41.038272129],[-75.907327451,41.038352203],[-75.907129401,41.038821271],[-75.906687079,41.039347224],[-75.905748682,41.039728435],[-75.904621293,41.04006139],[-75.904075139,41.040109709],[-75.90341342,41.040067262],[-75.902498733,41.039931415],[-75.901995075,41.039935359],[-75.900421057,41.039923844],[-75.899506699,41.039811802],[-75.897774212,41.039730021],[-75.896041177,41.039600504],[-75.895536547,41.039532958],[-75.894906083,41.039466317],[-75.893299545,41.039383412],[-75.892385528,41.039295221],[-75.890874335,41.03928299],[-75.89018258,41.039336062],[-75.889459666,41.039413112],[-75.889363914,41.039533625],[-75.889299654,41.039541253],[-75.888605133,41.040262749],[-75.887735672,41.04101704],[-75.887117479,41.04144521],[-75.886202165,41.041781047],[-75.885271211,41.041918803],[-75.88420308,41.041922474],[-75.883272344,41.042051317],[-75.881952554,41.042183032],[-75.881204977,41.04221577],[-75.880594588,41.042499668],[-75.879892672,41.042842796],[-75.879281939,41.043135739],[-75.878702516,41.04350947],[-75.877916564,41.043848781],[-75.877100017,41.044129696],[-75.875833657,41.044382578],[-75.874643508,41.044553743],[-75.873338782,41.04487449],[-75.872545414,41.045101096],[-75.871980732,41.045420744],[-75.871238393,41.045677568],[-75.870908325,41.045775433],[-75.870638644,41.0456821],[-75.869638772,41.045001525],[-75.868967155,41.044267892],[-75.868356754,41.043790541],[-75.867700775,41.043444289],[-75.866563982,41.043232075],[-75.865839144,41.043192483],[-75.865114572,41.042995193],[-75.864015703,41.042733271],[-75.863329175,41.042666367],[-75.862192393,41.04302162],[-75.861423454,41.043465546],[-75.861060752,41.043823642],[-75.860746978,41.043897451],[-75.860211502,41.043877627],[-75.859959396,41.043855603],[-75.859804394,41.043778171],[-75.857431606,41.043696794],[-75.856683855,41.043436543],[-75.856012489,41.043504606],[-75.855493783,41.043931776],[-75.855096939,41.044470783],[-75.854462706,41.045320799],[-75.854154077,41.045485979],[-75.853143954,41.045602243],[-75.85249523,41.045787215],[-75.852404229,41.045792416],[-75.852115463,41.045892101],[-75.8513909,41.045849811],[-75.850129011,41.045644574],[-75.849719482,41.045623861],[-75.849117717,41.045342194],[-75.8486749,41.045178618],[-75.848340307,41.04508345],[-75.848291447,41.045075089],[-75.846574861,41.04496164],[-75.845849992,41.044660646],[-75.845217061,41.044331962],[-75.844934526,41.044770949],[-75.844339678,41.045531967],[-75.843614611,41.046438111],[-75.843286524,41.04726921],[-75.843050196,41.04836092],[-75.843866589,41.04832341],[-75.844583706,41.048448748],[-75.84565179,41.048787759],[-75.846780928,41.049229874],[-75.847635267,41.049687432],[-75.84838302,41.050177388],[-75.848657963,41.050932103],[-75.848596853,41.051504506],[-75.848367653,41.052569175],[-75.84852814,41.053081473],[-75.848688362,41.053710803],[-75.848741685,41.054359021],[-75.848772107,41.055183047],[-75.848406065,41.056050515],[-75.848230654,41.05683546],[-75.848154192,41.057921473],[-75.848070186,41.058913015],[-75.847841275,41.06026133],[-75.847528546,41.060813109],[-75.846605375,41.061671163],[-75.845384593,41.062828727],[-75.845010918,41.063322395],[-75.844812512,41.063900329],[-75.844743725,41.064941323],[-75.844698206,41.066121632],[-75.8442787,41.067782196],[-75.84415,41.06799694],[-75.843836582,41.068118418],[-75.843365195,41.068193336],[-75.842105336,41.068178729],[-75.841012926,41.068188884],[-75.83984579,41.068197396],[-75.838655714,41.068467338],[-75.836671928,41.069477125],[-75.836000457,41.069891905],[-75.83409675,41.07048109],[-75.83310281,41.071008903],[-75.832570134,41.071227226],[-75.832138699,41.071247539],[-75.831861896,41.071375346],[-75.831690229,41.071376586],[-75.831353423,41.071315436],[-75.830469407,41.070751622],[-75.829599479,41.070663279],[-75.828569782,41.070508551],[-75.827653949,41.070479069],[-75.826624234,41.070675602],[-75.825151608,41.070888888],[-75.824442046,41.071074128],[-75.823389008,41.071108665],[-75.82161929,41.070837627],[-75.820703688,41.070114431],[-75.819696551,41.069702718],[-75.819078757,41.06946848],[-75.818071363,41.069187356],[-75.817384887,41.069133684],[-75.816515111,41.069126347],[-75.815111417,41.069311926],[-75.813577743,41.0695525],[-75.8123648,41.06982225],[-75.811609545,41.070205851],[-75.810846595,41.070377885],[-75.809770719,41.070547671],[-75.808466106,41.070727934],[-75.80662732,41.070984068],[-75.805940604,41.070984337],[-75.805376197,41.070754008],[-75.805101692,41.070265009],[-75.8045112,41.069112633],[-75.804420103,41.069067651],[-75.8043364,41.069010353],[-75.803354558,41.069101674],[-75.802675293,41.069128884],[-75.80170662,41.069428441],[-75.800562128,41.069981346],[-75.799677094,41.069757838],[-75.798761282,41.06939035],[-75.797899422,41.068644118],[-75.797349923,41.068148018],[-75.796501966,41.067568837],[-75.796181384,41.067480392],[-75.795961261,41.067505727],[-75.795930677,41.067515249],[-75.795663817,41.067920963],[-75.79483989,41.068350057],[-75.793848134,41.068437918],[-75.792932677,41.06839926],[-75.792200115,41.068354733],[-75.79138384,41.06827017],[-75.790720163,41.068081137],[-75.789995158,41.067824836],[-75.789026418,41.068056681],[-75.788278669,41.068354607],[-75.787523331,41.068490374],[-75.786714798,41.068626487],[-75.785478818,41.068625861],[-75.783991102,41.068573005],[-75.782617881,41.068573298],[-75.782022701,41.06885663],[-75.78132064,41.069244124],[-75.780900982,41.069679353],[-75.781023164,41.070264153],[-75.781419902,41.071000078],[-75.782060866,41.071572292],[-75.78265571,41.072356358],[-75.783487459,41.072706513],[-75.784372425,41.072673487],[-75.786478347,41.072843909],[-75.787546297,41.073061744],[-75.788622105,41.073500272],[-75.789363637,41.073710863],[-75.789581252,41.073841722],[-75.789736878,41.073998569],[-75.789896315,41.074419385],[-75.79014799,41.074989701],[-75.790384343,41.075501567],[-75.791048155,41.076204012],[-75.791292156,41.076724799],[-75.791513565,41.077227791],[-75.791719482,41.077807392],[-75.791765583,41.07835202],[-75.791345661,41.079161127],[-75.791315331,41.080080203],[-75.79148307,41.081745503],[-75.792177279,41.081749789],[-75.792657852,41.082214851],[-75.792947836,41.082721823],[-75.793520026,41.08330787],[-75.793756711,41.083779132],[-75.79380996,41.084490456],[-75.793497362,41.085469943],[-75.793947351,41.086079475],[-75.794847743,41.087100162],[-75.794412636,41.087801263],[-75.793718393,41.088729349],[-75.793283673,41.089952915],[-75.793550474,41.090446544],[-75.793924342,41.091056512],[-75.794489133,41.091363385],[-75.795211626,41.091535293],[-75.795389219,41.091681439],[-75.795183876,41.091845324],[-75.793993083,41.092042347],[-75.793175531,41.092502668],[-75.792738833,41.09286315],[-75.791345949,41.093452316],[-75.790415017,41.094084841],[-75.789453487,41.094672357],[-75.789014432,41.094914582],[-75.788820287,41.095118132],[-75.788590971,41.095709187],[-75.788459332,41.095919359],[-75.788243106,41.096278312],[-75.78768113,41.096711273],[-75.787582981,41.096726789],[-75.787561608,41.096748156],[-75.786905556,41.096896741],[-75.785600685,41.096946239],[-75.784654661,41.097344476],[-75.784296099,41.097914418],[-75.785455941,41.099037084],[-75.78470832,41.099384397],[-75.783960687,41.099844431],[-75.784074962,41.100978665],[-75.784219906,41.10224781],[-75.784494555,41.103588135],[-75.78461651,41.105114178],[-75.784753852,41.106590639],[-75.784899051,41.10715246],[-75.784822761,41.108121326],[-75.784960031,41.108958147],[-75.785043885,41.109592685],[-75.785463351,41.11049963],[-75.786188323,41.111152273],[-75.787988552,41.112022679],[-75.789186738,41.112050543],[-75.790514057,41.112091018],[-75.790613161,41.11271639],[-75.790559921,41.113306733],[-75.790338668,41.11388029],[-75.789812356,41.115428812],[-75.789629125,41.116010987],[-75.789484269,41.116750674],[-75.789682547,41.118145513],[-75.789972313,41.119400159],[-75.789941884,41.120922716],[-75.789636595,41.121483336],[-75.789209736,41.122387084],[-75.788843408,41.123353409],[-75.78845424,41.123932556],[-75.787927704,41.124665793],[-75.787561419,41.125109735],[-75.786760428,41.126205096],[-75.786981587,41.126834155],[-75.787462442,41.127853319],[-75.787668477,41.128450868],[-75.787653185,41.129509479],[-75.78782873,41.130273901],[-75.788744208,41.130835136],[-75.789194374,41.131705871],[-75.789026443,41.132391535],[-75.788568772,41.133313524],[-75.788316754,41.133936851],[-75.788064923,41.134956404],[-75.788125947,41.13585681],[-75.788255807,41.136463852],[-75.787805872,41.137070589],[-75.787622554,41.138161717],[-75.787889743,41.13897961],[-75.787943162,41.13974495],[-75.787714234,41.140241965],[-75.787324906,41.141131865],[-75.787248726,41.141803466],[-75.787370814,41.142762006],[-75.787523541,41.143796903],[-75.788271012,41.144052979],[-75.789743415,41.14396179],[-75.79114744,41.143785576],[-75.791849278,41.14399237],[-75.792711489,41.144837704],[-75.793169047,41.145203844],[-75.793772099,41.14546097],[-75.795091677,41.146586872],[-75.795511516,41.147034292],[-75.797243286,41.14849073],[-75.79763747,41.148814362],[-75.797755119,41.14910099],[-75.797876604,41.149639295],[-75.797899484,41.150976786],[-75.79828845,41.152460447],[-75.7985783,41.153512329],[-75.798753897,41.154447916],[-75.798616453,41.155156019],[-75.798372558,41.156265621],[-75.798395432,41.157098683],[-75.798586081,41.157682972],[-75.799005596,41.158369108],[-75.799146568,41.158837741],[-75.799244703,41.159123076],[-75.799468028,41.159335999],[-75.799848763,41.159524085],[-75.799929439,41.159523524],[-75.800035588,41.159600539],[-75.800730029,41.159374958],[-75.802217674,41.158950257],[-75.803247463,41.158632407],[-75.803850141,41.158182324],[-75.804605766,41.157289731],[-75.805399266,41.156964362],[-75.806253403,41.156706183],[-75.807131041,41.156835156],[-75.808351719,41.157452642],[-75.809015522,41.15800643],[-75.809755521,41.158483254],[-75.810373505,41.158821118],[-75.810942245,41.158979667],[-75.811123724,41.159152682],[-75.811312,41.159769346],[-75.811220354,41.16046364],[-75.811342481,41.161133864],[-75.811655164,41.161874795],[-75.812212119,41.162505972],[-75.812425993,41.163053933],[-75.812425618,41.163607845],[-75.812395076,41.164657595],[-75.812670058,41.16556092],[-75.813181103,41.166174291],[-75.813707651,41.166963282],[-75.813768599,41.167494281],[-75.814317753,41.16871102],[-75.816797397,41.168508778],[-75.81770538,41.168700505],[-75.818781049,41.168656834],[-75.81914723,41.16952349],[-75.819582037,41.170515771],[-75.820215486,41.170975157],[-75.820032264,41.172115953],[-75.819543991,41.173799394],[-75.819551527,41.17542075],[-75.819727088,41.177279622],[-75.820169711,41.179312241],[-75.820154294,41.179987936],[-75.820474779,41.18044055],[-75.821420712,41.181478715],[-75.82207699,41.181996486],[-75.822710241,41.182996339],[-75.822580394,41.183844002],[-75.822145575,41.184738882],[-75.821916582,41.185258465],[-75.821947076,41.18602841],[-75.822023598,41.186784529],[-75.822235803,41.187988163],[-75.822446208,41.188221773],[-75.823267173,41.188460108],[-75.823770866,41.18889789],[-75.824411358,41.189753544],[-75.825197276,41.190527099],[-75.825369467,41.190838561],[-75.825566676,41.190969333],[-75.8259807,41.191276194],[-75.826044451,41.191356984],[-75.827005661,41.191883317],[-75.827127658,41.19251749],[-75.826860649,41.19321301],[-75.826753792,41.193812794],[-75.826487789,41.193958878],[-75.825921093,41.194065103],[-75.82557615,41.194234408],[-75.825484187,41.194449569],[-75.825560759,41.194528943],[-75.825731344,41.194950614],[-75.826036499,41.195389805],[-75.825983274,41.196083807],[-75.825716056,41.196698187],[-75.825105713,41.197004423],[-75.824152007,41.196885027],[-75.82351137,41.197326595],[-75.822679587,41.197607222],[-75.821756443,41.197924574],[-75.82005503,41.198346597],[-75.818254577,41.198967422],[-75.816782158,41.199572458],[-75.814706996,41.200388744],[-75.813931991,41.200641317],[-75.813483733,41.200699506],[-75.8132281,41.200628004],[-75.813081277,41.200537366],[-75.812922003,41.200410163],[-75.81276331,41.200328836],[-75.812423298,41.200312949],[-75.812059642,41.200342938],[-75.811732976,41.20041855],[-75.811342456,41.20055668],[-75.809254794,41.201169145],[-75.808336198,41.201459758],[-75.807465427,41.201694927],[-75.806680848,41.202030391],[-75.805811026,41.202370048],[-75.805170797,41.202696692],[-75.804574904,41.202716459],[-75.803690033,41.202799211],[-75.803125602,41.203185957],[-75.802817603,41.203809446],[-75.802339807,41.20394362],[-75.801469862,41.20394062],[-75.799104976,41.204029101],[-75.797676828,41.204059639],[-75.797281564,41.204149938],[-75.796733722,41.204352181],[-75.796389187,41.204569032],[-75.796040712,41.204452253],[-75.795788877,41.204501633],[-75.79572496,41.204606584],[-75.795740126,41.205115429],[-75.795595312,41.205904604],[-75.795206142,41.206573845],[-75.794580525,41.207361891],[-75.79414563,41.208540302],[-75.794046694,41.209176083],[-75.793665178,41.210020991],[-75.793230401,41.210622924],[-75.791849282,41.210596447],[-75.79107099,41.211552094],[-75.790079465,41.212392106],[-75.788797735,41.212810795],[-75.787523598,41.213373422],[-75.786745313,41.213689593],[-75.786028123,41.214162839],[-75.78563921,41.214985193],[-75.785257368,41.215546323],[-75.784547754,41.215717731],[-75.783022272,41.215926307],[-75.781160702,41.216596529],[-75.779833108,41.217186619],[-75.778818181,41.217814994],[-75.778383323,41.218322354],[-75.777956134,41.218775555],[-75.777330746,41.219347361],[-75.776743113,41.219788228],[-75.775972603,41.220396904],[-75.775033914,41.221222925],[-75.77441599,41.221839618],[-75.774118652,41.222427058],[-75.773760112,41.223006025],[-75.773325093,41.223553875],[-75.772836832,41.22396705],[-75.772173021,41.224813771],[-75.771959546,41.225837554],[-75.772035653,41.226602728],[-75.772051167,41.227638471],[-75.771814583,41.229040763],[-75.770983099,41.229456139],[-75.770166787,41.229763388],[-75.769426274,41.229903454],[-75.768823644,41.230110203],[-75.768053288,41.230786422],[-75.768159742,41.231537811],[-75.767343655,41.232209805],[-75.766725711,41.232524762],[-75.763193263,41.233665187],[-75.762857408,41.234221398],[-75.762690697,41.234761479],[-75.762533351,41.234923309],[-75.762125295,41.234974487],[-75.76073534,41.235054391],[-75.759759795,41.23503458],[-75.758951359,41.234900256],[-75.758429392,41.234950413],[-75.757974825,41.235131892],[-75.757013472,41.235552556],[-75.756212386,41.235805583],[-75.755571571,41.23591791],[-75.754831487,41.235832598],[-75.753732815,41.23592996],[-75.752764008,41.236246969],[-75.751710836,41.236406996],[-75.750742199,41.236323237],[-75.749635829,41.23651514],[-75.748147911,41.236786091],[-75.747278363,41.236944804],[-75.746271291,41.237320712],[-75.745294762,41.237754879],[-75.743898355,41.237772886],[-75.742586309,41.237790404],[-75.741914832,41.237848765],[-75.741182443,41.237943558],[-75.740595012,41.238163565],[-75.740053243,41.23886505],[-75.739359141,41.239815359],[-75.738763778,41.241197321],[-75.738375039,41.242861777],[-75.738414154,41.243493609],[-75.73841845,41.243874955],[-75.738283117,41.244114447],[-75.737950117,41.244354615],[-75.736757386,41.244610688],[-75.735437534,41.245015433],[-75.733240375,41.246470655],[-75.732744181,41.24679816],[-75.73171422,41.246876756],[-75.730226651,41.246859193],[-75.728830703,41.247124775],[-75.728326804,41.247501703],[-75.727724194,41.248217193],[-75.72741148,41.248939823],[-75.727235954,41.250098304],[-75.72686222,41.250771822],[-75.726228685,41.251428864],[-75.725379991,41.252680669],[-75.725244859,41.252952852],[-75.725519092,41.253509645],[-75.725708378,41.253822638],[-75.725611062,41.254026983],[-75.725268666,41.254039958],[-75.72488954,41.254018443],[-75.723955248,41.254095952],[-75.722536118,41.254442633],[-75.721101816,41.254573236],[-75.719629617,41.253965473],[-75.718271289,41.253717129],[-75.717470459,41.253843824],[-75.716127563,41.254171911],[-75.715189092,41.254560548],[-75.714098028,41.255481633],[-75.713220735,41.25559074],[-75.712457784,41.255924166],[-75.711992439,41.25631438],[-75.711404732,41.256543295],[-75.710977745,41.257437674],[-75.711778664,41.25905402],[-75.711343939,41.259493608],[-75.710527664,41.26044894],[-75.709703545,41.261206202],[-75.708978951,41.261742091],[-75.707742985,41.262326248],[-75.706384733,41.262839007],[-75.705530153,41.263272173],[-75.705034242,41.263847151],[-75.704874248,41.264577831],[-75.704886072,41.265098784],[-75.704903048,41.265260475],[-75.704766205,41.265353743],[-75.704491291,41.265424709],[-75.704201283,41.265518993],[-75.70407966,41.265600594],[-75.704157505,41.265727266],[-75.704331399,41.265886496],[-75.704500503,41.266115857],[-75.705045411,41.267097033],[-75.705031447,41.267235763],[-75.704940504,41.267317262],[-75.704741548,41.267329968],[-75.704527621,41.267377486],[-75.70434462,41.267447974],[-75.704238346,41.267541133],[-75.704070457,41.267599868],[-75.703825709,41.267624512],[-75.70352009,41.267684178],[-75.703261132,41.267824397],[-75.703018517,41.268057033],[-75.70283727,41.268341884],[-75.702625668,41.268556388],[-75.702445263,41.268869412],[-75.702104682,41.2691211],[-75.70112043,41.269185642],[-75.700037288,41.269318298],[-75.699343142,41.269547047],[-75.698749578,41.269897385],[-75.697199095,41.270303928],[-75.696031698,41.270617212],[-75.695558855,41.27094886],[-75.695154277,41.271365644],[-75.694704201,41.272021388],[-75.694147159,41.272623788],[-75.693603355,41.272829116],[-75.693195611,41.272812114],[-75.692978216,41.272775679],[-75.692790886,41.272764648],[-75.692531508,41.272858719],[-75.692409494,41.272917157],[-75.69222634,41.272964479],[-75.691843128,41.272943714],[-75.690958319,41.272809628],[-75.690263821,41.272588593],[-75.689325486,41.272490626],[-75.687906484,41.27269278],[-75.687166584,41.273219656],[-75.686754349,41.273771573],[-75.686052301,41.273996513],[-75.685442083,41.274626103],[-75.684580016,41.275009582],[-75.684099971,41.275139416],[-75.683790895,41.275342806],[-75.683475554,41.275583217],[-75.683294485,41.275756654],[-75.683158798,41.275965536],[-75.68312275,41.276126186],[-75.682619313,41.276512001],[-75.682260649,41.277221231],[-75.682184427,41.277964822],[-75.681642682,41.278436435],[-75.680444864,41.278290397],[-75.679727715,41.277934323],[-75.678880683,41.277502441],[-75.677805121,41.277702442],[-75.677370138,41.278206756],[-75.677202918,41.278241445],[-75.675966397,41.277677221],[-75.674241989,41.277412598],[-75.673176006,41.277599567],[-75.672818596,41.277624141],[-75.672313631,41.277674758],[-75.671652178,41.277869282],[-75.671602473,41.277904318],[-75.67143464,41.277937944],[-75.669931487,41.278617784],[-75.668954981,41.278875669],[-75.667543376,41.278987454],[-75.666190884,41.278991334],[-75.666002321,41.278835708],[-75.666002338,41.278149652],[-75.666132262,41.277239123],[-75.665567379,41.275958787],[-75.665208944,41.275348333],[-75.664918956,41.274642903],[-75.664194374,41.27368776],[-75.663286406,41.273044439],[-75.662538432,41.272688436],[-75.662187848,41.272222062],[-75.662108815,41.271683313],[-75.66196663,41.271520261],[-75.661319171,41.271138732],[-75.661139375,41.270914184],[-75.661127215,41.270422105],[-75.66041751,41.26915608],[-75.659914169,41.268375292],[-75.658762028,41.267850433],[-75.656458127,41.267133968],[-75.655435798,41.266639862],[-75.655177541,41.266385282],[-75.655139204,41.266238594],[-75.655243117,41.266081677],[-75.655885731,41.265596913],[-75.65693098,41.264766735],[-75.657602447,41.263943198],[-75.657907544,41.263342441],[-75.657945587,41.262486484],[-75.657906536,41.261861368],[-75.657637507,41.261672235],[-75.657178208,41.261674857],[-75.656672157,41.261606247],[-75.656291727,41.261465421],[-75.656042214,41.261338065],[-75.655783783,41.261206149],[-75.655149975,41.260995258],[-75.654738686,41.260926104],[-75.654392698,41.261071062],[-75.653979208,41.261275956],[-75.653764599,41.261432132],[-75.653261415,41.261649481],[-75.652828106,41.26172314],[-75.652519509,41.261844356],[-75.652084926,41.261846819],[-75.651809052,41.261705379],[-75.651132544,41.261065964],[-75.651087256,41.260773074],[-75.651132071,41.260326896],[-75.651062054,41.259636134],[-75.650816833,41.259408357],[-75.650797048,41.259324859],[-75.649927409,41.258789307],[-75.648994959,41.25831483],[-75.648855968,41.258016193],[-75.648996571,41.257533471],[-75.649500112,41.256512755],[-75.649934753,41.25531679],[-75.650186778,41.254324497],[-75.650804629,41.252271737],[-75.651300504,41.251386181],[-75.651956867,41.25006282],[-75.652612701,41.249176342],[-75.652925608,41.248125164],[-75.652994293,41.247606825],[-75.653001718,41.247115861],[-75.652940854,41.246472149],[-75.652742337,41.245824715],[-75.651813934,41.245122866],[-75.651618852,41.24503602],[-75.650773943,41.245119739],[-75.650305356,41.245201844],[-75.649977576,41.245157951],[-75.649370211,41.244488112],[-75.647745314,41.241925544],[-75.647432541,41.241332787],[-75.64714235,41.240307542],[-75.646631484,41.239139391],[-75.646306689,41.238641994],[-75.645977417,41.238520017],[-75.644731683,41.238519497],[-75.643388894,41.238490979],[-75.642526629,41.238405715],[-75.641557896,41.237731031],[-75.640482007,41.237232581],[-75.638872242,41.236705563],[-75.637636165,41.236410644],[-75.636713297,41.236150026],[-75.636110265,41.235914657],[-75.635194744,41.237104234],[-75.634866758,41.237777125],[-75.634965998,41.238321547],[-75.634942983,41.238947716],[-75.6343176,41.239180862],[-75.63363865,41.239157577],[-75.631677787,41.239618742],[-75.630487592,41.240102678],[-75.629839179,41.240426004],[-75.628603157,41.240450773],[-75.626832925,41.240613557],[-75.626306688,41.240922687],[-75.62555891,41.241660885],[-75.625688796,41.242610501],[-75.625613693,41.243215339],[-75.625406107,41.243348882],[-75.624635893,41.243345847],[-75.62309475,41.243056942],[-75.622224729,41.243259829],[-75.621126101,41.24334682],[-75.620431881,41.243053306],[-75.618753347,41.242548894],[-75.617777072,41.242004652],[-75.617014178,41.241860122],[-75.616342779,41.241926773],[-75.615358557,41.242242808],[-75.615129394,41.242779995],[-75.614671882,41.243187789],[-75.613390164,41.243874714],[-75.612199859,41.244331437],[-75.610689308,41.244681754],[-75.609552545,41.24456167],[-75.608549614,41.244666291],[-75.608314815,41.244882006],[-75.608202068,41.245284938],[-75.608041968,41.246078461],[-75.607668067,41.246701974],[-75.607263595,41.24752832],[-75.606477685,41.248208044],[-75.60569954,41.248558942],[-75.604494103,41.248722913],[-75.603793021,41.24935865],[-75.603780799,41.24935956],[-75.603590683,41.249289058],[-75.60345829,41.24921873],[-75.603319076,41.249030836],[-75.602815828,41.248574076],[-75.602365753,41.248017948],[-75.601730241,41.247278996],[-75.601557503,41.247182622],[-75.600961816,41.247237112],[-75.599069569,41.247503687],[-75.598077958,41.24759892],[-75.59711671,41.247504821],[-75.595880438,41.247231985],[-75.595064247,41.246929941],[-75.59404954,41.246903655],[-75.592441478,41.246328383],[-75.592144904,41.246393994],[-75.591498804,41.24694264],[-75.591529025,41.247214953],[-75.591669141,41.247469899],[-75.592073641,41.248152404],[-75.592241273,41.249327057],[-75.591547089,41.250105296],[-75.590875805,41.250653715],[-75.590364699,41.251345429],[-75.589685482,41.252299232],[-75.589311661,41.253328033],[-75.588724343,41.254384955],[-75.588098749,41.255293427],[-75.587244238,41.256342693],[-75.586389948,41.257457376],[-75.585918135,41.257674268],[-75.585214778,41.257654647],[-75.584177069,41.257619389],[-75.583299849,41.257803985],[-75.582292652,41.25788565],[-75.581629065,41.257889006],[-75.580993492,41.257937564],[-75.580171311,41.257822544],[-75.579538613,41.257706559],[-75.578912782,41.257817119],[-75.577776106,41.258363299],[-75.576555502,41.259333247],[-75.575525531,41.260054517],[-75.574815727,41.260404864],[-75.573831589,41.260698023],[-75.573084117,41.261053048],[-75.572298012,41.260998407],[-75.571260412,41.260981049],[-75.57045953,41.260944469],[-75.569566706,41.260845309],[-75.568764948,41.260906257],[-75.567399909,41.261216318],[-75.566684348,41.261369348],[-75.566118937,41.26172963],[-75.565492839,41.262076937],[-75.564040752,41.262478658],[-75.563504848,41.262600445],[-75.562810816,41.262699177],[-75.562166258,41.262678742],[-75.561372704,41.262583517],[-75.560274261,41.262651932],[-75.558023586,41.263306917],[-75.557701456,41.263582029],[-75.557134149,41.26372777],[-75.556131315,41.264086231],[-75.554651196,41.264904077],[-75.553323805,41.265477946],[-75.55234737,41.26577539],[-75.551645448,41.265976924],[-75.549120164,41.26611961],[-75.547510146,41.266140789],[-75.547235411,41.266039407],[-75.546991272,41.265836991],[-75.546335224,41.265502313],[-75.546310775,41.265497557],[-75.545965817,41.26530659],[-75.545586392,41.265260731],[-75.545048844,41.265191773],[-75.54452682,41.265243525],[-75.543947195,41.265234381],[-75.542055162,41.265301857],[-75.540720173,41.265105458],[-75.539911282,41.265005665],[-75.539255127,41.26573837],[-75.538644723,41.266142072],[-75.537782626,41.266925283],[-75.537370599,41.267454154],[-75.53679846,41.267884691],[-75.535501486,41.268692421],[-75.534517367,41.268841113],[-75.533578854,41.268268978],[-75.532937987,41.268006218],[-75.532258902,41.267216674],[-75.531237607,41.265855633],[-75.531092631,41.26582899],[-75.530916088,41.265854813],[-75.53055783,41.266179624],[-75.529306591,41.267387921],[-75.528963159,41.267826376],[-75.528886832,41.268308644],[-75.528787526,41.269317969],[-75.528833602,41.270358156],[-75.52903956,41.271235466],[-75.529474308,41.271800954],[-75.530313545,41.272598784],[-75.530824914,41.273222465],[-75.531282424,41.274427405],[-75.530588217,41.275232288],[-75.529718325,41.275632636],[-75.528764828,41.276168475],[-75.527795899,41.277015147],[-75.526872587,41.277366175],[-75.525545107,41.277944236],[-75.525026559,41.278284401],[-75.524500021,41.279120011],[-75.524248075,41.280184073],[-75.524126218,41.280810656],[-75.523378258,41.281120332],[-75.52254671,41.281196173],[-75.521104746,41.281328823],[-75.519571386,41.281371776],[-75.518488134,41.281565825],[-75.517366648,41.281597894],[-75.516702757,41.281735998],[-75.515695673,41.281794562],[-75.514177522,41.281828367],[-75.51335334,41.282084263],[-75.512453143,41.282308953],[-75.511392794,41.28252536],[-75.510522982,41.282578761],[-75.509264021,41.282498765],[-75.507776381,41.282379229],[-75.506433474,41.28229957],[-75.50574674,41.282383659],[-75.504892575,41.282725198],[-75.50412948,41.283021297],[-75.503145384,41.283259803],[-75.501855858,41.282598858],[-75.500757355,41.282076688],[-75.500230805,41.281588052],[-75.499620651,41.280996193],[-75.49913221,41.280412808],[-75.498849803,41.279882581],[-75.498781162,41.279247832],[-75.498697265,41.278766273],[-75.498704985,41.278261803],[-75.498636271,41.277568503],[-75.498338674,41.27695276],[-75.497888743,41.276373709],[-75.497339377,41.275718514],[-75.496919518,41.275166351],[-75.496187404,41.275358671],[-75.495492889,41.275195027],[-75.494661193,41.274901347],[-75.493944122,41.274859378],[-75.493158392,41.274970841],[-75.492395369,41.275320904],[-75.491800309,41.27558017],[-75.490999182,41.275727716],[-75.490251647,41.275757922],[-75.48923686,41.275775744],[-75.488595843,41.275728932],[-75.487688143,41.275746294],[-75.486917574,41.275740548],[-75.486154454,41.275730269],[-75.48533082,41.275612129],[-75.484984982,41.275661027],[-75.48459807,41.275925985],[-75.483934484,41.276208016],[-75.483186682,41.276355282],[-75.482523129,41.276389592],[-75.481645505,41.276388764],[-75.480745511,41.276491609],[-75.480043641,41.276440493],[-75.479394982,41.276267544],[-75.478746529,41.276121623],[-75.477976011,41.275764512],[-75.47731216,41.275654661],[-75.476694282,41.275350957],[-75.476106612,41.275096668],[-75.475374356,41.274969081],[-75.474542742,41.275085116],[-75.473909285,41.274894052],[-75.473047358,41.274685914],[-75.472269374,41.2744869],[-75.471814754,41.274514501],[-75.471346104,41.274715413],[-75.470682312,41.274871261],[-75.469881008,41.274843006],[-75.469102905,41.27472007],[-75.467775296,41.274455246],[-75.466974137,41.27423781],[-75.46616553,41.274232079],[-75.465234892,41.274168278],[-75.464388032,41.274189712],[-75.463936782,41.274291386],[-75.463582098,41.27452907],[-75.463380916,41.274810802],[-75.463052953,41.275343579],[-75.462724834,41.275799799],[-75.462068743,41.276311366],[-75.461366797,41.276458306],[-75.460550391,41.276461573],[-75.459619659,41.276442773],[-75.458772766,41.276247982],[-75.457819067,41.276148191],[-75.456789151,41.275922583],[-75.455957662,41.275687171],[-75.455232622,41.275518885],[-75.454538244,41.275629731],[-75.454011827,41.27526249],[-75.453378752,41.274958718],[-75.452722752,41.274952292],[-75.451906123,41.275189712],[-75.451372361,41.275597155],[-75.450922053,41.276040299],[-75.450548211,41.276478632],[-75.450334482,41.277087495],[-75.449922493,41.277625068],[-75.449510699,41.27802752],[-75.448808662,41.278768897],[-75.448129724,41.279505677],[-75.447664152,41.280016424],[-75.447084417,41.280748317],[-75.446603716,41.281340183],[-75.446191885,41.281855229],[-75.445711136,41.282496634],[-75.44528378,41.283034248],[-75.444856851,41.283472778],[-75.444071041,41.283651461],[-75.443300299,41.283798562],[-75.442560343,41.283805907],[-75.441209766,41.283689486],[-75.440545947,41.283642486],[-75.43988246,41.283924263],[-75.439119271,41.284364052],[-75.438295553,41.284515821],[-75.437425645,41.284568671],[-75.436403349,41.284658127],[-75.435319939,41.284761314],[-75.434618189,41.284962135],[-75.434206062,41.285337514],[-75.433641628,41.285704455],[-75.432855687,41.286211855],[-75.43222248,41.286511482],[-75.431421454,41.286829759],[-75.43052875,41.287107836],[-75.429742852,41.287344973],[-75.428926529,41.287550694],[-75.428270233,41.287805354],[-75.427637326,41.287582512],[-75.426965735,41.287265239],[-75.426332547,41.286884747],[-75.425867172,41.286539671],[-75.425172964,41.285839631],[-75.424402125,41.286040655],[-75.423746071,41.286272764],[-75.422968041,41.286631429],[-75.422143937,41.287021789],[-75.421586928,41.28733911],[-75.420808674,41.287666227],[-75.420068706,41.288029242],[-75.419191308,41.288320686],[-75.418558026,41.288678799],[-75.417962979,41.289297991],[-75.417962988,41.290117688],[-75.417673097,41.290717764],[-75.417322218,41.291354085],[-75.417085795,41.292147623],[-75.41716196,41.292913015],[-75.417474696,41.29360997],[-75.417833362,41.294194176],[-75.41802426,41.294923109],[-75.417871378,41.295824438],[-75.417711241,41.296581677],[-75.417497719,41.297104895],[-75.417352812,41.297970163],[-75.417177272,41.298889587],[-75.417146606,41.299583304],[-75.417001747,41.300223371],[-75.416811122,41.300827586],[-75.416536536,41.301319495],[-75.416314974,41.301815721],[-75.416482853,41.302562755],[-75.416963693,41.303096975],[-75.417612049,41.303558522],[-75.418527554,41.304055127],[-75.41916097,41.304512225],[-75.419748196,41.305041533],[-75.420366473,41.305521191],[-75.421228383,41.305977435],[-75.422342478,41.306464273],[-75.42334944,41.306834396],[-75.42422668,41.307173458],[-75.42502045,41.307535344],[-75.425691731,41.307658979],[-75.426385782,41.307611362],[-75.427049641,41.30745577],[-75.42767538,41.307066116],[-75.428270305,41.306532447],[-75.428956958,41.306097522],[-75.429949026,41.306183898],[-75.430711709,41.306356697],[-75.431528108,41.306578842],[-75.432146273,41.306743157],[-75.432779404,41.307083071],[-75.433305788,41.307535983],[-75.43368721,41.307971417],[-75.434137201,41.30833003],[-75.43456466,41.30872476],[-75.435121662,41.309344196],[-75.435625208,41.309950305],[-75.436082953,41.310462018],[-75.436586396,41.311050117],[-75.436975514,41.31151253],[-75.437441039,41.311956652],[-75.437944446,41.312535728],[-75.4383413,41.31314674],[-75.438699856,41.313613775],[-75.439134616,41.314085029],[-75.439767838,41.314478953],[-75.440828217,41.314596491],[-75.441736288,41.314773167],[-75.442575563,41.314990632],[-75.443162926,41.315222571],[-75.443686225,41.315413605],[-75.443784854,41.315643217],[-75.443696946,41.315954643],[-75.44329278,41.316478648],[-75.442598395,41.317152395],[-75.441934704,41.317672889],[-75.441385496,41.318008278],[-75.440790329,41.318560039],[-75.440462058,41.318993667],[-75.439943367,41.319594651],[-75.439600056,41.320235513],[-75.439454945,41.321033248],[-75.439561944,41.321897575],[-75.439607687,41.322649554],[-75.439455171,41.323402271],[-75.439256745,41.324101126],[-75.438944062,41.324858966],[-75.438707573,41.325454374],[-75.438295488,41.326316188],[-75.438646424,41.326972404],[-75.439210837,41.327443156],[-75.440088488,41.328011798],[-75.440889568,41.328409567],[-75.441728809,41.328762155],[-75.442628913,41.329001905],[-75.443567497,41.328966762],[-75.444421744,41.328940949],[-75.445024709,41.328537776],[-75.446069747,41.327849149],[-75.446443446,41.327451362],[-75.446878353,41.326611955],[-75.44719909,41.326007196],[-75.447465849,41.325371115],[-75.447732808,41.324766563],[-75.448099111,41.324274219],[-75.448656081,41.32359647],[-75.449350544,41.323044302],[-75.450311731,41.322509081],[-75.451120342,41.322321258],[-75.451959749,41.322268422],[-75.45303544,41.32225969],[-75.454027196,41.322206247],[-75.454934958,41.322049524],[-75.455842986,41.321825245],[-75.456422662,41.321530196],[-75.457361312,41.320877924],[-75.457872488,41.320506568],[-75.458315076,41.319937319],[-75.459085612,41.320290052],[-75.459672921,41.320499393],[-75.460245215,41.320803367],[-75.460848073,41.321044161],[-75.461527034,41.321221595],[-75.462167838,41.32139017],[-75.463037502,41.32171096],[-75.46338853,41.322137407],[-75.463281644,41.322651275],[-75.463258796,41.323326944],[-75.463014582,41.324066567],[-75.462839323,41.32462574],[-75.462602838,41.32540136],[-75.462381517,41.325947206],[-75.461992199,41.326498236],[-75.461755827,41.327026138],[-75.461961665,41.327673865],[-75.461786421,41.328133969],[-75.461206419,41.328654228],[-75.461229335,41.329203602],[-75.461328559,41.329928326],[-75.461267525,41.330487047],[-75.461038482,41.331159043],[-75.460870632,41.331718185],[-75.460512168,41.33241321],[-75.460291018,41.332882504],[-75.460039205,41.333559077],[-75.459924623,41.334311677],[-75.459848338,41.335041605],[-75.460855476,41.335289798],[-75.461900808,41.335551329],[-75.462572223,41.335697275],[-75.463296943,41.335775412],[-75.464060011,41.335731802],[-75.464891404,41.335525773],[-75.466012986,41.335323071],[-75.466699493,41.335122117],[-75.467584785,41.33504197],[-75.468393526,41.335169285],[-75.469224982,41.335341546],[-75.470407519,41.335670003],[-75.471185795,41.336130714],[-75.471086465,41.336703118],[-75.471040629,41.337338347],[-75.471078929,41.33793719],[-75.471132498,41.338477433],[-75.471536632,41.339101817],[-75.472307438,41.339089649],[-75.473245648,41.339243424],[-75.473939836,41.339533323],[-75.474931653,41.339610295],[-75.475786412,41.339534702],[-75.476717067,41.339521851],[-75.476327951,41.340248574],[-75.476045644,41.341078446],[-75.475602972,41.341940515],[-75.475046401,41.342294105],[-75.474123149,41.342252876],[-75.473176895,41.342283794],[-75.472322695,41.34239089],[-75.471696846,41.342722234],[-75.471208677,41.343192634],[-75.470796573,41.343797843],[-75.470392342,41.344461558],[-75.469736242,41.345058735],[-75.46908017,41.345556832],[-75.468439148,41.346176467],[-75.468393289,41.346865739],[-75.468576383,41.347500036],[-75.46898087,41.347908244],[-75.469713226,41.348454716],[-75.470399738,41.34886176],[-75.471094319,41.349453423],[-75.471590132,41.350036884],[-75.471971754,41.350584794],[-75.472223486,41.351353914],[-75.472291897,41.351930124],[-75.472559215,41.352528025],[-75.473192359,41.352881235],[-75.473932272,41.353274529],[-75.474527307,41.353573832],[-75.474992985,41.353909704],[-75.475694596,41.354735519],[-75.476732189,41.354807768],[-75.477075585,41.355328796],[-75.477480131,41.355935132],[-75.478143775,41.356414286],[-75.478769477,41.356762982],[-75.479852868,41.357623206],[-75.47977655,41.358321614],[-75.479883239,41.358807582],[-75.480012902,41.359370027],[-75.480218914,41.360256411],[-75.480104556,41.360860399],[-75.47973065,41.361330357],[-75.479257496,41.361665611],[-75.478738958,41.362131662],[-75.47838792,41.362817702],[-75.478105431,41.363426891],[-75.477785783,41.363784273],[-75.477825658,41.363872758],[-75.477903705,41.363917981],[-75.478914138,41.364112611],[-75.479974644,41.364180255],[-75.480814007,41.364406445],[-75.481599839,41.364668885],[-75.48214936,41.364959328],[-75.483110354,41.365311102],[-75.483972658,41.365302973],[-75.484766006,41.36516452],[-75.485407116,41.365157313],[-75.486009689,41.3655421],[-75.486207992,41.366081727],[-75.486383502,41.366770069],[-75.48649042,41.367580303],[-75.486559064,41.368368173],[-75.486559082,41.368922142],[-75.486597086,41.369408391],[-75.486810903,41.369920921],[-75.487039588,41.370370325],[-75.486703922,41.370907715],[-75.486185246,41.37181066],[-75.48597145,41.372406068],[-75.485849613,41.372956057],[-75.485666308,41.37363239],[-75.48564361,41.374249508],[-75.485589949,41.375123474],[-75.485269644,41.375620241],[-75.485094334,41.376116401],[-75.484987502,41.37662578],[-75.484827074,41.377266004],[-75.484666947,41.377897204],[-75.484667083,41.378469188],[-75.484758477,41.379049791],[-75.484918659,41.379684152],[-75.485155277,41.380345214],[-75.48541471,41.380907102],[-75.485864542,41.381490691],[-75.486307331,41.381979741],[-75.486658,41.38249619],[-75.48691003,41.383013061],[-75.486742137,41.383603769],[-75.48652076,41.38423974],[-75.486292075,41.384848721],[-75.486230937,41.38537142],[-75.486200407,41.385889483],[-75.486131843,41.386569846],[-75.485986675,41.387354128],[-75.485811315,41.388097987],[-75.485635808,41.388571627],[-75.485368837,41.389514046],[-75.485345875,41.390045591],[-75.485460355,41.390662127],[-75.485391811,41.391446079],[-75.485178192,41.39192438],[-75.484933846,41.392443347],[-75.48452201,41.392908978],[-75.485353647,41.393653096],[-75.485742474,41.394164887],[-75.486047712,41.394695054],[-75.48654387,41.395210886],[-75.487115794,41.395609302],[-75.487604293,41.395949529],[-75.488275529,41.396279957],[-75.488969891,41.39635357],[-75.489885351,41.396399218],[-75.490541697,41.396387413],[-75.491235725,41.396366447],[-75.491892005,41.39609792],[-75.4927542,41.395724912],[-75.493478907,41.395411043],[-75.49414277,41.395210029],[-75.495050466,41.395170097],[-75.495744938,41.395405798],[-75.496210011,41.395804641],[-75.49669081,41.396158364],[-75.497148721,41.396498683],[-75.497827687,41.396856043],[-75.498521943,41.397060209],[-75.499101549,41.397327925],[-75.499628169,41.397703958],[-75.500688538,41.398361407],[-75.501558278,41.398776471],[-75.502504245,41.399236233],[-75.503618178,41.399609672],[-75.50435828,41.399885673],[-75.505006914,41.400130536],[-75.505533405,41.400484023],[-75.506410664,41.401331379],[-75.506463934,41.40188511],[-75.506242984,41.402462566],[-75.506067486,41.403116386],[-75.505373,41.404533637],[-75.504930458,41.405467852],[-75.504709337,41.406171422],[-75.504892584,41.406949763],[-75.505708926,41.407982049],[-75.506456307,41.408798446],[-75.507829612,41.409661623],[-75.508676453,41.410040704],[-75.509469881,41.41047406],[-75.510561077,41.41135196],[-75.510934899,41.411818694],[-75.511415716,41.412433577],[-75.511827501,41.412972196],[-75.512842424,41.413413569],[-75.513895072,41.413611531],[-75.514841069,41.413656838],[-75.516214427,41.413461527],[-75.518137074,41.413502422],[-75.519128938,41.413484443],[-75.520723359,41.413535796],[-75.521448387,41.413955858],[-75.522089031,41.414624015],[-75.522630677,41.41502239],[-75.523752292,41.415931564],[-75.524721345,41.416652248],[-75.525209451,41.417131922],[-75.525636874,41.417688448],[-75.526208946,41.41879375],[-75.527185651,41.420266514],[-75.528032563,41.421915512],[-75.528398616,41.42306229],[-75.52829189,41.424197729],[-75.527879841,41.424807628],[-75.527086337,41.425558893],[-75.526056379,41.426162606],[-75.525216955,41.426787959],[-75.524019256,41.427000596],[-75.523553974,41.427462098],[-75.523630339,41.428168849],[-75.52414127,41.428918643],[-75.524698495,41.429609681],[-75.52601049,41.430067587],[-75.527002507,41.430684554],[-75.527117038,41.431481195],[-75.527216199,41.432458067],[-75.527193164,41.433399447],[-75.527002371,41.434229012],[-75.526758285,41.43503632],[-75.525888675,41.437125519],[-75.525049494,41.439192071],[-75.524827957,41.440017269],[-75.524621909,41.440675757],[-75.524164108,41.441614622],[-75.523668503,41.442224886],[-75.523240993,41.442978957],[-75.523157238,41.443542307],[-75.522936126,41.444052236],[-75.522417036,41.444631074],[-75.521875582,41.445034368],[-75.521074289,41.445411807],[-75.519907193,41.445799915],[-75.51861787,41.446062433],[-75.517732591,41.44665642],[-75.517686774,41.447246617],[-75.517526788,41.448157093],[-75.517076629,41.449276055],[-75.516367104,41.449819684],[-75.515504774,41.450296442],[-75.51500121,41.450960757],[-75.51430704,41.451130494],[-75.512842288,41.451700001],[-75.512239534,41.452220617],[-75.511438462,41.452359294],[-75.510126311,41.452450691],[-75.509218178,41.452869058],[-75.508645973,41.453092274],[-75.506715772,41.453623226],[-75.505808025,41.453519133],[-75.505098439,41.453252015],[-75.503976805,41.452874126],[-75.501901784,41.452387786],[-75.501253288,41.452422141],[-75.500154524,41.45282325],[-75.499567134,41.453168087],[-75.498682159,41.453640316],[-75.497972718,41.453976675],[-75.497347048,41.454258615],[-75.496408559,41.454686013],[-75.49588206,41.45502156],[-75.495248753,41.455335055],[-75.49455471,41.455536203],[-75.493906216,41.455624554],[-75.493074379,41.455862317],[-75.492555812,41.456161786],[-75.491945201,41.456610267],[-75.491365501,41.457189225],[-75.490984087,41.457618708],[-75.490556923,41.458133957],[-75.490236525,41.458666764],[-75.489984703,41.459212792],[-75.489702418,41.460038176],[-75.489473294,41.460719217],[-75.489183578,41.461355475],[-75.489259803,41.461985674],[-75.48928256,41.462674658],[-75.4891147,41.463143761],[-75.488657035,41.46378974],[-75.488245186,41.46435895],[-75.487894182,41.46505852],[-75.48768064,41.465725979],[-75.487352347,41.466362405],[-75.487176907,41.466921603],[-75.48698635,41.467611479],[-75.486925028,41.468269292],[-75.486993881,41.468867989],[-75.486749798,41.4695581],[-75.486276606,41.470289699],[-75.485689355,41.47088216],[-75.485139785,41.471361884],[-75.484689719,41.471935747],[-75.484545016,41.472656961],[-75.48459064,41.473305307],[-75.484445789,41.474058037],[-75.484232118,41.47466694],[-75.483758941,41.475105792],[-75.48330116,41.475553587],[-75.482637359,41.475677974],[-75.481988955,41.475351922],[-75.481287182,41.475300815],[-75.480615761,41.47545675],[-75.479944431,41.475675734],[-75.479394957,41.475925727],[-75.478723738,41.476162717],[-75.478059992,41.476548296],[-75.477533509,41.476820706],[-75.477350434,41.47752855],[-75.477258883,41.478109912],[-75.47726646,41.47863232],[-75.477289249,41.47928976],[-75.477243566,41.479848403],[-75.47687716,41.480412898],[-75.47632038,41.480951148],[-75.475732901,41.481385936],[-75.475053885,41.481843628],[-75.474420561,41.482102952],[-75.473604411,41.482493637],[-75.473192465,41.483031268],[-75.473017659,41.483447533],[-75.473117138,41.483696835],[-75.473527904,41.4840162],[-75.474512079,41.484129243],[-75.475252237,41.483991073],[-75.475977115,41.483965559],[-75.476541542,41.484264972],[-75.477152124,41.484730826],[-75.477708802,41.485196904],[-75.478311441,41.485752859],[-75.478837887,41.486228064],[-75.479601058,41.486517626],[-75.480242005,41.486780677],[-75.480630935,41.48707934],[-75.480646157,41.487280656],[-75.480310677,41.487717158],[-75.479875767,41.488083775],[-75.479356904,41.488486775],[-75.479104993,41.489100324],[-75.47903631,41.48958701],[-75.478937297,41.490069319],[-75.478784747,41.490551853],[-75.478548289,41.491079773],[-75.478067431,41.491667257],[-75.477502731,41.49215601],[-75.477174752,41.492661773],[-75.476946107,41.49313562],[-75.476541777,41.49379934],[-75.475969251,41.494297126],[-75.475435157,41.494574055],[-75.474733588,41.494833664],[-75.473817776,41.495031098],[-75.473253283,41.495299142],[-75.472917459,41.495917533],[-75.47274992,41.496458667],[-75.472574346,41.496977315],[-75.472414176,41.497450863],[-75.472322402,41.498113285],[-75.472452101,41.498599161],[-75.472963479,41.499002387],[-75.473474583,41.499468678],[-75.474176558,41.50007828],[-75.47512242,41.500448184],[-75.475046259,41.500939404],[-75.474642055,41.501783274],[-75.474214661,41.502375014],[-75.473909353,41.503331059],[-75.47419931,41.504172057],[-75.474374845,41.504725291],[-75.47433679,41.50561718],[-75.474153629,41.506122358],[-75.473871111,41.506713499],[-75.474092581,41.507198985],[-75.474535192,41.507557458],[-75.4751454,41.508559264],[-75.475214165,41.509257053],[-75.47481721,41.509871197],[-75.474382625,41.510305347],[-75.473314528,41.510859196],[-75.472719147,41.511275995],[-75.472185088,41.511836639],[-75.471620487,41.512730688],[-75.471475771,41.513429355],[-75.471262157,41.514132807],[-75.470972149,41.514678945],[-75.47080422,41.515382207],[-75.470476294,41.517004878],[-75.470231927,41.518118291],[-75.47014055,41.518740175],[-75.469659741,41.519579827],[-75.46915623,41.520131342],[-75.468606926,41.520926222],[-75.468477359,41.52139964],[-75.46843924,41.522241991],[-75.468477284,41.52279128],[-75.468545882,41.523317939],[-75.468576657,41.523948333],[-75.46824834,41.52563404],[-75.467859415,41.526189578],[-75.467760002,41.527469029],[-75.467592164,41.528816314],[-75.467287195,41.530578496],[-75.467271807,41.531510828],[-75.467210784,41.532506381],[-75.46715742,41.533366803],[-75.466844522,41.534030114],[-75.466341183,41.534937405],[-75.465463746,41.53591825],[-75.465204156,41.536392187],[-75.464868654,41.536938492],[-75.464563342,41.537516195],[-75.464097939,41.537918901],[-75.463068174,41.538828293],[-75.462778076,41.539545547],[-75.462190577,41.540853976],[-75.462160299,41.541547662],[-75.461969361,41.542093374],[-75.462221337,41.542857987],[-75.4621069,41.543466444],[-75.461809299,41.544818751],[-75.461320876,41.545473744],[-75.460764163,41.545957861],[-75.460329013,41.546518068],[-75.459779722,41.546993143],[-75.458849108,41.548068742],[-75.4580709,41.548923023],[-75.457406932,41.549614733],[-75.456819476,41.550423237],[-75.456422836,41.551140886],[-75.45615598,41.551718415],[-75.455751562,41.552183905],[-75.455270689,41.552649679],[-75.45472138,41.553133746],[-75.454019709,41.553429258],[-75.453546431,41.553858982],[-75.453081313,41.554383231],[-75.451967167,41.555234307],[-75.451318906,41.555507071],[-75.450678058,41.556203149],[-75.449953092,41.556710399],[-75.449525727,41.557229994],[-75.449648043,41.558116738],[-75.449602363,41.558715905],[-75.449243743,41.559748644],[-75.448679089,41.560196711],[-75.447526967,41.560944305],[-75.447077021,41.561400936],[-75.446642163,41.562253808],[-75.44628355,41.562750604],[-75.445543357,41.563131775],[-75.444589742,41.563216541],[-75.443849719,41.56329596],[-75.44227026,41.563441653],[-75.441400462,41.563508054],[-75.440263703,41.563944772],[-75.439966257,41.564405273],[-75.439859628,41.565040701],[-75.439790613,41.56597323],[-75.439981572,41.566553462],[-75.440347615,41.567250136],[-75.441248132,41.568827461],[-75.441682801,41.569415779],[-75.441827962,41.570257396],[-75.441820168,41.570982515],[-75.442125397,41.571715438],[-75.442598459,41.572542289],[-75.442659539,41.573032954],[-75.442689911,41.573694874],[-75.442506925,41.574672872],[-75.441957633,41.575535182],[-75.441492305,41.57611794],[-75.440935215,41.577047829],[-75.440866555,41.577809219],[-75.440599675,41.579192855],[-75.439508468,41.580471562],[-75.438882952,41.581104463],[-75.438272696,41.581557149],[-75.437593569,41.582248802],[-75.437074552,41.583056928],[-75.436372715,41.583721631],[-75.435518357,41.584508503],[-75.434678976,41.58507013],[-75.434190767,41.58550884],[-75.433763603,41.586271561],[-75.433649183,41.586767393],[-75.433748258,41.587338979],[-75.434053585,41.588143979],[-75.433885575,41.588977798],[-75.433633965,41.589757869],[-75.432909193,41.590539731],[-75.432359662,41.591401985],[-75.432512492,41.592054447],[-75.432176538,41.592785299],[-75.431917191,41.593421285],[-75.431726519,41.594011979],[-75.43201635,41.594627887],[-75.43231396,41.595230266],[-75.43283289,41.595786757],[-75.433565312,41.596419007],[-75.434854412,41.597359904],[-75.435434574,41.598262946],[-75.435403856,41.598826019],[-75.43517518,41.599448378],[-75.434755554,41.600341685],[-75.434633514,41.600819521],[-75.434724723,41.601391146],[-75.43428231,41.602523231],[-75.434419714,41.603216272],[-75.434610412,41.603972167],[-75.435030192,41.605276634],[-75.435465012,41.606360362],[-75.436014149,41.607209458],[-75.436342365,41.608388163],[-75.436800225,41.609043955],[-75.436838364,41.60980493],[-75.436700876,41.610607098],[-75.436695154,41.610799041],[-75.436808414,41.611152259],[-75.436841621,41.61136662],[-75.436684768,41.611653198],[-75.436337082,41.611892832],[-75.435925548,41.61208505],[-75.435780917,41.612053083],[-75.435233068,41.612116769],[-75.434928057,41.612299362],[-75.434740241,41.612753743],[-75.434610324,41.613290165],[-75.434274706,41.613971489],[-75.433961845,41.614468059],[-75.433847522,41.615153051],[-75.434099419,41.616079838],[-75.434374003,41.616808387],[-75.434099094,41.617318325],[-75.433229672,41.617884566],[-75.432474357,41.61840983],[-75.431848549,41.619119253],[-75.431680755,41.619664827],[-75.431566201,41.620318267],[-75.431169553,41.621026831],[-75.430719376,41.621641019],[-75.430371029,41.622043799],[-75.430208376,41.622304956],[-75.430310992,41.62256832],[-75.430170011,41.622913095],[-75.429780859,41.623905337],[-75.429689437,41.624486645],[-75.429727729,41.625112507],[-75.429308015,41.626253489],[-75.429194653,41.626647706],[-75.428758684,41.627030161],[-75.428079617,41.627703727],[-75.42747685,41.628399529],[-75.427211834,41.628890717],[-75.427084224,41.629324718],[-75.427086582,41.629682182],[-75.426930281,41.630064072],[-75.426582766,41.630351341],[-75.426362147,41.630614303],[-75.426187941,41.630629901],[-75.425981727,41.63094962],[-75.425386304,41.631915598],[-75.425256954,41.632555596],[-75.425340805,41.633041677],[-75.425813918,41.633954149],[-75.426347955,41.634488098],[-75.426660519,41.634946307],[-75.427034526,41.635845638],[-75.42759918,41.636694731],[-75.428087268,41.63753508],[-75.428331534,41.638272767],[-75.428217175,41.638795605],[-75.427942239,41.639548732],[-75.427423444,41.640590992],[-75.426752274,41.64157528],[-75.426393646,41.642387249],[-75.426233433,41.643414666],[-75.426141754,41.644306716],[-75.4258673,41.644969766],[-75.42544745,41.6459486],[-75.425142318,41.646512687],[-75.424707642,41.646951135],[-75.424005457,41.647800404],[-75.422708568,41.649129236],[-75.421365765,41.650732945],[-75.421358174,41.65135447],[-75.421533798,41.652042874],[-75.421831202,41.653217222],[-75.421991539,41.653748055],[-75.421983623,41.654261504],[-75.421769991,41.655284596],[-75.421388763,41.656853234],[-75.42132764,41.657898307],[-75.421197925,41.659533578],[-75.420542019,41.660139458],[-75.419816858,41.660660024],[-75.419504413,41.661098004],[-75.419267696,41.661697853],[-75.419275339,41.662296801],[-75.419611078,41.66370971],[-75.419626271,41.664488769],[-75.420000231,41.665658343],[-75.420228904,41.666247468],[-75.420961529,41.666402413],[-75.423219933,41.666592274],[-75.423898809,41.666792436],[-75.426546345,41.667696865],[-75.42859833,41.667941434],[-75.429658801,41.66794198],[-75.430978864,41.668364877],[-75.432199658,41.668535933],[-75.43337441,41.668783707],[-75.436502371,41.670699414],[-75.437433334,41.671357891],[-75.437654689,41.671892971],[-75.437181418,41.672854036],[-75.436525546,41.673685186],[-75.435457241,41.674819647],[-75.434755323,41.67567799],[-75.434335619,41.676575774],[-75.434366274,41.677728573],[-75.43480882,41.678213283],[-75.435602263,41.678845283],[-75.436273559,41.679342642],[-75.436738991,41.679876789],[-75.436937273,41.680551574],[-75.437502147,41.681576237],[-75.437750498,41.682364431],[-75.437766657,41.682381211],[-75.437991918,41.682785488],[-75.438090205,41.683214084],[-75.438188159,41.683595006],[-75.438412304,41.683832473],[-75.438700683,41.684165011],[-75.43870295,41.684498642],[-75.438385857,41.68461901],[-75.438067948,41.684620221],[-75.437685817,41.684526349],[-75.437579586,41.684482637],[-75.437326497,41.684468197],[-75.435907599,41.684644722],[-75.433765824,41.684810328],[-75.433660552,41.684962128],[-75.433931412,41.685426815],[-75.434419816,41.685744725],[-75.434938606,41.686170593],[-75.436098179,41.687066919],[-75.437044286,41.687765888],[-75.43752501,41.688498126],[-75.438158262,41.689072177],[-75.438737843,41.68931766],[-75.439332904,41.689630637],[-75.440286831,41.690252982],[-75.441011373,41.691047335],[-75.441431214,41.692036515],[-75.441354863,41.693504962],[-75.44147678,41.694198041],[-75.442232252,41.694181623],[-75.44281209,41.694400067],[-75.443658815,41.694491376],[-75.444375927,41.694412045],[-75.445314578,41.694435433],[-75.446046788,41.694693799],[-75.446855583,41.69527162],[-75.447023363,41.695802384],[-75.446702846,41.696699847],[-75.44629095,41.698178607],[-75.446748651,41.699248675],[-75.447794024,41.699055455],[-75.449426731,41.698531174],[-75.450838253,41.698228416],[-75.45254719,41.697924458],[-75.453912682,41.697702912],[-75.454622375,41.697578502],[-75.455248123,41.697801204],[-75.456255158,41.698778984],[-75.45750616,41.700048514],[-75.458673553,41.701120212],[-75.459497612,41.702022142],[-75.459611908,41.702566609],[-75.459909709,41.703245449],[-75.460405314,41.70369382],[-75.46112267,41.703952152],[-75.461725446,41.704206441],[-75.46270175,41.704643855],[-75.463312419,41.705105258],[-75.463403904,41.705658834],[-75.463297061,41.706366316],[-75.463922754,41.706931237],[-75.463930348,41.707777875],[-75.463655684,41.708445518],[-75.463396095,41.709122087],[-75.463121617,41.709659116],[-75.462709649,41.710196705],[-75.46227482,41.711058625],[-75.462068629,41.711743993],[-75.461732821,41.712691087],[-75.461267717,41.713368494],[-75.460596158,41.71385757],[-75.459444095,41.714393594],[-75.458536168,41.715297928],[-75.458604836,41.715815562],[-75.45873474,41.716913905],[-75.458734645,41.71811636],[-75.458894941,41.718944364],[-75.458955933,41.719543091],[-75.458734532,41.721268838],[-75.458605011,41.722287146],[-75.458070638,41.723487217],[-75.458291937,41.724121334],[-75.458589596,41.724556997],[-75.459146693,41.725230294],[-75.459627385,41.725935428],[-75.46010782,41.726604531],[-75.460771755,41.727079245],[-75.46177878,41.727403962],[-75.46238927,41.727811326],[-75.462930775,41.728448657],[-75.463274046,41.729055251],[-75.46392268,41.729800211],[-75.464754207,41.731364087],[-75.465593291,41.732563124],[-75.465433037,41.733162736],[-75.464967771,41.733727568],[-75.464273702,41.73429782],[-75.46274772,41.735402836],[-75.461343935,41.736471311],[-75.460039111,41.737512354],[-75.458879445,41.738467235],[-75.458017375,41.739366876],[-75.45770476,41.739958081],[-75.45735362,41.740468388],[-75.456766072,41.741506524],[-75.456438043,41.742151832],[-75.456293012,41.742634292],[-75.456361799,41.744759683],[-75.456445669,41.745669051],[-75.457117053,41.746323896],[-75.457826631,41.746429153],[-75.458444709,41.746665385],[-75.458536313,41.747178412],[-75.45841416,41.747759861],[-75.458307397,41.748706016],[-75.458452233,41.749254868],[-75.458910101,41.750108709],[-75.459260962,41.750872906],[-75.459589217,41.751889385],[-75.45987897,41.753198748],[-75.460352104,41.754710041],[-75.460962485,41.755855991],[-75.461435328,41.75648007],[-75.461862663,41.757099845],[-75.462022883,41.757792735],[-75.46218307,41.758742339],[-75.462343325,41.759700935],[-75.462320353,41.760376553],[-75.46238163,41.760952753],[-75.462976427,41.761432241],[-75.463655581,41.761933894],[-75.464059975,41.762441153],[-75.464639813,41.763398053],[-75.465059467,41.764297059],[-75.465227092,41.76517456],[-75.46457874,41.765771646],[-75.463945506,41.766066935],[-75.462961111,41.766363631],[-75.461954019,41.766484777],[-75.46131337,41.766901682],[-75.460985211,41.767488447],[-75.460771535,41.768835856],[-75.460748884,41.769506962],[-75.461260093,41.771117164],[-75.462251646,41.773063201],[-75.462343188,41.773873452],[-75.462457586,41.774985357],[-75.462350919,41.776206233],[-75.462061184,41.776702783],[-75.461611001,41.777425159],[-75.461259751,41.77789042],[-75.46083286,41.778612695],[-75.460702827,41.779252711],[-75.460519956,41.779919961],[-75.460428221,41.780501279],[-75.460336773,41.781123129],[-75.46020707,41.781916262],[-75.460298547,41.782771557],[-75.460107764,41.783384806],[-75.459902034,41.783908024],[-75.459639389,41.784350941],[-75.459414743,41.784937762],[-75.459163598,41.785439207],[-75.458627078,41.786108621],[-75.458283708,41.786742312],[-75.458147229,41.787328678],[-75.458086001,41.787815298],[-75.457704524,41.789118326],[-75.457575032,41.789789863],[-75.457376438,41.790317559],[-75.456811816,41.790887248],[-75.456331356,41.791231422],[-75.45573631,41.791598572],[-75.454935223,41.791921485],[-75.454340236,41.792405713],[-75.454225799,41.793135731],[-75.454164554,41.793784473],[-75.454294375,41.794644124],[-75.454546244,41.795210567],[-75.454591687,41.795840875],[-75.454393331,41.796620763],[-75.454202742,41.79727452],[-75.453523603,41.798740834],[-75.452722777,41.799595149],[-75.452707191,41.800266221],[-75.452249641,41.801317333],[-75.451753847,41.802440657],[-75.451219825,41.80299669],[-75.4501973,41.803523098],[-75.44973185,41.804258996],[-75.449129311,41.804491022],[-75.447923913,41.804856007],[-75.447237122,41.805250484],[-75.446527642,41.8058477],[-75.445825807,41.807007821],[-75.445390681,41.807680525],[-75.4448644,41.808227483],[-75.444040274,41.808356769],[-75.443124927,41.807860421],[-75.442674541,41.807249684],[-75.442163598,41.806418519],[-75.441614354,41.8058712],[-75.441110874,41.805467821],[-75.440454649,41.805227149],[-75.43727304,41.805311361],[-75.435556671,41.805727697],[-75.433305855,41.806555841],[-75.428773952,41.808212109],[-75.428018813,41.808368045],[-75.427576023,41.807973396],[-75.42698092,41.807074908],[-75.426431606,41.806441959],[-75.42460829,41.805489471],[-75.422670329,41.80477157],[-75.421899734,41.80514818],[-75.420900354,41.805746304],[-75.418642302,41.806821881],[-75.418146368,41.807152449],[-75.417658052,41.808018892],[-75.41667371,41.808513335],[-75.416711845,41.809463431],[-75.41691804,41.810511989],[-75.417352573,41.812019076],[-75.417413655,41.813140219],[-75.41758182,41.814296998],[-75.417998021,41.814859139],[-75.418229286,41.814985181],[-75.418421028,41.815079806],[-75.418708033,41.815126425],[-75.418994885,41.815149207],[-75.41931359,41.815171877],[-75.41979203,41.815265451],[-75.420143531,41.815430981],[-75.420366982,41.815501653],[-75.420441675,41.815556994],[-75.420499034,41.815599477],[-75.420527037,41.815620229],[-75.420528127,41.815787044],[-75.420497524,41.815977799],[-75.420467533,41.816263877],[-75.420373841,41.81655019],[-75.420217054,41.816932062],[-75.420214978,41.816938824],[-75.420092277,41.817337638],[-75.419936269,41.817743474],[-75.419481422,41.818901623],[-75.419229482,41.820312138],[-75.418634404,41.821381628],[-75.418407695,41.821706348],[-75.418116513,41.822134856],[-75.418071895,41.822187314],[-75.417768391,41.822493581],[-75.417547086,41.822756527],[-75.417422121,41.823138278],[-75.417329024,41.823519904],[-75.417267317,41.823829934],[-75.417275166,41.82416389],[-75.417200152,41.824881522],[-75.416917783,41.825382433],[-75.415994702,41.826079312],[-75.416177778,41.827677376],[-75.416147699,41.828052056],[-75.416128837,41.828102359],[-75.416022412,41.828386146],[-75.415896669,41.828648734],[-75.415803236,41.828982705],[-75.415710891,41.829483486],[-75.415650096,41.829936491],[-75.415589761,41.830460987],[-75.415592689,41.830913761],[-75.415595308,41.831318885],[-75.415661041,41.83162844],[-75.415723454,41.832030784],[-75.415727545,41.832057157],[-75.415761266,41.832343006],[-75.416018173,41.832651874],[-75.416401463,41.832793472],[-75.416880497,41.832958552],[-75.417263944,41.833123975],[-75.41803008,41.833335659],[-75.41866782,41.833404835],[-75.419146396,41.833498409],[-75.419592337,41.833472954],[-75.420324898,41.833422611],[-75.420643692,41.833445281],[-75.421314089,41.833633468],[-75.421697082,41.833727386],[-75.421156175,41.833848525],[-75.42061511,41.833945822],[-75.420265069,41.834018603],[-75.419692909,41.834235175],[-75.419120602,41.834427909],[-75.418613407,41.83483488],[-75.41825312,41.8351816],[-75.416795946,41.836533428],[-75.416131995,41.837459042],[-75.414545233,41.837933137],[-75.413461779,41.838189236],[-75.412599656,41.838449034],[-75.411859659,41.838739926],[-75.411218631,41.839025933],[-75.409898902,41.839656627],[-75.408777224,41.840953108],[-75.407716871,41.841006413],[-75.406633569,41.842428851],[-75.406442645,41.844496598],[-75.406206233,41.845920521],[-75.406114794,41.846938622],[-75.405954586,41.847974982],[-75.406251872,41.848671963],[-75.406846943,41.850025395],[-75.40698453,41.850587843],[-75.406747773,41.851129087],[-75.406312996,41.851490909],[-75.405816962,41.85187096],[-75.405664541,41.852533495],[-75.405870325,41.853046153],[-75.406656383,41.853520735],[-75.407152089,41.854036883],[-75.407358332,41.854680142],[-75.406625939,41.856083299],[-75.406168247,41.856697386],[-75.405519603,41.857181545],[-75.405092486,41.857750484],[-75.40491673,41.858417614],[-75.404764233,41.85895406],[-75.403917558,41.859565003],[-75.403131446,41.859928042],[-75.402315128,41.860043496],[-75.401460757,41.859731237],[-75.400735994,41.859432048],[-75.399988401,41.859213985],[-75.39950768,41.858864384],[-75.399019433,41.858451765],[-75.398469994,41.858129423],[-75.397974242,41.85759973],[-75.397798779,41.856987876],[-75.397157603,41.85674241],[-75.396265117,41.85658787],[-75.395525024,41.856540884],[-75.394861149,41.856826884],[-75.393877075,41.857023913],[-75.393030066,41.857224965],[-75.39239699,41.857317206],[-75.391687489,41.85734665],[-75.391016122,41.857520057],[-75.390383001,41.857792418],[-75.389543469,41.857862821],[-75.388887322,41.857878555],[-75.388765304,41.858680571],[-75.388529022,41.859266823],[-75.388383857,41.859915817],[-75.387948971,41.860349619],[-75.387285429,41.860766164],[-75.386560645,41.86114239],[-75.385873997,41.861599556],[-75.385049885,41.862494],[-75.384485311,41.863283986],[-75.383783415,41.863588061],[-75.382928741,41.863978211],[-75.382922699,41.86399067],[-75.382707798,41.864433801],[-75.382860429,41.865212377],[-75.383127443,41.86591403],[-75.383348437,41.866791452],[-75.383340941,41.86748951],[-75.382944347,41.868423034],[-75.382753593,41.868955082],[-75.383020518,41.87001701],[-75.3835622,41.870803294],[-75.383928366,41.871455064],[-75.383890178,41.872121708],[-75.383714684,41.872685214],[-75.383562051,41.873298191],[-75.383577345,41.875099508],[-75.383554648,41.875712048],[-75.384027438,41.876115777],[-75.385377918,41.876111252],[-75.386476473,41.876049016],[-75.387277821,41.876163407],[-75.387743248,41.876589662],[-75.388322793,41.877015528],[-75.389139141,41.877427079],[-75.389711374,41.877762895],[-75.390581066,41.878025642],[-75.391298224,41.878225854],[-75.391786472,41.878557444],[-75.391481481,41.879062866],[-75.391481542,41.879688841],[-75.391626533,41.880305315],[-75.391862841,41.880948505],[-75.391893308,41.881493307],[-75.391222109,41.882725028],[-75.390718349,41.883312193],[-75.390100624,41.884237487],[-75.389825734,41.884805858],[-75.389596986,41.885779364],[-75.389818153,41.88684142],[-75.390253169,41.887393862],[-75.390962526,41.888026429],[-75.391885871,41.888352032],[-75.39306059,41.888699282],[-75.393938069,41.889344767],[-75.394670601,41.890121341],[-75.395303871,41.891046866],[-75.39558594,41.89195108],[-75.395288577,41.892843778],[-75.395135981,41.893389222],[-75.395532677,41.894554233],[-75.395769153,41.895147867],[-75.395479168,41.895954981],[-75.39490698,41.896209135],[-75.393816153,41.896356996],[-75.393160126,41.896453811],[-75.392526601,41.896721678],[-75.392488557,41.897460366],[-75.392389347,41.898424434],[-75.39213754,41.899569159],[-75.39166454,41.900710133],[-75.391374494,41.901706372],[-75.391084839,41.902828707],[-75.39077188,41.903406208],[-75.389749555,41.903688902],[-75.388055784,41.903780194],[-75.387033529,41.90376563],[-75.385294187,41.903609358],[-75.384210618,41.903549939],[-75.383508904,41.903899053],[-75.381959884,41.904885952],[-75.381326684,41.90523032],[-75.380739395,41.905628568],[-75.38031965,41.906260427],[-75.38020537,41.907066907],[-75.380220392,41.907629791],[-75.380594264,41.908533733],[-75.380861444,41.909870356],[-75.380853777,41.910608939],[-75.380861235,41.911356476],[-75.380952717,41.911851548],[-75.381723631,41.912222767],[-75.382745684,41.912431026],[-75.383409441,41.91258643],[-75.384195582,41.91279096],[-75.384943023,41.912950577],[-75.385644856,41.913168888],[-75.385759575,41.913826005],[-75.385461733,41.915740946],[-75.385232873,41.917475513],[-75.385415921,41.91915016],[-75.38669793,41.919452079],[-75.387384661,41.919467778],[-75.38814724,41.919375139],[-75.389001828,41.919043495],[-75.389749431,41.918905859],[-75.390398016,41.918723526],[-75.39102376,41.918442181],[-75.39174105,41.918156023],[-75.392686834,41.917706956],[-75.393281951,41.917903068],[-75.393770451,41.918410278],[-75.394189938,41.919214944],[-75.394563715,41.919754066],[-75.395036881,41.920337881],[-75.395479418,41.920840743],[-75.395921715,41.9214877],[-75.396554942,41.922354673],[-75.39706605,41.922668138],[-75.398698854,41.922937188],[-75.40048433,41.923390324],[-75.401331014,41.923423396],[-75.402353417,41.922870398],[-75.403215497,41.921759541],[-75.40347495,41.921186708],[-75.403764932,41.920555209],[-75.404352249,41.920044259],[-75.406473174,41.918609196],[-75.40736587,41.918124171],[-75.408143963,41.91722073],[-75.408136492,41.916698364],[-75.40771666,41.91485797],[-75.407503237,41.914007586],[-75.408067687,41.913411135],[-75.408701118,41.912877482],[-75.409486789,41.912640513],[-75.410333541,41.912295226],[-75.410997311,41.911914567],[-75.411523838,41.911520885],[-75.412164841,41.911059242],[-75.413286808,41.910323244],[-75.413431163,41.911446484],[-75.413743883,41.911967751],[-75.414186414,41.912398483],[-75.414697849,41.912878505],[-75.41525455,41.913538484],[-75.41591062,41.914180095],[-75.417131427,41.914972766],[-75.417711169,41.915461528],[-75.418260519,41.916026957],[-75.418489394,41.91650799],[-75.418413117,41.91706218],[-75.418169164,41.917734078],[-75.417787795,41.918658655],[-75.417421441,41.919403046],[-75.41743651,41.920037968],[-75.41739844,41.920673084],[-75.418092971,41.921129903],[-75.418855756,41.921302754],[-75.420381803,41.921490824],[-75.42126677,41.92150109],[-75.423906425,41.921509389],[-75.424127699,41.92197242],[-75.424066476,41.922459019],[-75.423975246,41.923139366],[-75.423860544,41.924085493],[-75.423860615,41.925292411],[-75.423738618,41.925936837],[-75.423379871,41.926402011],[-75.423082422,41.926961523],[-75.423036521,41.927943424],[-75.42338011,41.928433026],[-75.423631571,41.928954491],[-75.423921821,41.929471308],[-75.424852574,41.930287482],[-75.425470423,41.930411294],[-75.427148826,41.930351016],[-75.427156593,41.931400273],[-75.427949975,41.933252709],[-75.427835471,41.934225865],[-75.4272709,41.934916983],[-75.4266988,41.935216334],[-75.425783223,41.935561997],[-75.424585477,41.936106828],[-75.424944017,41.936853073],[-75.426950533,41.939781814],[-75.427362511,41.940226117],[-75.427865986,41.940764644],[-75.428339175,41.941114144],[-75.429315546,41.941840043],[-75.429788539,41.942270596],[-75.431863922,41.944397403],[-75.431993583,41.94489679],[-75.431917112,41.945464501],[-75.431535903,41.947132184],[-75.432298684,41.947422027],[-75.433473556,41.948156149],[-75.434198537,41.949148652],[-75.434846821,41.949727132],[-75.435938147,41.950362475],[-75.437112946,41.951402785],[-75.437967403,41.951687743],[-75.438936153,41.951539937],[-75.439981445,41.951117123],[-75.440874326,41.951888275],[-75.441049795,41.952346945],[-75.44127859,41.952936004],[-75.441568488,41.953966163],[-75.441507326,41.954939118],[-75.441286292,41.955637988],[-75.440752139,41.956428128],[-75.440065457,41.956863084],[-75.439485534,41.957140011],[-75.439867036,41.958003185],[-75.440637705,41.958864881],[-75.441057168,41.959322617],[-75.441957378,41.959990154],[-75.442384685,41.960380297],[-75.442362091,41.960929791],[-75.442430615,41.961677092],[-75.443033149,41.961935959],[-75.443979192,41.962026862],[-75.44491013,41.961843132],[-75.446474072,41.961044471],[-75.447359139,41.960451088],[-75.448221407,41.960051429],[-75.448908039,41.959828081],[-75.449777817,41.959964281],[-75.450700963,41.960284902],[-75.451234789,41.960584531],[-75.451723219,41.961023939],[-75.451685054,41.961546477],[-75.451532455,41.962366688],[-75.451364758,41.962916759],[-75.451555331,41.963415877],[-75.451784406,41.964081472],[-75.451524902,41.964555343],[-75.451067025,41.964975955],[-75.450586354,41.965320103],[-75.450296402,41.965758059],[-75.450266143,41.966334605],[-75.450922074,41.966881441],[-75.451822398,41.967215652],[-75.452730321,41.96760837],[-75.453470138,41.967749556],[-75.454179755,41.968098013],[-75.455202268,41.969008142],[-75.456270295,41.970003645],[-75.45693391,41.970717036],[-75.457475896,41.971349849],[-75.45809374,41.972198517],[-75.458452513,41.973367953],[-75.460108036,41.972699339],[-75.460718167,41.972471726],[-75.462160165,41.972533484],[-75.463792702,41.972864645],[-75.464876299,41.973639342],[-75.466028173,41.974877593],[-75.466379346,41.97544809],[-75.466722789,41.976198753],[-75.466897913,41.976833011],[-75.467325283,41.977452736],[-75.468347479,41.977759297],[-75.469057284,41.978260772],[-75.469759032,41.97956387],[-75.470323572,41.979800235],[-75.471879989,41.980059545],[-75.472986417,41.979964924],[-75.474008666,41.979861635],[-75.475076666,41.980230998],[-75.475778575,41.980421735],[-75.47663329,41.980616334],[-75.478311616,41.980929091],[-75.479387371,41.981068712],[-75.479379806,41.982072987],[-75.479082365,41.984312387],[-75.47937967,41.984820018],[-75.480089266,41.985321425],[-75.480074109,41.98591593],[-75.479692602,41.986705606],[-75.479188913,41.987351693],[-75.478441318,41.988579708],[-75.478227622,41.989161528],[-75.478311658,41.990359067],[-75.478494802,41.991439099],[-75.478540613,41.992618777],[-75.478685423,41.993163076],[-75.479074748,41.993710857],[-75.480012881,41.994337395],[-75.480600596,41.995123025],[-75.481127023,41.99588639],[-75.481371096,41.996781524],[-75.481333002,41.9974842],[-75.481416606,41.998114308],[-75.481889929,41.998634714],[-75.482599508,41.999262198],[-75.482379866,41.999523084],[-75.482350803,41.99990449],[-75.482356382,42.000643199],[-75.482456721,42.001238534],[-75.482748931,42.001856889],[-75.483137349,42.002522499],[-75.483428311,42.002974052],[-75.48388046,42.003615549],[-75.484458948,42.00406588],[-75.484939645,42.004254488],[-75.485387833,42.004371751],[-75.485963632,42.00446463],[-75.486539985,42.004629],[-75.487117242,42.004912513],[-75.487439107,42.005220941],[-75.487986429,42.005766709],[-75.488405412,42.006241525],[-75.48859967,42.006574321],[-75.488633437,42.006812476],[-75.488380393,42.007147175],[-75.488159108,42.007457909],[-75.487620322,42.008032122],[-75.487207504,42.008367497],[-75.486763645,42.00882215],[-75.486160023,42.009277479],[-75.485779872,42.009708024],[-75.485560014,42.010209387],[-75.485501004,42.010853051],[-75.485410585,42.011568332],[-75.485540754,42.011877576],[-75.485925818,42.012090411],[-75.486534371,42.012278478],[-75.487142745,42.012442708],[-75.488071744,42.012748548],[-75.488681222,42.013055751],[-75.489580297,42.013623839],[-75.490415126,42.014144534],[-75.490960892,42.014475815],[-75.491378864,42.014807654],[-75.491698768,42.014853947],[-75.491920795,42.014638525],[-75.492236841,42.014184399],[-75.492488617,42.013682894],[-75.492804836,42.013252593],[-75.493216725,42.012798054],[-75.493598307,42.012558106],[-75.494330839,42.012245166],[-75.495161239,42.012193927],[-75.496183174,42.012118026],[-75.497493043,42.012088522],[-75.498420411,42.012179821],[-75.499091977,42.012248383],[-75.499891358,42.012316408],[-75.500562356,42.012313484],[-75.500945601,42.012287977],[-75.50142415,42.012190567],[-75.501806646,42.012069744],[-75.502189701,42.012020409],[-75.50263685,42.011994626],[-75.502988333,42.011993085],[-75.503307479,42.011944025],[-75.503626062,42.011823478],[-75.504293676,42.011391612],[-75.504834601,42.011103264],[-75.505535469,42.010838047],[-75.506076949,42.010621198],[-75.506490816,42.010428735],[-75.507002237,42.010450304],[-75.507385845,42.010472436],[-75.507608751,42.010376135],[-75.507480194,42.010281381],[-75.507319101,42.010115283],[-75.507317019,42.009853159],[-75.507313989,42.009471897],[-75.507308309,42.008757018],[-75.507303954,42.008208944],[-75.507269169,42.007851649],[-75.507266519,42.007518038],[-75.507358958,42.007088685],[-75.507482963,42.006611541],[-75.507608303,42.006301198],[-75.507926661,42.006156807],[-75.508372628,42.005988022],[-75.508850737,42.005842925],[-75.509552292,42.005673004],[-75.510222086,42.005527045],[-75.510796785,42.005476828],[-75.511084331,42.005475547],[-75.511179222,42.005355976],[-75.511401531,42.005188174],[-75.511655984,42.005044074],[-75.512038034,42.004875549],[-75.512419891,42.004683199],[-75.512738419,42.004562628],[-75.512993063,42.004442341],[-75.513376253,42.004416802],[-75.513791388,42.004391111],[-75.513984046,42.004509398],[-75.51411356,42.004723289],[-75.514243276,42.004961007],[-75.514500785,42.00519816],[-75.514790441,42.005458986],[-75.515048349,42.00574379],[-75.515337805,42.005980789],[-75.515753734,42.006050419],[-75.515945617,42.006073383],[-75.51626512,42.006071945],[-75.516488768,42.006070939],[-75.516775544,42.005974325],[-75.517222054,42.005877],[-75.517509022,42.005804219],[-75.517765204,42.005874553],[-75.51799058,42.006088007],[-75.518152271,42.006325576],[-75.518409022,42.006467393],[-75.518600533,42.006442701],[-75.518982961,42.006321824],[-75.519332656,42.006105771],[-75.519587289,42.005985468],[-75.51990678,42.005984022],[-75.520196463,42.006244841],[-75.520358152,42.006482409],[-75.520488662,42.006815438],[-75.520587628,42.007196263],[-75.520653666,42.007458097],[-75.52059268,42.007815822],[-75.520469732,42.008412135],[-75.520313475,42.008841788],[-75.520220342,42.009175831],[-75.520255978,42.009628441],[-75.520290838,42.00998573],[-75.520293362,42.010295507],[-75.520200034,42.010605725],[-75.520170222,42.010867983],[-75.520268989,42.011224993],[-75.520399326,42.011534188],[-75.520529652,42.011843393],[-75.520723703,42.012128471],[-75.521013612,42.012413117],[-75.521366652,42.012602151],[-75.521817097,42.012981385],[-75.522297958,42.013169837],[-75.522779007,42.013382118],[-75.523066586,42.013380809],[-75.523481973,42.013378915],[-75.52392873,42.013305389],[-75.524662872,42.013206712],[-75.525365835,42.013203496],[-75.52574927,42.013201742],[-75.526356573,42.013222794],[-75.526900375,42.013291787],[-75.527252257,42.013337832],[-75.527637258,42.013526708],[-75.527926611,42.013739842],[-75.528279483,42.013905028],[-75.528663712,42.013998582],[-75.529207509,42.014067564],[-75.529750717,42.014065057],[-75.530038894,42.014135215],[-75.530326083,42.014086228],[-75.530774621,42.014227139],[-75.531095342,42.014368631],[-75.531352753,42.014581911],[-75.531802078,42.014818129],[-75.532090272,42.014888289],[-75.532473717,42.014886511],[-75.532984782,42.014860305],[-75.533240408,42.014859118],[-75.533849126,42.015046934],[-75.534362585,42.015306671],[-75.534812339,42.015590536],[-75.535295442,42.016041054],[-75.535554684,42.016468779],[-75.535621784,42.016849757],[-75.535592633,42.017183513],[-75.535658945,42.017469155],[-75.535693095,42.017731129],[-75.535663745,42.01804106],[-75.53582652,42.018397748],[-75.535956949,42.018706934],[-75.536214393,42.018920203],[-75.536502597,42.018990343],[-75.537078798,42.019106797],[-75.53765421,42.01912793],[-75.538229825,42.019172893],[-75.538963999,42.019074135],[-75.539539207,42.019071433],[-75.540307763,42.019258453],[-75.541270893,42.019778174],[-75.542169515,42.020226711],[-75.543195359,42.020603134],[-75.543964349,42.02083779],[-75.544349863,42.021074261],[-75.544736193,42.021406058],[-75.544834715,42.021715376],[-75.544612844,42.021930901],[-75.544359619,42.022218069],[-75.544012359,42.022720139],[-75.543759737,42.023078782],[-75.543444422,42.023580707],[-75.542938158,42.024178846],[-75.54268695,42.024704299],[-75.542371013,42.025134728],[-75.542246009,42.025468938],[-75.542217698,42.025898016],[-75.542220534,42.026231622],[-75.542286873,42.026517267],[-75.54232126,42.026803073],[-75.542451745,42.027112233],[-75.5427412,42.027325336],[-75.543126354,42.027514151],[-75.543735615,42.027749573],[-75.544248608,42.027937777],[-75.544699307,42.028316921],[-75.545182171,42.028719737],[-75.545536789,42.029075498],[-75.545794737,42.029336405],[-75.545860687,42.029574389],[-75.545704144,42.029956415],[-75.545676061,42.030409316],[-75.545743043,42.030766445],[-75.545905093,42.031027806],[-75.546290062,42.031192784],[-75.546769897,42.031238162],[-75.547153838,42.031283993],[-75.547666266,42.031400699],[-75.548114144,42.031446222],[-75.548816486,42.031347551],[-75.549359429,42.031297284],[-75.54974297,42.031295448],[-75.549967937,42.031437354],[-75.550098036,42.031698854],[-75.550229396,42.032103331],[-75.550488173,42.032459545],[-75.550746556,42.032768091],[-75.550972354,42.033005314],[-75.551229698,42.033194714],[-75.551519016,42.033383961],[-75.551682126,42.033764459],[-75.551716753,42.034074084],[-75.551655719,42.03440799],[-75.551626647,42.03474175],[-75.551661285,42.035051378],[-75.551983819,42.035383446],[-75.552241382,42.035596678],[-75.552818381,42.035784537],[-75.553107097,42.035902286],[-75.553460981,42.036162719],[-75.553813628,42.036280168],[-75.554229987,42.036373479],[-75.554487367,42.036562873],[-75.554681624,42.036847893],[-75.554877575,42.03732354],[-75.554977626,42.03779966],[-75.555142207,42.038346954],[-75.555209875,42.038775561],[-75.555115847,42.038990487],[-75.554959129,42.03934869],[-75.554929645,42.03963479],[-75.554803849,42.039873705],[-75.554741792,42.040088468],[-75.55490411,42.040373641],[-75.55522564,42.040586558],[-75.555740638,42.040989171],[-75.556031238,42.041321383],[-75.556321853,42.041653586],[-75.556613524,42.042104947],[-75.556873626,42.042604114],[-75.557102178,42.043151096],[-75.557426434,42.043673777],[-75.557717069,42.044005986],[-75.5580706,42.044218737],[-75.558488075,42.044431176],[-75.558809009,42.044572589],[-75.559258661,42.044808697],[-75.559805684,42.045211144],[-75.560385722,42.045732569],[-75.560999018,42.046396811],[-75.561612522,42.047084875],[-75.562064293,42.047559255],[-75.562451937,42.048010126],[-75.562774581,42.048342163],[-75.562938009,42.048746476],[-75.563004477,42.049032107],[-75.562975237,42.049342034],[-75.562819389,42.049795573],[-75.562502612,42.050130738],[-75.562312882,42.050369965],[-75.562602519,42.050583017],[-75.562923075,42.050676765],[-75.563691455,42.050792152],[-75.564075326,42.050814084],[-75.564428282,42.050955331],[-75.564813621,42.051144071],[-75.565262073,42.051237185],[-75.565677924,42.051258963],[-75.56612659,42.051375898],[-75.566288142,42.051565737],[-75.566291741,42.051970844],[-75.566294916,42.052328263],[-75.566106885,42.052758132],[-75.565949139,42.052997208],[-75.565567792,42.053261217],[-75.565092215,42.053716327],[-75.56477692,42.054218308],[-75.564525135,42.054672313],[-75.564243065,42.055317103],[-75.564024306,42.055890092],[-75.563772943,42.056391756],[-75.563617497,42.056892946],[-75.563684808,42.057273894],[-75.564007096,42.057558278],[-75.564520389,42.057746373],[-75.565162634,42.058053013],[-75.56554824,42.058265583],[-75.565807011,42.058597926],[-75.565906533,42.059002541],[-75.566009015,42.059740767],[-75.566076358,42.060121706],[-75.566304426,42.060597174],[-75.566660187,42.061048184],[-75.567047736,42.06147521],[-75.56762671,42.061853618],[-75.568011923,42.062018522],[-75.56852505,42.06218279],[-75.568877442,42.062252539],[-75.569230037,42.062346103],[-75.569741678,42.062343565],[-75.570157403,42.062341501],[-75.570637476,42.062386776],[-75.570958956,42.06257582],[-75.571281079,42.06283634],[-75.571602359,42.06300155],[-75.572179236,42.063141657],[-75.572213787,42.063427441],[-75.572120841,42.063761524],[-75.571837536,42.064263364],[-75.57168064,42.064597754],[-75.57146085,42.065051614],[-75.571178164,42.065624944],[-75.570896969,42.066365067],[-75.570391908,42.067106301],[-75.570075736,42.067512976],[-75.569631637,42.067920286],[-75.569123345,42.068304086],[-75.568552819,42.068878818],[-75.568206339,42.069476291],[-75.567859853,42.070073739],[-75.567672854,42.070622759],[-75.567517406,42.071123954],[-75.567393083,42.071529674],[-75.567172814,42.071935869],[-75.567047852,42.072270094],[-75.566986865,42.07260402],[-75.567084719,42.072818009],[-75.567119667,42.073151452],[-75.566864444,42.073224201],[-75.56648044,42.07320227],[-75.566033101,42.073252129],[-75.565714343,42.073372849],[-75.565364839,42.073636702],[-75.565175474,42.073923593],[-75.564795689,42.074378227],[-75.564542782,42.074713088],[-75.564417166,42.074975836],[-75.564419699,42.07526178],[-75.564294096,42.07552452],[-75.564201721,42.075930088],[-75.564270125,42.076430177],[-75.564401033,42.076763141],[-75.564404834,42.077192062],[-75.564406946,42.077430347],[-75.56447344,42.077715976],[-75.564699873,42.078000819],[-75.564733965,42.078238955],[-75.564608978,42.078573188],[-75.56435542,42.078836557],[-75.564039152,42.079243217],[-75.563754651,42.079625892],[-75.563469093,42.079889424],[-75.563408281,42.080247166],[-75.563538339,42.080484823],[-75.563763299,42.080602866],[-75.563797601,42.080864827],[-75.563610326,42.081389998],[-75.563517531,42.081747905],[-75.563201867,42.082226046],[-75.562851917,42.082442233],[-75.562436483,42.082491929],[-75.562019809,42.08239865],[-75.561346388,42.082211311],[-75.560737787,42.082118966],[-75.560514715,42.082215377],[-75.560356455,42.082406784],[-75.560038049,42.082575147],[-75.55962409,42.082791635],[-75.559338081,42.083007499],[-75.559053756,42.083413988],[-75.558834021,42.08389165],[-75.558646056,42.084345329],[-75.55832932,42.084704322],[-75.558107475,42.084943696],[-75.557853227,42.085135568],[-75.55756617,42.085232283],[-75.557086327,42.085234614],[-75.556318802,42.085262155],[-75.555551277,42.085289717],[-75.555135631,42.085315553],[-75.554528463,42.085389985],[-75.55379271,42.085393539],[-75.553280883,42.085396006],[-75.552833863,42.085493475],[-75.552418836,42.085590795],[-75.552003383,42.085640455],[-75.551204484,42.085739607],[-75.550629909,42.085885349],[-75.549960599,42.086174514],[-75.549323078,42.086439698],[-75.548718139,42.086776209],[-75.548271521,42.086921318],[-75.547792485,42.087018926],[-75.547472999,42.087068111],[-75.547251117,42.087307472],[-75.547094035,42.087641832],[-75.546808165,42.087881489],[-75.546618276,42.088120689],[-75.5466841,42.088334844],[-75.54697221,42.088357306],[-75.547324523,42.088403278],[-75.547613053,42.088473397],[-75.54806318,42.08873337],[-75.548610101,42.089088199],[-75.548995625,42.089276998],[-75.549412348,42.089370324],[-75.549988387,42.089391392],[-75.550371869,42.089341893],[-75.550755348,42.089292391],[-75.551075462,42.089314688],[-75.551525197,42.089526997],[-75.551846563,42.089692261],[-75.552072775,42.089953295],[-75.55245853,42.090165908],[-75.553131803,42.090329473],[-75.553515701,42.090327621],[-75.553997022,42.090492106],[-75.554351424,42.090776351],[-75.554514289,42.09110918],[-75.554581387,42.091466299],[-75.554551672,42.091728573],[-75.554652005,42.092228512],[-75.55488073,42.092775491],[-75.55501369,42.093346761],[-75.555017222,42.093751846],[-75.555086615,42.094371082],[-75.555089315,42.094680851],[-75.555189023,42.095109306],[-75.555353161,42.095585102],[-75.555516041,42.095917928],[-75.555806906,42.096250137],[-75.556032325,42.096415846],[-75.556321321,42.0965336],[-75.556609899,42.096603697],[-75.556929846,42.096602143],[-75.55728325,42.096767236],[-75.557604865,42.096956309],[-75.557831546,42.097264988],[-75.557962024,42.09755031],[-75.557997369,42.097931415],[-75.557872725,42.098313297],[-75.557650844,42.098552671],[-75.557334646,42.098983145],[-75.556890454,42.09941423],[-75.556509837,42.099797345],[-75.556097219,42.100180629],[-75.555588394,42.100540536],[-75.555143349,42.100876306],[-75.554795326,42.101330753],[-75.554542467,42.101689425],[-75.554448972,42.101975831],[-75.554324714,42.102405369],[-75.554168254,42.102811218],[-75.55407495,42.103121461],[-75.553820838,42.103337155],[-75.553470719,42.103553304],[-75.5532166,42.103768998],[-75.553059097,42.104055712],[-75.552965588,42.104342118],[-75.552968487,42.104675721],[-75.552970972,42.104961664],[-75.552877876,42.105295727],[-75.552785184,42.10567745],[-75.552692087,42.106011514],[-75.552630995,42.106345425],[-75.552634098,42.106702852],[-75.55279864,42.107226316],[-75.55305879,42.107701652],[-75.553221483,42.108010656],[-75.553480594,42.108366849],[-75.553772747,42.108842029],[-75.553968069,42.109222361],[-75.554132845,42.109769641],[-75.554135543,42.110079418],[-75.554202247,42.110388885],[-75.554332125,42.110602726],[-75.554461797,42.110792733],[-75.554624089,42.111054077],[-75.554628242,42.111530646],[-75.554472181,42.111984163],[-75.554284946,42.11253315],[-75.554097076,42.113010647],[-75.554099568,42.113296588],[-75.554134057,42.113582378],[-75.554136338,42.113844495],[-75.553977984,42.114035893],[-75.553564214,42.114300018],[-75.553055063,42.114636089],[-75.552514313,42.11501997],[-75.551877536,42.115404301],[-75.551367748,42.11566888],[-75.550857534,42.115885798],[-75.550314893,42.11605521],[-75.54986827,42.116224159],[-75.549516638,42.116273504],[-75.548811307,42.116133897],[-75.548105763,42.11597047],[-75.547496241,42.115806565],[-75.547015153,42.115689712],[-75.546502468,42.115620669],[-75.545957986,42.115575601],[-75.545445097,42.115482718],[-75.544963405,42.115294373],[-75.544129867,42.115131522],[-75.543456559,42.114991723],[-75.542846449,42.114756325],[-75.542459762,42.114448372],[-75.541977678,42.114212349],[-75.541624419,42.114071043],[-75.541273184,42.114168022],[-75.540826349,42.114313101],[-75.540316931,42.114625298],[-75.539936311,42.115032183],[-75.539682709,42.115319332],[-75.539332085,42.115487789],[-75.539013849,42.115703751],[-75.538791221,42.115871604],[-75.538633026,42.116086806],[-75.538441205,42.116111542],[-75.53828059,42.116040808],[-75.537927115,42.115875658],[-75.537734479,42.115805066],[-75.537350427,42.115806865],[-75.536584531,42.116072577],[-75.535754819,42.11636241],[-75.535149135,42.116651192],[-75.534544247,42.117035295],[-75.534226198,42.117275063],[-75.533652101,42.117516027],[-75.533046395,42.117804797],[-75.532472695,42.118093423],[-75.531898784,42.118358205],[-75.531420095,42.118527231],[-75.530813385,42.118696847],[-75.530432285,42.11905605],[-75.530082993,42.119391279],[-75.529607666,42.119965384],[-75.529163142,42.12039637],[-75.528780842,42.1206126],[-75.52826952,42.120710278],[-75.528014249,42.120806765],[-75.528016622,42.121092709],[-75.528051803,42.121473821],[-75.528215994,42.121973488],[-75.528250175,42.122235459],[-75.528508025,42.12244873],[-75.528701652,42.122638489],[-75.528607412,42.122853382],[-75.52851357,42.123115935],[-75.528483141,42.123306716],[-75.528549734,42.123616192],[-75.5285531,42.124021269],[-75.52849225,42.124402831],[-75.528302379,42.124665835],[-75.527952455,42.124929565],[-75.527506698,42.125217561],[-75.5272852,42.125528376],[-75.527063505,42.12581535],[-75.527161122,42.126005533],[-75.527738872,42.126193519],[-75.528508689,42.126380611],[-75.529470971,42.126614465],[-75.529951911,42.126707568],[-75.530433261,42.126848324],[-75.530946618,42.126988922],[-75.531332332,42.12717777],[-75.531879692,42.127556509],[-75.53242706,42.127935247],[-75.532845589,42.128219258],[-75.53329474,42.128336317],[-75.533774708,42.128310259],[-75.53412642,42.128260962],[-75.534637192,42.128091776],[-75.535083938,42.127922886],[-75.535531686,42.127873137],[-75.536012844,42.127990039],[-75.536302149,42.128131667],[-75.536399785,42.128321845],[-75.536369588,42.128536453],[-75.536179326,42.12875181],[-75.53582902,42.128967915],[-75.535351454,42.129279922],[-75.534969726,42.129567649],[-75.534587193,42.129760083],[-75.534172249,42.129904987],[-75.533724687,42.129978563],[-75.533372956,42.130027853],[-75.53305444,42.130219973],[-75.532865159,42.13055446],[-75.532643671,42.130865276],[-75.532485808,42.131128136],[-75.532392569,42.131462185],[-75.532330936,42.131748423],[-75.532014404,42.132178827],[-75.531793902,42.132608775],[-75.531543978,42.133348648],[-75.531197414,42.134017481],[-75.530689558,42.134544079],[-75.530211738,42.134832242],[-75.529701496,42.135072891],[-75.529127628,42.135361493],[-75.528777051,42.13555375],[-75.528137547,42.135652009],[-75.527785791,42.135701288],[-75.527560701,42.135583184],[-75.527270789,42.135370041],[-75.526853817,42.135276644],[-75.526533664,42.135278115],[-75.52611788,42.135327683],[-75.525478965,42.135497417],[-75.524872855,42.135762311],[-75.524617333,42.135834966],[-75.524266545,42.136003376],[-75.523789076,42.13633917],[-75.523470903,42.136578925],[-75.523056653,42.136819107],[-75.522610986,42.137130915],[-75.522357415,42.137441861],[-75.522040199,42.137800751],[-75.521690761,42.138135948],[-75.521244492,42.13837627],[-75.520670361,42.138641003],[-75.519935936,42.138882628],[-75.519264959,42.139052471],[-75.518657612,42.139174367],[-75.518147691,42.139462624],[-75.517830247,42.139797671],[-75.517417526,42.140228468],[-75.51722833,42.140586759],[-75.517199033,42.140920507],[-75.517300317,42.141563442],[-75.517368623,42.142087389],[-75.517468747,42.142587357],[-75.517377158,42.143135845],[-75.517092664,42.143589894],[-75.516806444,42.143829477],[-75.516616276,42.144068628],[-75.516587931,42.144521515],[-75.516687084,42.144902343],[-75.5167847,42.145092537],[-75.516851444,42.145425848],[-75.516757713,42.145712225],[-75.516792646,42.146069506],[-75.516955264,42.146378552],[-75.517181732,42.146663495],[-75.517535305,42.146828705],[-75.51792189,42.147112915],[-75.51843615,42.147348884],[-75.518758492,42.147609556],[-75.51895276,42.147870796],[-75.51908552,42.14844211],[-75.519090191,42.149013994],[-75.519060502,42.149300082],[-75.518935342,42.149658088],[-75.518874604,42.150063463],[-75.518941959,42.150468257],[-75.518945073,42.150849516],[-75.518948576,42.151278435],[-75.51908036,42.151730598],[-75.519179735,42.152135248],[-75.519116867,42.152278512],[-75.518797407,42.152375269],[-75.518317649,42.152448923],[-75.517870297,42.152570099],[-75.517519214,42.152714656],[-75.517105042,42.15297865],[-75.51666001,42.153385754],[-75.51627902,42.153792569],[-75.515833579,42.154152011],[-75.515580487,42.154534421],[-75.515360969,42.155107314],[-75.515204521,42.155560775],[-75.514888708,42.156110272],[-75.514699847,42.15651622],[-75.514479531,42.156993801],[-75.514098313,42.157376784],[-75.513427703,42.157618078],[-75.51291606,42.157715681],[-75.51201953,42.157743517],[-75.511252258,42.157913747],[-75.510549032,42.158083683],[-75.509718643,42.158373329],[-75.508824404,42.158687078],[-75.508089894,42.158952459],[-75.507387033,42.159170043],[-75.5069074,42.159267469],[-75.50649105,42.159269308],[-75.505915908,42.159438652],[-75.505437386,42.15967906],[-75.505310436,42.159822591],[-75.50540822,42.160036628],[-75.505666706,42.160321442],[-75.50614826,42.160462299],[-75.506501501,42.160579886],[-75.506791448,42.160793071],[-75.506921283,42.161006957],[-75.507149091,42.161458709],[-75.507343355,42.161719977],[-75.507602432,42.162076269],[-75.507669917,42.162504904],[-75.507672965,42.162886163],[-75.507706894,42.163124306],[-75.507676393,42.163315072],[-75.50748555,42.163482722],[-75.507095005,42.163710828],[-75.506815931,42.163860995],[-75.506338602,42.164250335],[-75.505821208,42.164639842],[-75.505223734,42.165029701],[-75.504547149,42.165539056],[-75.504030441,42.166017912],[-75.503674598,42.166585427],[-75.503639038,42.16715153],[-75.503681685,42.167479001],[-75.503964316,42.167775626],[-75.504407103,42.168071544],[-75.50492927,42.168277762],[-75.505732414,42.168572089],[-75.506296292,42.168986613],[-75.506821079,42.169520453],[-75.507266509,42.170144008],[-75.507590172,42.170559597],[-75.507877598,42.171451929],[-75.507962218,42.172017497],[-75.507928365,42.172792104],[-75.507812053,42.173269202],[-75.507574183,42.173568127],[-75.507376582,42.173896646],[-75.506738287,42.17419734],[-75.506379819,42.174437216],[-75.5059,42.174528692],[-75.505379924,42.174590563],[-75.50485937,42.174592856],[-75.503617097,42.174479162],[-75.502855099,42.174333572],[-75.501973461,42.174248073],[-75.501692213,42.174130168],[-75.501530161,42.173892574],[-75.501366462,42.173446486],[-75.501363405,42.173059273],[-75.501121275,42.17282204],[-75.500680348,42.172764392],[-75.500119757,42.172766838],[-75.49947816,42.172650486],[-75.498596314,42.172535176],[-75.497995218,42.172478206],[-75.49743464,42.172480639],[-75.496915492,42.172661616],[-75.496277158,42.172962242],[-75.495758236,42.173172992],[-75.49560086,42.173531109],[-75.495283081,42.173860142],[-75.494887305,42.17445758],[-75.49472992,42.174815705],[-75.494410727,42.174966013],[-75.494091312,42.175086534],[-75.493610565,42.175058818],[-75.49328976,42.175000626],[-75.492687488,42.174794708],[-75.492205128,42.174558488],[-75.491561205,42.17414423],[-75.49103674,42.173640104],[-75.490392386,42.173166268],[-75.48942793,42.172723588],[-75.488506278,42.172638158],[-75.48738488,42.172613141],[-75.486744446,42.172645648],[-75.486425485,42.172825716],[-75.485907897,42.173215137],[-75.48559007,42.173544133],[-75.485152795,42.173963004],[-75.484834732,42.174262211],[-75.484235675,42.174473247],[-75.483476682,42.174714748],[-75.482716541,42.174807301],[-75.481876092,42.174870416],[-75.481075676,42.174933347],[-75.480675473,42.174964811],[-75.480154455,42.174907421],[-75.479434134,42.174970006],[-75.47847646,42.175420809],[-75.477999083,42.17583981],[-75.47744272,42.17640807],[-75.477246084,42.176885482],[-75.477409845,42.177361384],[-75.477813887,42.177836286],[-75.478177883,42.178311361],[-75.478381473,42.178757308],[-75.478464484,42.179144194],[-75.478467179,42.179501621],[-75.478309923,42.179889503],[-75.477954657,42.180576079],[-75.477678593,42.18114318],[-75.477561814,42.181590455],[-75.477644823,42.181977342],[-75.477727162,42.182274871],[-75.478089607,42.182541438],[-75.478572427,42.182837291],[-75.479015662,42.183192895],[-75.479540113,42.183697066],[-75.479863878,42.184142509],[-75.480190805,42.185004955],[-75.480278795,42.186047121],[-75.480203653,42.186702745],[-75.480086883,42.187150022],[-75.479809456,42.187538422],[-75.479411423,42.187867738],[-75.479174257,42.188285738],[-75.47889726,42.188733701],[-75.4785404,42.189211773],[-75.477825299,42.189989207],[-75.47690968,42.190737686],[-75.476032977,42.191337055],[-75.47551541,42.191756221],[-75.47483829,42.192265394],[-75.474480468,42.192624313],[-75.474122419,42.192953452],[-75.473245446,42.193523013],[-75.472327073,42.193914029],[-75.471648343,42.194214686],[-75.4709309,42.194694217],[-75.470254795,42.195352299],[-75.469818372,42.195920037],[-75.469341236,42.196398571],[-75.46894263,42.196668278],[-75.468425633,42.197176769],[-75.468267812,42.197505063],[-75.468270453,42.197862489],[-75.468313821,42.198309116],[-75.46827815,42.19890499],[-75.468124303,42.199769429],[-75.468011601,42.200782635],[-75.468015998,42.201378352],[-75.467898896,42.201795839],[-75.467580162,42.20203543],[-75.467181317,42.202275346],[-75.466545393,42.202963028],[-75.465912511,42.204067703],[-75.46543724,42.2048143],[-75.465240426,42.205291679],[-75.465202768,42.20561949],[-75.465127024,42.206215525],[-75.464929539,42.206603555],[-75.464772551,42.207050987],[-75.464616009,42.20755799],[-75.464460556,42.208213926],[-75.463863954,42.208812074],[-75.463345718,42.209171605],[-75.462747358,42.209531464],[-75.46219036,42.210069864],[-75.461752019,42.210399278],[-75.46090913,42.210194164],[-75.460106083,42.209959098],[-75.45930284,42.209694231],[-75.458660067,42.209458512],[-75.457817844,42.209342732],[-75.456413854,42.209110035],[-75.455649404,42.208666272],[-75.455165852,42.20828097],[-75.454642446,42.207925609],[-75.454000572,42.207809006],[-75.453400667,42.20796031],[-75.45276156,42.208230912],[-75.452402046,42.20838127],[-75.452283544,42.20862002],[-75.452085981,42.209008028],[-75.451808291,42.209396347],[-75.451369697,42.209695937],[-75.450930042,42.209846606],[-75.450289836,42.209968264],[-75.44936876,42.210031449],[-75.448407605,42.210094783],[-75.447447288,42.210277252],[-75.44700867,42.210576825],[-75.446850296,42.210845526],[-75.446812333,42.211143538],[-75.446854706,42.211471023],[-75.446857015,42.211798662],[-75.44657844,42.212067833],[-75.445819887,42.212458006],[-75.44518154,42.212847706],[-75.444142709,42.21326875],[-75.443585934,42.213866629],[-75.443429195,42.214373612],[-75.443312948,42.214940001],[-75.443235311,42.215297745],[-75.442634907,42.215389431],[-75.442033244,42.215302382],[-75.441430762,42.215096191],[-75.440346212,42.214713138],[-75.43930319,42.214538418],[-75.437942109,42.214722342],[-75.436421954,42.215085571],[-75.435541881,42.215297428],[-75.435062487,42.215507752],[-75.434502944,42.215718376],[-75.433904358,42.216078079],[-75.433386504,42.21652684],[-75.433027709,42.216796269],[-75.432707154,42.21679748],[-75.432505585,42.21661953],[-75.432061357,42.21611482],[-75.431495525,42.215402079],[-75.430970784,42.214838106],[-75.430325434,42.214215015],[-75.429760645,42.213651185],[-75.429396202,42.213086608],[-75.429231687,42.212461705],[-75.429227653,42.211865985],[-75.429024904,42.211509306],[-75.428662897,42.211302154],[-75.427940913,42.211185705],[-75.427298831,42.211039167],[-75.426616907,42.21092256],[-75.42569478,42.210836619],[-75.424812322,42.210690959],[-75.424090142,42.210544699],[-75.423526825,42.210189345],[-75.42312279,42.209684467],[-75.422799291,42.209238858],[-75.422315733,42.208823629],[-75.421752652,42.208498052],[-75.421350809,42.208320802],[-75.420909904,42.208292626],[-75.420429714,42.208383754],[-75.419950323,42.208594015],[-75.419390604,42.208774781],[-75.418630545,42.208956285],[-75.417669571,42.209049146],[-75.416707822,42.209022858],[-75.41586607,42.20896634],[-75.415064189,42.208879885],[-75.414302161,42.208763486],[-75.413579627,42.208557587],[-75.412938208,42.208500327],[-75.412498273,42.208621056],[-75.412219566,42.208890143],[-75.412021166,42.209188719],[-75.411661936,42.209398513],[-75.411181158,42.209400236],[-75.410580171,42.209402389],[-75.40981855,42.209345539],[-75.409097177,42.209318329],[-75.408375432,42.209231542],[-75.407734958,42.20932318],[-75.406974486,42.209445024],[-75.406214945,42.209715794],[-75.405494545,42.209837488],[-75.404492712,42.209811238],[-75.403650013,42.209605702],[-75.402604713,42.209043435],[-75.401760132,42.20854002],[-75.400995516,42.208006542],[-75.400191588,42.207592332],[-75.39926767,42.207208329],[-75.398504586,42.20691312],[-75.397942764,42.206766129],[-75.397623168,42.206916177],[-75.3972641,42.207155713],[-75.396744576,42.207366015],[-75.396224483,42.207486958],[-75.395223998,42.207669127],[-75.394463698,42.207820677],[-75.393662786,42.207883009],[-75.39338325,42.2080329],[-75.3933046,42.20827146],[-75.393228534,42.208927029],[-75.393072154,42.209553078],[-75.392956021,42.210208785],[-75.392839527,42.210804911],[-75.392642137,42.211282175],[-75.392124765,42.211849885],[-75.391566039,42.212209238],[-75.390728296,42.212807822],[-75.389811143,42.213525821],[-75.388934578,42.214333038],[-75.388057646,42.215080664],[-75.387299957,42.215678961],[-75.386821673,42.216097584],[-75.38634301,42.21645664],[-75.385825004,42.216934964],[-75.385507343,42.217412615],[-75.385148874,42.217771261],[-75.384909717,42.217980562],[-75.384469664,42.21810119],[-75.383988996,42.218132587],[-75.383507789,42.218074623],[-75.383024949,42.217748588],[-75.382622269,42.217422273],[-75.382218681,42.216947037],[-75.381654652,42.216442549],[-75.381211021,42.215967433],[-75.380647177,42.215492725],[-75.380323766,42.215017208],[-75.380080319,42.214511649],[-75.379876228,42.213886804],[-75.379712744,42.213351191],[-75.379630111,42.212934447],[-75.3793872,42.212518242],[-75.37886437,42.21219232],[-75.377940866,42.211867709],[-75.376496871,42.21160438],[-75.375614865,42.211517914],[-75.374851831,42.211222545],[-75.374529363,42.21089594],[-75.374447472,42.210598345],[-75.374244855,42.210211782],[-75.374002529,42.209884914],[-75.37319893,42.209500309],[-75.372636965,42.20932342],[-75.371794362,42.209117648],[-75.37095143,42.208852292],[-75.370468724,42.208526202],[-75.3703069,42.208258646],[-75.370264402,42.207841767],[-75.370181142,42.20730588],[-75.369937806,42.20680029],[-75.369253417,42.206236554],[-75.36860981,42.20579182],[-75.36768455,42.205139488],[-75.367001419,42.204784238],[-75.366278038,42.204399321],[-75.365635854,42.204192863],[-75.364913357,42.203956874],[-75.364512054,42.203839004],[-75.36419156,42.203840022],[-75.363952728,42.204108849],[-75.363673651,42.204348033],[-75.363435499,42.204736011],[-75.363236723,42.205004726],[-75.362758359,42.205423249],[-75.362400349,42.205871185],[-75.361803302,42.206558157],[-75.361445275,42.207006088],[-75.360726659,42.207455147],[-75.359848126,42.207964274],[-75.359089928,42.208502806],[-75.358330887,42.20889241],[-75.357612061,42.209311661],[-75.35725399,42.209759581],[-75.357056515,42.210266573],[-75.356978563,42.210654038],[-75.357020977,42.211070913],[-75.35690296,42.211458513],[-75.356543019,42.211578779],[-75.355862053,42.211610679],[-75.355421321,42.211612046],[-75.354579576,42.211555076],[-75.353938011,42.2114677],[-75.353056204,42.211410843],[-75.352494774,42.211323218],[-75.351733996,42.211414905],[-75.350853839,42.211655893],[-75.349773189,42.211867696],[-75.349012726,42.212018947],[-75.348532904,42.212199122],[-75.348454082,42.21243766],[-75.348455719,42.212735519],[-75.348217769,42.213183037],[-75.347820185,42.213750192],[-75.347502745,42.214317103],[-75.34706573,42.215003511],[-75.34674731,42.215391697],[-75.346308166,42.215690895],[-75.345828147,42.215841274],[-75.345266689,42.215753607],[-75.344704736,42.215576579],[-75.344183674,42.215548358],[-75.343824181,42.215757939],[-75.343665992,42.216145635],[-75.343428641,42.216712295],[-75.343272717,42.217517001],[-75.34319548,42.218053385],[-75.34299964,42.218887997],[-75.342842899,42.219543764],[-75.342646567,42.220289018],[-75.342409351,42.22088546],[-75.341812267,42.221631898],[-75.341453537,42.22199041],[-75.340812513,42.222022106],[-75.340451053,42.221874245],[-75.34056983,42.221605808],[-75.340808507,42.22127745],[-75.340925534,42.220681367],[-75.340922649,42.220145224],[-75.340718595,42.219460737],[-75.340193505,42.218687851],[-75.339467108,42.217736839],[-75.338943002,42.217142646],[-75.33829886,42.216578608],[-75.337614963,42.216074246],[-75.337171822,42.215628755],[-75.336648852,42.215243062],[-75.3358847,42.214709147],[-75.335240753,42.214174867],[-75.334998152,42.213758559],[-75.334915642,42.213312004],[-75.335112676,42.212685916],[-75.335107323,42.211673188],[-75.335062532,42.210779719],[-75.334817732,42.209946408],[-75.334453996,42.209351741],[-75.33385035,42.208847124],[-75.333369258,42.208788957],[-75.332368714,42.209000357],[-75.331449854,42.209509393],[-75.330491066,42.210048315],[-75.329571102,42.210348832],[-75.328891049,42.210559288],[-75.328092029,42.211008372],[-75.327412593,42.211337971],[-75.32689403,42.211786237],[-75.326256016,42.212383797],[-75.326137805,42.212771357],[-75.326019748,42.213188709],[-75.32598152,42.213546255],[-75.325824155,42.214112643],[-75.325107495,42.215008275],[-75.324629719,42.215605361],[-75.323832126,42.216352274],[-75.322953777,42.21698028],[-75.322154472,42.217399529],[-75.32151396,42.217520472],[-75.321193999,42.217640521],[-75.32111567,42.217998177],[-75.321077559,42.218385505],[-75.320958994,42.218713496],[-75.320800218,42.219011803],[-75.320561584,42.219369898],[-75.320443488,42.219787252],[-75.320366207,42.220353408],[-75.320209228,42.221009153],[-75.319850828,42.221456948],[-75.319491349,42.22169624],[-75.318570427,42.221847735],[-75.31773022,42.222118148],[-75.316890465,42.222477907],[-75.316251057,42.222837109],[-75.315732472,42.223315125],[-75.31545388,42.223703114],[-75.315175421,42.224120896],[-75.314777781,42.2247475],[-75.314340352,42.225433793],[-75.313902914,42.226120083],[-75.31362354,42.226359131],[-75.3133053,42.226836589],[-75.313266844,42.227164342],[-75.313310601,42.227908889],[-75.313514672,42.228652996],[-75.313717863,42.22921838],[-75.313880684,42.229724309],[-75.313923429,42.230260343],[-75.313766348,42.230916081],[-75.313449843,42.23175097],[-75.313211279,42.232138851],[-75.312771872,42.232437905],[-75.312251996,42.232677619],[-75.311490911,42.232769048],[-75.311050018,42.232770244],[-75.310569054,42.232771547],[-75.309847756,42.232803284],[-75.308404858,42.232807173],[-75.307643032,42.232749637],[-75.306478965,42.23239532],[-75.305154593,42.232041415],[-75.303991705,42.231925357],[-75.303310483,42.231956947],[-75.302951319,42.232285544],[-75.303033057,42.232612986],[-75.303074992,42.233000097],[-75.303158431,42.233684969],[-75.303161853,42.23439983],[-75.303045171,42.235144793],[-75.303007653,42.235681063],[-75.303010503,42.236276778],[-75.302893104,42.236872823],[-75.302655597,42.237498961],[-75.302538182,42.238095003],[-75.302741314,42.238660405],[-75.303145006,42.239255072],[-75.303910326,42.240027496],[-75.30463473,42.2406213],[-75.305439891,42.241334034],[-75.305884143,42.242017934],[-75.306168778,42.242851196],[-75.306252554,42.243595637],[-75.306014045,42.24401328],[-75.305615472,42.244490929],[-75.304936553,42.245028888],[-75.304057764,42.245686526],[-75.302738253,42.246404893],[-75.301858415,42.246854004],[-75.30093791,42.247184071],[-75.30013683,42.247335102],[-75.299375401,42.247396671],[-75.29881274,42.247100261],[-75.298289744,42.246714418],[-75.297486562,42.246418633],[-75.296845118,42.246420295],[-75.296404848,42.246570366],[-75.296005767,42.246958617],[-75.295526492,42.247347073],[-75.295046946,42.247675964],[-75.294406618,42.24791589],[-75.293605915,42.24815624],[-75.293126212,42.248455338],[-75.292807419,42.248873159],[-75.292649534,42.249409713],[-75.292371089,42.24988701],[-75.292092238,42.250274939],[-75.291812835,42.250543727],[-75.29145297,42.250753153],[-75.291174234,42.251170867],[-75.291015374,42.25149891],[-75.29097705,42.251886243],[-75.29089838,42.252214091],[-75.290619239,42.252542448],[-75.290259769,42.252841226],[-75.289459668,42.25323047],[-75.288460051,42.253828718],[-75.287620238,42.254307414],[-75.286980481,42.25469622],[-75.286862089,42.25511354],[-75.286824423,42.255649785],[-75.286866542,42.256096471],[-75.287069596,42.256661908],[-75.287352291,42.257108001],[-75.287555342,42.257673427],[-75.287637565,42.258120021],[-75.287478668,42.258448066],[-75.286958616,42.258717444],[-75.286317472,42.258808406],[-75.285475697,42.258870076],[-75.284513373,42.258872468],[-75.283229595,42.258726714],[-75.282106213,42.25858055],[-75.281223676,42.258493361],[-75.280542034,42.258495029],[-75.28006127,42.258585563],[-75.27954066,42.258735765],[-75.279180838,42.258974931],[-75.278780525,42.259124842],[-75.278259648,42.259215465],[-75.277577866,42.259187332],[-75.276936041,42.25912931],[-75.275892478,42.258893529],[-75.274850207,42.258955602],[-75.273968968,42.259166223],[-75.273609639,42.259524514],[-75.273572373,42.260179906],[-75.273494753,42.260775814],[-75.273496684,42.261222609],[-75.273337178,42.261431492],[-75.273097372,42.261610779],[-75.272696501,42.261641521],[-75.272214675,42.261493734],[-75.271571694,42.261167602],[-75.270807776,42.260692831],[-75.270164299,42.260247557],[-75.269481232,42.259921516],[-75.268276905,42.259596684],[-75.267273463,42.259360739],[-75.266230424,42.25924402],[-75.264907706,42.259366227],[-75.264186205,42.259427463],[-75.263263956,42.259429585],[-75.262461752,42.25937185],[-75.261498679,42.259195332],[-75.260816402,42.259047948],[-75.259973509,42.258841359],[-75.259130609,42.258634762],[-75.258447747,42.258338443],[-75.258085773,42.258071183],[-75.257843982,42.257773857],[-75.25752103,42.257238432],[-75.256997353,42.256643874],[-75.256352568,42.255841084],[-75.255868777,42.255186869],[-75.25538547,42.254651787],[-75.254983567,42.254414392],[-75.254542519,42.254415371],[-75.253901373,42.25450615],[-75.252939935,42.254716779],[-75.251978738,42.254986971],[-75.251177783,42.255227025],[-75.250497235,42.255496588],[-75.249897222,42.25585533],[-75.249137517,42.25639315],[-75.248657999,42.256811188],[-75.248218348,42.257169583],[-75.247738247,42.257438697],[-75.24725756,42.257558878],[-75.246736298,42.257560001],[-75.246254459,42.257382319],[-75.245571882,42.257145494],[-75.244689081,42.256968656],[-75.243364879,42.256703399],[-75.241960849,42.256527652],[-75.240918003,42.256440488],[-75.240357245,42.256590595],[-75.23991731,42.256889378],[-75.239678756,42.257426036],[-75.239480868,42.258111539],[-75.239243104,42.258856688],[-75.239165273,42.259482368],[-75.239086655,42.259899539],[-75.23896816,42.26037637],[-75.238768693,42.260644861],[-75.238327927,42.260735136],[-75.237886848,42.260736053],[-75.237204844,42.260648108],[-75.236482399,42.260470881],[-75.235759526,42.2601745],[-75.234995985,42.259729274],[-75.233991894,42.259284535],[-75.233108438,42.258928893],[-75.232265405,42.258662528],[-75.231502257,42.258306638],[-75.230899057,42.257831266],[-75.230416275,42.257385446],[-75.229933824,42.257028971],[-75.229572519,42.256910551],[-75.228931308,42.257001192],[-75.22817055,42.257300577],[-75.22744925,42.257421153],[-75.226727614,42.257452369],[-75.226326547,42.257423375],[-75.226245823,42.257274604],[-75.226164248,42.256887537],[-75.226002482,42.256500634],[-75.225720962,42.256262901],[-75.225239914,42.256293632],[-75.224598492,42.256324677],[-75.223876762,42.256326087],[-75.223234605,42.256148621],[-75.222632222,42.25588171],[-75.222110359,42.255704004],[-75.221588904,42.255645448],[-75.221028093,42.255795453],[-75.220307003,42.255975558],[-75.219705989,42.256095862],[-75.218904163,42.256127183],[-75.218181936,42.25597962],[-75.217539798,42.255802123],[-75.216937442,42.255535187],[-75.216094328,42.255209131],[-75.215371396,42.254853041],[-75.214969439,42.25455594],[-75.214527392,42.254258908],[-75.214005149,42.253962023],[-75.213403038,42.253754632],[-75.212801331,42.253666384],[-75.212159319,42.253518651],[-75.211316347,42.253222345],[-75.210673563,42.2528363],[-75.210311635,42.252509315],[-75.209989706,42.252152471],[-75.209868921,42.252003761],[-75.2094279,42.252004568],[-75.208225499,42.252125902],[-75.207223375,42.252187288],[-75.206261233,42.252218809],[-75.20561993,42.252279533],[-75.205259673,42.252458894],[-75.205140359,42.25275697],[-75.205101423,42.253114481],[-75.205062777,42.253561344],[-75.204823565,42.253978788],[-75.204463585,42.254247504],[-75.204063592,42.254546079],[-75.203582844,42.254666077],[-75.20270085,42.254697424],[-75.20185953,42.254907412],[-75.200898669,42.255355901],[-75.200218939,42.255952812],[-75.200019876,42.25639996],[-75.199781266,42.257025883],[-75.199623325,42.257800609],[-75.199385467,42.258664827],[-75.199107036,42.259380187],[-75.198708774,42.260244677],[-75.198229548,42.260871031],[-75.197789954,42.261348368],[-75.197469725,42.261527638],[-75.196748305,42.26164802],[-75.19614711,42.261738409],[-75.195385759,42.261918426],[-75.195025421,42.262097756],[-75.19434474,42.262426567],[-75.1933838,42.26290477],[-75.192463399,42.263531835],[-75.191823153,42.263979699],[-75.191182526,42.264308414],[-75.190662116,42.264607149],[-75.190021129,42.264816718],[-75.18925938,42.26487755],[-75.188697612,42.264759329],[-75.188175492,42.264492105],[-75.187452091,42.263957139],[-75.186889004,42.263392112],[-75.186205639,42.26282729],[-75.185723743,42.262589782],[-75.185162079,42.262501332],[-75.184439681,42.262293984],[-75.183797042,42.261937582],[-75.183234363,42.261491683],[-75.182551813,42.26119491],[-75.18191032,42.261225715],[-75.181670571,42.261523965],[-75.181271033,42.262030962],[-75.180831645,42.262627384],[-75.180431924,42.263074807],[-75.179991663,42.263373361],[-75.179270876,42.26373193],[-75.178670803,42.264239231],[-75.178271044,42.264686644],[-75.178111983,42.265163477],[-75.178113157,42.265580483],[-75.177913906,42.26602759],[-75.17767363,42.266147109],[-75.177151962,42.26602877],[-75.176108738,42.265821874],[-75.175025819,42.265763959],[-75.17418384,42.265824814],[-75.173422482,42.266034472],[-75.172541047,42.26633366],[-75.171699796,42.266662571],[-75.171178698,42.266752715],[-75.170657371,42.266753493],[-75.169935201,42.266635413],[-75.169253227,42.266547062],[-75.16837097,42.266548362],[-75.167528828,42.266549595],[-75.167047828,42.266639654],[-75.166888126,42.26690797],[-75.166728504,42.267206062],[-75.166528698,42.267474428],[-75.166128453,42.267772878],[-75.165527365,42.267952464],[-75.164725463,42.268013192],[-75.163803083,42.268014512],[-75.163281744,42.268015255],[-75.162921037,42.268105126],[-75.162721212,42.268373484],[-75.162160072,42.268493424],[-75.16091701,42.268554747],[-75.159794106,42.268556317],[-75.159032142,42.268557377],[-75.158350365,42.268558321],[-75.15734794,42.268619271],[-75.156585966,42.268620314],[-75.155944532,42.268710548],[-75.155624425,42.269008851],[-75.155464962,42.269396286],[-75.15526576,42.269932715],[-75.155106876,42.270558437],[-75.155028055,42.271124488],[-75.155029295,42.27163085],[-75.155070275,42.271988227],[-75.155032069,42.272762725],[-75.154913356,42.273418186],[-75.154755262,42.274371563],[-75.15467665,42.275026963],[-75.154517239,42.275444191],[-75.154036805,42.27580227],[-75.153075297,42.276250356],[-75.152033832,42.276817677],[-75.151112677,42.277384837],[-75.15039185,42.277862369],[-75.149750865,42.278190847],[-75.148989417,42.278459921],[-75.148266806,42.278192777],[-75.14746385,42.277866173],[-75.146620579,42.277450241],[-75.14573714,42.277004567],[-75.145054336,42.276588428],[-75.144451904,42.276231749],[-75.144130271,42.275904506],[-75.144009269,42.275606797],[-75.143928103,42.275189885],[-75.143767063,42.274922013],[-75.143445664,42.274684119],[-75.14280313,42.274327495],[-75.142000254,42.274000838],[-75.141157004,42.273555088],[-75.140755275,42.273257722],[-75.14023297,42.272841347],[-75.139550431,42.272514532],[-75.13898849,42.272306721],[-75.138426871,42.27224782],[-75.137705422,42.272457191],[-75.137024319,42.272785654],[-75.136142628,42.273084565],[-75.13518064,42.273353786],[-75.134619595,42.273562949],[-75.134098704,42.273801848],[-75.133377034,42.273921834],[-75.13285601,42.274101162],[-75.131893755,42.274251203],[-75.131211926,42.274251986],[-75.130289342,42.274193464],[-75.129647558,42.274164407],[-75.128885465,42.274135472],[-75.128564658,42.274165626],[-75.128324623,42.274463754],[-75.128205086,42.274851107],[-75.12808556,42.275238469],[-75.127886033,42.275745053],[-75.127405639,42.27619238],[-75.126684336,42.276520834],[-75.125843008,42.276998338],[-75.125202377,42.277564981],[-75.124522048,42.278340159],[-75.124001896,42.278996025],[-75.123361298,42.279592444],[-75.122560002,42.280069881],[-75.122078959,42.280219323],[-75.121918461,42.280189709],[-75.121837781,42.279951506],[-75.121716761,42.279594203],[-75.121515509,42.279236975],[-75.120912833,42.27870147],[-75.120190063,42.278285201],[-75.119387355,42.278017974],[-75.118665374,42.278018723],[-75.117983793,42.278168355],[-75.116981156,42.278228956],[-75.116138691,42.278140454],[-75.115296001,42.277932801],[-75.114412679,42.277427322],[-75.113810176,42.276951336],[-75.113448395,42.276504905],[-75.112965753,42.27576072],[-75.112242382,42.274957197],[-75.111840307,42.274391658],[-75.111398175,42.273855929],[-75.111116956,42.273588127],[-75.110555464,42.273588671],[-75.10995401,42.273678607],[-75.109272246,42.273709045],[-75.108590423,42.273709693],[-75.107507492,42.273680926],[-75.106384394,42.273622402],[-75.105823002,42.273682492],[-75.10542242,42.273980722],[-75.104661032,42.274368646],[-75.104019698,42.27460752],[-75.103097765,42.274935999],[-75.101815214,42.275503087],[-75.101254087,42.275741872],[-75.100692763,42.27586151],[-75.100291683,42.275861862],[-75.099689958,42.275802817],[-75.098686967,42.275624967],[-75.097884764,42.275595868],[-75.097283099,42.275566594],[-75.096721225,42.275328781],[-75.096078902,42.274942093],[-75.095436454,42.274466052],[-75.094111974,42.27384163],[-75.093188992,42.273484952],[-75.092306246,42.273217591],[-75.091583986,42.272979874],[-75.090781636,42.272831581],[-75.090019481,42.272742815],[-75.089618505,42.272802708],[-75.089458543,42.273130482],[-75.0894189,42.273458167],[-75.08925902,42.273845511],[-75.089018841,42.274173345],[-75.088217604,42.274829264],[-75.087215689,42.275395976],[-75.086614519,42.275724077],[-75.085732739,42.276171531],[-75.084931185,42.276618928],[-75.083929041,42.277066456],[-75.083007074,42.277484139],[-75.082245362,42.277752763],[-75.081443307,42.277872479],[-75.080681153,42.277813446],[-75.080119461,42.277694695],[-75.079437379,42.277516455],[-75.078755116,42.277189268],[-75.078353684,42.27692147],[-75.078032667,42.276802546],[-75.077992705,42.276921716],[-75.07787271,42.277189872],[-75.077752713,42.277458037],[-75.077552495,42.277726246],[-75.077191791,42.277964779],[-75.076790877,42.278113977],[-75.076028978,42.278263417],[-75.07498647,42.278561971],[-75.074425273,42.278860197],[-75.073704125,42.279575537],[-75.07306339,42.280469529],[-75.072703065,42.281065486],[-75.072462943,42.281542215],[-75.072503636,42.282048559],[-75.072744858,42.282524984],[-75.072985908,42.282852485],[-75.07334745,42.283299046],[-75.073708848,42.283626459],[-75.074110603,42.284162357],[-75.074592854,42.284906694],[-75.074834173,42.285442695],[-75.074954904,42.285770261],[-75.075075953,42.286365911],[-75.075277438,42.287140224],[-75.075559502,42.288182557],[-75.075801662,42.289403633],[-75.07592288,42.290118423],[-75.076124075,42.290624653],[-75.076485674,42.291071211],[-75.076927548,42.29154749],[-75.077168706,42.29190476],[-75.077409924,42.292321609],[-75.077530975,42.29288746],[-75.077692254,42.293542651],[-75.07789388,42.294376532],[-75.077974842,42.294972194],[-75.078176339,42.295686929],[-75.078457849,42.296222885],[-75.078859479,42.296550262],[-75.079180672,42.296728758],[-75.079421663,42.296937094],[-75.07946212,42.29720514],[-75.079302269,42.297711617],[-75.07906207,42.298128788],[-75.078661234,42.298456709],[-75.078220182,42.298695306],[-75.07745823,42.298993683],[-75.076294864,42.299173179],[-75.075292089,42.299441923],[-75.074489922,42.299680735],[-75.073888341,42.299919411],[-75.073206729,42.300336852],[-75.07256508,42.300635127],[-75.072123786,42.300694968],[-75.071682188,42.300486744],[-75.070959515,42.300099977],[-75.070317075,42.299683369],[-75.069915405,42.299296389],[-75.069674141,42.29881996],[-75.069513258,42.298462619],[-75.069191985,42.298194739],[-75.068630197,42.298135505],[-75.067747412,42.298046664],[-75.06706523,42.297957716],[-75.066222574,42.297868847],[-75.065540269,42.297660745],[-75.065018411,42.297392953],[-75.064536645,42.297095365],[-75.064335662,42.296738046],[-75.064174813,42.296380697],[-75.063773422,42.296202205],[-75.062930871,42.29620267],[-75.062369205,42.296232762],[-75.061807481,42.296203281],[-75.061406232,42.296173711],[-75.060122973,42.296829691],[-75.059000185,42.297485565],[-75.058358336,42.297605044],[-75.057876874,42.297605289],[-75.057154777,42.297724794],[-75.056392831,42.298142178],[-75.055510418,42.298470253],[-75.054146628,42.298917702],[-75.05342467,42.2992159],[-75.05290336,42.299573573],[-75.051900771,42.300169758],[-75.050657408,42.300766042],[-75.049775001,42.301183431],[-75.04905318,42.301719888],[-75.048531872,42.302137122],[-75.0480105,42.302464987],[-75.047569279,42.302673672],[-75.04720841,42.303031261],[-75.046967925,42.30338879],[-75.046888026,42.303865398],[-75.046928442,42.304252607],[-75.047049128,42.30466956],[-75.047370487,42.305116224],[-75.047571388,42.305473573],[-75.047772384,42.305950064],[-75.047852953,42.306367041],[-75.0478936,42.3070521],[-75.047934452,42.308005232],[-75.047975147,42.308749879],[-75.047855098,42.309196726],[-75.047694861,42.309554225],[-75.047133171,42.309762957],[-75.046451284,42.310180238],[-75.045849585,42.31053792],[-75.044646061,42.311074541],[-75.044204803,42.311342793],[-75.043723399,42.311581265],[-75.043322134,42.311640988],[-75.042599568,42.3113434],[-75.042077789,42.311224441],[-75.041194984,42.311343913],[-75.040512877,42.311522872],[-75.039991204,42.311582628],[-75.039148532,42.31170206],[-75.038707119,42.311761783],[-75.038185381,42.311702386],[-75.03770372,42.311553615],[-75.037222205,42.31164313],[-75.036981566,42.311911282],[-75.036981742,42.31220914],[-75.037062248,42.312626125],[-75.037142808,42.313132459],[-75.037022587,42.313430364],[-75.036220206,42.313877409],[-75.035457934,42.314324436],[-75.034575294,42.314831072],[-75.033772786,42.315129172],[-75.032769526,42.315278391],[-75.032047145,42.315308383],[-75.031043707,42.315129943],[-75.030040253,42.314862138],[-75.029438123,42.314594211],[-75.028795783,42.3141178],[-75.0281534,42.313522242],[-75.027230146,42.313045884],[-75.026146394,42.312569562],[-75.025102884,42.312361285],[-75.024219984,42.312361475],[-75.023016111,42.312570233],[-75.022093202,42.312898058],[-75.021250548,42.313255649],[-75.020849368,42.313672732],[-75.020809353,42.31403017],[-75.020769348,42.314417394],[-75.02084978,42.314923747],[-75.020729674,42.315817353],[-75.020649661,42.3165918],[-75.020489358,42.317306699],[-75.020248799,42.318081182],[-75.020128612,42.318796071],[-75.019968324,42.319600317],[-75.019928413,42.320315193],[-75.020129247,42.320791732],[-75.020570926,42.321298019],[-75.021132985,42.321685134],[-75.021534467,42.322042497],[-75.021935965,42.322399851],[-75.02213681,42.322816815],[-75.022016469,42.323025345],[-75.021615139,42.323204138],[-75.021093403,42.323382949],[-75.020090069,42.323800132],[-75.019528268,42.324217238],[-75.018765734,42.324634366],[-75.018484863,42.324991843],[-75.018244072,42.32514082],[-75.017842668,42.325111095],[-75.017401101,42.324992012],[-75.016477803,42.324664506],[-75.015835529,42.324515666],[-75.015353822,42.324366803],[-75.014671381,42.324009454],[-75.01390863,42.323532975],[-75.013065564,42.322877778],[-75.012142284,42.322252378],[-75.010937996,42.32132913],[-75.010175276,42.320733477],[-75.009492895,42.320346318],[-75.00864998,42.320048526],[-75.008047903,42.31978049],[-75.007285281,42.319542253],[-75.006602949,42.319333793],[-75.005559381,42.319125347],[-75.004355298,42.318916898],[-75.003351903,42.318738218],[-75.002669588,42.318648871],[-75.002228102,42.318708452],[-75.0019873,42.319006322],[-75.00166621,42.319304185],[-75.000983911,42.319661623],[-74.999699549,42.319959496],[-74.998655998,42.320078631],[-74.997451912,42.32007861],[-74.996528775,42.319959442],[-74.995806314,42.319959417],[-74.995244393,42.320167889],[-74.994883134,42.320555097],[-74.99476269,42.320972095],[-74.994682377,42.321448671],[-74.994762599,42.322074187],[-74.995003383,42.322580556],[-74.995444866,42.323027369],[-74.995886367,42.323325244],[-74.996247605,42.323623116],[-74.99656869,42.324040137],[-74.996689085,42.324427355],[-74.996929857,42.325678374],[-74.997090382,42.326423032],[-74.997090357,42.326988963],[-74.997130479,42.327405973],[-74.997090313,42.327942116],[-74.996849439,42.328478262],[-74.99660857,42.328835685],[-74.996207125,42.329312247],[-74.996046531,42.329699463],[-74.995765494,42.330176026],[-74.995323873,42.330861091],[-74.994842118,42.331456794],[-74.994520911,42.331903564],[-74.994239884,42.332141838],[-74.993396837,42.332380078],[-74.992553769,42.332677893],[-74.991831153,42.332826772],[-74.991228979,42.332826729],[-74.990626827,42.332737324],[-74.98998455,42.332469189],[-74.98918176,42.331932973],[-74.988379014,42.33118824],[-74.987375569,42.330443491],[-74.986492575,42.329758308],[-74.985729988,42.329192277],[-74.985127984,42.328656055],[-74.984686556,42.328119847],[-74.9844458,42.327702811],[-74.984124732,42.327464482],[-74.983642996,42.327643128],[-74.983201429,42.327702636],[-74.982559145,42.327762113],[-74.981756305,42.327821559],[-74.981073906,42.327791663],[-74.980351356,42.327791541],[-74.979749219,42.327851008],[-74.979267429,42.328148779],[-74.978625016,42.328565671],[-74.977902383,42.328803822],[-74.97726002,42.329041981],[-74.976577573,42.329131209],[-74.97585503,42.32907148],[-74.975293103,42.328922421],[-74.974610835,42.328564853],[-74.974169438,42.32811796],[-74.973768161,42.327820009],[-74.973447019,42.327849721],[-74.97316593,42.328087942],[-74.972844686,42.328326161],[-74.97220224,42.328743008],[-74.971599957,42.329070504],[-74.971158287,42.329308682],[-74.970756672,42.329725582],[-74.970475454,42.330202089],[-74.970274502,42.330708405],[-74.970153724,42.331423232],[-74.970073242,42.331840221],[-74.969992713,42.332346557],[-74.969831838,42.332972023],[-74.969631102,42.333001757],[-74.969310034,42.332822958],[-74.968948809,42.33267393],[-74.968627702,42.332554702],[-74.968025587,42.332465168],[-74.967343188,42.332345834],[-74.966700917,42.332286077],[-74.966179077,42.332226353],[-74.965536844,42.332077233],[-74.964693959,42.33183869],[-74.963810873,42.331689487],[-74.963048168,42.331629671],[-74.962727002,42.331659355],[-74.962124742,42.33183787],[-74.961482325,42.332016372],[-74.960719519,42.332135255],[-74.959876411,42.332254106],[-74.959233974,42.33246238],[-74.958390684,42.3328493],[-74.957788259,42.333236296],[-74.957145734,42.333533916],[-74.956182137,42.333712283],[-74.955218458,42.333979975],[-74.954214499,42.334426363],[-74.953130331,42.334753578],[-74.952327276,42.334931959],[-74.95144397,42.335050733],[-74.950721301,42.335109997],[-74.950319656,42.33534811],[-74.950158802,42.335675682],[-74.950118374,42.336033103],[-74.949997653,42.33639048],[-74.949716366,42.336718],[-74.94935483,42.336985919],[-74.948350682,42.337551402],[-74.947306345,42.338146651],[-74.946382442,42.338741936],[-74.94553886,42.3392777],[-74.944615109,42.339664454],[-74.943771764,42.339902338],[-74.942567102,42.340110251],[-74.941643305,42.340496997],[-74.940960242,42.341062576],[-74.940758879,42.341717767],[-74.940798499,42.342283725],[-74.940958544,42.342879522],[-74.94103848,42.343266786],[-74.940957735,42.343743316],[-74.940997386,42.344279489],[-74.941197725,42.344726376],[-74.941799519,42.345262834],[-74.942361133,42.345829045],[-74.943003036,42.34642509],[-74.944206345,42.347885188],[-74.944928371,42.348749331],[-74.945289168,42.349434574],[-74.945408883,42.350298424],[-74.945207121,42.351430194],[-74.944603656,42.352710705],[-74.943960051,42.353931611],[-74.943397148,42.354705762],[-74.943107853,42.35487242],[-74.942754422,42.354919904],[-74.941951277,42.354871841],[-74.940601944,42.35487115],[-74.939670256,42.354894496],[-74.938674162,42.355060769],[-74.93832062,42.355203549],[-74.93809552,42.355417887],[-74.937709831,42.35558448],[-74.937452581,42.355822625],[-74.936906025,42.356203586],[-74.934881136,42.35703646],[-74.934206048,42.357417336],[-74.93320932,42.358131616],[-74.932630442,42.358655513],[-74.931794346,42.35934605],[-74.931440464,42.359774751],[-74.931247269,42.360155895],[-74.931150388,42.360608583],[-74.930892768,42.361132664],[-74.930699576,42.361513801],[-74.930410084,42.361799568],[-74.929960098,42.36194227],[-74.929060293,42.362084685],[-74.927742635,42.36234598],[-74.927131848,42.362607712],[-74.926488754,42.363012388],[-74.926134987,42.363298103],[-74.925909536,42.363750695],[-74.925812554,42.364251044],[-74.925618944,42.36494194],[-74.925361188,42.365537501],[-74.924878514,42.366109072],[-74.923946085,42.366585028],[-74.922949426,42.367037108],[-74.922177911,42.367298705],[-74.921181425,42.367583965],[-74.920538481,42.367797981],[-74.919798906,42.368202553],[-74.919316375,42.368607299],[-74.919091071,42.368893085],[-74.919026372,42.369226642],[-74.918961746,42.36951253],[-74.918736407,42.369822156],[-74.918318405,42.370012484],[-74.917611197,42.370202605],[-74.916389765,42.370440012],[-74.915425334,42.370725248],[-74.914717725,42.371201293],[-74.914266987,42.371820502],[-74.914105629,42.372320785],[-74.913815233,42.373178397],[-74.913396354,42.373988259],[-74.912720329,42.374821742],[-74.91217316,42.375417044],[-74.911658305,42.375893216],[-74.91114316,42.37656002],[-74.910981733,42.377084123],[-74.910884545,42.377632109],[-74.910979848,42.378418527],[-74.91142775,42.37987243],[-74.911651089,42.381040197],[-74.911682257,42.38173125],[-74.911584947,42.382374542],[-74.911295063,42.382803238],[-74.910909068,42.383017397],[-74.909879963,42.383421676],[-74.908432735,42.384016249],[-74.907210649,42.384491834],[-74.906149004,42.385134339],[-74.90499052,42.386038869],[-74.903928319,42.387014962],[-74.90302717,42.387752889],[-74.902512288,42.388133712],[-74.90228684,42.388419453],[-74.902157778,42.38872912],[-74.902189214,42.389181888],[-74.902445576,42.38970634],[-74.902958781,42.390421627],[-74.903568332,42.391208476],[-74.904274078,42.392162219],[-74.905108148,42.393306681],[-74.905525011,42.39399806],[-74.905588127,42.394784455],[-74.905489972,42.39592814],[-74.905360232,42.396690543],[-74.905102082,42.397333705],[-74.904779626,42.397976797],[-74.904360746,42.398595998],[-74.903941976,42.399143708],[-74.90355549,42.399596124],[-74.903393976,42.400096387],[-74.903361343,42.400406126],[-74.903778365,42.40102602],[-74.904259229,42.401931905],[-74.904643992,42.402623259],[-74.904803954,42.403147616],[-74.904899902,42.403481297],[-74.904770836,42.403790955],[-74.90454541,42.404029052],[-74.903901894,42.404338288],[-74.903354762,42.404695253],[-74.902389341,42.405242493],[-74.90161675,42.405837548],[-74.901101302,42.406480473],[-74.900617983,42.40712342],[-74.900070579,42.407623343],[-74.899362593,42.40800398],[-74.898654814,42.408241641],[-74.897400344,42.408526475],[-74.895502612,42.408906011],[-74.894602087,42.409024326],[-74.893669449,42.409118774],[-74.892929812,42.409165752],[-74.89190083,42.409188612],[-74.891322293,42.409045099],[-74.890679745,42.408734713],[-74.889973217,42.408233637],[-74.88939508,42.407875656],[-74.888816978,42.407493841],[-74.888495992,42.407183761],[-74.888239657,42.406683113],[-74.888015558,42.406134846],[-74.887952057,42.405682035],[-74.888049147,42.405324703],[-74.88840321,42.40511059],[-74.888821523,42.404920364],[-74.889271907,42.404777832],[-74.88975469,42.404492357],[-74.890237519,42.404183047],[-74.89059194,42.403754476],[-74.890657059,42.403277963],[-74.890625371,42.403015826],[-74.89027224,42.402705713],[-74.889662037,42.402323868],[-74.88921234,42.402085151],[-74.88885898,42.40191801],[-74.888537802,42.401727075],[-74.888409629,42.401488664],[-74.888217143,42.401250186],[-74.887542705,42.400844443],[-74.887125098,42.400653408],[-74.886739638,42.400462396],[-74.886290053,42.400176008],[-74.886097578,42.399937533],[-74.886258628,42.399770892],[-74.886484193,42.399485176],[-74.886677524,42.399247083],[-74.886806725,42.398913611],[-74.887000556,42.398389577],[-74.887033479,42.397960684],[-74.886937495,42.397698481],[-74.886584394,42.39741219],[-74.885973991,42.397173301],[-74.885266936,42.397053454],[-74.884206566,42.396766438],[-74.883210326,42.396574818],[-74.882696221,42.396431311],[-74.882086212,42.396001767],[-74.881861801,42.395667944],[-74.881669594,42.395310313],[-74.881091746,42.394880808],[-74.880289113,42.394331911],[-74.879646939,42.393926157],[-74.879068958,42.393591948],[-74.878619628,42.393210213],[-74.878106067,42.392804585],[-74.877656344,42.392637307],[-74.877045523,42.392660478],[-74.876273596,42.392874107],[-74.875533571,42.393206906],[-74.874600666,42.393539489],[-74.87389297,42.393776996],[-74.873410559,42.393871781],[-74.872574757,42.393870857],[-74.871513961,42.393845838],[-74.870742491,42.393821145],[-74.869970875,42.393867933],[-74.869391885,42.394034075],[-74.868876802,42.394390911],[-74.868426096,42.39470017],[-74.86803968,42.395009494],[-74.867589218,42.395199607],[-74.867106809,42.395294358],[-74.866656644,42.395341495],[-74.865627829,42.39538795],[-74.864663288,42.395434474],[-74.86379531,42.395433446],[-74.863152418,42.395408847],[-74.862638315,42.39528909],[-74.86209228,42.395073978],[-74.861674988,42.394787533],[-74.861322267,42.394382021],[-74.860969753,42.393881195],[-74.860617031,42.393475682],[-74.859976014,42.392617075],[-74.859431287,42.391830067],[-74.858854584,42.39097154],[-74.858598762,42.390375499],[-74.85840728,42.38975572],[-74.858312137,42.389183719],[-74.858216727,42.388730858],[-74.857895921,42.388444519],[-74.857510574,42.38827724],[-74.856932097,42.388228862],[-74.856450044,42.3881806],[-74.855904092,42.387965464],[-74.855261989,42.387631055],[-74.854203183,42.386795713],[-74.853336922,42.38610358],[-74.852598873,42.385578406],[-74.851732311,42.385029231],[-74.850640949,42.38440827],[-74.8493563,42.383977671],[-74.848392391,42.383833427],[-74.847428442,42.383713004],[-74.846335741,42.383663888],[-74.845339121,42.383757865],[-74.844631836,42.383828392],[-74.844085374,42.383851483],[-74.843667645,42.383803256],[-74.84331438,42.383683633],[-74.842928685,42.383683104],[-74.842510493,42.383825497],[-74.842059794,42.384110819],[-74.841705516,42.384396281],[-74.841511768,42.38475344],[-74.841542828,42.385182401],[-74.841574078,42.385539869],[-74.84176561,42.38606436],[-74.841892749,42.386636422],[-74.841891972,42.386946196],[-74.841891134,42.387279794],[-74.841857729,42.387780149],[-74.841631657,42.388208748],[-74.841308891,42.388732527],[-74.840890061,42.389113205],[-74.840310856,42.389350683],[-74.839346108,42.389516136],[-74.83860666,42.389562757],[-74.837738447,42.389680672],[-74.83677418,42.389655477],[-74.835616979,42.389653825],[-74.834395229,42.389747391],[-74.83314066,42.390102989],[-74.831918133,42.390482464],[-74.830920812,42.390790763],[-74.830116473,42.391051692],[-74.829280181,42.391241075],[-74.828797487,42.391430988],[-74.828539421,42.391764203],[-74.82831344,42.392121298],[-74.828054564,42.392740445],[-74.827989098,42.393169256],[-74.828051442,42.393884208],[-74.828049489,42.394599063],[-74.828143794,42.395385547],[-74.828238479,42.396029058],[-74.82820444,42.396720032],[-74.828042529,42.397148705],[-74.828009474,42.397482255],[-74.828104942,42.397839825],[-74.828232046,42.398388074],[-74.828422336,42.399341499],[-74.828581266,42.400008936],[-74.828997601,42.400605268],[-74.829414321,42.401058628],[-74.829894919,42.401678894],[-74.830118936,42.402060475],[-74.830182276,42.402417993],[-74.82998885,42.40260834],[-74.829474364,42.402631402],[-74.828799827,42.402392114],[-74.827546803,42.40208046],[-74.826133347,42.401649417],[-74.825201643,42.401409717],[-74.824237779,42.401169952],[-74.823466316,42.401121117],[-74.823048368,42.401120473],[-74.822372749,42.401286227],[-74.821504333,42.40140402],[-74.820185556,42.401616409],[-74.819220555,42.401781691],[-74.818416245,42.401971054],[-74.817611851,42.402184235],[-74.817032795,42.402302453],[-74.816325258,42.402372806],[-74.815168106,42.40227563],[-74.814203517,42.402297903],[-74.813013717,42.402367453],[-74.8118883,42.40241327],[-74.810955985,42.402387902],[-74.810248883,42.402315252],[-74.809638015,42.402314239],[-74.809252061,42.402361255],[-74.808704906,42.402550968],[-74.808286006,42.402860044],[-74.807962754,42.403431377],[-74.807703715,42.404026667],[-74.807476686,42.404669653],[-74.807216991,42.40547938],[-74.806860678,42.406336613],[-74.806473233,42.406860183],[-74.806021546,42.40735982],[-74.805730836,42.407788238],[-74.805665952,42.40797876],[-74.805440285,42.408169002],[-74.805086145,42.408311374],[-74.804700079,42.4083822],[-74.804314155,42.408405376],[-74.803542674,42.408332564],[-74.802578958,42.408044968],[-74.801454474,42.407757085],[-74.800265626,42.407492904],[-74.799172702,42.407395685],[-74.798015179,42.407393654],[-74.797243267,42.407463772],[-74.796214041,42.407557257],[-74.795538361,42.407699028],[-74.794798669,42.407745363],[-74.79412352,42.40772032],[-74.793223841,42.407528077],[-74.792709852,42.407384183],[-74.791939273,42.407049187],[-74.791200849,42.406714246],[-74.790622973,42.406451075],[-74.790044294,42.406426192],[-74.789465229,42.406520437],[-74.788756963,42.406781243],[-74.788306109,42.406994878],[-74.787726151,42.40735123],[-74.787113945,42.407731351],[-74.786309212,42.40799197],[-74.785344037,42.40815696],[-74.784475713,42.408202988],[-74.783768578,42.408130173],[-74.783318913,42.407986359],[-74.78296637,42.407652092],[-74.782774441,42.407365787],[-74.782551011,42.406888789],[-74.782327432,42.406459449],[-74.782136396,42.405911038],[-74.781752382,42.405386074],[-74.781046854,42.404860504],[-74.780309097,42.404358694],[-74.779314477,42.403761074],[-74.778448234,42.403235171],[-74.777710264,42.402804836],[-74.776939397,42.402588882],[-74.776328952,42.402468549],[-74.775654036,42.402395747],[-74.775043597,42.40227541],[-74.774465558,42.402083641],[-74.773823234,42.401891751],[-74.773308993,42.401843077],[-74.772826567,42.40188978],[-74.772343697,42.402055622],[-74.771892561,42.402340667],[-74.771473557,42.402625773],[-74.770989996,42.402982233],[-74.77050643,42.403338699],[-74.770023195,42.403599841],[-74.769604446,42.403813456],[-74.76905751,42.403907672],[-74.768542917,42.403954294],[-74.767835308,42.404024344],[-74.766420022,42.404188268],[-74.765422696,42.404353025],[-74.76510019,42.404614481],[-74.764841378,42.405042865],[-74.764647668,42.405256928],[-74.764100445,42.405422601],[-74.763585837,42.405469201],[-74.76229893,42.405680989],[-74.761268868,42.405988624],[-74.76062464,42.406297046],[-74.760205197,42.406677426],[-74.760075683,42.406915439],[-74.760010013,42.407272734],[-74.759912273,42.40760613],[-74.759686107,42.407891596],[-74.759428155,42.408081681],[-74.758976905,42.408366673],[-74.758268426,42.408651123],[-74.757237836,42.409077861],[-74.75656186,42.409267051],[-74.755917945,42.409480142],[-74.755434337,42.40981271],[-74.755046998,42.410193138],[-74.754724049,42.410549874],[-74.754400458,42.411073404],[-74.754206135,42.411430421],[-74.753883454,42.411715668],[-74.753497028,42.411857805],[-74.75301403,42.412023564],[-74.752466929,42.412141525],[-74.751823431,42.412235451],[-74.751244066,42.41237717],[-74.750664217,42.412638017],[-74.749794313,42.413065038],[-74.749085433,42.413420913],[-74.748504814,42.413872389],[-74.748213305,42.414395964],[-74.748050327,42.414943663],[-74.74804823,42.415467881],[-74.748207205,42.415920971],[-74.748429655,42.416588657],[-74.748588051,42.417184718],[-74.748360942,42.417684619],[-74.748101769,42.418160614],[-74.747617756,42.418564631],[-74.747101591,42.418968585],[-74.746618235,42.419205799],[-74.746135176,42.419371529],[-74.745748107,42.419656613],[-74.745553892,42.419965946],[-74.745295266,42.42029897],[-74.745133406,42.420560726],[-74.744874004,42.421084373],[-74.744647325,42.421465124],[-74.744354887,42.422203152],[-74.743966922,42.422702684],[-74.743288716,42.42339219],[-74.743062321,42.423701455],[-74.742996535,42.424058732],[-74.742995073,42.424416151],[-74.742672093,42.424749026],[-74.742245852,42.424819175],[-74.741120563,42.424721323],[-74.740060096,42.424504474],[-74.739224671,42.424311945],[-74.738614683,42.424048448],[-74.738133546,42.423737576],[-74.737750089,42.423140993],[-74.737302415,42.422520431],[-74.736726303,42.421851912],[-74.73608539,42.421302382],[-74.735220172,42.420561706],[-74.734900671,42.420060571],[-74.734709926,42.419535907],[-74.734711635,42.419130829],[-74.73465043,42.418391998],[-74.73465294,42.417796297],[-74.734108762,42.417199324],[-74.73349947,42.416792826],[-74.732697434,42.416338219],[-74.732087548,42.416074678],[-74.731380895,42.415882401],[-74.730930687,42.415881345],[-74.73057654,42.41597583],[-74.730286813,42.416046631],[-74.729997505,42.416022126],[-74.72906564,42.415853129],[-74.727683584,42.415683054],[-74.726783378,42.415633254],[-74.726300811,42.415679761],[-74.72613961,42.415774693],[-74.725721347,42.415821342],[-74.725013467,42.415914963],[-74.724048328,42.416007961],[-74.723308383,42.41607766],[-74.723082124,42.416339229],[-74.722983776,42.416767898],[-74.722789237,42.417124851],[-74.722400817,42.417695801],[-74.721980854,42.41812369],[-74.721496263,42.418622911],[-74.720463899,42.419359078],[-74.719786109,42.41990548],[-74.718946019,42.420785079],[-74.718364467,42.421379356],[-74.717847759,42.421854658],[-74.717396118,42.42216331],[-74.716655892,42.422280625],[-74.715723014,42.422325973],[-74.714726123,42.422299673],[-74.713599741,42.422463664],[-74.712666084,42.422675776],[-74.711828914,42.422888131],[-74.711280426,42.423268008],[-74.710828195,42.423695783],[-74.710504828,42.424076214],[-74.710019549,42.424694533],[-74.709567299,42.425122296],[-74.70937256,42.425503058],[-74.709242058,42.425907809],[-74.709079238,42.426336301],[-74.708723798,42.42669283],[-74.708142437,42.427215574],[-74.707658097,42.427619422],[-74.706980885,42.427998947],[-74.706432545,42.428331143],[-74.705594609,42.428686416],[-74.705046926,42.428875642],[-74.704435584,42.428921716],[-74.703406435,42.428895232],[-74.702345578,42.428773342],[-74.70160659,42.428604621],[-74.701028776,42.428364834],[-74.699969067,42.428004636],[-74.699069506,42.427787828],[-74.698073119,42.427642227],[-74.697205166,42.427544627],[-74.696819894,42.427400645],[-74.696145266,42.427232059],[-74.695791591,42.427207288],[-74.695469718,42.427254092],[-74.694986913,42.427324299],[-74.69405383,42.427393295],[-74.692734666,42.427485083],[-74.691801344,42.427601718],[-74.691093271,42.427695122],[-74.690030697,42.427930542],[-74.689354436,42.428095513],[-74.689064959,42.428094727],[-74.688872689,42.42795123],[-74.688551999,42.427759736],[-74.688038322,42.427567706],[-74.687332031,42.427303676],[-74.686400958,42.426967534],[-74.68556674,42.42656016],[-74.684476178,42.425961459],[-74.683771357,42.425411461],[-74.683226637,42.425004875],[-74.682585671,42.424550364],[-74.681784401,42.424000086],[-74.681110693,42.423664616],[-74.680371583,42.423543418],[-74.679567068,42.423636487],[-74.678601499,42.42377675],[-74.677378372,42.423963946],[-74.676445321,42.4240328],[-74.675254965,42.424100917],[-74.674418638,42.424122377],[-74.673550771,42.424024594],[-74.6729726,42.42387998],[-74.672426735,42.423711621],[-74.671945784,42.423424306],[-74.671431832,42.423303687],[-74.670852925,42.423302025],[-74.669983952,42.423418675],[-74.669018606,42.4235112],[-74.667860431,42.423579342],[-74.666702992,42.423504491],[-74.665191913,42.42340478],[-74.663423808,42.423256629],[-74.66159176,42.423036777],[-74.659567034,42.422768668],[-74.658024348,42.422573452],[-74.656899756,42.422379468],[-74.656160836,42.422234279],[-74.655678428,42.422232832],[-74.655163594,42.422278941],[-74.654649281,42.422229734],[-74.65410373,42.422013634],[-74.653847893,42.421750745],[-74.6532396,42.421248519],[-74.652662292,42.420960829],[-74.651891904,42.420696378],[-74.650928149,42.420502824],[-74.650028348,42.420380939],[-74.6487106,42.420233936],[-74.648003358,42.420184107],[-74.647617311,42.420206754],[-74.647198696,42.420300773],[-74.646908332,42.420466681],[-74.646618892,42.420465789],[-74.645944608,42.420273083],[-74.644949408,42.41996024],[-74.644017447,42.4198382],[-74.642956999,42.419691936],[-74.641799659,42.419616844],[-74.640770715,42.41958979],[-74.64006334,42.419563747],[-74.639644727,42.41965774],[-74.639514313,42.419967103],[-74.639351331,42.420347847],[-74.639123482,42.420823692],[-74.638863607,42.421275615],[-74.63847495,42.421750962],[-74.637796288,42.422320699],[-74.636987458,42.423152136],[-74.636468333,42.423936829],[-74.636239494,42.424579466],[-74.636204571,42.425055917],[-74.636138315,42.425389307],[-74.635879092,42.425722081],[-74.635620002,42.426031031],[-74.635489415,42.426364213],[-74.635294914,42.426625701],[-74.635130786,42.427197058],[-74.63470437,42.428625408],[-74.634537601,42.429649487],[-74.63443473,42.430745268],[-74.634367628,42.431221626],[-74.634204298,42.431650009],[-74.633977071,42.432006715],[-74.63326568,42.432647804],[-74.632650773,42.433289206],[-74.632132345,42.433930904],[-74.631613502,42.43464409],[-74.630868905,42.435451854],[-74.630157012,42.436164414],[-74.629736313,42.436591961],[-74.629023843,42.437399817],[-74.628664079,42.438399443],[-74.628499576,42.439018446],[-74.628235466,42.440161356],[-74.628263264,42.440900124],[-74.628451786,42.441663236],[-74.629120612,42.442809166],[-74.629695065,42.443597358],[-74.629950049,42.444003262],[-74.630108384,42.444432676],[-74.630010748,42.444622994],[-74.629527189,42.444788229],[-74.628850307,42.445000487],[-74.628365192,42.445427828],[-74.628040782,42.445879514],[-74.627651323,42.446450126],[-74.627261718,42.447044571],[-74.626484888,42.447828378],[-74.625836598,42.448636419],[-74.62554405,42.449135853],[-74.625443555,42.449802724],[-74.625371678,42.451065383],[-74.625174501,42.451755759],[-74.624979178,42.452136374],[-74.624943026,42.452803448],[-74.624810052,42.453517854],[-74.62474271,42.454018036],[-74.624675521,42.454494378],[-74.624543666,42.455018165],[-74.624187586,42.455374428],[-74.623767133,42.455730469],[-74.623153756,42.45606205],[-74.622056846,42.456535],[-74.621313875,42.457009118],[-74.620667869,42.45741206],[-74.619956906,42.4579101],[-74.619601218,42.458194857],[-74.619084619,42.458479088],[-74.618149112,42.458857221],[-74.617310852,42.45911653],[-74.616408082,42.45939945],[-74.615570101,42.459611099],[-74.614570779,42.459893682],[-74.613636679,42.46003351],[-74.612607076,42.460006202],[-74.611707068,42.459836366],[-74.61048409,42.459856043],[-74.609550583,42.459900523],[-74.608874508,42.459945876],[-74.608230622,42.459991327],[-74.607778765,42.460204237],[-74.607133074,42.460535622],[-74.6065519,42.4608434],[-74.605971456,42.461032028],[-74.605584096,42.461221317],[-74.605131772,42.461505699],[-74.604646069,42.461980596],[-74.60432215,42.462313072],[-74.604031932,42.462407378],[-74.603709812,42.462453922],[-74.603195826,42.462309179],[-74.602745892,42.462212305],[-74.602231899,42.462067557],[-74.601297016,42.461751369],[-74.600924011,42.461672566],[-74.60080197,42.461646783],[-74.600508649,42.461474092],[-74.600257631,42.461215983],[-74.599906371,42.460785848],[-74.59958609,42.460546448],[-74.599297986,42.46030716],[-74.598977406,42.460115408],[-74.59865835,42.459685388],[-74.59840334,42.459303242],[-74.598340656,42.459040909],[-74.598341442,42.458918147],[-74.598342789,42.45870732],[-74.598317202,42.458466152],[-74.598312439,42.458421276],[-74.598153832,42.4580633],[-74.597932696,42.457419163],[-74.597678935,42.456846389],[-74.597424097,42.456440415],[-74.597425317,42.456249798],[-74.597588492,42.45589295],[-74.597783699,42.455560038],[-74.59778553,42.455274107],[-74.597657731,42.455130685],[-74.597369202,42.454962874],[-74.597113011,42.454771351],[-74.596921929,42.454460908],[-74.596894144,42.454376908],[-74.596795673,42.454079209],[-74.59686217,42.453745854],[-74.597049619,42.453452044],[-74.597089696,42.453389227],[-74.59734924,42.453056544],[-74.597770422,42.452605284],[-74.598095085,42.452153688],[-74.598355531,42.451678038],[-74.598584261,42.451130788],[-74.598684284,42.450583086],[-74.598655763,42.450011109],[-74.598595823,42.449319881],[-74.598524033,42.44887754],[-74.598502957,42.448747678],[-74.598345894,42.448151417],[-74.598213468,42.447440885],[-74.598190355,42.447316882],[-74.598141734,42.447157404],[-74.598001273,42.446696682],[-74.597945036,42.446380047],[-74.59790811,42.446172137],[-74.597685643,42.445742451],[-74.597639511,42.44549492],[-74.59762343,42.445408637],[-74.597656865,42.445149826],[-74.597682468,42.444918724],[-74.597218617,42.444755062],[-74.596291316,42.444366974],[-74.595473671,42.443938758],[-74.595066615,42.44345122],[-74.594852417,42.442741573],[-74.594776386,42.441809614],[-74.595165865,42.440778039],[-74.595328083,42.440375236],[-74.59563828,42.439604969],[-74.596009411,42.438656832],[-74.59634548,42.4374293],[-74.59665101,42.435888298],[-74.59668117,42.434747668],[-74.596847946,42.434322919],[-74.597364282,42.433750024],[-74.597367199,42.433294315],[-74.59743912,42.432737581],[-74.597276947,42.431641764],[-74.596602086,42.430025653],[-74.595582475,42.428105761],[-74.595509117,42.427637976],[-74.595285198,42.42734726],[-74.594942377,42.427123707],[-74.594911148,42.427103342],[-74.594349126,42.426892661],[-74.593989465,42.426503828],[-74.593629992,42.426085176],[-74.593352172,42.425487937],[-74.593194881,42.424920935],[-74.593278436,42.424444229],[-74.593361614,42.424027152],[-74.593524103,42.423789228],[-74.593636725,42.423619141],[-74.593366045,42.423341469],[-74.592885505,42.422982015],[-74.592366852,42.422294478],[-74.591770838,42.421129662],[-74.591292065,42.420501891],[-74.59077209,42.420023031],[-74.590614064,42.419575279],[-74.590617167,42.419098293],[-74.590822211,42.418502769],[-74.591228824,42.41784834],[-74.591675275,42.417253678],[-74.591961352,42.416569002],[-74.592166579,42.415943662],[-74.592291721,42.415258415],[-74.592535818,42.414841903],[-74.592900029,42.414515256],[-74.593103893,42.414098611],[-74.593066555,42.413651279],[-74.592868479,42.413173579],[-74.592829409,42.412994565],[-74.592831338,42.412696439],[-74.592794184,42.412219302],[-74.592796113,42.411921184],[-74.592637316,42.41159268],[-74.59247851,42.411264175],[-74.592158029,42.411054348],[-74.591718204,42.410635403],[-74.591318028,42.410306037],[-74.590877827,42.409946714],[-74.590518282,42.409557863],[-74.590239985,42.409050052],[-74.589840797,42.408571626],[-74.589361167,42.408092902],[-74.588881352,42.407643991],[-74.588441766,42.407195216],[-74.587922704,42.406597097],[-74.587322815,42.406058311],[-74.586962926,42.405729076],[-74.586844983,42.405311269],[-74.586927591,42.404983627],[-74.587413626,42.404478559],[-74.588141785,42.403855113],[-74.588829704,42.403231518],[-74.589397913,42.402458421],[-74.589642756,42.401922663],[-74.590089299,42.401298197],[-74.590252907,42.4008814],[-74.590175182,42.400463744],[-74.590017195,42.400015988],[-74.589779741,42.399418884],[-74.589625887,42.398982794],[-74.589261325,42.398731335],[-74.588699963,42.398461],[-74.588097404,42.398339589],[-74.587373998,42.398247548],[-74.58665118,42.398066069],[-74.585647007,42.39785375],[-74.585088069,42.397620941],[-74.584924984,42.397553015],[-74.583882574,42.397042417],[-74.582799759,42.396561472],[-74.582335831,42.396308797],[-74.581918065,42.39608126],[-74.581437992,42.395691939],[-74.58131494,42.395476184],[-74.58119945,42.395273688],[-74.581121783,42.394856025],[-74.580963882,42.394408258],[-74.580605681,42.393840503],[-74.580288694,42.393123838],[-74.580152385,42.392850296],[-74.5799315,42.392407015],[-74.579572256,42.391655639],[-74.579376208,42.391242286],[-74.579339577,42.390705514],[-74.579287652,42.390467319],[-74.579261529,42.390347476],[-74.57923338,42.390294551],[-74.579186492,42.390206398],[-74.579058198,42.390177234],[-74.578820536,42.390137171],[-74.578297915,42.390105432],[-74.577695265,42.390013774],[-74.576957993,42.389826445],[-74.576290696,42.389561402],[-74.575489584,42.389081439],[-74.574969184,42.388721748],[-74.574448729,42.388276344],[-74.574409384,42.388242672],[-74.573969833,42.387823659],[-74.573756408,42.387574808],[-74.573610725,42.387404944],[-74.573291237,42.387075811],[-74.572923637,42.386927309],[-74.572769854,42.386865185],[-74.572128037,42.386624287],[-74.571486234,42.386383385],[-74.570724394,42.386052592],[-74.570574901,42.385968596],[-74.569923165,42.385602399],[-74.569722789,42.385464341],[-74.568922508,42.384912944],[-74.568488549,42.384604192],[-74.568122126,42.384343487],[-74.567706035,42.384102608],[-74.567240917,42.383833344],[-74.565999265,42.383113145],[-74.565398954,42.382693489],[-74.564557597,42.382243097],[-74.564078155,42.381794086],[-74.563878405,42.381443587],[-74.563839777,42.381375798],[-74.5636691,42.381061904],[-74.563482412,42.380718553],[-74.563247552,42.379793465],[-74.563211273,42.379226878],[-74.563295001,42.37875019],[-74.563579145,42.378363708],[-74.563832432,42.378122151],[-74.563983922,42.377977677],[-74.564183077,42.377686099],[-74.564263415,42.377567762],[-74.564472195,42.37714477],[-74.564596938,42.376548985],[-74.5648423,42.375953661],[-74.564895549,42.375596191],[-74.56492663,42.375387539],[-74.564907836,42.375293776],[-74.564848887,42.374999674],[-74.564810902,42.374825188],[-74.564770941,42.374641624],[-74.564740779,42.374628049],[-74.564370114,42.374461225],[-74.564009288,42.374310787],[-74.563872024,42.374163793],[-74.563729901,42.374011592],[-74.563537708,42.37385733],[-74.56317011,42.373562268],[-74.562451162,42.37287383],[-74.56205283,42.372335678],[-74.561695545,42.371678425],[-74.561368256,42.370965453],[-74.561339096,42.370901927],[-74.561299474,42.370848393],[-74.560940795,42.370363774],[-74.560383759,42.369526876],[-74.559865897,42.368839191],[-74.559348057,42.368151506],[-74.559106311,42.367765383],[-74.559029979,42.367643462],[-74.558808583,42.367382489],[-74.558471739,42.366985427],[-74.558106455,42.366773285],[-74.55730683,42.366642948],[-74.557222494,42.3666292],[-74.556116192,42.366433257],[-74.555305269,42.366238448],[-74.554753381,42.365962499],[-74.55401785,42.365548931],[-74.553172357,42.365025408],[-74.552437239,42.364557064],[-74.551978902,42.364348238],[-74.551406783,42.364087562],[-74.550458279,42.363694619],[-74.550339219,42.363645294],[-74.550070722,42.363549179],[-74.549565851,42.363368447],[-74.548830006,42.363009612],[-74.548689326,42.362944257],[-74.548057243,42.362650616],[-74.54766151,42.362494151],[-74.547349131,42.362370813],[-74.546768602,42.362152674],[-74.546327744,42.361849743],[-74.546182431,42.361520602],[-74.546036533,42.361273593],[-74.545927747,42.360999362],[-74.54555994,42.360806239],[-74.545244783,42.360731821],[-74.544970238,42.360666991],[-74.544220515,42.360418778],[-74.544049459,42.360362147],[-74.543313284,42.360058029],[-74.542614218,42.359726676],[-74.54195189,42.359422844],[-74.541401113,42.359009933],[-74.541073805,42.358819014],[-74.540739396,42.358623953],[-74.540151123,42.358293029],[-74.539747158,42.358119671],[-74.539635883,42.358071919],[-74.539082935,42.357960173],[-74.539040044,42.357958011],[-74.53849461,42.357930519],[-74.537864488,42.357982647],[-74.53734665,42.35811746],[-74.536865129,42.358334561],[-74.536458039,42.358469824],[-74.536088866,42.35846833],[-74.535646876,42.358329634],[-74.534948072,42.357970855],[-74.533954971,42.35747397],[-74.533304674,42.357108085],[-74.533219687,42.357060269],[-74.53255804,42.356674241],[-74.531934125,42.356178843],[-74.531820425,42.356074605],[-74.53127412,42.355573772],[-74.530944536,42.355216477],[-74.530651244,42.354941469],[-74.530282308,42.354912579],[-74.529806655,42.354801883],[-74.529361684,42.354607607],[-74.528957261,42.354386901],[-74.528367648,42.354247577],[-74.527886126,42.354464641],[-74.527404182,42.354736464],[-74.526624872,42.35528086],[-74.525402756,42.355983187],[-74.525253032,42.35606923],[-74.524214451,42.356722065],[-74.523282062,42.357221502],[-74.52324529,42.357240525],[-74.522065656,42.357726216],[-74.520990714,42.358296725],[-74.520847441,42.358387455],[-74.52017459,42.358813544],[-74.519516299,42.359122135],[-74.519248323,42.359247753],[-74.518285547,42.359627041],[-74.516989868,42.360087067],[-74.516487399,42.360307788],[-74.516248999,42.360412511],[-74.515064254,42.360845592],[-74.513509627,42.361453854],[-74.51347191,42.36146861],[-74.513389738,42.361502595],[-74.512620039,42.361820935],[-74.511730815,42.362227861],[-74.511100004,42.362635883],[-74.510729108,42.362853353],[-74.510137554,42.362960348],[-74.50958419,42.362903218],[-74.509216273,42.362737364],[-74.508996032,42.362572134],[-74.509071369,42.362380792],[-74.509332997,42.361971202],[-74.509335979,42.361587884],[-74.509340029,42.36106767],[-74.509158413,42.360683561],[-74.508976385,42.360354215],[-74.508682964,42.360106528],[-74.508573702,42.359914394],[-74.508649677,42.359640919],[-74.508947572,42.359313622],[-74.509319505,42.358959268],[-74.509580053,42.358686573],[-74.509730276,42.358358652],[-74.509696981,42.357893033],[-74.509852941,42.35682585],[-74.509822198,42.356031685],[-74.50976272,42.355866179],[-74.509605387,42.355428384],[-74.509351241,42.354879678],[-74.509270421,42.354780298],[-74.508949018,42.354385102],[-74.508657117,42.353945763],[-74.508439053,42.353506732],[-74.508441401,42.353205553],[-74.508480446,42.35293192],[-74.508481076,42.352850844],[-74.508482366,42.352685497],[-74.508373116,42.352493363],[-74.508412373,42.352192343],[-74.508598438,42.352001474],[-74.508711098,42.351755534],[-74.50882396,42.351482207],[-74.508826305,42.351181031],[-74.508939604,42.35085295],[-74.509164703,42.350388438],[-74.509686791,42.349706152],[-74.510393848,42.348969895],[-74.511100036,42.348343154],[-74.511918008,42.347579975],[-74.512625223,42.346816319],[-74.513161797,42.346298769],[-74.513331791,42.3461348],[-74.513777245,42.345808124],[-74.514185146,42.345563429],[-74.514403721,42.345505514],[-74.514998831,42.345347828],[-74.515733548,42.345124367],[-74.515886745,42.345077772],[-74.516465978,42.344984845],[-74.516884552,42.344917693],[-74.517845645,42.344730072],[-74.519545942,42.344408641],[-74.520765087,42.344222153],[-74.521392826,42.3442247],[-74.522057595,42.344172708],[-74.522649162,42.344038271],[-74.522836196,42.343710483],[-74.522842505,42.34367899],[-74.522912904,42.343327468],[-74.522917458,42.342725112],[-74.522960792,42.341876492],[-74.523102581,42.341405349],[-74.52315008,42.341247514],[-74.523224403,42.340876428],[-74.523265146,42.340672996],[-74.523601639,42.340099403],[-74.523628103,42.340067548],[-74.524123074,42.339471803],[-74.524644501,42.338844211],[-74.525315798,42.337916046],[-74.525618881,42.337524443],[-74.525913471,42.336960186],[-74.526138395,42.336495648],[-74.526216512,42.335920971],[-74.526146001,42.335482581],[-74.525889322,42.335262476],[-74.525448339,42.335014228],[-74.524528439,42.334654462],[-74.523644832,42.334376993],[-74.52230281,42.333972212],[-74.522172038,42.333932767],[-74.521288877,42.333600516],[-74.520847703,42.333379628],[-74.520702385,42.333077833],[-74.520635597,42.332926328],[-74.520520996,42.332666362],[-74.520266428,42.332172441],[-74.519973302,42.331897406],[-74.519644146,42.33167509],[-74.519606163,42.331649436],[-74.519350146,42.331347173],[-74.519242986,42.330881255],[-74.519116907,42.330579068],[-74.519025552,42.330360111],[-74.518660097,42.329893099],[-74.51862277,42.329847786],[-74.518184779,42.329316103],[-74.517909669,42.329047594],[-74.517818505,42.328958617],[-74.517416978,42.328590225],[-74.517158922,42.328353462],[-74.516901222,42.328073876],[-74.516500188,42.327638776],[-74.516098708,42.327062092],[-74.515770608,42.326540472],[-74.515443991,42.325827182],[-74.515302288,42.325059925],[-74.515269808,42.324484787],[-74.515179,42.324036811],[-74.515092044,42.323607846],[-74.51509625,42.32306025],[-74.515247826,42.322540656],[-74.515510507,42.321966766],[-74.515774656,42.321201215],[-74.515889331,42.320681464],[-74.515992845,42.320254154],[-74.516041734,42.32005235],[-74.515854268,42.319626925],[-74.515787881,42.319476276],[-74.515587666,42.319021909],[-74.515497773,42.318817905],[-74.514985886,42.31821336],[-74.514327493,42.317471293],[-74.513523865,42.316427417],[-74.513010328,42.316041903],[-74.51238423,42.315902331],[-74.511757487,42.315844908],[-74.51098318,42.315786843],[-74.509766389,42.315699504],[-74.50899252,42.315586671],[-74.5082195,42.315364312],[-74.507298916,42.315141315],[-74.50648966,42.314836643],[-74.505901116,42.314615064],[-74.505315945,42.314476565],[-74.504685858,42.31433601],[-74.504452089,42.314269794],[-74.504391367,42.314252594],[-74.504135495,42.313950297],[-74.503660225,42.313400627],[-74.503380425,42.312995513],[-74.503186029,42.312714051],[-74.502747231,42.312219291],[-74.501538947,42.311064041],[-74.50069678,42.310266339],[-74.500405776,42.309744826],[-74.500409457,42.309279373],[-74.500487785,42.308704712],[-74.500632197,42.308225192],[-74.500677193,42.308075777],[-74.500796935,42.307846526],[-74.500976843,42.30750208],[-74.501094847,42.306571644],[-74.50121091,42.305887622],[-74.501216746,42.305148359],[-74.501297006,42.30432728],[-74.501304351,42.303396362],[-74.501230043,42.303126509],[-74.501159886,42.30287331],[-74.500979519,42.302491377],[-74.50057791,42.301969393],[-74.500522135,42.301898378],[-74.500163014,42.301441111],[-74.500103191,42.301364942],[-74.500020274,42.301167487],[-74.499849776,42.300761456],[-74.499597665,42.299993686],[-74.499560549,42.299847409],[-74.499347293,42.299006878],[-74.49927155,42.298742382],[-74.499096064,42.298129587],[-74.498990193,42.297526743],[-74.498882152,42.297197701],[-74.498857805,42.297165632],[-74.498726203,42.297001235],[-74.498405315,42.296867046],[-74.497963835,42.296728204],[-74.496897568,42.296312818],[-74.496052149,42.295953156],[-74.4952421,42.295785306],[-74.493769967,42.295395482],[-74.492482698,42.294951699],[-74.491526915,42.294564129],[-74.490828857,42.294232463],[-74.49057247,42.29401227],[-74.490573412,42.29389522],[-74.490574234,42.293793231],[-74.490669651,42.293449695],[-74.490688171,42.293383022],[-74.490693906,42.292671142],[-74.490737189,42.291877286],[-74.490685463,42.291490252],[-74.490667619,42.291356739],[-74.490450766,42.290808151],[-74.49008907,42.289930357],[-74.489615858,42.289161581],[-74.489401241,42.288339194],[-74.489331467,42.287846026],[-74.489372981,42.287271206],[-74.489600204,42.286532933],[-74.489646332,42.286279461],[-74.489754551,42.285684805],[-74.489901346,42.285259643],[-74.489763168,42.284616986],[-74.489326217,42.283930513],[-74.488926589,42.283189441],[-74.488681441,42.282773153],[-74.488490088,42.282448209],[-74.488140636,42.282002974],[-74.488015632,42.28184371],[-74.487465664,42.281457916],[-74.486695576,42.280934234],[-74.486366631,42.280576804],[-74.486184938,42.280247419],[-74.486224922,42.279864263],[-74.486341746,42.279227834],[-74.486457488,42.278468868],[-74.486574545,42.277675342],[-74.48658462,42.277588416],[-74.486653834,42.276991175],[-74.486621189,42.276470782],[-74.48640264,42.27594747],[-74.486075948,42.275510007],[-74.485932919,42.275373781],[-74.485527155,42.274987306],[-74.485124285,42.274656922],[-74.484648124,42.274271445],[-74.484210629,42.273667095],[-74.483480223,42.272814996],[-74.482935062,42.271854199],[-74.482771244,42.271580377],[-74.48242588,42.271003091],[-74.4821723,42.270454321],[-74.481991555,42.27001541],[-74.481838208,42.269760738],[-74.481809703,42.269713395],[-74.481789228,42.269686959],[-74.481554341,42.26938367],[-74.48104048,42.269107534],[-74.480489089,42.268913369],[-74.47964279,42.268717863],[-74.478980362,42.268577953],[-74.478355926,42.268301302],[-74.477916049,42.267998107],[-74.477438407,42.267804264],[-74.476885896,42.267746987],[-74.476371176,42.26758035],[-74.475820709,42.267276642],[-74.474903226,42.266779583],[-74.474282466,42.266064832],[-74.47400295,42.265713912],[-74.47384467,42.265515198],[-74.473590279,42.265075933],[-74.473225305,42.264636163],[-74.472601846,42.264249962],[-74.471757462,42.263835357],[-74.470657809,42.263090992],[-74.470175532,42.262812793],[-74.469557267,42.262456143],[-74.468935461,42.26187826],[-74.46838716,42.261328101],[-74.467726907,42.260941703],[-74.467212947,42.260692889],[-74.466587729,42.260525694],[-74.465448092,42.260164428],[-74.464455449,42.259858605],[-74.463389789,42.259470287],[-74.462287045,42.259109171],[-74.461736961,42.25877802],[-74.461603467,42.258644038],[-74.461408039,42.258447894],[-74.461191083,42.257954016],[-74.461125298,42.257022749],[-74.461059508,42.256091484],[-74.46099455,42.255464525],[-74.460957329,42.255105278],[-74.460889452,42.254420429],[-74.460490339,42.253679263],[-74.459795701,42.253018842],[-74.458843548,42.252302444],[-74.45807313,42.251888089],[-74.457558574,42.251721366],[-74.457008818,42.251362816],[-74.456606716,42.250977574],[-74.455910968,42.250454033],[-74.455360985,42.250122843],[-74.454552575,42.249845196],[-74.453559438,42.249621417],[-74.452986469,42.249565428],[-74.452897612,42.249527356],[-74.452672535,42.249414316],[-74.452640008,42.24939798],[-74.452618439,42.249373605],[-74.452348031,42.249068012],[-74.451800219,42.248490389],[-74.451143052,42.247775334],[-74.450046298,42.246756978],[-74.449388692,42.24609667],[-74.448912246,42.24579319],[-74.448725954,42.245761489],[-74.448624944,42.245744301],[-74.448249892,42.245680481],[-74.447514079,42.245540035],[-74.446704326,42.245426608],[-74.445488503,42.245393358],[-74.445095006,42.245441807],[-74.444418641,42.245525082],[-74.44342248,42.245657157],[-74.442353332,42.245706729],[-74.44178612,42.245703971],[-74.441542622,42.245702784],[-74.441374298,42.245618222],[-74.441102339,42.245481591],[-74.440441936,42.245149793],[-74.440222195,42.244949486],[-74.439747355,42.244516635],[-74.439276141,42.243701804],[-74.439239215,42.243637952],[-74.439024432,42.24292499],[-74.438849402,42.241883651],[-74.438891838,42.241254094],[-74.438895961,42.24078863],[-74.438788084,42.240486907],[-74.438606754,42.240157449],[-74.43838956,42.23971828],[-74.438281933,42.239389179],[-74.438176754,42.238872113],[-74.438216733,42.238430515],[-74.43827237,42.238302544],[-74.438442428,42.237911378],[-74.438856223,42.236955064],[-74.438904377,42.236846901],[-74.439269767,42.236026117],[-74.439330612,42.235843034],[-74.439496895,42.235342694],[-74.439611065,42.234932534],[-74.439504408,42.234493916],[-74.439325996,42.23383589],[-74.439003866,42.232766452],[-74.438878996,42.23242798],[-74.438680036,42.231888664],[-74.438508441,42.231189401],[-74.438431129,42.23087434],[-74.43840059,42.230162278],[-74.438369335,42.229532351],[-74.43837249,42.229176411],[-74.438080436,42.228873788],[-74.437530745,42.22854252],[-74.436650949,42.228045339],[-74.435882177,42.227493929],[-74.435332995,42.227107888],[-74.43449033,42.226583496],[-74.433831868,42.226060003],[-74.433135847,42.225618468],[-74.432550097,42.225204845],[-74.432368609,42.224902753],[-74.43222469,42.224518708],[-74.432156161,42.22394336],[-74.432162541,42.223231479],[-74.432131841,42.222546793],[-74.432081678,42.222217558],[-74.432047369,42.2219924],[-74.432027464,42.221861741],[-74.431848193,42.22131323],[-74.431630119,42.220983569],[-74.431080036,42.220707033],[-74.430456785,42.22037536],[-74.430017703,42.220044607],[-74.429868919,42.219898826],[-74.42965256,42.219686829],[-74.429288394,42.21921954],[-74.429145496,42.218725965],[-74.428711863,42.217792843],[-74.428461337,42.216969692],[-74.428284426,42.216175207],[-74.428208628,42.216031566],[-74.428139562,42.215900678],[-74.428105202,42.215626693],[-74.42818306,42.215161594],[-74.428298008,42.214669302],[-74.428414431,42.214012734],[-74.42846816,42.213876409],[-74.428640612,42.213438851],[-74.428718712,42.212946373],[-74.428870722,42.212426886],[-74.429171284,42.211771227],[-74.429507695,42.211225276],[-74.429993377,42.21046101],[-74.430330267,42.209860292],[-74.430517361,42.209532647],[-74.430561922,42.20940381],[-74.430592992,42.209313973],[-74.430483734,42.209176519],[-74.430440272,42.209146501],[-74.430044492,42.208873142],[-74.429456945,42.208678552],[-74.429165853,42.208604804],[-74.428905746,42.208538903],[-74.428780035,42.208461924],[-74.428319698,42.208180033],[-74.427477342,42.207655578],[-74.426853978,42.20735127],[-74.426304532,42.207019949],[-74.426139341,42.206841968],[-74.426049213,42.206744858],[-74.426036143,42.206617929],[-74.426015363,42.206416114],[-74.425944923,42.206059799],[-74.425838904,42.20556641],[-74.425816509,42.20550224],[-74.425757392,42.205332842],[-74.425695316,42.205154965],[-74.425551233,42.204798288],[-74.42533275,42.204523379],[-74.424892335,42.204301754],[-74.424563131,42.204108798],[-74.424013722,42.203777468],[-74.423608382,42.203591693],[-74.423061027,42.203340826],[-74.422986826,42.20330682],[-74.422563657,42.203167483],[-74.422142332,42.203028753],[-74.42144972,42.202779243],[-74.421371489,42.202751058],[-74.421078886,42.202530526],[-74.420787287,42.202200477],[-74.420384455,42.201952013],[-74.419981883,42.201676164],[-74.419652971,42.201400684],[-74.419288733,42.20096074],[-74.418962838,42.200356699],[-74.418710839,42.199725652],[-74.418421525,42.199149174],[-74.41813096,42.198709593],[-74.418022493,42.198586811],[-74.417839383,42.19837954],[-74.417407054,42.197862768],[-74.417043824,42.197600086],[-74.416993654,42.197563806],[-74.417203737,42.19745802],[-74.417961664,42.197093232],[-74.419070838,42.196605987],[-74.42003146,42.196254893],[-74.421304283,42.195815789],[-74.421361289,42.195796123],[-74.421453977,42.195741749],[-74.422101713,42.195361755],[-74.422485312,42.195187835],[-74.422878199,42.195009701],[-74.423143956,42.194839129],[-74.423470814,42.19462934],[-74.424395061,42.19422326],[-74.424987411,42.193870276],[-74.425507607,42.193352628],[-74.425894782,42.192903492],[-74.425954153,42.192834617],[-74.426364618,42.192234279],[-74.426811405,42.191688887],[-74.427443994,42.190952741],[-74.428074759,42.190272792],[-74.428373094,42.189999028],[-74.428655251,42.189925668],[-74.428889783,42.189864689],[-74.428988421,42.189844263],[-74.42966444,42.189704261],[-74.430375215,42.189667148],[-74.430622196,42.18965425],[-74.431359284,42.189575761],[-74.431839393,42.189413857],[-74.432071221,42.189230649],[-74.432162017,42.189158895],[-74.432321448,42.189032899],[-74.432425935,42.188922242],[-74.43254822,42.188792734],[-74.432655994,42.188678593],[-74.432918367,42.188159643],[-74.433108317,42.187503431],[-74.43318587,42.187065706],[-74.43333607,42.186737873],[-74.433404488,42.186646043],[-74.433559649,42.18643778],[-74.433724585,42.186308093],[-74.434023558,42.186073009],[-74.434078739,42.186029621],[-74.434233732,42.185953874],[-74.434538314,42.185805019],[-74.434744352,42.185704326],[-74.435336332,42.185378657],[-74.435819064,42.184915553],[-74.436189167,42.184698313],[-74.436707252,42.184399662],[-74.437041738,42.18404535],[-74.437414014,42.183581687],[-74.437749464,42.183117851],[-74.437938393,42.182571144],[-74.437942272,42.182133061],[-74.438020741,42.181585812],[-74.438027046,42.180873923],[-74.438067008,42.180518164],[-74.4382385,42.180403736],[-74.438374426,42.180313036],[-74.43847438,42.180246341],[-74.438542133,42.180243524],[-74.439063616,42.180221843],[-74.439506332,42.180114475],[-74.439987314,42.179843014],[-74.440321757,42.179488683],[-74.440692777,42.179161916],[-74.441136927,42.178890264],[-74.441653979,42.17870111],[-74.442465277,42.178540772],[-74.443350199,42.178380778],[-74.44405286,42.178273643],[-74.4446049,42.178030895],[-74.445013652,42.177594771],[-74.445200815,42.177239714],[-74.445572514,42.176830787],[-74.445808204,42.176546948],[-74.445985245,42.176333733],[-74.446093358,42.176203532],[-74.446171007,42.176061812],[-74.44622759,42.17595854],[-74.446617058,42.1752477],[-74.446680319,42.175142019],[-74.446878543,42.174810859],[-74.447049265,42.174629948],[-74.447212921,42.174456515],[-74.447401018,42.173991933],[-74.447477977,42.173608959],[-74.447592693,42.173116644],[-74.447719379,42.172767727],[-74.447781256,42.172597303],[-74.447869396,42.172493898],[-74.448148518,42.172166424],[-74.4486364,42.171615679],[-74.448896262,42.171436788],[-74.449228891,42.171207802],[-74.44993155,42.17082783],[-74.450781188,42.170475945],[-74.451778527,42.170069985],[-74.452884378,42.169883599],[-74.453768917,42.1697509],[-74.454395795,42.16961698],[-74.455503275,42.169238896],[-74.456064076,42.16902461],[-74.456352637,42.168914349],[-74.457608016,42.168454801],[-74.458478168,42.168071977],[-74.458531667,42.168048441],[-74.459381687,42.167641727],[-74.45982684,42.167233101],[-74.460014365,42.166823261],[-74.460053264,42.166577005],[-74.460189159,42.166255683],[-74.460203506,42.166221757],[-74.460390561,42.165866672],[-74.460448894,42.165798203],[-74.460762317,42.165430315],[-74.461245187,42.164912328],[-74.461837987,42.164449628],[-74.462617119,42.163713971],[-74.463541362,42.163225435],[-74.46424269,42.162982274],[-74.464981968,42.16260238],[-74.465315731,42.162302738],[-74.465539312,42.161975203],[-74.465873519,42.161620793],[-74.466428768,42.161240043],[-74.467131213,42.160859962],[-74.468202812,42.160344686],[-74.469200567,42.159856436],[-74.47023441,42.159450483],[-74.470915747,42.159200942],[-74.470972708,42.15918008],[-74.47152517,42.159127858],[-74.471966545,42.159157271],[-74.47266325,42.159461672],[-74.472730402,42.159488364],[-74.473360202,42.159738692],[-74.474130516,42.160043423],[-74.474753871,42.160320098],[-74.474853382,42.160357686],[-74.475414259,42.16056955],[-74.475730272,42.160752722],[-74.475890409,42.160845545],[-74.476220274,42.161011343],[-74.476624415,42.161095335],[-74.477213236,42.161098019],[-74.47780297,42.160991178],[-74.478908361,42.160831912],[-74.480014645,42.160563112],[-74.481048218,42.160184449],[-74.481823509,42.159798123],[-74.482082885,42.159668875],[-74.482705207,42.159386114],[-74.482858601,42.159316417],[-74.482923338,42.159264077],[-74.483229061,42.159016889],[-74.483782848,42.158800323],[-74.484114935,42.15869229],[-74.484927215,42.15836736],[-74.485407829,42.158095699],[-74.48600017,42.157660252],[-74.48648189,42.157251684],[-74.486927021,42.156815564],[-74.487151136,42.156405843],[-74.487409868,42.155958321],[-74.487561666,42.155695755],[-74.487933849,42.155177166],[-74.488196292,42.154575941],[-74.488496406,42.153865357],[-74.488497577,42.153719873],[-74.488500814,42.153317739],[-74.488431185,42.152824557],[-74.488252276,42.152193985],[-74.488146958,42.151563738],[-74.488118329,42.150550488],[-74.488233571,42.149948607],[-74.488384719,42.14945641],[-74.488719613,42.148992411],[-74.489238483,42.148529229],[-74.490089805,42.147903241],[-74.490718379,42.147522685],[-74.491198447,42.147305764],[-74.491898195,42.147226719],[-74.492708091,42.147175543],[-74.493444833,42.147069273],[-74.494292607,42.146881339],[-74.494956849,42.146637826],[-74.495290387,42.146338095],[-74.495806798,42.146176081],[-74.496396134,42.146096521],[-74.496800857,42.146098298],[-74.497052891,42.146014369],[-74.497206664,42.145963163],[-74.49765099,42.145609153],[-74.498131463,42.145337436],[-74.498590779,42.145112443],[-74.498685511,42.145066039],[-74.499238474,42.144931548],[-74.49979079,42.144879198],[-74.499974182,42.144879997],[-74.500269097,42.144881281],[-74.500821197,42.144856297],[-74.50126399,42.144693938],[-74.501633848,42.144449106],[-74.501856323,42.144231019],[-74.502227511,42.143957975],[-74.502374402,42.143849922],[-74.502780827,42.143632633],[-74.503139063,42.143489216],[-74.503186818,42.143470098],[-74.503359383,42.143372497],[-74.50351626,42.143283768],[-74.503667252,42.143198365],[-74.504259113,42.142790191],[-74.504776539,42.142491225],[-74.505183159,42.14224655],[-74.505625924,42.142084164],[-74.506031486,42.141976384],[-74.506400023,42.141895824],[-74.506880429,42.141624078],[-74.507065653,42.14146058],[-74.507583479,42.141106839],[-74.507990713,42.140780008],[-74.508324784,42.140398094],[-74.508367507,42.140309635],[-74.508549127,42.139933571],[-74.508700305,42.139413968],[-74.508927178,42.138620866],[-74.509229735,42.137554268],[-74.509529743,42.136816249],[-74.510014529,42.135969481],[-74.510081662,42.135898527],[-74.510607484,42.13534275],[-74.511274978,42.134715293],[-74.512088904,42.134116357],[-74.513309975,42.133190564],[-74.514455984,42.132456116],[-74.515531209,42.131637871],[-74.516785523,42.130877805],[-74.517858084,42.130115624],[-74.518597074,42.129680621],[-74.51868414,42.1296112],[-74.519041177,42.129326518],[-74.519226541,42.129135621],[-74.519228818,42.128834431],[-74.518826689,42.128504166],[-74.518471679,42.128203465],[-74.518241901,42.128008839],[-74.517179778,42.127401974],[-74.516733687,42.127156416],[-74.516227384,42.126877711],[-74.515422354,42.126326673],[-74.515138746,42.12611314],[-74.514873764,42.125913628],[-74.514371619,42.125400225],[-74.513778697,42.124813721],[-74.513231596,42.124209],[-74.512500822,42.123576119],[-74.511733062,42.122970455],[-74.511100616,42.122450884],[-74.510526917,42.121979568],[-74.509540631,42.121099136],[-74.508958307,42.120302572],[-74.508552892,42.119683019],[-74.50806514,42.11915786],[-74.507506753,42.118684705],[-74.506842181,42.118315705],[-74.506177399,42.117972854],[-74.505776762,42.117861],[-74.50569024,42.117836843],[-74.505511417,42.117786917],[-74.504669808,42.117600211],[-74.504037329,42.11762363],[-74.503299668,42.117620439],[-74.502808103,42.117592158],[-74.502282027,42.117485263],[-74.501756352,42.117326065],[-74.500985009,42.117139637],[-74.500179164,42.116874599],[-74.499513826,42.116610167],[-74.498778239,42.116345427],[-74.498324089,42.116029599],[-74.498114568,42.115871766],[-74.498082128,42.115531632],[-74.4981906,42.115139809],[-74.498475717,42.114617985],[-74.498549889,42.114121399],[-74.498662688,42.113180373],[-74.498741172,42.112134583],[-74.498716149,42.110852962],[-74.498795866,42.109650259],[-74.498980332,42.10852647],[-74.499090024,42.107977734],[-74.499131937,42.107114852],[-74.499158953,42.106961227],[-74.499239909,42.106500904],[-74.499279005,42.106278588],[-74.499271057,42.106181213],[-74.499257784,42.106018595],[-74.499214945,42.105493704],[-74.498903192,42.10494313],[-74.498416468,42.10431332],[-74.497508531,42.103655518],[-74.49652852,42.103232764],[-74.495793721,42.102889543],[-74.494255372,42.102019718],[-74.493241123,42.10149218],[-74.492824086,42.100941115],[-74.49265755,42.100678755],[-74.492407889,42.100285437],[-74.492375903,42.099892998],[-74.492302985,42.099436559],[-74.492275557,42.099264875],[-74.492207542,42.099092305],[-74.492069038,42.098740893],[-74.491582847,42.098058749],[-74.491168145,42.097220003],[-74.490787951,42.096459872],[-74.490615629,42.096133397],[-74.490372853,42.095673428],[-74.489813754,42.095330949],[-74.489429799,42.095041557],[-74.489356247,42.094920973],[-74.489221848,42.094700638],[-74.489015146,42.094202805],[-74.488739499,42.093547738],[-74.488712053,42.093480927],[-74.488395083,42.092709296],[-74.488362082,42.092542897],[-74.488260108,42.092028704],[-74.488158974,42.091505191],[-74.488092107,42.091086433],[-74.488094841,42.09074645],[-74.488657892,42.090592044],[-74.489363052,42.090229037],[-74.490138226,42.089892488],[-74.490808066,42.089555468],[-74.491337026,42.08927013],[-74.491830661,42.089010777],[-74.492148953,42.088724503],[-74.492679981,42.088177625],[-74.493177155,42.087473681],[-74.493672435,42.087005106],[-74.494168746,42.086405766],[-74.494663386,42.086015648],[-74.495158852,42.085520917],[-74.495757772,42.085262007],[-74.49639159,42.085029411],[-74.496849656,42.084822199],[-74.497518776,42.084563591],[-74.497979162,42.084304522],[-74.498118296,42.084226227],[-74.498506128,42.084018693],[-74.498754154,42.083732084],[-74.498967676,42.083366869],[-74.499116054,42.083203156],[-74.49918017,42.083132416],[-74.499232282,42.083111536],[-74.499466766,42.083017586],[-74.499567589,42.082977189],[-74.500024809,42.082874567],[-74.500798606,42.082694856],[-74.501466869,42.082540844],[-74.502135333,42.082360668],[-74.502379299,42.082253058],[-74.502663773,42.082127578],[-74.503228753,42.081711575],[-74.503793714,42.081295561],[-74.504034569,42.081015091],[-74.504218863,42.080800484],[-74.5046087,42.080331407],[-74.505067313,42.080045701],[-74.505525505,42.079812295],[-74.50572259,42.079753221],[-74.506299657,42.079580246],[-74.506827865,42.07937329],[-74.507292958,42.079215118],[-74.507708123,42.079037073],[-74.507920581,42.078802603],[-74.508064224,42.07838476],[-74.508138479,42.077862012],[-74.508213729,42.077208495],[-74.50825268,42.076711748],[-74.508213767,42.076489617],[-74.508151805,42.07613594],[-74.508016442,42.075481527],[-74.507809867,42.074957567],[-74.507763835,42.074887978],[-74.507532275,42.074537924],[-74.507079378,42.074091369],[-74.506453003,42.073382534],[-74.506035221,42.072936127],[-74.505409074,42.072201133],[-74.505167228,42.071703176],[-74.504961289,42.071100758],[-74.504936525,42.070952614],[-74.504860668,42.070498788],[-74.504865141,42.069923421],[-74.504866156,42.069792666],[-74.504870831,42.069716621],[-74.504906335,42.069139007],[-74.504871793,42.068971961],[-74.504771016,42.068484583],[-74.504750072,42.068395832],[-74.50463509,42.067908617],[-74.504255312,42.067096226],[-74.50415449,42.066520414],[-74.503842679,42.06599599],[-74.503670043,42.065629097],[-74.503709415,42.065080041],[-74.503924475,42.064505592],[-74.504188801,42.064238052],[-74.504490509,42.063932667],[-74.505162221,42.063307876],[-74.505835698,42.062787005],[-74.505868417,42.0627617],[-74.506432382,42.06245028],[-74.50667988,42.062215963],[-74.506823303,42.06182428],[-74.506720442,42.061509993],[-74.506336623,42.061220649],[-74.506057884,42.060957915],[-74.505992279,42.060822826],[-74.505816066,42.06045996],[-74.505645335,42.059831095],[-74.505406501,42.05896744],[-74.505199787,42.058469635],[-74.504886784,42.058102135],[-74.504865785,42.058077478],[-74.504573788,42.057734637],[-74.50429732,42.057184216],[-74.504281277,42.057141436],[-74.504159795,42.056817473],[-74.50405675,42.056529342],[-74.503777634,42.056318906],[-74.503218399,42.056028793],[-74.502826571,42.055734726],[-74.502205816,42.055370571],[-74.501857348,42.055055214],[-74.501806316,42.055011923],[-74.501578452,42.054818621],[-74.500703824,42.054474822],[-74.500074428,42.054184396],[-74.499736259,42.054122832],[-74.49933853,42.054050421],[-74.49856693,42.053994742],[-74.497445448,42.053806767],[-74.496359273,42.053592775],[-74.495869443,42.053407547],[-74.495380033,42.053170013],[-74.495186335,42.053053124],[-74.494856149,42.052853871],[-74.494613007,42.052538954],[-74.494546554,42.052067898],[-74.49465473,42.051702226],[-74.494880435,42.051281363],[-74.495046528,42.050971652],[-74.495473184,42.050267381],[-74.495513101,42.050216026],[-74.49578148,42.049870718],[-74.496040407,42.049537567],[-74.496429066,42.049199276],[-74.496712874,42.048808218],[-74.4968555,42.048521158],[-74.496893063,42.048207478],[-74.496827431,42.047631808],[-74.496620613,42.047160139],[-74.496204734,42.046504478],[-74.495824972,42.0457182],[-74.495409731,42.044984076],[-74.495316234,42.044806822],[-74.495202312,42.044590855],[-74.49509279,42.044104468],[-74.49506673,42.043988728],[-74.495034543,42.043622434],[-74.49514353,42.04315215],[-74.495428976,42.042551873],[-74.495748466,42.042082513],[-74.496013106,42.041738245],[-74.49620931,42.041483003],[-74.49635162,42.041332414],[-74.496775413,42.040883954],[-74.497104383,42.040457079],[-74.497378029,42.040101984],[-74.497980014,42.03939847],[-74.49847447,42.038982171],[-74.498809938,42.038716004],[-74.498933428,42.038618025],[-74.499022647,42.038523146],[-74.499202889,42.038331476],[-74.499251844,42.038279417],[-74.499253691,42.038044042],[-74.499045037,42.037807751],[-74.498732173,42.037440232],[-74.498139475,42.036966878],[-74.497827648,42.036468596],[-74.497619635,42.036153841],[-74.497236833,42.035759861],[-74.496930462,42.035459312],[-74.496885121,42.035406481],[-74.496786138,42.035077891],[-74.496458014,42.035024365],[-74.49638924,42.035013143],[-74.495942684,42.034892034],[-74.495464734,42.034699299],[-74.494764163,42.034362598],[-74.494190713,42.034121765],[-74.493872213,42.033977386],[-74.493629379,42.033842974],[-74.493394833,42.033713147],[-74.493076906,42.033497273],[-74.492855058,42.033257996],[-74.492537514,42.032994466],[-74.492219404,42.032802416],[-74.491647293,42.032394777],[-74.491170516,42.032059042],[-74.490884587,42.03187648],[-74.49075709,42.031795077],[-74.490406833,42.031626713],[-74.489864047,42.031552812],[-74.489224806,42.03154997],[-74.488342993,42.031567958],[-74.488268436,42.031577517],[-74.487657883,42.031638309],[-74.48720974,42.031734424],[-74.487136269,42.031737374],[-74.486634358,42.031779382],[-74.486154118,42.031822224],[-74.485689023,42.031820139],[-74.485450947,42.031819073],[-74.484971513,42.031816922],[-74.484396313,42.031791347],[-74.483757329,42.031763808],[-74.483061884,42.031664553],[-74.482895304,42.031640778],[-74.482383699,42.031636983],[-74.482095866,42.031684835],[-74.481870969,42.031826804],[-74.481454095,42.031991732],[-74.481101159,42.032156947],[-74.480811941,42.032346275],[-74.480268182,42.032464421],[-74.479851309,42.032556397],[-74.479211665,42.032650257],[-74.478345573,42.032782098],[-74.478147442,42.032808398],[-74.47803731,42.032824917],[-74.477964493,42.032837457],[-74.477483141,42.032903087],[-74.477035464,42.032924882],[-74.476620331,42.03287533],[-74.476045985,42.03275356],[-74.475504186,42.03256044],[-74.474643148,42.032318205],[-74.473941939,42.032076697],[-74.473304651,42.031835475],[-74.472635026,42.031641756],[-74.471965,42.031495701],[-74.471421842,42.031469366],[-74.470974568,42.03144348],[-74.470465149,42.031202833],[-74.470115939,42.030915261],[-74.469931366,42.030534497],[-74.469895968,42.030461468],[-74.469835803,42.030008423],[-74.469775455,42.029579208],[-74.469620196,42.0290304],[-74.46946376,42.028624569],[-74.469443207,42.028565642],[-74.469338897,42.028266545],[-74.469118939,42.027812759],[-74.46889859,42.027406624],[-74.468550596,42.026976077],[-74.467978493,42.026592147],[-74.467374242,42.026231896],[-74.466737845,42.025895322],[-74.466292473,42.025631234],[-74.466145116,42.02553582],[-74.466030965,42.025459908],[-74.465818454,42.025316963],[-74.4657346,42.0252578],[-74.465434703,42.025031382],[-74.465212784,42.024815877],[-74.464960106,42.024457244],[-74.464675884,42.024050811],[-74.46432754,42.023667905],[-74.464114444,42.023478585],[-74.463788256,42.02318879],[-74.46324818,42.022804985],[-74.462771212,42.022516794],[-74.462134474,42.022227853],[-74.461728461,42.022132612],[-74.461112837,42.022103912],[-74.460537607,42.02210121],[-74.459930014,42.022146014],[-74.459354171,42.02221479],[-74.458555025,42.022234858],[-74.457820215,42.022207555],[-74.457149715,42.022132899],[-74.456383348,42.022057783],[-74.455648732,42.02200664],[-74.455010607,42.021884463],[-74.454532463,42.021739209],[-74.454246068,42.02159487],[-74.454093963,42.021422363],[-74.454062035,42.021377438],[-74.454024936,42.021312959],[-74.453989273,42.02124462],[-74.45396451,42.021184211],[-74.453899236,42.021045131],[-74.453775489,42.020671287],[-74.453613851,42.020392509],[-74.453554236,42.020280925],[-74.453269688,42.019922121],[-74.452888663,42.019634347],[-74.452378998,42.019441281],[-74.451837385,42.019248051],[-74.451264233,42.019007013],[-74.450659532,42.018718162],[-74.450246363,42.018454052],[-74.450117981,42.018332793],[-74.449992776,42.018214538],[-74.449963894,42.017856951],[-74.44993523,42.017475533],[-74.449906347,42.017117946],[-74.449686782,42.016640289],[-74.449498338,42.016258105],[-74.448990767,42.015826733],[-74.448785649,42.015720115],[-74.448481762,42.015562155],[-74.447875667,42.015440092],[-74.447072922,42.015436391],[-74.446501438,42.015457301],[-74.445766504,42.015453755],[-74.445063923,42.015402707],[-74.44483114,42.015362947],[-74.444489585,42.015304607],[-74.443629108,42.015038306],[-74.442896675,42.014748793],[-74.441973552,42.014339201],[-74.441300047,42.013959667],[-74.441236072,42.013922978],[-74.44066931,42.013665611],[-74.44000143,42.013304908],[-74.439492692,42.013016464],[-74.4390464,42.012895135],[-74.438631229,42.012869271],[-74.438151943,42.012866926],[-74.437640909,42.012840597],[-74.437035487,42.012646984],[-74.43646097,42.012572676],[-74.436130134,42.012571052],[-74.435885829,42.012569853],[-74.435571239,42.012705781],[-74.435340521,42.01280547],[-74.43517726,42.012888],[-74.434826965,42.013065076],[-74.434409041,42.013348977],[-74.434086348,42.013704834],[-74.433917187,42.013988063],[-74.433859293,42.014084998],[-74.433311012,42.014654209],[-74.432696605,42.01531772],[-74.432440099,42.015593185],[-74.432402319,42.015636108],[-74.43228735,42.015772995],[-74.43195539,42.016172628],[-74.431868773,42.016291832],[-74.431696578,42.016528803],[-74.431423425,42.016742227],[-74.431246029,42.016884019],[-74.430898801,42.01706423],[-74.430700251,42.017167274],[-74.430283346,42.017332015],[-74.429739262,42.017424635],[-74.429323203,42.017494056],[-74.428843243,42.017563155],[-74.42845872,42.01768039],[-74.427721613,42.017915025],[-74.427017106,42.018078321],[-74.426569517,42.018099912],[-74.425962368,42.018096877],[-74.425419131,42.01809416],[-74.424843934,42.018091278],[-74.424204719,42.018089421],[-74.423566368,42.018013382],[-74.422895955,42.017938517],[-74.422161859,42.01783951],[-74.421714917,42.017789599],[-74.421267545,42.017787343],[-74.420627782,42.017880933],[-74.42013837,42.017915856],[-74.420084437,42.017917166],[-74.419988921,42.017915778],[-74.419409504,42.017886681],[-74.418998956,42.017752055],[-74.418821848,42.017618183],[-74.418713311,42.017536139],[-74.418364627,42.017224578],[-74.417952479,42.016865041],[-74.417571851,42.016553316],[-74.417224049,42.016146444],[-74.417066064,42.015987111],[-74.416844081,42.015763232],[-74.41646499,42.01528471],[-74.416118508,42.014734855],[-74.41561446,42.013945898],[-74.415236044,42.013395886],[-74.414940719,42.012993004],[-74.414914243,42.012970594],[-74.414444651,42.012581627],[-74.41390518,42.012173766],[-74.41346004,42.011933194],[-74.412950554,42.011739944],[-74.412717437,42.011677757],[-74.412428577,42.011600699],[-74.412313056,42.011569879],[-74.412124897,42.011568916],[-74.411667527,42.011566573],[-74.41157816,42.011566115],[-74.410874562,42.011633994],[-74.409690354,42.011842383],[-74.408410286,42.012050256],[-74.407448856,42.01235509],[-74.406198281,42.012825224],[-74.405141182,42.013105711],[-74.404339483,42.013411347],[-74.403569714,42.013717136],[-74.403057138,42.013857456],[-74.402225022,42.0139961],[-74.40164964,42.014016937],[-74.401106438,42.014014104],[-74.400372189,42.013938783],[-74.399925517,42.013864953],[-74.399382543,42.013838287],[-74.398998884,42.013860105],[-74.398583053,42.013905588],[-74.398341692,42.013904324],[-74.398231565,42.013903747],[-74.397561451,42.013804916],[-74.397101176,42.013724542],[-74.396924495,42.013694923],[-74.396367529,42.013458462],[-74.39580798,42.013119569],[-74.395683222,42.013056306],[-74.395239907,42.012743272],[-74.395074591,42.01263736],[-74.39453994,42.012311553],[-74.394000147,42.011951256],[-74.393493442,42.011471985],[-74.393415813,42.011406347],[-74.392954569,42.011016359],[-74.392480051,42.010513424],[-74.392037735,42.009986816],[-74.391533329,42.00926925],[-74.391186413,42.008790803],[-74.391018124,42.008492093],[-74.390896089,42.008291564],[-74.390808336,42.008156098],[-74.390790292,42.008125451],[-74.390588453,42.00783443],[-74.390304317,42.007475474],[-74.390020636,42.007068859],[-74.389481597,42.006637049],[-74.388845582,42.006323879],[-74.388471801,42.006181988],[-74.388229808,42.006116469],[-74.388113033,42.00608167],[-74.388050046,42.005986019],[-74.388020843,42.005699903],[-74.388090452,42.00510452],[-74.388129016,42.004413656],[-74.388135179,42.003770274],[-74.388139747,42.003293701],[-74.388112828,42.002769299],[-74.388055553,42.002077917],[-74.387869575,42.001481179],[-74.387841483,42.001004753],[-74.387559708,42.000478662],[-74.387435577,42.000096717],[-74.387128698,41.999792071],[-74.38708141,41.999765619],[-74.386610473,41.999520391],[-74.386229187,41.999303881],[-74.385841523,41.999081233],[-74.385783547,41.999066969],[-74.385465705,41.998966183],[-74.385018698,41.998939955],[-74.384698326,41.999033561],[-74.384389789,41.999095709],[-74.384122153,41.99914962],[-74.383609195,41.999337504],[-74.383192746,41.999454416],[-74.382617732,41.999451326],[-74.381818854,41.999470861],[-74.380958175,41.999275576],[-74.380512065,41.99926923],[-74.38044699,41.99927282],[-74.380287316,41.999271957],[-74.379807201,41.999364687],[-74.379561206,41.999416767],[-74.379038886,41.999527344],[-74.378079597,41.999617473],[-74.377248777,41.999636795],[-74.37660939,41.999680987],[-74.375925269,41.999796623],[-74.375393589,41.999865014],[-74.375104443,42.000030252],[-74.374788404,42.000262578],[-74.374752664,42.000285998],[-74.37466687,42.000319008],[-74.374269646,42.000454648],[-74.373628861,42.000641791],[-74.373083439,42.00087712],[-74.372569954,42.001112613],[-74.372086545,42.001538905],[-74.371636713,42.001798578],[-74.371154219,42.002129557],[-74.370608539,42.002388698],[-74.370094798,42.002648006],[-74.369645902,42.002812353],[-74.369387965,42.003049233],[-74.369258758,42.003191508],[-74.369099493,42.003142972],[-74.368845097,42.003022424],[-74.368430718,42.002924823],[-74.367920042,42.002874359],[-74.367531825,42.002809163],[-74.367393132,42.002782724],[-74.36719548,42.002753145],[-74.366421119,42.002603962],[-74.365846777,42.002529302],[-74.365113185,42.002406097],[-74.36431664,42.002187218],[-74.363519388,42.002039815],[-74.362977481,42.001917662],[-74.362468234,42.001724198],[-74.362022896,42.001531077],[-74.361577786,42.00131413],[-74.360844684,42.00114325],[-74.360014558,42.001090961],[-74.359650083,42.0010998],[-74.359135034,42.001079493],[-74.359539411,42.000681406],[-74.359788741,42.000349176],[-74.360127849,41.999984086],[-74.360291483,41.999785719],[-74.360458206,41.999597789],[-74.360582474,41.999453674],[-74.360737126,41.999276933],[-74.360786661,41.999221795],[-74.360864715,41.999141632],[-74.361167634,41.998719981],[-74.361191419,41.998692077],[-74.361309549,41.998566928],[-74.36151148,41.99835884],[-74.361866925,41.997955706],[-74.362157285,41.99767136],[-74.362511524,41.997387369],[-74.362832879,41.997198508],[-74.363123933,41.996842675],[-74.363270783,41.996651279],[-74.363293395,41.996623535],[-74.363415232,41.996463008],[-74.363546811,41.996082462],[-74.363646679,41.995677356],[-74.363649524,41.995391956],[-74.363620435,41.995105834],[-74.363559871,41.994771875],[-74.36352394,41.994672527],[-74.36344572,41.994456252],[-74.363411647,41.994379256],[-74.363397113,41.99434421],[-74.36318558,41.993864258],[-74.362963597,41.993434751],[-74.362919425,41.993337064],[-74.362899371,41.993294045],[-74.362747173,41.992980118],[-74.362708355,41.992798011],[-74.362655629,41.992550665],[-74.362592244,41.992421662],[-74.362467777,41.992168338],[-74.36234381,41.991786377],[-74.362268351,41.991199518],[-74.362247034,41.99109597],[-74.362237699,41.991053655],[-74.362191482,41.990835978],[-74.362138962,41.990582225],[-74.36204248,41.989973609],[-74.362015541,41.989473034],[-74.361966044,41.988995357],[-74.361965507,41.988955137],[-74.361968906,41.98891913],[-74.362056755,41.988543887],[-74.36206199,41.988019655],[-74.362172738,41.987718837],[-74.362193319,41.987662929],[-74.362260295,41.987353515],[-74.362264575,41.986924593],[-74.362236434,41.986543162],[-74.362240001,41.986185724],[-74.362084591,41.985755924],[-74.361993535,41.985278811],[-74.361934177,41.98482571],[-74.36184241,41.984420091],[-74.361783055,41.983966987],[-74.361595244,41.983584661],[-74.361406709,41.983273824],[-74.361090195,41.982986103],[-74.360648317,41.982459373],[-74.360205015,41.982075629],[-74.359793171,41.98173971],[-74.359706262,41.981607555],[-74.359510049,41.981309186],[-74.359226443,41.98092632],[-74.358975246,41.980495981],[-74.358787224,41.980137474],[-74.358727416,41.979732028],[-74.35865733,41.979549181],[-74.358571803,41.97932605],[-74.358481021,41.978825105],[-74.358436729,41.978523348],[-74.358421604,41.978454283],[-74.358406792,41.978408704],[-74.358265131,41.978061341],[-74.358177034,41.977726352],[-74.358018273,41.977486428],[-74.357735685,41.977241461],[-74.357423148,41.977098195],[-74.358096074,41.976772503],[-74.358590286,41.976549354],[-74.359237283,41.976185856],[-74.360036764,41.975710261],[-74.360872676,41.975376049],[-74.361669882,41.975126331],[-74.36258117,41.974820764],[-74.363604571,41.97465701],[-74.364248713,41.974575859],[-74.365005538,41.974580048],[-74.365459064,41.974639035],[-74.36575983,41.974838368],[-74.366099562,41.974924966],[-74.366554223,41.974870996],[-74.367198922,41.974733358],[-74.36818391,41.974625826],[-74.369244569,41.974518707],[-74.370153586,41.974438975],[-74.370949365,41.974330387],[-74.371745685,41.97416531],[-74.372163323,41.974026402],[-74.372507218,41.973689411],[-74.372738138,41.97329533],[-74.372855265,41.972928865],[-74.372933995,41.972618664],[-74.373275938,41.97247934],[-74.373807074,41.972341041],[-74.374224148,41.972258602],[-74.374868526,41.972149153],[-74.37505993,41.971924283],[-74.375441637,41.971587489],[-74.375860896,41.971279147],[-74.376393129,41.971027887],[-74.377001855,41.97069232],[-74.377647591,41.970441671],[-74.378217915,41.970162379],[-74.378903673,41.969686027],[-74.379474534,41.969350243],[-74.380083228,41.969014659],[-74.380652981,41.968791823],[-74.381183538,41.968709971],[-74.381940559,41.968685811],[-74.382546232,41.968660829],[-74.382961088,41.968804251],[-74.38345134,41.968976324],[-74.383714854,41.969118932],[-74.384091865,41.969262149],[-74.384278614,41.9695173],[-74.384427785,41.969744012],[-74.384654008,41.969829944],[-74.385145903,41.96983258],[-74.385637798,41.969835212],[-74.386052669,41.969978625],[-74.386655374,41.970264237],[-74.387147282,41.970266863],[-74.38767702,41.970269691],[-74.388246218,41.970103293],[-74.388779476,41.969739031],[-74.389274876,41.969374555],[-74.389806494,41.969179712],[-74.390188648,41.968786399],[-74.390457278,41.968392472],[-74.390726446,41.967942078],[-74.391071822,41.967435607],[-74.39134098,41.966985212],[-74.391798517,41.966620533],[-74.39236982,41.966228214],[-74.392864379,41.965948439],[-74.393775926,41.965586143],[-74.394498545,41.965194615],[-74.3952574,41.964972701],[-74.395902472,41.964778427],[-74.396510237,41.964527471],[-74.397005297,41.9641912],[-74.397500608,41.963826697],[-74.397655411,41.963460397],[-74.397734795,41.96306547],[-74.397891988,41.962445039],[-74.397937797,41.961598102],[-74.398133604,41.960893154],[-74.398328346,41.960301158],[-74.39867362,41.959794662],[-74.399433723,41.959431537],[-74.400722668,41.959155881],[-74.401595448,41.958878041],[-74.402353149,41.958769035],[-74.403338361,41.95860472],[-74.40405716,41.958608453],[-74.404738397,41.958583747],[-74.405042103,41.958472368],[-74.405082562,41.958190187],[-74.405274353,41.957908787],[-74.405693377,41.957600333],[-74.406340179,41.957208326],[-74.406948355,41.956900846],[-74.407670546,41.956537461],[-74.408354892,41.956173886],[-74.409152457,41.95583912],[-74.409608253,41.955643793],[-74.410479384,41.955535309],[-74.411349991,41.955483304],[-74.412334872,41.955347148],[-74.413508638,41.955240199],[-74.414341421,41.955187971],[-74.415021844,41.95524792],[-74.415588259,41.955363755],[-74.416192766,41.955451551],[-74.416796759,41.955595813],[-74.417098371,41.955710306],[-74.417362409,41.955796358],[-74.418005525,41.95579962],[-74.418649926,41.955661693],[-74.419256746,41.955495333],[-74.419749056,41.95544134],[-74.420315995,41.955500686],[-74.421186086,41.955505075],[-74.422245589,41.955482171],[-74.423191851,41.955430449],[-74.423835727,41.95534897],[-74.424516925,41.955324146],[-74.424934572,41.955156799],[-74.425577681,41.955160019],[-74.425918405,41.955133482],[-74.426335299,41.955050853],[-74.426943108,41.954771498],[-74.427322924,41.95460396],[-74.427626066,41.954548991],[-74.428042185,41.954551064],[-74.428495136,41.95466628],[-74.429138242,41.95466948],[-74.429970742,41.954645377],[-74.430879659,41.954536925],[-74.431523768,41.954427164],[-74.432548426,41.95406512],[-74.43326994,41.953758052],[-74.434030015,41.953366457],[-74.434600953,41.952973925],[-74.434944654,41.952608503],[-74.435325174,41.952356223],[-74.435856522,41.952161163],[-74.436424193,41.95213571],[-74.436954778,41.952025362],[-74.437523193,41.951915185],[-74.43805329,41.951861311],[-74.438621454,41.951779369],[-74.439264778,41.951754274],[-74.439832197,41.951757043],[-74.44024905,41.951674357],[-74.440929463,41.951734151],[-74.441231596,41.951792102],[-74.441761433,41.95176644],[-74.442216101,41.951683929],[-74.442784022,41.951630216],[-74.443578651,41.95160583],[-74.444335214,41.951609494],[-74.445015878,41.951641024],[-74.445544241,41.951784771],[-74.44603429,41.951984809],[-74.446560962,41.952326221],[-74.447125704,41.952639576],[-74.447766109,41.952953282],[-74.448821903,41.953353708],[-74.449613889,41.953639893],[-74.450481534,41.953926442],[-74.451574962,41.954355255],[-74.452443108,41.95458531],[-74.453198985,41.954673633],[-74.453766915,41.954619856],[-74.454524466,41.954510506],[-74.455207569,41.954259597],[-74.455663933,41.953979369],[-74.456158112,41.953699316],[-74.456653736,41.95324984],[-74.457035852,41.952799822],[-74.457606167,41.952463645],[-74.458176464,41.952127472],[-74.458937085,41.951650993],[-74.459508571,41.951173621],[-74.459928245,41.950752009],[-74.460309383,41.95041493],[-74.460728343,41.950078031],[-74.461223182,41.949713242],[-74.461831739,41.949320751],[-74.462365119,41.948871425],[-74.462975081,41.948309492],[-74.463356898,41.947887693],[-74.463700161,41.947550424],[-74.463854783,41.947155802],[-74.463858331,41.946732232],[-74.463824527,41.946252007],[-74.463753134,41.945743369],[-74.463756684,41.945319799],[-74.463797584,41.944952884],[-74.464140605,41.944643852],[-74.464483384,41.944363059],[-74.464902285,41.944026138],[-74.465473175,41.943605212],[-74.465931763,41.943042568],[-74.466199831,41.94264846],[-74.466582994,41.942057221],[-74.466814876,41.941465272],[-74.466971335,41.94084474],[-74.467278608,41.940281378],[-74.467395366,41.939886574],[-74.467397951,41.939575954],[-74.467401006,41.939208862],[-74.467669508,41.93875828],[-74.467900418,41.938279284],[-74.468095393,41.937574208],[-74.468440228,41.937039258],[-74.468670893,41.936588499],[-74.469125889,41.93644941],[-74.469541435,41.936507811],[-74.470107786,41.93662338],[-74.470636798,41.9366823],[-74.471202454,41.936882579],[-74.471653483,41.937223529],[-74.471915901,41.937507122],[-74.472291762,41.937791243],[-74.472744677,41.937906285],[-74.473199452,41.937795412],[-74.473729626,41.937713124],[-74.47425887,41.937743786],[-74.474826401,41.937718146],[-74.475544983,41.937721429],[-74.476490482,41.937725743],[-74.477133424,41.937728672],[-74.477738773,41.937703197],[-74.4782694,41.937564408],[-74.478877058,41.937256543],[-74.479448027,41.936807296],[-74.480056579,41.936386467],[-74.480702483,41.936022285],[-74.481461147,41.935743319],[-74.482030265,41.935519976],[-74.482674553,41.935353447],[-74.482978698,41.935157143],[-74.483018333,41.934931409],[-74.48313407,41.934649535],[-74.483437756,41.934509703],[-74.483591084,41.934256238],[-74.483896358,41.933918742],[-74.484050356,41.933580562],[-74.484545173,41.933187436],[-74.485077793,41.932794482],[-74.485572586,41.932401344],[-74.486294737,41.93195275],[-74.486978153,41.93161694],[-74.48735813,41.931392724],[-74.487662017,41.931224639],[-74.488041083,41.931113377],[-74.488306696,41.931001599],[-74.488535397,41.930776705],[-74.488688919,41.930494995],[-74.489145183,41.9301864],[-74.489411691,41.929961671],[-74.489791424,41.929765685],[-74.490436759,41.929457917],[-74.49104427,41.929149977],[-74.49169004,41.928785731],[-74.492451041,41.92819607],[-74.493059426,41.92777517],[-74.493554356,41.927353766],[-74.494010807,41.927016903],[-74.494355145,41.926510121],[-74.494585366,41.926087538],[-74.494701707,41.925720944],[-74.494893441,41.925382914],[-74.495236426,41.925045554],[-74.49565526,41.92468028],[-74.496225554,41.924287437],[-74.496719105,41.924035446],[-74.497213107,41.923726975],[-74.49766928,41.923418346],[-74.498125901,41.923053227],[-74.498468859,41.922715859],[-74.498774663,41.922293607],[-74.49904177,41.921984138],[-74.499572883,41.92176054],[-74.500217647,41.921509194],[-74.500748105,41.921370299],[-74.501429782,41.921232068],[-74.502073877,41.92106543],[-74.502604326,41.920926527],[-74.503589573,41.920648404],[-74.50442424,41.920284894],[-74.505448163,41.919893962],[-74.506283671,41.91941749],[-74.507042688,41.919053633],[-74.507725849,41.918717698],[-74.508181079,41.918521975],[-74.508634574,41.918552155],[-74.509161945,41.918808567],[-74.509763863,41.919206485],[-74.510291463,41.91943465],[-74.510668697,41.919549212],[-74.511083527,41.919692182],[-74.511650453,41.919722833],[-74.511952714,41.91975236],[-74.512178276,41.919922751],[-74.512592254,41.920178664],[-74.512932972,41.920123628],[-74.512860143,41.919756212],[-74.512864223,41.919219681],[-74.513057129,41.918712189],[-74.513212018,41.918232778],[-74.513593325,41.917810805],[-74.514166874,41.916966049],[-74.514549878,41.916318167],[-74.514969604,41.915811631],[-74.515351098,41.915361413],[-74.515694776,41.914911034],[-74.516115561,41.914263307],[-74.516534418,41.91386972],[-74.517103635,41.913589723],[-74.517596597,41.91339412],[-74.518544291,41.913059222],[-74.519528724,41.912865671],[-74.52058855,41.912700667],[-74.521346131,41.912506153],[-74.521989033,41.912480591],[-74.522442913,41.912454239],[-74.523012094,41.912174209],[-74.523695318,41.911809938],[-74.52452954,41.911474519],[-74.525174521,41.911166552],[-74.525896157,41.910717705],[-74.52661778,41.910268855],[-74.527338758,41.909904717],[-74.528210335,41.909625905],[-74.528741038,41.909430409],[-74.529348383,41.909094024],[-74.530183781,41.908589135],[-74.531168936,41.908282535],[-74.532079711,41.907806179],[-74.53299109,41.907245098],[-74.533751455,41.906655165],[-74.534473184,41.906178024],[-74.535080265,41.905869847],[-74.535762738,41.905590213],[-74.536256809,41.9052251],[-74.536977483,41.904889133],[-74.537584335,41.904609183],[-74.538229797,41.904216431],[-74.539101644,41.903881065],[-74.539783069,41.903742597],[-74.540386453,41.903942687],[-74.541076239,41.904224934],[-74.541489359,41.90448021],[-74.541977931,41.904735782],[-74.542467313,41.904878641],[-74.543145714,41.904965881],[-74.543749071,41.904996462],[-74.544541032,41.905027782],[-74.545483898,41.905059701],[-74.546654083,41.904951602],[-74.548012482,41.904900599],[-74.549031582,41.904820064],[-74.550163635,41.904768139],[-74.551372135,41.90457561],[-74.552657041,41.904242449],[-74.553601655,41.904020687],[-74.55431975,41.90382621],[-74.554962378,41.903631437],[-74.555303837,41.903350954],[-74.5557215,41.90295804],[-74.556025227,41.902677408],[-74.556479046,41.902510082],[-74.557347405,41.902400714],[-74.558026958,41.902318784],[-74.559121258,41.902266634],[-74.559611434,41.902296697],[-74.560139905,41.902242356],[-74.560555803,41.902103049],[-74.561198408,41.90190824],[-74.561991882,41.901714005],[-74.562596177,41.901603584],[-74.56369141,41.901410492],[-74.564182923,41.90124327],[-74.564825508,41.90104845],[-74.565429602,41.900966187],[-74.566109142,41.900884217],[-74.566751324,41.90074574],[-74.567281118,41.900494117],[-74.567811669,41.900129767],[-74.568116458,41.899680024],[-74.568383531,41.899230141],[-74.568537065,41.898836188],[-74.568728119,41.898470556],[-74.568730962,41.898047855],[-74.568733047,41.897737881],[-74.568546737,41.897399017],[-74.568473394,41.897088751],[-74.568739495,41.89677976],[-74.569043702,41.896414555],[-74.56930962,41.896133746],[-74.569801645,41.895881967],[-74.570368906,41.89565865],[-74.570671213,41.89557524],[-74.571012739,41.895266526],[-74.57124092,41.894985573],[-74.571280338,41.894732096],[-74.571282411,41.894422114],[-74.571397442,41.894140736],[-74.571512662,41.893831185],[-74.571590159,41.893521484],[-74.571592797,41.893126963],[-74.571482287,41.892732028],[-74.571484172,41.892450228],[-74.571637669,41.89205627],[-74.571980111,41.891606657],[-74.572359701,41.891241724],[-74.572927862,41.890877491],[-74.573307255,41.890540736],[-74.573686071,41.890288511],[-74.57414145,41.889867493],[-74.574672984,41.889334032],[-74.575090635,41.888912864],[-74.57569684,41.8884924],[-74.576302105,41.888212828],[-74.576982424,41.887989894],[-74.578003434,41.887570935],[-74.578458582,41.887178085],[-74.578724419,41.886897254],[-74.578915007,41.886587961],[-74.57895476,41.886278118],[-74.579220407,41.886025467],[-74.579824525,41.885914954],[-74.580654538,41.88586163],[-74.581597314,41.885865068],[-74.582351358,41.885895996],[-74.582916289,41.886010767],[-74.58355537,41.886323077],[-74.583892761,41.886634289],[-74.584380638,41.887002404],[-74.585360053,41.887175026],[-74.585925011,41.887289789],[-74.586603823,41.887292237],[-74.586982398,41.887068148],[-74.587060914,41.886589359],[-74.587101522,41.886138613],[-74.587331778,41.885519469],[-74.587600105,41.884844095],[-74.587943301,41.884253538],[-74.588324566,41.883606749],[-74.588630407,41.882959689],[-74.588785042,41.882368445],[-74.589052981,41.88174943],[-74.589547523,41.881074869],[-74.590116928,41.880485104],[-74.590609292,41.880148695],[-74.590912748,41.87986797],[-74.591066096,41.879473984],[-74.591257872,41.878967416],[-74.591373504,41.878573295],[-74.591338308,41.878178638],[-74.591303652,41.877699443],[-74.591305807,41.877361283],[-74.591421266,41.876995346],[-74.591610869,41.876826939],[-74.592064412,41.876659466],[-74.592555843,41.876463944],[-74.592972217,41.876211796],[-74.593351418,41.875874966],[-74.593619285,41.87525594],[-74.593772061,41.874946499],[-74.593962909,41.874580823],[-74.594266145,41.874328263],[-74.594795079,41.874161047],[-74.595172658,41.874077838],[-74.595889571,41.873995822],[-74.596417435,41.873997676],[-74.59702046,41.874038539],[-74.597669055,41.873952751],[-74.598258741,41.873866753],[-74.598943267,41.874062883],[-74.599356435,41.874317959],[-74.599732427,41.874488353],[-74.600108771,41.874602388],[-74.600523691,41.874575648],[-74.601052436,41.874436579],[-74.601656933,41.874241418],[-74.602222682,41.874215196],[-74.602901358,41.874217545],[-74.603504802,41.874191447],[-74.604108595,41.874108988],[-74.604449148,41.873912896],[-74.604979268,41.873548371],[-74.60539575,41.873267994],[-74.605812564,41.872931259],[-74.606342149,41.872651269],[-74.606606938,41.872511276],[-74.60709743,41.872456589],[-74.607700341,41.872515016],[-74.608190314,41.872544865],[-74.608642407,41.872602772],[-74.609282513,41.872745851],[-74.609922107,41.872973474],[-74.61052417,41.873172785],[-74.610975759,41.873315216],[-74.611315092,41.873316365],[-74.611805925,41.873205299],[-74.612372681,41.873009947],[-74.612977641,41.872730187],[-74.613544721,41.872478463],[-74.614035883,41.872311034],[-74.614639645,41.872228519],[-74.615356018,41.87223092],[-74.616034505,41.872261374],[-74.616938548,41.872405293],[-74.617805728,41.872408181],[-74.618861422,41.872411691],[-74.619653188,41.872414316],[-74.620370065,41.872332145],[-74.620937443,41.872024035],[-74.620977316,41.871657819],[-74.620753265,41.87129073],[-74.62045447,41.870810669],[-74.620005213,41.87027375],[-74.619593493,41.869765129],[-74.619181779,41.869256515],[-74.61895741,41.868945779],[-74.618507176,41.868577934],[-74.61767943,41.868293374],[-74.616663181,41.868008179],[-74.615798085,41.867667121],[-74.615083295,41.867411105],[-74.61436868,41.867126899],[-74.613805034,41.866815012],[-74.613543009,41.866504147],[-74.613432276,41.866109242],[-74.613434821,41.865686535],[-74.613437707,41.865207477],[-74.613215421,41.864558572],[-74.613031689,41.863768885],[-74.612772049,41.863063492],[-74.612587816,41.862358357],[-74.612477436,41.861907091],[-74.612480499,41.861399843],[-74.612519732,41.861146352],[-74.612747439,41.860893494],[-74.6128242,41.860668302],[-74.613090966,41.860190125],[-74.613471653,41.859571433],[-74.613927402,41.859009348],[-74.61426886,41.858644147],[-74.614912222,41.858223596],[-74.615329223,41.857830459],[-74.615859487,41.857409525],[-74.616088011,41.857015756],[-74.616166102,41.856565124],[-74.616432489,41.856143305],[-74.616623478,41.855721225],[-74.616852834,41.855186557],[-74.617232288,41.854765113],[-74.617837726,41.854372595],[-74.618442319,41.85412098],[-74.618970189,41.854094549],[-74.619346615,41.85418034],[-74.619873816,41.854266626],[-74.620211882,41.854465012],[-74.62051342,41.854466008],[-74.62066486,41.854353784],[-74.62115653,41.854073598],[-74.621571653,41.853990425],[-74.622099344,41.853992161],[-74.622589016,41.854050137],[-74.623041336,41.854051624],[-74.623193587,41.853798498],[-74.623195902,41.853403973],[-74.622971903,41.853036887],[-74.622747904,41.8526698],[-74.622674181,41.852387749],[-74.622562597,41.852133757],[-74.622411829,41.852133261],[-74.622035906,41.851962941],[-74.622037069,41.851765677],[-74.622077086,41.851371275],[-74.621891279,41.85091977],[-74.62181806,41.850553179],[-74.621442813,41.850270133],[-74.62099153,41.850099561],[-74.620615125,41.850013778],[-74.620276402,41.849928116],[-74.619561959,41.849643943],[-74.619035641,41.849416749],[-74.618471458,41.849217609],[-74.61794498,41.849018598],[-74.617606941,41.848820207],[-74.617457198,41.848650625],[-74.617383659,41.848340388],[-74.617386849,41.847804963],[-74.61772806,41.847467923],[-74.618445665,41.847216684],[-74.619616681,41.846769675],[-74.620410473,41.846377766],[-74.62105316,41.846041721],[-74.621469727,41.845704925],[-74.621962654,41.845199291],[-74.622190768,41.844861873],[-74.622193585,41.844382806],[-74.6223088,41.844016834],[-74.622425006,41.843481779],[-74.622653442,41.843087995],[-74.622768651,41.842722023],[-74.622733126,41.842355555],[-74.622699575,41.841650925],[-74.622627686,41.841058895],[-74.622630667,41.840551644],[-74.622632986,41.840157117],[-74.622860745,41.839876055],[-74.623352129,41.839624042],[-74.623693595,41.839230634],[-74.623695411,41.838920647],[-74.623471127,41.83860992],[-74.623021242,41.838213918],[-74.622497148,41.837620393],[-74.622197337,41.837337598],[-74.621935888,41.836942202],[-74.621485182,41.836687091],[-74.62107168,41.836516644],[-74.620619484,41.836515152],[-74.619977723,41.836710298],[-74.618732525,41.836987981],[-74.61775244,41.837041083],[-74.617149013,41.837123615],[-74.616320153,41.837092673],[-74.615679893,41.837034167],[-74.614926406,41.837003467],[-74.614397999,41.837142595],[-74.614020664,41.83722587],[-74.6134931,41.837224096],[-74.612702279,41.83713689],[-74.612175228,41.83705057],[-74.611686544,41.836851652],[-74.611386453,41.836625193],[-74.610897777,41.836426271],[-74.610409102,41.836227347],[-74.609994593,41.836225941],[-74.609617258,41.836309201],[-74.609389793,41.83653387],[-74.609312893,41.836787243],[-74.609535559,41.83735162],[-74.609795917,41.837916115],[-74.610017739,41.838621397],[-74.610314242,41.839439649],[-74.610460026,41.840257388],[-74.610606495,41.840962404],[-74.610864829,41.841865066],[-74.611274928,41.842599158],[-74.611384062,41.843247688],[-74.611265204,41.844205438],[-74.611260429,41.844994483],[-74.611105923,41.845613939],[-74.610573003,41.846485743],[-74.610116975,41.847104172],[-74.60966146,41.84763806],[-74.609206797,41.848031048],[-74.608565049,41.848197946],[-74.608074745,41.848252633],[-74.607697333,41.848335896],[-74.607131309,41.848446678],[-74.606678857,41.848473312],[-74.606451858,41.848613443],[-74.605998379,41.848809148],[-74.605281759,41.848891228],[-74.604678204,41.848973703],[-74.603999091,41.849084081],[-74.603546818,41.84908252],[-74.602944479,41.848967724],[-74.602267108,41.848796288],[-74.601589226,41.848709396],[-74.600797917,41.848678474],[-74.600044137,41.848675851],[-74.599630252,41.848561684],[-74.598991114,41.848305827],[-74.59816548,41.847739324],[-74.597791592,41.847258941],[-74.597568109,41.846835448],[-74.597081875,41.846241942],[-74.596668541,41.846043223],[-74.596218771,41.845647109],[-74.595655589,41.845306961],[-74.595054013,41.845079399],[-74.594414393,41.844908049],[-74.593585632,41.844848761],[-74.592907793,41.844761819],[-74.592380529,41.84470359],[-74.591966872,41.844561213],[-74.591365674,41.844277266],[-74.590575863,41.844020828],[-74.589784628,41.843989821],[-74.58918127,41.844044032],[-74.588841191,41.844183715],[-74.588613991,41.844351986],[-74.588274269,41.84443531],[-74.587708957,41.844433284],[-74.586917901,41.844374083],[-74.585939133,41.844201474],[-74.585036466,41.843916406],[-74.583871658,41.843376759],[-74.583233183,41.843036266],[-74.582218222,41.842638053],[-74.58120347,41.842211641],[-74.580150661,41.841841446],[-74.579285744,41.841556472],[-74.578345467,41.841271224],[-74.577593619,41.84098665],[-74.576916596,41.840786893],[-74.576314572,41.840643764],[-74.576127257,41.840473989],[-74.575827648,41.840191073],[-74.575717761,41.839711591],[-74.575758973,41.839176308],[-74.575650205,41.838527746],[-74.575654115,41.837935967],[-74.575657465,41.837428718],[-74.575509152,41.837061818],[-74.575511202,41.836751842],[-74.575702784,41.836273473],[-74.57597121,41.835569943],[-74.576389602,41.834979683],[-74.576581172,41.834501315],[-74.576735984,41.833881907],[-74.576928651,41.833234455],[-74.577121694,41.832530646],[-74.577313242,41.832052273],[-74.577504415,41.831630267],[-74.577582745,41.831179661],[-74.577547469,41.83081318],[-74.577399347,41.830418098],[-74.576987487,41.830022048],[-74.576499895,41.829682082],[-74.576125715,41.829286166],[-74.575901882,41.828947171],[-74.575641113,41.828495313],[-74.575494123,41.827931152],[-74.575384446,41.827423494],[-74.575313007,41.826831426],[-74.575129649,41.826069861],[-74.57486927,41.825561644],[-74.57479728,41.825054115],[-74.574725475,41.824518412],[-74.574503893,41.823841255],[-74.574057216,41.823022352],[-74.573797606,41.822401402],[-74.573387127,41.821808083],[-74.572976271,41.821271119],[-74.572528507,41.820621293],[-74.571929308,41.820083624],[-74.571555399,41.81965951],[-74.571369849,41.819236105],[-74.571222542,41.818728293],[-74.570925125,41.818135388],[-74.570779141,41.817430313],[-74.570668953,41.817007188],[-74.570483051,41.81664014],[-74.570334061,41.816385956],[-74.570223689,41.815991007],[-74.570225951,41.815652846],[-74.570453663,41.815400072],[-74.570756521,41.815175752],[-74.571474695,41.814812081],[-74.571815219,41.814587906],[-74.57193029,41.814278342],[-74.572084345,41.813771652],[-74.572200353,41.81332119],[-74.572505066,41.81281507],[-74.572846336,41.81247817],[-74.573262364,41.812226081],[-74.573979548,41.812003299],[-74.574659436,41.811724008],[-74.575565874,41.811361007],[-74.576132936,41.811053106],[-74.576587351,41.81068843],[-74.577079063,41.810380255],[-74.577871738,41.810129536],[-74.578664212,41.809907],[-74.579193206,41.809655311],[-74.579496743,41.809318245],[-74.57961269,41.808867774],[-74.579615084,41.808501431],[-74.579581665,41.807853143],[-74.579584981,41.807345901],[-74.579738776,41.806867385],[-74.580080699,41.806417739],[-74.580499233,41.805771103],[-74.580766557,41.805208458],[-74.580768946,41.804842113],[-74.580771335,41.804475768],[-74.580773172,41.804193965],[-74.580925663,41.803912709],[-74.581192243,41.803462784],[-74.581496841,41.802956639],[-74.581763229,41.802534889],[-74.581992863,41.801972109],[-74.582222323,41.801437499],[-74.58263952,41.800988118],[-74.583170619,41.800398248],[-74.583475369,41.799863915],[-74.583741916,41.799413983],[-74.583782861,41.798906869],[-74.583747204,41.798596753],[-74.583637324,41.798117275],[-74.58333806,41.797806194],[-74.582962195,41.797692104],[-74.582358546,41.797859005],[-74.58126532,41.798024111],[-74.580510836,41.798218625],[-74.579907913,41.798272782],[-74.579644661,41.798215461],[-74.57900518,41.798100394],[-74.578328419,41.797928826],[-74.577539043,41.797700473],[-74.576937605,41.797529175],[-74.576298321,41.797385909],[-74.575582797,41.797383268],[-74.57494091,41.79763453],[-74.574374157,41.797914243],[-74.573845988,41.798053187],[-74.573693292,41.798362614],[-74.573540045,41.798756576],[-74.573424076,41.799207042],[-74.573193616,41.799882534],[-74.573265952,41.800333698],[-74.573452571,41.800588021],[-74.573113251,41.800643127],[-74.572775424,41.800472787],[-74.572248729,41.800386283],[-74.571796989,41.800356418],[-74.57115656,41.800382212],[-74.570780139,41.800352622],[-74.570403527,41.800351213],[-74.569989262,41.800349664],[-74.569462572,41.800263149],[-74.568898972,41.800063766],[-74.568409949,41.799977388],[-74.567657312,41.799890015],[-74.567130249,41.799859847],[-74.566490962,41.799716535],[-74.566115308,41.799574208],[-74.565891059,41.799319732],[-74.565553639,41.799093003],[-74.56506539,41.798893896],[-74.564577146,41.798694778],[-74.564126937,41.798439435],[-74.563789338,41.798240892],[-74.563489595,41.798014301],[-74.563190803,41.797646812],[-74.562703911,41.797250423],[-74.562216453,41.796938579],[-74.561690378,41.796767488],[-74.561352989,41.796540747],[-74.561129343,41.796201722],[-74.561019446,41.795750407],[-74.561022331,41.795327696],[-74.561289589,41.794793277],[-74.561708617,41.794090351],[-74.562280003,41.793134369],[-74.56285155,41.792150209],[-74.563195809,41.791362454],[-74.563576954,41.790687551],[-74.563843218,41.790294023],[-74.563996131,41.789956434],[-74.564300621,41.789478508],[-74.564754759,41.789142059],[-74.565132828,41.788918038],[-74.565398121,41.788665413],[-74.565588482,41.788356147],[-74.565401356,41.788186344],[-74.564913383,41.787959053],[-74.564350668,41.787646924],[-74.563976807,41.787250976],[-74.563528411,41.78674201],[-74.562928643,41.786345193],[-74.562404184,41.785948665],[-74.561917579,41.785524088],[-74.561619245,41.785100238],[-74.56135837,41.784704703],[-74.561022774,41.78422434],[-74.560311815,41.783573462],[-74.559524811,41.783034997],[-74.558888414,41.782497116],[-74.558251255,41.782071954],[-74.557803328,41.781506606],[-74.557430316,41.780997913],[-74.557282624,41.780574622],[-74.557137657,41.779756811],[-74.557029365,41.779080043],[-74.557031886,41.778713697],[-74.557184603,41.778404297],[-74.557374595,41.7781514],[-74.557414172,41.777869741],[-74.557303556,41.777531135],[-74.557268629,41.77713647],[-74.557348957,41.776404069],[-74.557464997,41.77595362],[-74.55761849,41.775531487],[-74.557846497,41.775222377],[-74.558225086,41.774913837],[-74.558602901,41.774718019],[-74.558980326,41.774578566],[-74.559507371,41.774580589],[-74.560184992,41.774583184],[-74.561163207,41.774671468],[-74.56187848,41.774674198],[-74.562443941,41.774563626],[-74.563085059,41.774396981],[-74.564028693,41.77403421],[-74.564444881,41.773725793],[-74.564937129,41.773304941],[-74.565090185,41.772939166],[-74.565130309,41.772572963],[-74.565020042,41.772178006],[-74.564984109,41.771924241],[-74.565099704,41.771530138],[-74.565290394,41.771164507],[-74.565406759,41.770657688],[-74.565409423,41.770263159],[-74.56526189,41.7698117],[-74.564963406,41.769416032],[-74.564590598,41.768879178],[-74.564329768,41.768483649],[-74.564256774,41.768145201],[-74.564296518,41.767835356],[-74.564449566,41.767469581],[-74.564790245,41.767189066],[-74.564981111,41.766795249],[-74.565171987,41.766401432],[-74.565212094,41.76603523],[-74.565478055,41.765669877],[-74.565819478,41.76527663],[-74.566236565,41.764827306],[-74.566692227,41.764237224],[-74.567072602,41.763646847],[-74.567378076,41.762999829],[-74.567756738,41.762663082],[-74.568247746,41.762411298],[-74.568737993,41.762272229],[-74.5693037,41.762105265],[-74.569832715,41.761797258],[-74.570249184,41.761432459],[-74.570590558,41.761039197],[-74.571082855,41.760590137],[-74.571574954,41.760169246],[-74.571915938,41.759832346],[-74.572210433,41.759410729],[-74.572589611,41.758989413],[-74.573110148,41.758533408],[-74.573817934,41.758218997],[-74.574337061,41.757974334],[-74.57499686,41.757800639],[-74.575468702,41.75759103],[-74.575988745,41.757205452],[-74.57669743,41.756750124],[-74.577500185,41.756295128],[-74.578208619,41.755875014],[-74.578869987,41.755454724],[-74.579344342,41.75485761],[-74.579677081,41.754330426],[-74.579821202,41.753873003],[-74.579776919,41.753450125],[-74.579497424,41.753026386],[-74.57921816,41.752567414],[-74.579126612,41.752179588],[-74.579176182,41.751792279],[-74.57927371,41.751264234],[-74.579417369,41.75087727],[-74.579514666,41.75038445],[-74.579423346,41.749961397],[-74.579192515,41.74929124],[-74.579195738,41.748798084],[-74.579199188,41.748269696],[-74.579436911,41.747883074],[-74.579910504,41.74739163],[-74.580289789,41.746935075],[-74.580340035,41.746442082],[-74.580156242,41.745772104],[-74.580019729,41.745067075],[-74.579835724,41.744432322],[-74.579462428,41.743973005],[-74.578995749,41.74340767],[-74.578481597,41.742912616],[-74.578015175,41.742312049],[-74.577549226,41.741641023],[-74.577177118,41.741005576],[-74.576757292,41.740475635],[-74.576290442,41.739945513],[-74.575870168,41.73948601],[-74.575401706,41.739202466],[-74.575122068,41.738813941],[-74.574844522,41.738108382],[-74.57466059,41.737473622],[-74.574430549,41.736697778],[-74.574197733,41.73634465],[-74.574247553,41.735922117],[-74.574438454,41.735500099],[-74.57472319,41.735113661],[-74.575149,41.734727745],[-74.575480983,41.734306246],[-74.575909331,41.733532843],[-74.576100679,41.733040371],[-74.576339986,41.732407175],[-74.576487078,41.73149182],[-74.576351792,41.730610653],[-74.576403906,41.729835861],[-74.576550297,41.729026181],[-74.576932268,41.728146918],[-74.577314232,41.727267653],[-74.577554656,41.726458326],[-74.577842317,41.725613939],[-74.578222869,41.724946029],[-74.578555011,41.724489295],[-74.578982567,41.723821555],[-74.579268141,41.723294198],[-74.579413561,41.722625423],[-74.579278251,41.721744255],[-74.579193181,41.720370102],[-74.579057635,41.719524161],[-74.578734263,41.718642304],[-74.57850356,41.717972148],[-74.578225146,41.717407497],[-74.577710281,41.717053339],[-74.576819533,41.716662561],[-74.576162937,41.716413559],[-74.575554066,41.716059044],[-74.575180266,41.715705389],[-74.574759922,41.715281114],[-74.574528566,41.714716628],[-74.574530422,41.714434819],[-74.574675409,41.713836498],[-74.575007983,41.713309325],[-74.575058937,41.712710663],[-74.575015407,41.712182098],[-74.574831311,41.711582559],[-74.574693753,41.711053644],[-74.574697934,41.710419577],[-74.574982783,41.709997912],[-74.575454971,41.709682616],[-74.575833831,41.709261286],[-74.576165677,41.708839792],[-74.576593848,41.708066374],[-74.577114637,41.70750466],[-74.577587717,41.707048455],[-74.577968161,41.706380543],[-74.577971616,41.705852148],[-74.577740273,41.705287668],[-74.577322055,41.704546369],[-74.577043709,41.703981714],[-74.576907312,41.703276674],[-74.576957319,41.702818905],[-74.577242814,41.702291549],[-74.577386822,41.701834134],[-74.577764932,41.701518481],[-74.578330357,41.701309193],[-74.579035191,41.701347003],[-74.579411454,41.701313154],[-74.579600842,41.701102485],[-74.579321351,41.700713967],[-74.578618594,41.700359123],[-74.578196946,41.700146211],[-74.577730373,41.699616101],[-74.57735735,41.699156775],[-74.576984791,41.698626999],[-74.576799779,41.698168371],[-74.576567552,41.697744786],[-74.576758785,41.697252319],[-74.577138485,41.696690084],[-74.577563796,41.69633938],[-74.57789372,41.69619968],[-74.578646418,41.696096763],[-74.579633647,41.696065153],[-74.580668111,41.69599848],[-74.581467571,41.695930933],[-74.582126477,41.695792427],[-74.583021535,41.695478636],[-74.583963342,41.695200234],[-74.584904235,41.69506273],[-74.58579745,41.69503072],[-74.586597117,41.69492792],[-74.587068923,41.694647799],[-74.587306165,41.694296383],[-74.587309993,41.693697537],[-74.587219826,41.693098356],[-74.586800451,41.692533216],[-74.586380182,41.692108984],[-74.585771019,41.691824973],[-74.585208869,41.691541129],[-74.584648309,41.691010698],[-74.584370406,41.690375606],[-74.584044383,41.689916481],[-74.583388712,41.689561836],[-74.582825453,41.689454107],[-74.582308052,41.68952268],[-74.581555665,41.689590404],[-74.580897727,41.689588005],[-74.58042846,41.689480607],[-74.579818672,41.689302249],[-74.579301715,41.689300357],[-74.578689863,41.689439021],[-74.578030544,41.689647967],[-74.577230468,41.689821156],[-74.576430849,41.689923897],[-74.575539322,41.689709245],[-74.57483601,41.689460055],[-74.574133178,41.689140408],[-74.573526657,41.688468848],[-74.573202116,41.687798333],[-74.572783598,41.687127465],[-74.572365088,41.686456589],[-74.572133397,41.685962554],[-74.571807015,41.685573842],[-74.571197743,41.68532498],[-74.570494507,41.685075763],[-74.569792438,41.684650417],[-74.56918389,41.684295859],[-74.568433683,41.684046462],[-74.56787143,41.683797759],[-74.567450396,41.683514358],[-74.567030077,41.68312528],[-74.566657458,41.682630693],[-74.566331363,41.682206741],[-74.565911057,41.681817652],[-74.565631969,41.681393876],[-74.565261269,41.680617475],[-74.565124803,41.679947647],[-74.565081371,41.679419075],[-74.564944921,41.678749245],[-74.565090147,41.678115709],[-74.565093706,41.677587312],[-74.565192655,41.676847922],[-74.565242259,41.676460615],[-74.56557281,41.676215274],[-74.565668211,41.676004271],[-74.565434225,41.67586248],[-74.564824844,41.675648808],[-74.563697673,41.675574083],[-74.562898926,41.675571049],[-74.562100893,41.675462331],[-74.561537785,41.6753545],[-74.561022867,41.675070716],[-74.560414225,41.674751347],[-74.559664393,41.674466659],[-74.558725914,41.674286928],[-74.558303298,41.674250079],[-74.557362642,41.674387364],[-74.556704869,41.674384829],[-74.555907831,41.674135162],[-74.555252474,41.673780358],[-74.554363916,41.673178056],[-74.553756775,41.672647292],[-74.553009189,41.672045525],[-74.552261627,41.671443755],[-74.551654523,41.670912986],[-74.551423777,41.670313226],[-74.551239516,41.669784097],[-74.551243429,41.669220477],[-74.550964971,41.668726216],[-74.550827463,41.668232494],[-74.550503748,41.667491463],[-74.550037883,41.666926005],[-74.54957178,41.666395771],[-74.548963513,41.666041114],[-74.548168332,41.665544808],[-74.547654539,41.665120066],[-74.547095504,41.66444855],[-74.546911542,41.663884189],[-74.546820556,41.6634611],[-74.546870248,41.663073799],[-74.547292785,41.663110691],[-74.547762049,41.663182989],[-74.548372989,41.663150165],[-74.549359481,41.663154038],[-74.549876224,41.663156062],[-74.550723017,41.662983244],[-74.551194488,41.662738497],[-74.551571271,41.662599054],[-74.552182682,41.662495758],[-74.55279532,41.662216324],[-74.553736039,41.66204385],[-74.554394669,41.661905492],[-74.554958851,41.661837226],[-74.555195673,41.661556324],[-74.555386958,41.661063881],[-74.555531513,41.660536037],[-74.555723531,41.65993792],[-74.556151615,41.659164571],[-74.556625212,41.658602762],[-74.557004373,41.658111048],[-74.557571655,41.657584822],[-74.557949841,41.657234008],[-74.558141828,41.656635883],[-74.55814568,41.656072261],[-74.55781905,41.655753961],[-74.557069689,41.655434031],[-74.556320093,41.655149322],[-74.55580415,41.65504165],[-74.555194511,41.654898379],[-74.554867176,41.654685747],[-74.554398448,41.654543025],[-74.554165052,41.654330754],[-74.554120755,41.653943086],[-74.554031436,41.653273424],[-74.554084235,41.652428175],[-74.554088608,41.651794101],[-74.554140191,41.651124985],[-74.554190801,41.650596771],[-74.554335823,41.649998471],[-74.554574542,41.649435758],[-74.554906945,41.648908644],[-74.555381202,41.648241154],[-74.555712624,41.647854938],[-74.555714559,41.647573127],[-74.555387742,41.647290044],[-74.554542138,41.647321998],[-74.553602838,41.647318353],[-74.552804939,41.647244798],[-74.55210169,41.647065929],[-74.551492614,41.646852189],[-74.550883797,41.646603218],[-74.550557249,41.646284898],[-74.550421013,41.645615049],[-74.550426156,41.644875292],[-74.550430074,41.644311678],[-74.550433502,41.643818505],[-74.550155649,41.643253783],[-74.549642263,41.642793819],[-74.548939805,41.642509246],[-74.548235388,41.64250648],[-74.547155044,41.642537456],[-74.546590518,41.642676135],[-74.546353495,41.642992245],[-74.546162678,41.643414226],[-74.545878182,41.6438006],[-74.545311424,41.644256309],[-74.544510089,41.64467587],[-74.543378507,41.645305471],[-74.542669835,41.645901515],[-74.542055313,41.646462706],[-74.541485008,41.647411567],[-74.540821997,41.648183917],[-74.540443522,41.64856991],[-74.540253412,41.648886194],[-74.540014068,41.649519326],[-74.539681041,41.650116855],[-74.539254577,41.650643549],[-74.53882886,41.651064573],[-74.538028154,41.651378405],[-74.537180724,41.651656812],[-74.536239608,41.651899612],[-74.535579776,41.652213993],[-74.534871211,41.652774755],[-74.534539133,41.65323137],[-74.534535074,41.653794989],[-74.534388833,41.654534164],[-74.5342426,41.655273347],[-74.533957727,41.655694916],[-74.533626655,41.656010618],[-74.533248853,41.656290903],[-74.532778371,41.656394671],[-74.532261948,41.656357344],[-74.531606403,41.656072856],[-74.531278881,41.655895391],[-74.530856656,41.655823215],[-74.529917751,41.655748918],[-74.529026339,41.655604364],[-74.528322296,41.655531024],[-74.527338499,41.655174703],[-74.526261537,41.65471232],[-74.525279057,41.654179857],[-74.524531173,41.653683591],[-74.523690404,41.653046021],[-74.522708231,41.65247831],[-74.521676489,41.652262655],[-74.520738702,41.652047384],[-74.519847362,41.651902758],[-74.518816429,41.651581402],[-74.517879972,41.651189982],[-74.517084162,41.650834362],[-74.516571205,41.650339028],[-74.516386506,41.64991552],[-74.51601183,41.649773039],[-74.515727392,41.650124112],[-74.515724491,41.650511597],[-74.515579107,41.651109847],[-74.515481217,41.651637844],[-74.515102043,41.652094203],[-74.514627871,41.652691057],[-74.513873995,41.653004923],[-74.513216168,41.653037367],[-74.512373392,41.652681516],[-74.510826905,41.652216995],[-74.510077299,41.65196721],[-74.509327152,41.651787878],[-74.508622636,41.651784868],[-74.508149748,41.652205569],[-74.507910614,41.652768183],[-74.507623705,41.653436268],[-74.507197228,41.653927626],[-74.506063789,41.65473298],[-74.505120884,41.65518688],[-74.503048791,41.655882482],[-74.501588641,41.65640457],[-74.499845806,41.657031088],[-74.49852679,41.657518524],[-74.497679114,41.657796632],[-74.496880044,41.657863598],[-74.496082896,41.657683968],[-74.495615653,41.657364874],[-74.495244006,41.656834832],[-74.494919887,41.656234548],[-74.494688619,41.655775579],[-74.494410651,41.655281175],[-74.494038198,41.654856815],[-74.493571816,41.654432027],[-74.493106268,41.653901576],[-74.492767827,41.65308928],[-74.492693533,41.652433591],[-74.492817591,41.651808558],[-74.493058698,41.65145215],[-74.493259849,41.651125349],[-74.493860039,41.650561998],[-74.494420029,41.650058038],[-74.495019257,41.649613835],[-74.495578543,41.649199241],[-74.495978484,41.648843517],[-74.496219328,41.648516893],[-74.496302007,41.648100204],[-74.496304559,41.647772528],[-74.495990789,41.647264735],[-74.495875827,41.646728017],[-74.495799649,41.646310634],[-74.495725101,41.645684723],[-74.495530484,41.645177452],[-74.495216963,41.644639864],[-74.494861867,41.644340411],[-74.494387645,41.644040432],[-74.493872085,41.643948798],[-74.493436172,41.643827712],[-74.493001906,41.643498115],[-74.492885806,41.643110344],[-74.493008211,41.642693825],[-74.49305119,41.642276965],[-74.493015685,41.641740604],[-74.493216338,41.641473377],[-74.493456701,41.641206333],[-74.493657353,41.640939114],[-74.493661083,41.640462495],[-74.493544519,41.640134299],[-74.493189464,41.639834841],[-74.492714584,41.639624223],[-74.49227917,41.639443555],[-74.492082729,41.639174586],[-74.491965705,41.638905966],[-74.491650842,41.638547102],[-74.491414696,41.638277945],[-74.491297208,41.638068901],[-74.49125961,41.637800631],[-74.491262421,41.637443166],[-74.491145873,41.637114968],[-74.490909256,41.636905395],[-74.490475048,41.636575789],[-74.490079382,41.63639529],[-74.489764775,41.636006633],[-74.489648943,41.635589072],[-74.48961323,41.635082486],[-74.489615813,41.634754815],[-74.489895639,41.634517743],[-74.490016873,41.63425017],[-74.48998022,41.633862745],[-74.489824448,41.633474794],[-74.489589739,41.633026906],[-74.489276081,41.632519095],[-74.489040908,41.63213078],[-74.488765328,41.631831663],[-74.488329988,41.631650988],[-74.48801399,41.631441057],[-74.487817824,41.63114229],[-74.487703429,41.630545987],[-74.487547916,41.630128244],[-74.487511044,41.629770599],[-74.487515291,41.62923441],[-74.487398304,41.628965778],[-74.486962044,41.628904253],[-74.486564292,41.628991853],[-74.486008215,41.629019157],[-74.485452136,41.629046459],[-74.484896044,41.629073758],[-74.484498539,41.629131555],[-74.483903696,41.629039518],[-74.483467199,41.629007767],[-74.482792249,41.629004734],[-74.48235479,41.629092132],[-74.481916625,41.629268894],[-74.48159709,41.629505769],[-74.481119457,41.62965256],[-74.480642526,41.629709983],[-74.480126382,41.629707651],[-74.479412669,41.629585264],[-74.478420566,41.629521188],[-74.477547322,41.629487432],[-74.47687356,41.629335422],[-74.475921409,41.629241718],[-74.475008951,41.629148185],[-74.474453107,41.629145647],[-74.473818091,41.629112951],[-74.473222545,41.629110224],[-74.472467935,41.629136553],[-74.471751822,41.629312],[-74.471075639,41.629457837],[-74.470598715,41.629515222],[-74.469923271,41.629571687],[-74.469248305,41.629568572],[-74.468653,41.629536033],[-74.467859168,41.629502571],[-74.467382732,41.629500365],[-74.466628358,41.629496867],[-74.465952667,41.629583097],[-74.465119381,41.629519645],[-74.464485854,41.629308172],[-74.464091773,41.628948862],[-74.463976366,41.628501477],[-74.463861701,41.627964735],[-74.463666646,41.627546767],[-74.463431892,41.627128621],[-74.463276298,41.626740625],[-74.463041302,41.626352267],[-74.462804825,41.626142637],[-74.462448987,41.625962238],[-74.462052968,41.625841229],[-74.461816498,41.625631589],[-74.461779768,41.625273945],[-74.461783484,41.624827122],[-74.461668101,41.624379735],[-74.461274311,41.62399063],[-74.4607205,41.623749718],[-74.460206643,41.623479192],[-74.45988978,41.623388337],[-74.459375679,41.623147606],[-74.458742734,41.622876524],[-74.458148982,41.622665202],[-74.45743565,41.622512889],[-74.456682361,41.622390168],[-74.456206725,41.622298552],[-74.455533842,41.622057052],[-74.455178558,41.621817054],[-74.454548657,41.621188482],[-74.453761221,41.620410222],[-74.453090389,41.619930393],[-74.452139664,41.619687552],[-74.451544207,41.619684713],[-74.450830406,41.619591938],[-74.450237987,41.619231625],[-74.450000554,41.619141121],[-74.449166668,41.619166919],[-74.448649078,41.619343181],[-74.448250078,41.619579582],[-74.448166369,41.6200856],[-74.448122352,41.620591815],[-74.448396174,41.621069757],[-74.448431304,41.621606141],[-74.448307383,41.622171545],[-74.447907095,41.622556891],[-74.447189197,41.622940703],[-74.446115539,41.62314406],[-74.44528057,41.62328898],[-74.444764479,41.623286488],[-74.444405383,41.623493288],[-74.443887245,41.623729097],[-74.443528667,41.623876308],[-74.443051506,41.623963363],[-74.442496981,41.623811729],[-74.442141739,41.623571692],[-74.442065164,41.62324363],[-74.441827997,41.623123321],[-74.441431768,41.62303203],[-74.440917479,41.622821003],[-74.440285644,41.622430668],[-74.439455574,41.622009564],[-74.438504093,41.621855974],[-74.43771142,41.621703156],[-74.436760466,41.621489974],[-74.436244391,41.621487445],[-74.435489337,41.621573108],[-74.434813688,41.621659155],[-74.434059412,41.621655444],[-74.433701607,41.621713261],[-74.433304625,41.621711305],[-74.432670748,41.62155923],[-74.431918837,41.621287405],[-74.431167445,41.620956008],[-74.430455507,41.62065459],[-74.429665483,41.620203825],[-74.428954348,41.619813033],[-74.428322343,41.619452421],[-74.427373298,41.619030639],[-74.42697897,41.618730781],[-74.426742902,41.618491288],[-74.426786292,41.618074446],[-74.426787873,41.617895718],[-74.426431403,41.617804571],[-74.425876708,41.617682645],[-74.425322028,41.617560718],[-74.424887492,41.61732023],[-74.424493174,41.617020363],[-74.424338896,41.616513165],[-74.424302646,41.616125722],[-74.424147842,41.615678097],[-74.423952815,41.615289858],[-74.423639504,41.61481165],[-74.423167413,41.614332655],[-74.422814153,41.61388404],[-74.422621265,41.613257487],[-74.422387892,41.612720099],[-74.422353515,41.61212414],[-74.422358829,41.611528371],[-74.422481624,41.611111938],[-74.422725086,41.610517364],[-74.422730664,41.609891817],[-74.42265553,41.609414801],[-74.42261823,41.609146509],[-74.422384073,41.608698492],[-74.422347041,41.608400405],[-74.422508722,41.608073534],[-74.422909072,41.607688283],[-74.423388794,41.607303418],[-74.423907152,41.607037915],[-74.424505931,41.606653651],[-74.425384119,41.606092037],[-74.426383204,41.605322496],[-74.427303407,41.604492978],[-74.427744719,41.603958959],[-74.428145011,41.60357369],[-74.428504034,41.603366949],[-74.428981326,41.603250153],[-74.429101975,41.603072018],[-74.429459943,41.602984427],[-74.430055767,41.602927802],[-74.430532804,41.602840799],[-74.430930457,41.6027534],[-74.431249256,41.602606029],[-74.431491034,41.602190165],[-74.43173255,41.601804098],[-74.431776681,41.601297894],[-74.431941704,41.600583756],[-74.431946144,41.600077351],[-74.432029953,41.599571345],[-74.43231114,41.599185472],[-74.432830428,41.598800763],[-74.43346799,41.598506012],[-74.433985964,41.598270247],[-74.434265313,41.598092887],[-74.43466605,41.597648009],[-74.435064711,41.597441441],[-74.435540912,41.597443781],[-74.436214764,41.597536457],[-74.436928548,41.597599534],[-74.437325899,41.5975419],[-74.437487477,41.597215007],[-74.43797325,41.596115165],[-74.438296133,41.595491157],[-74.43857804,41.595015902],[-74.438740123,41.594629422],[-74.438742961,41.594301753],[-74.438706117,41.593973888],[-74.438390734,41.593734024],[-74.437996506,41.593434204],[-74.43772055,41.593224328],[-74.437682679,41.593015617],[-74.437962768,41.592748882],[-74.438361898,41.592482717],[-74.438800703,41.592216756],[-74.439199837,41.591950599],[-74.439401586,41.59156431],[-74.439404163,41.591266429],[-74.439129502,41.590907616],[-74.438855346,41.590489217],[-74.438660821,41.590041427],[-74.438585076,41.589624004],[-74.438548237,41.58929613],[-74.438551335,41.588938673],[-74.438435398,41.588580632],[-74.438479206,41.588104206],[-74.438639982,41.587866676],[-74.439077981,41.587690076],[-74.439634763,41.587543844],[-74.44011295,41.587307851],[-74.440513323,41.586892745],[-74.440715318,41.586476674],[-74.440957746,41.585971425],[-74.441279267,41.585496355],[-74.441839862,41.584903279],[-74.442199261,41.584636919],[-74.442877074,41.584252933],[-74.443474262,41.584017509],[-74.444032268,41.583722314],[-74.444550853,41.583397137],[-74.444910742,41.583071182],[-74.44531055,41.582715637],[-74.445789697,41.582360474],[-74.446268598,41.582035088],[-74.446706285,41.581888249],[-74.447183386,41.581771384],[-74.447739084,41.581744264],[-74.448097418,41.581597039],[-74.448456508,41.581360445],[-74.448816612,41.58100469],[-74.449217404,41.580529977],[-74.449617931,41.580085053],[-74.449898672,41.579728915],[-74.450218834,41.579402763],[-74.450896304,41.579048522],[-74.451375144,41.578723116],[-74.451655618,41.578396769],[-74.451816572,41.578129432],[-74.451819092,41.577831539],[-74.45202023,41.577504812],[-74.452259768,41.577327218],[-74.452698917,41.577001624],[-74.453098893,41.576616256],[-74.453737653,41.576142657],[-74.454177036,41.575787262],[-74.454537075,41.575431496],[-74.454979467,41.574718635],[-74.455421587,41.574035572],[-74.456181307,41.573324208],[-74.457060506,41.572553827],[-74.457621604,41.571871315],[-74.458146231,41.571334391],[-74.458461843,41.571011368],[-74.459142906,41.570210247],[-74.459503634,41.569765101],[-74.459666023,41.569319012],[-74.45978924,41.568813167],[-74.459791474,41.568545071],[-74.459596123,41.56818667],[-74.459480602,41.567769073],[-74.459445655,41.567202897],[-74.45948805,41.566875411],[-74.45968861,41.566608248],[-74.459730258,41.566370128],[-74.459654653,41.56592292],[-74.4597382,41.565416889],[-74.459742914,41.5648509],[-74.459984617,41.564405191],[-74.460226811,41.563899897],[-74.460546356,41.563633288],[-74.460905796,41.563337079],[-74.461187149,41.562891546],[-74.461588964,41.562267846],[-74.461831879,41.561673182],[-74.462154122,41.561078896],[-74.462435454,41.560633358],[-74.462756196,41.560217803],[-74.463236563,41.559683826],[-74.463914987,41.559180565],[-74.464752777,41.558588668],[-74.465712215,41.557669641],[-74.466511782,41.556898824],[-74.467233221,41.55597868],[-74.467833237,41.555355868],[-74.468274599,41.554732326],[-74.468755123,41.554168534],[-74.469116437,41.553633981],[-74.469436857,41.553248195],[-74.470037057,41.55259559],[-74.470476203,41.552240128],[-74.471114827,41.551736644],[-74.472189659,41.551235149],[-74.473065219,41.550851898],[-74.47378337,41.550318964],[-74.474302985,41.549814915],[-74.475099219,41.549431279],[-74.475895912,41.548988066],[-74.476533751,41.548573916],[-74.477010796,41.548427137],[-74.477488317,41.548220773],[-74.477728647,41.547923966],[-74.47804875,41.547567944],[-74.47844911,41.547093116],[-74.478927816,41.546737811],[-74.479366156,41.546471689],[-74.479803526,41.546324719],[-74.480279116,41.54635666],[-74.480834021,41.546388956],[-74.481627308,41.546362745],[-74.482103385,41.546335102],[-74.482422268,41.546127999],[-74.482741387,41.545891118],[-74.48314194,41.545386493],[-74.483542735,41.544852071],[-74.483823374,41.544466063],[-74.484143428,41.544110015],[-74.484305345,41.543693686],[-74.484586448,41.5432481],[-74.485025215,41.54292237],[-74.485583388,41.542537601],[-74.485982721,41.542181911],[-74.486144162,41.541825147],[-74.486027795,41.54149694],[-74.485753081,41.541138235],[-74.485239531,41.540897611],[-74.484646215,41.540716216],[-74.484289125,41.540744403],[-74.484129109,41.540922425],[-74.483811207,41.541010375],[-74.483376251,41.540859466],[-74.482426088,41.540676453],[-74.48198995,41.54067449],[-74.481552611,41.540821468],[-74.481076109,41.540908688],[-74.480600321,41.540906541],[-74.480125236,41.540815023],[-74.479609798,41.540812693],[-74.478975166,41.540839609],[-74.478619761,41.54065926],[-74.478543334,41.540301436],[-74.478545487,41.540033338],[-74.478786728,41.539617367],[-74.479584719,41.538995395],[-74.480301482,41.538611363],[-74.48141591,41.538080177],[-74.482172784,41.537636734],[-74.483049765,41.537044883],[-74.484128522,41.536007077],[-74.484924999,41.535563794],[-74.485642636,41.535060579],[-74.486162047,41.534556467],[-74.486999068,41.533994197],[-74.487518214,41.533519866],[-74.488234646,41.533165579],[-74.488910944,41.532870688],[-74.489309741,41.532574564],[-74.489987201,41.532130714],[-74.490664192,41.531746449],[-74.491538915,41.531422621],[-74.492294478,41.531128063],[-74.492930864,41.530862762],[-74.493408913,41.53056697],[-74.493928217,41.530062821],[-74.494367765,41.529617908],[-74.495004832,41.529263221],[-74.495680597,41.529027869],[-74.49615608,41.529059742],[-74.496710604,41.529121752],[-74.497147128,41.52906408],[-74.497148743,41.528855557],[-74.496715221,41.528525973],[-74.496122216,41.528314841],[-74.495767746,41.528015388],[-74.49577029,41.527687712],[-74.495773297,41.527300457],[-74.495616121,41.527121021],[-74.494942462,41.527088273],[-74.493991538,41.527024515],[-74.493278005,41.527021373],[-74.492802306,41.527019276],[-74.492208628,41.526897496],[-74.491813621,41.526717013],[-74.49173666,41.526418774],[-74.491740156,41.525971934],[-74.491863282,41.525436262],[-74.492224232,41.52490163],[-74.492783369,41.52436788],[-74.493341583,41.523953273],[-74.493781556,41.523448786],[-74.494260928,41.522974248],[-74.494858756,41.522559817],[-74.495297783,41.522174479],[-74.495737498,41.521699761],[-74.496057601,41.521313895],[-74.496179066,41.520986738],[-74.496341079,41.520540592],[-74.496662326,41.52000578],[-74.497061919,41.519590464],[-74.497381774,41.519234382],[-74.49785972,41.518938572],[-74.498258838,41.518582827],[-74.498579372,41.518137377],[-74.498662321,41.517661093],[-74.498903807,41.517185507],[-74.499422742,41.516711127],[-74.499981292,41.516236912],[-74.500776731,41.515882888],[-74.501492655,41.515558296],[-74.50216918,41.515203747],[-74.502647518,41.51484834],[-74.503406254,41.514106863],[-74.504085924,41.513335249],[-74.504647146,41.51250355],[-74.505327012,41.511702141],[-74.505767264,41.511138016],[-74.506565324,41.510426486],[-74.507205287,41.509654684],[-74.508043169,41.508913513],[-74.50844217,41.508557742],[-74.509157988,41.508233102],[-74.509557204,41.507847534],[-74.509956638,41.507432179],[-74.510553773,41.507077233],[-74.510991482,41.506840776],[-74.511112384,41.506573181],[-74.511115968,41.506096548],[-74.51111933,41.505649713],[-74.511280978,41.505233341],[-74.511561057,41.504877043],[-74.512277934,41.504403447],[-74.512874795,41.504078287],[-74.513550691,41.503783237],[-74.514225679,41.503607352],[-74.514782017,41.50340117],[-74.51514021,41.503194152],[-74.515419815,41.502897421],[-74.51558054,41.502600199],[-74.5156629,41.502183487],[-74.515705631,41.501766598],[-74.515829612,41.501081952],[-74.515913075,41.500516284],[-74.51595736,41.499890883],[-74.516238066,41.499445205],[-74.516557495,41.499118859],[-74.516956388,41.498763054],[-74.517394238,41.498496774],[-74.518029769,41.498290909],[-74.518825553,41.49784739],[-74.519303674,41.497491903],[-74.519898675,41.497405018],[-74.520255292,41.497406506],[-74.520928658,41.497439102],[-74.521364508,41.497440917],[-74.521880711,41.497294114],[-74.522397118,41.497117518],[-74.522954242,41.49679214],[-74.523632418,41.496169353],[-74.524151209,41.49566507],[-74.52462973,41.495249982],[-74.524910128,41.494834081],[-74.525349658,41.494329457],[-74.52574891,41.493914043],[-74.526187786,41.493498791],[-74.526585727,41.493262103],[-74.52698388,41.492995629],[-74.527341986,41.492788572],[-74.527899048,41.492463169],[-74.528217949,41.49219636],[-74.528735175,41.49190058],[-74.529358415,41.491666671],[-74.530152965,41.491372019],[-74.530788376,41.491166081],[-74.531383316,41.491079138],[-74.532177837,41.490784462],[-74.532774474,41.490459197],[-74.533173666,41.490043757],[-74.533374965,41.489597714],[-74.533417147,41.489240407],[-74.533221409,41.488911922],[-74.533144314,41.488613699],[-74.533146023,41.488375385],[-74.533187778,41.488077654],[-74.533429543,41.487512617],[-74.533710066,41.487066904],[-74.534030199,41.486621341],[-74.534429785,41.48614632],[-74.534789311,41.485730712],[-74.534989733,41.485403824],[-74.535150962,41.485017204],[-74.535471077,41.484571639],[-74.535830175,41.484215607],[-74.536228235,41.483949102],[-74.536824151,41.483713183],[-74.537460112,41.483417835],[-74.538215321,41.483063388],[-74.539088744,41.482798779],[-74.53968443,41.482592635],[-74.540200052,41.482505319],[-74.540715031,41.482507377],[-74.541861953,41.482780068],[-74.54277141,41.483022008],[-74.543206538,41.483113107],[-74.543720896,41.483204518],[-74.544038228,41.483146197],[-74.54447629,41.482820241],[-74.544994607,41.482345644],[-74.545433688,41.481870738],[-74.545950338,41.481634457],[-74.54666483,41.481428737],[-74.547299481,41.481312076],[-74.547893677,41.481314414],[-74.548170761,41.481345293],[-74.548685743,41.481347315],[-74.549637903,41.481142516],[-74.55031257,41.480966415],[-74.550789367,41.480759747],[-74.551148759,41.480344081],[-74.551349915,41.479898013],[-74.551352587,41.479510752],[-74.55123601,41.479182599],[-74.551119836,41.478794874],[-74.551002645,41.478556095],[-74.551005111,41.478198616],[-74.551006963,41.477930512],[-74.550889979,41.477661945],[-74.550574944,41.477392602],[-74.550498401,41.477005023],[-74.550619495,41.476677807],[-74.550939667,41.476202405],[-74.551179382,41.47590544],[-74.551262311,41.475369542],[-74.551265393,41.474922694],[-74.551309317,41.474297273],[-74.551353239,41.473671843],[-74.551675239,41.472928337],[-74.552075009,41.472393672],[-74.552314501,41.472126492],[-74.552672821,41.471859766],[-74.553189151,41.471653242],[-74.553784691,41.471447025],[-74.554339813,41.471359804],[-74.554618693,41.471122563],[-74.554779364,41.470795486],[-74.554782218,41.470378434],[-74.554824065,41.470050904],[-74.554746891,41.469752697],[-74.554313673,41.469393536],[-74.553721411,41.469123128],[-74.55348582,41.468824305],[-74.553646695,41.468467448],[-74.553807364,41.46814038],[-74.554129522,41.467367077],[-74.554409812,41.466921308],[-74.554808303,41.466565363],[-74.555285588,41.466269306],[-74.555762474,41.466032828],[-74.556120737,41.4657661],[-74.556519006,41.465439935],[-74.55679826,41.46514311],[-74.557078536,41.464697336],[-74.557437796,41.464281649],[-74.557559644,41.463835265],[-74.557562479,41.463418203],[-74.55784111,41.463210743],[-74.558317551,41.463033833],[-74.55859639,41.46279658],[-74.558677817,41.462469194],[-74.558838646,41.462112329],[-74.559118077,41.461785708],[-74.559556511,41.461370315],[-74.559955352,41.460954779],[-74.560315382,41.460419932],[-74.560436798,41.460033114],[-74.560558615,41.459586728],[-74.560838427,41.459200516],[-74.561277047,41.458755334],[-74.561834246,41.458340397],[-74.562113443,41.458043548],[-74.562353842,41.4576274],[-74.56279304,41.457092837],[-74.563390215,41.456618462],[-74.563828388,41.456232852],[-74.564187173,41.45587672],[-74.564467745,41.455371348],[-74.564708916,41.45483603],[-74.564829896,41.454508795],[-74.564832485,41.454121531],[-74.564835071,41.45373426],[-74.564916656,41.453377085],[-74.564998433,41.45299012],[-74.565278391,41.452574108],[-74.565558552,41.452128311],[-74.565759907,41.451622631],[-74.566039455,41.4512662],[-74.566240605,41.450790308],[-74.566401365,41.450433431],[-74.566879272,41.450018167],[-74.567515954,41.449543911],[-74.567915055,41.449068765],[-74.568234371,41.448682683],[-74.568674842,41.447939578],[-74.569075106,41.447285684],[-74.569435576,41.446661437],[-74.569597095,41.44618539],[-74.569876216,41.445888531],[-74.570233917,41.445681336],[-74.570670407,41.445534006],[-74.571146299,41.445416618],[-74.571346216,41.445119461],[-74.571309369,41.44470226],[-74.571272133,41.444344628],[-74.571155518,41.444016501],[-74.570919927,41.44371772],[-74.570842709,41.443419522],[-74.57092385,41.443121921],[-74.571162971,41.44288449],[-74.571560437,41.442647647],[-74.572115867,41.442470973],[-74.57267111,41.442324078],[-74.573227508,41.441998449],[-74.57354598,41.441731517],[-74.573865616,41.441285839],[-74.573986914,41.440899014],[-74.574148007,41.440482546],[-74.574229912,41.440065778],[-74.574350815,41.439738532],[-74.574273976,41.439380762],[-74.57415716,41.439082418],[-74.574119909,41.438724796],[-74.574162419,41.438278098],[-74.574442835,41.437772694],[-74.574722665,41.437356663],[-74.575003269,41.436821464],[-74.575045382,41.436434348],[-74.575047518,41.436106661],[-74.575129411,41.43568989],[-74.575290276,41.435303209],[-74.575450764,41.434976101],[-74.575453677,41.434529256],[-74.575456586,41.434082411],[-74.575498694,41.433695285],[-74.575818276,41.433249607],[-74.57601775,41.433012019],[-74.576257384,41.432685201],[-74.576655348,41.432358972],[-74.577092904,41.432032886],[-74.577253171,41.431735563],[-74.57769148,41.431290318],[-74.57813017,41.430785491],[-74.578887447,41.429983917],[-74.579366086,41.429419643],[-74.579804569,41.428944599],[-74.580045512,41.428409243],[-74.580247256,41.427814173],[-74.58064728,41.427160235],[-74.580808284,41.426743755],[-74.581167005,41.426357777],[-74.58148594,41.426001456],[-74.581646936,41.425584974],[-74.581729153,41.425108619],[-74.581771217,41.424721495],[-74.581892821,41.424275074],[-74.582013465,41.423977609],[-74.582133919,41.423709932],[-74.582570437,41.423532774],[-74.582967934,41.423266093],[-74.583405957,41.422850614],[-74.583646468,41.42237484],[-74.583767674,41.421987995],[-74.583690043,41.421749389],[-74.58337552,41.421420556],[-74.583416429,41.421212163],[-74.583418333,41.420914267],[-74.583618498,41.420557507],[-74.583739321,41.420230247],[-74.583781369,41.419843117],[-74.583743885,41.419515286],[-74.584102168,41.419188887],[-74.584380907,41.418921773],[-74.584858087,41.418566009],[-74.585534663,41.417972632],[-74.58597358,41.417408194],[-74.586412679,41.416813956],[-74.587011208,41.416041554],[-74.587331381,41.415476675],[-74.5877697,41.415001601],[-74.588247409,41.414556444],[-74.588566246,41.4142001],[-74.588923902,41.413963056],[-74.589360511,41.413756073],[-74.589678411,41.413548675],[-74.589720046,41.413221127],[-74.589682723,41.412863508],[-74.589684972,41.412506022],[-74.58976599,41.412208407],[-74.58980725,41.411940439],[-74.590205582,41.411524784],[-74.5905649,41.411019626],[-74.591005406,41.410187049],[-74.59140448,41.409652239],[-74.591882858,41.409087909],[-74.592440553,41.408494068],[-74.592958496,41.407929882],[-74.593359197,41.407126947],[-74.593639703,41.406561919],[-74.594077742,41.406116599],[-74.594554776,41.405760796],[-74.594992421,41.405375051],[-74.595073407,41.405077432],[-74.595154758,41.40472023],[-74.595355008,41.404333659],[-74.595713507,41.403947636],[-74.59619236,41.403293925],[-74.596670282,41.402789154],[-74.596989946,41.402283834],[-74.597627772,41.401511505],[-74.59806739,41.400798062],[-74.598625152,41.400174407],[-74.598983973,41.399728791],[-74.599264581,41.399133957],[-74.59974374,41.398420645],[-74.600102912,41.397915446],[-74.600461711,41.397469834],[-74.600700911,41.397172759],[-74.600861711,41.39675624],[-74.601101826,41.396310216],[-74.601421413,41.395804875],[-74.60170089,41.395388776],[-74.602099043,41.394973085],[-74.602694284,41.394677226],[-74.603208936,41.39461942],[-74.603683845,41.394591267],[-74.604040083,41.394562703],[-74.604554733,41.394504892],[-74.60475362,41.394326832],[-74.604755063,41.394088512],[-74.604718389,41.393611729],[-74.604604402,41.392836783],[-74.604686409,41.392360406],[-74.604768236,41.391913829],[-74.604969819,41.39128891],[-74.60505146,41.390872122],[-74.605291163,41.390485659],[-74.605728645,41.39009988],[-74.606087003,41.38971383],[-74.606405622,41.389357427],[-74.606802821,41.389090667],[-74.607120537,41.388883219],[-74.607240823,41.388615514],[-74.607361466,41.388288221],[-74.607838475,41.387902571],[-74.608314954,41.387606288],[-74.609029112,41.387251221],[-74.609584337,41.38701478],[-74.610099989,41.386778204],[-74.610457774,41.386481509],[-74.610657507,41.386154481],[-74.610699194,41.385797134],[-74.610741237,41.385380208],[-74.610743902,41.384933349],[-74.610706303,41.384605525],[-74.610708077,41.384307625],[-74.611026657,41.383951208],[-74.611345042,41.383624585],[-74.611663601,41.383268174],[-74.61210064,41.382941942],[-74.612458227,41.382675031],[-74.612815799,41.38240812],[-74.613094261,41.382140939],[-74.613175134,41.381843298],[-74.613414923,41.381427034],[-74.614012276,41.380743845],[-74.614648804,41.380120377],[-74.615404692,41.379378132],[-74.616120824,41.378665538],[-74.616678222,41.378041792],[-74.617156674,41.377387982],[-74.617476221,41.376852812],[-74.617755511,41.376436662],[-74.617876602,41.376019996],[-74.617878171,41.375751875],[-74.617880263,41.375394396],[-74.618118964,41.375156862],[-74.618555568,41.374890193],[-74.619070399,41.374772736],[-74.619585063,41.374685058],[-74.62033649,41.374687541],[-74.620969452,41.374659836],[-74.621523998,41.374512709],[-74.621921899,41.374096947],[-74.622400281,41.373443115],[-74.622720451,41.372788769],[-74.623001584,41.372044914],[-74.623521364,41.371063514],[-74.623959475,41.370528716],[-74.624476659,41.369994162],[-74.625153396,41.369221803],[-74.625551583,41.368746446],[-74.6260684,41.368271468],[-74.626704022,41.36776709],[-74.627260027,41.367351822],[-74.627855398,41.366966462],[-74.628331634,41.366670092],[-74.628610643,41.366283705],[-74.628810902,41.365837492],[-74.629089564,41.365510693],[-74.629565615,41.365244108],[-74.630198305,41.365246143],[-74.630712196,41.365277584],[-74.631185546,41.365487636],[-74.631698431,41.365697815],[-74.632250707,41.365937907],[-74.632605426,41.366147575],[-74.6330389,41.366417083],[-74.633670606,41.36659784],[-74.634263432,41.366659305],[-74.63485659,41.36666119],[-74.635331793,41.366543534],[-74.636084953,41.366218212],[-74.636957573,41.365744316],[-74.637553369,41.365269542],[-74.638188711,41.364794881],[-74.638586281,41.364408851],[-74.638865384,41.363992649],[-74.639104943,41.363576331],[-74.639265261,41.363189552],[-74.639583239,41.362892633],[-74.64009925,41.36253676],[-74.640654973,41.362151217],[-74.641091399,41.361884455],[-74.641568017,41.361498658],[-74.641807875,41.361022746],[-74.641810814,41.360486522],[-74.641614912,41.360158212],[-74.641537793,41.359800475],[-74.641500217,41.359442869],[-74.641581746,41.35899626],[-74.641822737,41.358311814],[-74.642062757,41.35780611],[-74.642341973,41.357360117],[-74.642699285,41.35709311],[-74.642898441,41.35682561],[-74.643217022,41.356409521],[-74.643457175,41.35587403],[-74.643578562,41.355367953],[-74.643659585,41.355010715],[-74.64370156,41.354563974],[-74.643903138,41.35384962],[-74.644263018,41.353105955],[-74.644582871,41.352451537],[-74.644942098,41.351827039],[-74.645498499,41.351292511],[-74.645974687,41.350966278],[-74.646371334,41.350729171],[-74.647124094,41.350433565],[-74.647994339,41.350346859],[-74.648469869,41.350139776],[-74.648827275,41.349842957],[-74.649066077,41.34954578],[-74.649345862,41.348980597],[-74.649585458,41.348534464],[-74.649824412,41.348207484],[-74.650063841,41.347791142],[-74.650106562,41.347195447],[-74.650188659,41.34662967],[-74.650269794,41.346242635],[-74.650548745,41.345826402],[-74.650907403,41.345291257],[-74.651146974,41.344845113],[-74.651386543,41.344398975],[-74.651627536,41.343684716],[-74.651748665,41.34320843],[-74.651830264,41.342732014],[-74.651872332,41.342255488],[-74.651873919,41.341957576],[-74.651875664,41.341629881],[-74.651759141,41.341242248],[-74.651721515,41.340884635],[-74.651882327,41.340378677],[-74.652043146,41.339872719],[-74.65216363,41.339515585],[-74.652442225,41.339158934],[-74.652720499,41.338861865],[-74.652959876,41.338445508],[-74.653088992,41.338266824],[-74.653242566,41.338054287],[-74.65378253,41.337430379],[-74.654155539,41.337058638],[-74.654652531,41.336625125],[-74.655190421,41.336253884],[-74.655645702,41.335913455],[-74.655853459,41.33560336],[-74.656143831,41.335262444],[-74.656517617,41.334735339],[-74.656972869,41.334394913],[-74.657427639,41.334147695],[-74.657964841,41.333900714],[-74.658543109,41.333684936],[-74.659162257,41.333531413],[-74.659822801,41.333346933],[-74.660153716,41.333130415],[-74.660608615,41.33285211],[-74.660857408,41.332573193],[-74.66114805,41.332170121],[-74.661437735,41.331953478],[-74.661934169,41.331613145],[-74.662183262,41.33127209],[-74.662349919,41.330930785],[-74.662559233,41.330309975],[-74.662645043,41.329657717],[-74.662730532,41.32906761],[-74.662979931,41.328664411],[-74.663311929,41.328230375],[-74.663602706,41.327796219],[-74.663811201,41.327330762],[-74.663895877,41.326896003],[-74.663898591,41.32636779],[-74.663900666,41.325963866],[-74.663902263,41.325653155],[-74.663779876,41.325404225],[-74.663533853,41.325154934],[-74.663039235,41.325153486],[-74.662750238,41.325245853],[-74.66237783,41.32552441],[-74.661923631,41.325678435],[-74.661511448,41.325677225],[-74.66109959,41.325613867],[-74.660770652,41.32545754],[-74.660441705,41.325301211],[-74.660154803,41.324989649],[-74.659826023,41.324802242],[-74.659332714,41.324552212],[-74.659045484,41.324302788],[-74.659065995,41.324139777],[-74.659088478,41.323961131],[-74.659502914,41.32352735],[-74.659959374,41.322938343],[-74.660498089,41.322380643],[-74.660788376,41.322039706],[-74.66124416,41.321574974],[-74.661576134,41.32114095],[-74.661991176,41.32058288],[-74.662404931,41.320273377],[-74.66286069,41.319808638],[-74.663357667,41.319344016],[-74.663730674,41.318941176],[-74.663898237,41.318413444],[-74.664065968,41.317854644],[-74.664234163,41.317202631],[-74.664525044,41.316737405],[-74.664651388,41.316209553],[-74.664653459,41.315805627],[-74.664655846,41.315339558],[-74.664741616,41.314687296],[-74.664991902,41.314097666],[-74.665076711,41.313631838],[-74.665367253,41.313228749],[-74.665615781,41.3129809],[-74.666195266,41.312485429],[-74.666609264,41.312113776],[-74.666858891,41.311648421],[-74.666902953,41.311089259],[-74.667070312,41.31059259],[-74.667403454,41.309909971],[-74.667859748,41.30932093],[-74.668399543,41.308514624],[-74.668608254,41.307987003],[-74.668898277,41.30767712],[-74.669393692,41.307492116],[-74.670465703,41.307370901],[-74.671372241,41.307373491],[-74.672114594,41.307251319],[-74.672692567,41.307035466],[-74.672829261,41.306755322],[-74.673025632,41.306352833],[-74.67335776,41.30585663],[-74.673730784,41.305422679],[-74.673980645,41.304895165],[-74.674230046,41.304460871],[-74.674315088,41.303932889],[-74.674483452,41.303218716],[-74.674899814,41.302349883],[-74.675109379,41.301635824],[-74.67535906,41.301139375],[-74.675485142,41.300642586],[-74.675569693,41.300207822],[-74.675530343,41.299834847],[-74.675408741,41.299430573],[-74.675410128,41.299150927],[-74.675700387,41.298778882],[-74.675909009,41.298251254],[-74.676158823,41.297723734],[-74.676450609,41.297040972],[-74.676659064,41.296544412],[-74.676991575,41.295954977],[-74.677281353,41.295676148],[-74.67728227,41.295489714],[-74.676830299,41.295239874],[-74.676213234,41.295051711],[-74.675390642,41.294769745],[-74.674938538,41.294550973],[-74.674362846,41.29433184],[-74.673745642,41.294174736],[-74.673169791,41.293986664],[-74.672677116,41.293643477],[-74.672513887,41.293332294],[-74.672680068,41.293053125],[-74.673053488,41.292525962],[-74.673551114,41.291874861],[-74.674008761,41.290975079],[-74.674218143,41.290292088],[-74.674551106,41.289609456],[-74.675173664,41.288679057],[-74.675423292,41.288182607],[-74.675879054,41.287655674],[-74.676211371,41.287097308],[-74.676502186,41.286600978],[-74.676998505,41.286198439],[-74.677496029,41.285547328],[-74.677827252,41.28520646],[-74.67799432,41.284740849],[-74.678202724,41.284244283],[-74.678410974,41.283778787],[-74.678659644,41.283468762],[-74.67890863,41.283096591],[-74.679447614,41.28238344],[-74.679779722,41.28185615],[-74.680028531,41.281515045],[-74.680277197,41.281205017],[-74.68064957,41.280864261],[-74.681145215,41.280585985],[-74.681516833,41.280400585],[-74.681764571,41.28027698],[-74.681971425,41.280091123],[-74.682261862,41.279656914],[-74.682717952,41.279036741],[-74.683257311,41.278230351],[-74.683423722,41.277889021],[-74.683797107,41.277330754],[-74.684087522,41.276896539],[-74.684418517,41.276586728],[-74.684954859,41.276401768],[-74.685284952,41.276278381],[-74.685822023,41.275938058],[-74.686111672,41.275659198],[-74.686196122,41.275224425],[-74.686156278,41.274944667],[-74.68599272,41.274695646],[-74.685582497,41.274352739],[-74.684884287,41.273946894],[-74.684349473,41.27382114],[-74.6838154,41.273540022],[-74.683487868,41.273135187],[-74.683489669,41.272762336],[-74.683532362,41.272451734],[-74.683823046,41.271955376],[-74.684196257,41.271428182],[-74.684527075,41.271149439],[-74.684652268,41.270807992],[-74.684696449,41.270186675],[-74.684782255,41.269472255],[-74.684783748,41.269161538],[-74.684661238,41.268943698],[-74.684208234,41.268942456],[-74.683631375,41.269003018],[-74.683095402,41.269125828],[-74.682764888,41.269342422],[-74.68251599,41.269714602],[-74.682102952,41.269962037],[-74.681443561,41.270053429],[-74.680867606,41.269927549],[-74.680209135,41.2698325],[-74.679713872,41.270048629],[-74.679506285,41.270389849],[-74.679175602,41.270637503],[-74.678557392,41.270728992],[-74.678186885,41.27069688],[-74.678105432,41.270510224],[-74.67810711,41.270168441],[-74.678025822,41.269950706],[-74.677615517,41.269638838],[-74.676916784,41.269357228],[-74.676465157,41.269076317],[-74.675726628,41.268514945],[-74.675276089,41.268016518],[-74.675031468,41.267518679],[-74.675034087,41.266990462],[-74.675036243,41.266555465],[-74.675409176,41.266090437],[-74.675699441,41.26568732],[-74.67615411,41.265346803],[-74.676900571,41.264292455],[-74.677481056,41.263486214],[-74.678019741,41.262804135],[-74.678515716,41.262432655],[-74.679010772,41.262247609],[-74.679341868,41.261906734],[-74.679549733,41.261503378],[-74.679922755,41.261007264],[-74.680214185,41.260355565],[-74.68058872,41.259548727],[-74.681127338,41.258866641],[-74.681873787,41.257781184],[-74.682909336,41.25651009],[-74.683737479,41.255549127],[-74.68435838,41.254867252],[-74.684648991,41.254370891],[-74.684982257,41.253563933],[-74.685356685,41.252757086],[-74.685688593,41.252229765],[-74.686310485,41.251330368],[-74.686683261,41.250865308],[-74.686932954,41.250306683],[-74.687099716,41.249872132],[-74.687266466,41.249437571],[-74.687392357,41.248940763],[-74.687601017,41.248350956],[-74.687850547,41.247823414],[-74.6882227,41.247482624],[-74.68855323,41.247234943],[-74.689131947,41.246739356],[-74.68958628,41.24642986],[-74.690329656,41.245934712],[-74.691154921,41.245532983],[-74.691815065,41.245224031],[-74.692392289,41.245039146],[-74.693338998,41.245072741],[-74.694161483,41.245261366],[-74.694654909,41.245386958],[-74.695231262,41.245388485],[-74.69568468,41.245265402],[-74.69589225,41.244893083],[-74.696265783,41.244241556],[-74.696638866,41.243683243],[-74.696970075,41.243280179],[-74.697219653,41.242721531],[-74.697510397,41.242162998],[-74.697718516,41.241666394],[-74.698256668,41.241015291],[-74.69862943,41.240519109],[-74.699002199,41.240022934],[-74.699293059,41.239433318],[-74.699460269,41.238874458],[-74.699463685,41.238128741],[-74.699426087,41.237351839],[-74.69947066,41.236606218],[-74.699473364,41.236015857],[-74.699681877,41.235426027],[-74.699930558,41.235053816],[-74.700508228,41.234744599],[-74.701209527,41.234404621],[-74.701993133,41.234064861],[-74.702570795,41.233755632],[-74.703190452,41.23326008],[-74.703850835,41.232857835],[-74.704263977,41.232517105],[-74.704635678,41.232238414],[-74.704966488,41.231897463],[-74.705298274,41.231339016],[-74.705670939,41.230842816],[-74.706002434,41.230346501],[-74.706415826,41.22994362],[-74.706665547,41.229322811],[-74.706914584,41.228857362],[-74.707287211,41.228361159],[-74.707659844,41.227864953],[-74.708031772,41.227524096],[-74.708526895,41.227245705],[-74.70918691,41.226905574],[-74.709888905,41.226379123],[-74.710301836,41.226069441],[-74.710756188,41.225697714],[-74.710922457,41.225325263],[-74.711089407,41.22479746],[-74.711338517,41.224300925],[-74.711710542,41.223928988],[-74.712123177,41.223681445],[-74.712618664,41.223309821],[-74.712990276,41.223031095],[-74.713445134,41.222535074],[-74.714270371,41.222039964],[-74.715302032,41.221390005],[-74.716250964,41.220833048],[-74.717117706,41.220244804],[-74.717613405,41.219811013],[-74.71835627,41.21931567],[-74.718728102,41.218974787],[-74.719387716,41.218696752],[-74.720047191,41.21844977],[-74.720483706,41.218238001],[-74.720366697,41.217931627],[-74.720084066,41.217597273],[-74.719864635,41.217239241],[-74.719645329,41.216857371],[-74.719394432,41.216475422],[-74.719143562,41.216093474],[-74.719018123,41.215902504],[-74.718892809,41.215687696],[-74.718956831,41.215473358],[-74.71914713,41.21525932],[-74.719274109,41.215092795],[-74.719338333,41.214830781],[-74.719244567,41.214616051],[-74.719087989,41.214329668],[-74.718867757,41.214162296],[-74.718616298,41.21392335],[-74.718490955,41.213708541],[-74.718460738,41.213398637],[-74.718556534,41.213136701],[-74.718684019,41.212851012],[-74.71887439,41.212613145],[-74.719128213,41.212303926],[-74.719319102,41.211946891],[-74.719541047,41.211709101],[-74.719573836,41.211423179],[-74.719417143,41.211160626],[-74.719387024,41.210826885],[-74.719451672,41.210469543],[-74.719610694,41.210183929],[-74.719832837,41.20989847],[-74.720055991,41.209374671],[-74.720089059,41.209017252],[-74.720027463,41.208659603],[-74.719903162,41.208206466],[-74.71977917,41.207681822],[-74.719623617,41.20715711],[-74.719530764,41.20672788],[-74.719627176,41.206322946],[-74.719786898,41.2058705],[-74.720072853,41.20541836],[-74.720390053,41.205037792],[-74.720833887,41.204562204],[-74.721404339,41.203991583],[-74.721974694,41.20344479],[-74.722576882,41.202826571],[-74.723052248,41.20235105],[-74.723559359,41.201827926],[-74.724065852,41.20144781],[-74.724667112,41.201044073],[-74.725300128,41.20059275],[-74.725649133,41.200140746],[-74.72584006,41.199759869],[-74.725778032,41.199497551],[-74.725652418,41.199354249],[-74.725431821,41.199282224],[-74.725306107,41.199162758],[-74.725275055,41.199043517],[-74.725402263,41.198805487],[-74.725623953,41.198615343],[-74.725688158,41.198353332],[-74.725594172,41.198186274],[-74.725375095,41.197756745],[-74.725155501,41.197446389],[-74.724810321,41.196992729],[-74.724402103,41.19651508],[-74.724245848,41.196157206],[-74.72418414,41.195823388],[-74.724059136,41.195537087],[-74.72396557,41.195274692],[-74.723966971,41.194941025],[-74.723968172,41.194655027],[-74.724064341,41.194297757],[-74.72422339,41.193988299],[-74.724413499,41.193798088],[-74.724350903,41.193678772],[-74.72409928,41.193487504],[-74.723879326,41.193272475],[-74.723754106,41.19303384],[-74.723755408,41.192724004],[-74.723787878,41.192509578],[-74.724010131,41.192176441],[-74.72426415,41.191795719],[-74.724423393,41.191438593],[-74.724329743,41.191200034],[-74.724141132,41.191032748],[-74.723858183,41.190793737],[-74.723669675,41.190602611],[-74.723544783,41.19029248],[-74.723608687,41.190101969],[-74.723893645,41.18986431],[-74.724147135,41.189602754],[-74.724179502,41.189412159],[-74.724022442,41.189244947],[-74.723644341,41.189124873],[-74.723360891,41.189005025],[-74.723203844,41.188837814],[-74.723330551,41.188718953],[-74.723615003,41.188600468],[-74.723994299,41.188434543],[-74.724247394,41.188268314],[-74.724389355,41.188020739],[-74.724485698,41.187615801],[-74.724581644,41.187306191],[-74.724740574,41.187020569],[-74.724836239,41.186782465],[-74.724837635,41.186448796],[-74.724775533,41.186210314],[-74.724776831,41.185900478],[-74.724841127,41.185614629],[-74.724999754,41.185400504],[-74.725285284,41.185019856],[-74.725665452,41.184639422],[-74.726077567,41.184163728],[-74.726299689,41.183854425],[-74.726458717,41.183544961],[-74.726523488,41.183139946],[-74.726493334,41.182806204],[-74.726400084,41.182472312],[-74.726212892,41.181971371],[-74.725993557,41.181613341],[-74.725805751,41.181255392],[-74.725618082,41.180873605],[-74.725492991,41.180611137],[-74.725115237,41.180419569],[-74.724674181,41.180275519],[-74.724390267,41.18027484],[-74.72423305,41.18015529],[-74.724454459,41.180012821],[-74.724612695,41.179894033],[-74.724739779,41.179679834],[-74.724866962,41.179441803],[-74.725025277,41.179299175],[-74.725309883,41.179133019],[-74.725783556,41.179014981],[-74.726131251,41.178848973],[-74.726352961,41.178634996],[-74.726479937,41.178444632],[-74.726480732,41.17825397],[-74.726576562,41.177968193],[-74.726672679,41.177610913],[-74.726863129,41.177325362],[-74.727116567,41.177063799],[-74.72746425,41.176897787],[-74.727875009,41.176731922],[-74.728127863,41.176613354],[-74.728380812,41.176470945],[-74.728539306,41.176280653],[-74.72863492,41.176042536],[-74.728762485,41.175709166],[-74.728953215,41.175352113],[-74.729112393,41.174994987],[-74.729398049,41.17456665],[-74.729620529,41.174162004],[-74.729748065,41.173828631],[-74.729812533,41.173495112],[-74.729908723,41.173113998],[-74.73013088,41.172780847],[-74.730415652,41.172567018],[-74.730890038,41.172258286],[-74.731396085,41.171925797],[-74.73190191,41.171640972],[-74.732249942,41.171379617],[-74.732566518,41.171094342],[-74.732946369,41.17076156],[-74.733168018,41.17054757],[-74.733232563,41.17019021],[-74.733265356,41.169880454],[-74.733266806,41.169522955],[-74.733268351,41.169141619],[-74.73320673,41.168783974],[-74.73311337,41.168473916],[-74.733145776,41.168259489],[-74.733272508,41.168116786],[-74.733525703,41.167902867],[-74.733715999,41.167641133],[-74.733906495,41.16733174],[-74.734096884,41.167046178],[-74.734350265,41.16678459],[-74.734635082,41.166546911],[-74.734825273,41.166309015],[-74.734952478,41.166047135],[-74.735016627,41.165785111],[-74.734954688,41.165498964],[-74.734924029,41.165284389],[-74.734925085,41.165022228],[-74.73495757,41.164783967],[-74.735084783,41.164522087],[-74.735211418,41.164403211],[-74.73540113,41.16428448],[-74.735685073,41.164261294],[-74.735811505,41.164190085],[-74.736064486,41.164023829],[-74.73622293,41.163833527],[-74.736381669,41.163571717],[-74.736414179,41.163333456],[-74.736446952,41.16302369],[-74.736448098,41.162737689],[-74.736417424,41.162523114],[-74.736260683,41.162284421],[-74.735977719,41.162069269],[-74.735568774,41.161806165],[-74.735160152,41.161471556],[-74.734625267,41.161160483],[-74.734121931,41.160849488],[-74.733776473,41.16049118],[-74.733525355,41.160204597],[-74.733305846,41.159894254],[-74.732959925,41.159655119],[-74.732645622,41.159392218],[-74.732330945,41.15922465],[-74.732016065,41.15910475],[-74.731575353,41.158913058],[-74.731292028,41.158793222],[-74.731134925,41.158649858],[-74.731103783,41.158554448],[-74.731230708,41.158364078],[-74.73138955,41.158078445],[-74.731485806,41.157673499],[-74.731676576,41.157292602],[-74.731804555,41.156840062],[-74.731900514,41.156506612],[-74.731933414,41.156173018],[-74.73190304,41.155886944],[-74.73184134,41.155553128],[-74.731811257,41.155195556],[-74.731781476,41.154766477],[-74.731751307,41.154432734],[-74.731784293,41.154075308],[-74.731880154,41.153765691],[-74.731943901,41.153599002],[-74.731944678,41.153408338],[-74.731819416,41.153193542],[-74.731693973,41.153026413],[-74.731537952,41.152620879],[-74.731413191,41.152286916],[-74.73128802,41.152048289],[-74.731099622,41.151857183],[-74.730911193,41.151666068],[-74.73069087,41.151570217],[-74.730565334,41.151426925],[-74.730503147,41.151212275],[-74.730504122,41.150973941],[-74.730567773,41.150831085],[-74.73060046,41.150545158],[-74.730601337,41.150330663],[-74.730507342,41.150187437],[-74.730129064,41.15016272],[-74.729750494,41.150209494],[-74.729498225,41.150208902],[-74.729246576,41.150065312],[-74.72905807,41.149898034],[-74.728869378,41.149778422],[-74.728522718,41.149729936],[-74.728239044,41.149705438],[-74.727861066,41.149609208],[-74.727420408,41.149417492],[-74.727011499,41.149178189],[-74.726728027,41.149106017],[-74.726412324,41.149200605],[-74.726191101,41.149319247],[-74.725749381,41.149389696],[-74.725402237,41.149460367],[-74.724834683,41.149459012],[-74.724456312,41.149458109],[-74.724015266,41.149361725],[-74.723763712,41.149194283],[-74.723575745,41.14890783],[-74.723387845,41.148597537],[-74.723294459,41.148311308],[-74.72323251,41.148048986],[-74.723138623,41.147881923],[-74.722950238,41.147690805],[-74.722793683,41.147428254],[-74.722731424,41.147237438],[-74.722826736,41.147070831],[-74.722985386,41.146832878],[-74.723018406,41.146475446],[-74.723113996,41.14623734],[-74.723272853,41.145951718],[-74.723463126,41.145690011],[-74.723653607,41.145380623],[-74.723812662,41.145047333],[-74.723971404,41.14478554],[-74.724067176,41.144499765],[-74.723941857,41.1443088],[-74.723752402,41.144379845],[-74.723625284,41.144617882],[-74.72346693,41.144784329],[-74.723088285,41.144854927],[-74.722741062,41.144949421],[-74.722488545,41.14502032],[-74.722110199,41.145019408],[-74.721668783,41.145018342],[-74.721227176,41.145064944],[-74.72084893,41.14504019],[-74.720470787,41.144991605],[-74.720187024,41.144990916],[-74.719839797,41.145085407],[-74.719524105,41.145179978],[-74.71933463,41.145251015],[-74.719176997,41.145250631],[-74.719082899,41.145131234],[-74.718926592,41.144821011],[-74.718802724,41.144296368],[-74.718615992,41.143723904],[-74.718523143,41.143318506],[-74.718398749,41.14291303],[-74.718273666,41.142674381],[-74.717990946,41.142435352],[-74.717708114,41.142220156],[-74.717519864,41.14200519],[-74.717489465,41.14174295],[-74.717554045,41.141385596],[-74.717618432,41.141075919],[-74.717682702,41.140790073],[-74.71768352,41.140599408],[-74.717589557,41.140456173],[-74.717400821,41.140360371],[-74.717275416,41.140193227],[-74.717024426,41.139906606],[-74.716741837,41.139643746],[-74.716585026,41.139452686],[-74.716491673,41.139166452],[-74.716429838,41.138880297],[-74.716368553,41.138474974],[-74.71627529,41.138164901],[-74.715960759,41.137997296],[-74.715646339,41.137805846],[-74.715300266,41.137638154],[-74.71508063,41.137399277],[-74.714892827,41.137088968],[-74.714767848,41.136826493],[-74.714612095,41.136397097],[-74.714455495,41.136158373],[-74.714298906,41.135919649],[-74.7139847,41.135680534],[-74.713638445,41.135560498],[-74.713323724,41.135440547],[-74.713072468,41.135225417],[-74.712947718,41.134915272],[-74.712854501,41.134605204],[-74.712824955,41.134152281],[-74.712889659,41.133771108],[-74.712922952,41.133366018],[-74.71283005,41.132984446],[-74.712610935,41.132626388],[-74.712359994,41.132339757],[-74.711951779,41.131981233],[-74.711574864,41.131670456],[-74.71122988,41.131264411],[-74.710947433,41.130977697],[-74.710664904,41.130714822],[-74.710414292,41.13035668],[-74.710195203,41.129998625],[-74.710070917,41.12959314],[-74.710072071,41.12933097],[-74.71007333,41.129044968],[-74.710200446,41.128806951],[-74.710358888,41.128616675],[-74.710580582,41.128378895],[-74.710801659,41.128284122],[-74.711054879,41.128046413],[-74.711276465,41.127832471],[-74.711561602,41.12749951],[-74.711783277,41.127261721],[-74.712005277,41.126952442],[-74.712132724,41.126642916],[-74.712292719,41.126095146],[-74.712357944,41.125594797],[-74.712328397,41.125141883],[-74.712172155,41.124831648],[-74.711732356,41.124496876],[-74.711292237,41.124233607],[-74.710694532,41.123969933],[-74.710254211,41.123754321],[-74.709687395,41.123633725],[-74.709246123,41.123632611],[-74.708962254,41.123679565],[-74.708520052,41.123892952],[-74.708140751,41.124130329],[-74.707824941,41.124272535],[-74.707445762,41.12448607],[-74.707287851,41.124557175],[-74.706878309,41.124508465],[-74.706531925,41.124436084],[-74.706028045,41.124339463],[-74.705681641,41.124267079],[-74.7054607,41.124338014],[-74.705207805,41.124504203],[-74.704797849,41.124550823],[-74.704482544,41.124573844],[-74.704230074,41.124644695],[-74.703819902,41.12473898],[-74.703440687,41.12495251],[-74.702998579,41.125142038],[-74.702714042,41.125331979],[-74.702335379,41.125426332],[-74.701925611,41.125425272],[-74.70145305,41.12537638],[-74.701106655,41.125303982],[-74.700791452,41.125303164],[-74.700507678,41.125326265],[-74.700223448,41.125444694],[-74.699781959,41.125491213],[-74.699372439,41.125442477],[-74.698963115,41.125346071],[-74.698648348,41.12524991],[-74.698365547,41.125058502],[-74.698176665,41.125010338],[-74.698113078,41.125129341],[-74.698017649,41.125319764],[-74.697890247,41.125605437],[-74.697825467,41.125986601],[-74.697792748,41.126248688],[-74.69772774,41.126677531],[-74.697600003,41.127034698],[-74.697378048,41.127320121],[-74.697030245,41.127557543],[-74.696650794,41.127818718],[-74.696271667,41.128008388],[-74.696082087,41.128103224],[-74.696018285,41.128269894],[-74.695985879,41.128460476],[-74.695890339,41.128674728],[-74.69576325,41.128888897],[-74.695604324,41.129174483],[-74.69528757,41.129507319],[-74.695002661,41.129768738],[-74.694528405,41.130077317],[-74.69418111,41.130195563],[-74.693708067,41.130241977],[-74.693329473,41.130312469],[-74.692950769,41.130406796],[-74.692572064,41.130501125],[-74.692350852,41.130619703],[-74.692003337,41.13078561],[-74.691687441,41.130927764],[-74.691497643,41.131070262],[-74.691370871,41.13121292],[-74.691087057,41.131235998],[-74.690961534,41.131116493],[-74.690836349,41.130925482],[-74.69077441,41.13068698],[-74.690586628,41.130400472],[-74.690461894,41.130114132],[-74.690305406,41.129875375],[-74.690180214,41.129684364],[-74.68989708,41.129564434],[-74.689613722,41.129492172],[-74.689204051,41.129467237],[-74.688951895,41.129466556],[-74.688668425,41.129418122],[-74.688353543,41.129345763],[-74.688101715,41.129273584],[-74.687787172,41.129129732],[-74.687535469,41.129033712],[-74.687252004,41.128985274],[-74.687062873,41.12898476],[-74.686810819,41.128960246],[-74.686496066,41.128864052],[-74.686275976,41.128744285],[-74.686055792,41.128648348],[-74.685772216,41.128623744],[-74.68542548,41.128622798],[-74.685236363,41.12862228],[-74.684889615,41.128621332],[-74.684605926,41.128620558],[-74.684228019,41.128548015],[-74.684007485,41.128523579],[-74.683660888,41.128498798],[-74.683155635,41.128688077],[-74.682871359,41.128806462],[-74.682618965,41.128853436],[-74.682303757,41.128852567],[-74.681956793,41.128899278],[-74.68157762,41.129088899],[-74.6812929,41.129302617],[-74.680976755,41.129492408],[-74.680723779,41.129658545],[-74.680502204,41.129848605],[-74.680280616,41.130038658],[-74.679901315,41.13025211],[-74.679332781,41.130488866],[-74.679048503,41.13060724],[-74.678701293,41.130701612],[-74.678511934,41.130748751],[-74.678196485,41.130795539],[-74.678006755,41.130914176],[-74.67775401,41.131032637],[-74.677406435,41.131198502],[-74.677090641,41.131316786],[-74.676900453,41.131530757],[-74.676773657,41.131673398],[-74.676646745,41.13183988],[-74.676425279,41.132006095],[-74.676172272,41.13217222],[-74.675950687,41.132362264],[-74.675444665,41.132694513],[-74.674938777,41.133002928],[-74.674622492,41.133216543],[-74.674148576,41.1334297],[-74.673769117,41.133666969],[-74.672695303,41.134069096],[-74.672189394,41.134377492],[-74.671683706,41.134638225],[-74.671241549,41.134803801],[-74.670641881,41.134945094],[-74.670073718,41.135086467],[-74.669568495,41.135251855],[-74.669157502,41.135489013],[-74.668809401,41.135750185],[-74.668556132,41.135963961],[-74.66833414,41.136225489],[-74.668175677,41.136391869],[-74.667891725,41.13643872],[-74.667639522,41.136437991],[-74.667324398,41.136413252],[-74.666977996,41.136340745],[-74.666662731,41.136339832],[-74.666189756,41.136362302],[-74.665779689,41.136408782],[-74.665243641,41.136431055],[-74.664928407,41.136430139],[-74.664518715,41.136405116],[-74.664235112,41.136380451],[-74.663919624,41.1364272],[-74.663603883,41.136521617],[-74.663382722,41.136616307],[-74.663066736,41.136758382],[-74.662782656,41.136829049],[-74.662498931,41.136828218],[-74.66208948,41.136755519],[-74.66168002,41.136682818],[-74.661144593,41.136585908],[-74.660640689,41.136489086],[-74.660294047,41.136464235],[-74.659915259,41.136558455],[-74.659568238,41.136605099],[-74.65906384,41.136603608],[-74.658433598,41.13655407],[-74.657961353,41.136433501],[-74.657646087,41.136432566],[-74.657330595,41.136479289],[-74.65692017,41.136597243],[-74.656730272,41.136739675],[-74.656541503,41.136667613],[-74.656290542,41.136428529],[-74.65597729,41.136046252],[-74.655758477,41.135688087],[-74.655697183,41.13535424],[-74.655698679,41.13506823],[-74.655700298,41.134758402],[-74.655764334,41.134567925],[-74.655891689,41.134329964],[-74.655860907,41.134186874],[-74.655639493,41.134329211],[-74.655386051,41.134566795],[-74.655163897,41.134852136],[-74.654942106,41.135065968],[-74.654751344,41.13537524],[-74.654181778,41.135778704],[-74.653675244,41.136182354],[-74.652853221,41.136632721],[-74.652189064,41.137035896],[-74.651620121,41.13732018],[-74.651304239,41.137438393],[-74.650925552,41.137508745],[-74.650547249,41.137507598],[-74.650263524,41.137506737],[-74.650042985,41.137482236],[-74.649728602,41.137314445],[-74.649508699,41.13717077],[-74.649257265,41.137027007],[-74.648910742,41.136978283],[-74.648532573,41.136953291],[-74.648249114,41.136904756],[-74.647997544,41.136784821],[-74.647620267,41.136593002],[-74.646991952,41.136185905],[-74.646489863,41.135755355],[-74.646051211,41.135253499],[-74.64567549,41.134775674],[-74.645425999,41.134274398],[-74.645113571,41.133749095],[-74.644801438,41.133176124],[-74.644519916,41.132770076],[-74.644081558,41.132220551],[-74.643546955,41.131980555],[-74.642916911,41.131907106],[-74.6422234,41.131904954],[-74.641529144,41.132045801],[-74.640740179,41.132210181],[-74.639824975,41.132397989],[-74.639067128,41.132633953],[-74.638561979,41.132775376],[-74.638057087,41.132869119],[-74.637363588,41.13286694],[-74.636828229,41.132769924],[-74.636293659,41.132529902],[-74.63563378,41.132146474],[-74.635256436,41.131978443],[-74.634816191,41.131786375],[-74.634438321,41.131713675],[-74.634060451,41.131640979],[-74.63361967,41.13154424],[-74.632989753,41.131446906],[-74.632580103,41.13142176],[-74.63204475,41.131324715],[-74.631919469,41.131181317],[-74.631920535,41.130990653],[-74.632079863,41.130681319],[-74.632112866,41.130419251],[-74.632239877,41.13025282],[-74.632430064,41.130062759],[-74.632525558,41.129896227],[-74.632778808,41.129706368],[-74.63293761,41.129492368],[-74.633064892,41.129278269],[-74.633192153,41.129064169],[-74.633382212,41.128897939],[-74.633508952,41.128779173],[-74.63379357,41.128613243],[-74.633983371,41.128494678],[-74.634205209,41.128280876],[-74.634426912,41.128090912],[-74.63452278,41.12785288],[-74.634523973,41.12763838],[-74.634525824,41.127304712],[-74.634653505,41.127019112],[-74.634781031,41.126757342],[-74.635034254,41.126567478],[-74.63541315,41.12644951],[-74.63563404,41.126402542],[-74.635855338,41.126284073],[-74.635951222,41.12604604],[-74.636015437,41.125831735],[-74.636142703,41.125617634],[-74.636396171,41.125380098],[-74.636554829,41.125189924],[-74.636839948,41.124928656],[-74.637124539,41.124762716],[-74.637503555,41.124620902],[-74.637913938,41.124503025],[-74.638198405,41.124360922],[-74.638609059,41.124195373],[-74.638830343,41.124076899],[-74.639083935,41.12381552],[-74.639306392,41.123482543],[-74.639497844,41.12305413],[-74.639688784,41.122721054],[-74.639879579,41.122411816],[-74.640040541,41.121792641],[-74.640170009,41.121173367],[-74.640206338,41.120291628],[-74.640210764,41.119481295],[-74.640182506,41.118885358],[-74.640184849,41.118456361],[-74.640186412,41.118170361],[-74.640376681,41.117956452],[-74.640567199,41.117694869],[-74.64082089,41.117409657],[-74.641042657,41.117195842],[-74.641264302,41.117005865],[-74.641487623,41.116506049],[-74.641868542,41.116006721],[-74.6423118,41.115626764],[-74.642596865,41.115365475],[-74.642882036,41.115080353],[-74.643167862,41.114676066],[-74.643359531,41.11419998],[-74.643677384,41.113700451],[-74.644089105,41.113320388],[-74.644468552,41.113083216],[-74.644942416,41.112870179],[-74.64532237,41.112537675],[-74.645607903,41.112181041],[-74.646083164,41.11170583],[-74.646464384,41.111134989],[-74.64684547,41.110587978],[-74.647225912,41.11016013],[-74.647416254,41.109922377],[-74.647701911,41.109541907],[-74.647955147,41.109328184],[-74.648145494,41.10909042],[-74.64827307,41.108804804],[-74.648558187,41.108519668],[-74.648685252,41.108329389],[-74.649063765,41.108259043],[-74.649441909,41.108260194],[-74.649819914,41.108285174],[-74.650134644,41.108357629],[-74.650228403,41.108500921],[-74.650416844,41.108620661],[-74.650699941,41.108716857],[-74.651078204,41.108694165],[-74.651614156,41.108648118],[-74.652023923,41.108625526],[-74.652370678,41.108602742],[-74.652559865,41.108579475],[-74.652749691,41.108437049],[-74.652845352,41.10822283],[-74.652909503,41.108008517],[-74.652910508,41.107817853],[-74.652975288,41.107484373],[-74.653260506,41.107175388],[-74.653672279,41.106771453],[-74.654178697,41.106343961],[-74.65462159,41.106011615],[-74.654780377,41.105773755],[-74.655064851,41.105607768],[-74.655317798,41.10544169],[-74.655634014,41.105228135],[-74.655760554,41.105133176],[-74.655824695,41.104918862],[-74.655731402,41.104680246],[-74.655544333,41.104298344],[-74.655451564,41.103964392],[-74.655390041,41.103678202],[-74.655391409,41.10341603],[-74.655424783,41.103058624],[-74.655614825,41.102868525],[-74.655805,41.102654587],[-74.655901017,41.102368868],[-74.656217846,41.102036139],[-74.656503025,41.101727144],[-74.656788099,41.101441988],[-74.657041265,41.101228244],[-74.6571683,41.101037947],[-74.657264048,41.100799893],[-74.657264916,41.100633058],[-74.657392321,41.100371263],[-74.657519694,41.100109474],[-74.657835878,41.099895906],[-74.658215097,41.099682526],[-74.658562644,41.099492888],[-74.658941342,41.099374841],[-74.659509208,41.099233513],[-74.660077307,41.099044523],[-74.66064529,41.09887936],[-74.661150513,41.098666341],[-74.661782094,41.098382191],[-74.662382436,41.098050274],[-74.662793353,41.097789303],[-74.663109508,41.09757572],[-74.663520319,41.097338585],[-74.663805079,41.097101079],[-74.664215863,41.09686394],[-74.664500518,41.096650262],[-74.664752921,41.096579497],[-74.664910801,41.096508449],[-74.665069053,41.09636591],[-74.665322204,41.096152138],[-74.665417806,41.09593791],[-74.665482147,41.09567593],[-74.665483477,41.095413757],[-74.665390274,41.09515131],[-74.665170466,41.095007672],[-74.664856036,41.094887589],[-74.664510461,41.094695908],[-74.664070368,41.094503959],[-74.663725393,41.094193115],[-74.663254414,41.093881895],[-74.663066599,41.093643009],[-74.662847166,41.093427861],[-74.662595383,41.093379454],[-74.662216724,41.093497512],[-74.661869564,41.093615664],[-74.661459527,41.093709798],[-74.661111998,41.093899445],[-74.660669823,41.094112649],[-74.660259165,41.094325947],[-74.659785988,41.094443717],[-74.659249551,41.09460897],[-74.658933521,41.094798705],[-74.658428446,41.094987884],[-74.658049771,41.095105929],[-74.65757709,41.095128357],[-74.657073123,41.095103027],[-74.656475411,41.094934409],[-74.656097853,41.094837944],[-74.655719795,41.094836816],[-74.655467255,41.094931399],[-74.655371372,41.095193287],[-74.655181092,41.095431056],[-74.654960568,41.095430397],[-74.654677894,41.09526271],[-74.654395723,41.09499969],[-74.654176938,41.094665357],[-74.654021042,41.094355052],[-74.654022419,41.094092881],[-74.654024044,41.093783049],[-74.654025544,41.093497046],[-74.653932035,41.09330609],[-74.653680748,41.093162337],[-74.653272079,41.092994269],[-74.653083919,41.092826866],[-74.652990298,41.092659747],[-74.65286541,41.092444862],[-74.652866666,41.092206529],[-74.65305707,41.091944927],[-74.653152695,41.091730707],[-74.653090689,41.091539853],[-74.652839306,41.091419929],[-74.652399508,41.091180264],[-74.652117499,41.090893408],[-74.651835974,41.090511211],[-74.651586223,41.090081444],[-74.651430235,41.089794965],[-74.651367859,41.089675608],[-74.651588995,41.089557108],[-74.651747647,41.089343081],[-74.652001419,41.089010172],[-74.652129316,41.088653051],[-74.652288583,41.088319857],[-74.652416968,41.0878674],[-74.65257599,41.087581874],[-74.653019014,41.087201864],[-74.6534304,41.086845595],[-74.653778665,41.086512966],[-74.654000422,41.086275294],[-74.654159423,41.085989766],[-74.654192418,41.085703857],[-74.654194292,41.085346349],[-74.65416467,41.084988754],[-74.654009048,41.084630782],[-74.653727299,41.084296258],[-74.65335093,41.083985282],[-74.652973815,41.083817308],[-74.652470691,41.083648953],[-74.65190372,41.083647244],[-74.651241338,41.083812078],[-74.650515346,41.084095883],[-74.650041718,41.084308954],[-74.64956834,41.084474353],[-74.649095584,41.084520584],[-74.648780843,41.084471956],[-74.648466345,41.084375659],[-74.648341117,41.084232276],[-74.648248019,41.083969816],[-74.648217405,41.083802886],[-74.648029174,41.083659312],[-74.647745924,41.083610777],[-74.647336691,41.083561856],[-74.647053208,41.083560988],[-74.646863823,41.083631907],[-74.646705563,41.08377443],[-74.646421033,41.083964225],[-74.646073918,41.084082328],[-74.645443152,41.084223397],[-74.644844008,41.084340719],[-74.644559098,41.084602017],[-74.644337068,41.084887339],[-74.644177115,41.08533969],[-74.644111038,41.0859115],[-74.644045475,41.086387972],[-74.643980015,41.086840615],[-74.643693674,41.08736408],[-74.643313341,41.087791909],[-74.642933264,41.088172077],[-74.64220628,41.088622666],[-74.64157443,41.088954379],[-74.640974348,41.089238516],[-74.640404968,41.089665747],[-74.639961857,41.090045709],[-74.639644492,41.090473729],[-74.639484503,41.090926073],[-74.639355482,41.091473851],[-74.639226989,41.091926294],[-74.639130275,41.092331165],[-74.638874858,41.092950046],[-74.638652102,41.093354524],[-74.638335115,41.093711033],[-74.637733635,41.094233496],[-74.637133097,41.094589113],[-74.636500383,41.095063793],[-74.635994595,41.095372041],[-74.635172698,41.095869953],[-74.634382302,41.09636796],[-74.633528605,41.096913423],[-74.632991541,41.097173888],[-74.632707059,41.097339819],[-74.632391748,41.097386482],[-74.63188804,41.097313376],[-74.631510771,41.097169162],[-74.631165025,41.097025049],[-74.63088294,41.096761978],[-74.630506745,41.096427097],[-74.630224931,41.096116348],[-74.630005989,41.09582964],[-74.629850349,41.095495465],[-74.629851286,41.09532863],[-74.629694821,41.095137459],[-74.6295373,41.095136952],[-74.62931623,41.09523158],[-74.628937369,41.09537336],[-74.628653286,41.095467782],[-74.62827536,41.095442732],[-74.627929343,41.095346278],[-74.627741801,41.095083497],[-74.627743145,41.094845165],[-74.627807367,41.094630864],[-74.627840222,41.094392633],[-74.627778018,41.094249426],[-74.62749515,41.094129343],[-74.627117774,41.094008955],[-74.626803129,41.093936437],[-74.626425755,41.093816044],[-74.626363565,41.093672835],[-74.626365185,41.093386835],[-74.626556103,41.093053779],[-74.62674728,41.092673062],[-74.626939137,41.092173171],[-74.627194381,41.091601985],[-74.627417473,41.091149861],[-74.627640684,41.090673901],[-74.627894988,41.090269547],[-74.628022344,41.09003162],[-74.62824407,41.089817829],[-74.628371559,41.089556066],[-74.628373035,41.089293902],[-74.62834286,41.08905546],[-74.62809207,41.088840151],[-74.627935358,41.088696638],[-74.6279682,41.088458408],[-74.628033501,41.088053444],[-74.628129884,41.087720079],[-74.628289001,41.087434585],[-74.6283532,41.087220284],[-74.628354544,41.086981954],[-74.628355754,41.08676745],[-74.628389553,41.086362383],[-74.62848593,41.086029019],[-74.628551339,41.085600215],[-74.628712998,41.084861887],[-74.628842217,41.084290289],[-74.62890723,41.08393299],[-74.62887788,41.083551553],[-74.628817027,41.083170012],[-74.628819306,41.082764844],[-74.628790091,41.082359573],[-74.628791298,41.082145071],[-74.628729629,41.081906535],[-74.628510224,41.08171515],[-74.628227543,41.081571239],[-74.627944729,41.081451157],[-74.627693285,41.081355007],[-74.627757226,41.081188375],[-74.628073144,41.081022559],[-74.628327003,41.080689701],[-74.628359974,41.080427632],[-74.62829833,41.080189095],[-74.628173545,41.079974186],[-74.628111758,41.079759486],[-74.628081744,41.079497214],[-74.628051997,41.079187272],[-74.628179992,41.078830178],[-74.628433987,41.078473491],[-74.628719999,41.078021569],[-74.628879088,41.077736074],[-74.629038044,41.077474409],[-74.629039383,41.077236076],[-74.629197947,41.077045909],[-74.629419612,41.076832122],[-74.629735775,41.076618631],[-74.63002004,41.076476538],[-74.630177786,41.076429375],[-74.630335809,41.076334552],[-74.630462853,41.076144283],[-74.63046392,41.075953617],[-74.630433898,41.075691343],[-74.630435365,41.075429182],[-74.6304363,41.075262346],[-74.630343151,41.075023709],[-74.630218102,41.07485647],[-74.630093456,41.074617723],[-74.630094402,41.074450888],[-74.630221708,41.074212958],[-74.630316993,41.074070266],[-74.630568944,41.074071074],[-74.630820776,41.074095709],[-74.631198179,41.074192258],[-74.63160734,41.074241236],[-74.631953652,41.074266174],[-74.632143158,41.074171439],[-74.632270202,41.073981175],[-74.632460482,41.073743446],[-74.632651321,41.073410377],[-74.632747382,41.073124677],[-74.632748974,41.072838673],[-74.632718689,41.07262407],[-74.632688373,41.072409466],[-74.632595088,41.072194662],[-74.632565323,41.071884728],[-74.632566915,41.071598727],[-74.632693944,41.071408454],[-74.632789615,41.071194252],[-74.63285406,41.070932289],[-74.632918649,41.070646487],[-74.632919711,41.070455813],[-74.633047012,41.070217881],[-74.633079945,41.069955818],[-74.632986664,41.069741012],[-74.632925147,41.06947864],[-74.63286334,41.069263937],[-74.632769794,41.069096799],[-74.632645692,41.068762727],[-74.632584562,41.068428855],[-74.632523049,41.06816649],[-74.632555728,41.067952086],[-74.632714502,41.067714255],[-74.632841543,41.067523981],[-74.633031546,41.067333919],[-74.633064635,41.067048018],[-74.632908372,41.066833011],[-74.632531673,41.066617303],[-74.63228093,41.066402004],[-74.632062341,41.06606763],[-74.631843899,41.065709416],[-74.631751558,41.065327783],[-74.63162813,41.064874544],[-74.631504295,41.0644928],[-74.631443186,41.064158928],[-74.631444783,41.063872927],[-74.631446513,41.063563085],[-74.631448376,41.063229414],[-74.631449573,41.063014917],[-74.631325198,41.062728513],[-74.631263694,41.062466139],[-74.631265024,41.062227804],[-74.631329724,41.061918165],[-74.631363224,41.061560765],[-74.631459018,41.061322732],[-74.631648478,41.061228],[-74.632026339,41.061229206],[-74.632404213,41.061230412],[-74.632656769,41.06111205],[-74.632815933,41.060802709],[-74.632848875,41.060540644],[-74.632819379,41.060183035],[-74.632632314,41.059848763],[-74.632445105,41.059538326],[-74.632352514,41.059204355],[-74.632259891,41.058870381],[-74.632262017,41.05848904],[-74.632264005,41.058131539],[-74.632266262,41.057726369],[-74.632331506,41.057321401],[-74.632428228,41.056916524],[-74.632524145,41.05665466],[-74.632745477,41.056488528],[-74.633093276,41.056227458],[-74.633504323,41.055918927],[-74.633789009,41.055681484],[-74.633979901,41.055324584],[-74.634170801,41.054967682],[-74.634393322,41.05458704],[-74.634457747,41.054325067],[-74.634396226,41.054062704],[-74.634334837,41.053776501],[-74.634273583,41.05346646],[-74.634338138,41.053180655],[-74.634340513,41.052751646],[-74.634373829,41.052418083],[-74.634501758,41.052060972],[-74.634723467,41.051823337],[-74.635039096,41.051681328],[-74.635385687,41.051634764],[-74.635700514,41.05163576],[-74.636078452,41.051613115],[-74.636425567,41.05147121],[-74.636647005,41.05128123],[-74.636805734,41.051043392],[-74.636932719,41.050853123],[-74.637122674,41.050663044],[-74.637312484,41.050496803],[-74.637313664,41.050282306],[-74.637314711,41.050091631],[-74.637284541,41.049853198],[-74.637285848,41.049614862],[-74.637349995,41.049400556],[-74.637540336,41.049138978],[-74.637699568,41.0488058],[-74.637764759,41.048400827],[-74.637829161,41.048138859],[-74.637830991,41.047805189],[-74.638021588,41.047495939],[-74.638275398,41.047139228],[-74.638339787,41.046877252],[-74.638341224,41.046615079],[-74.638374288,41.046329175],[-74.638502033,41.045995904],[-74.638661654,41.045591219],[-74.638759496,41.044971839],[-74.638792794,41.044638265],[-74.638825964,41.044328531],[-74.639048023,41.044019379],[-74.639301162,41.043781831],[-74.63971157,41.043568607],[-74.639901247,41.043426198],[-74.640122777,41.043212382],[-74.640217994,41.043069679],[-74.640250236,41.042926771],[-74.64022007,41.042688338],[-74.640189502,41.042521404],[-74.640317232,41.042188124],[-74.640507798,41.041878871],[-74.640635525,41.041545592],[-74.640825949,41.041260177],[-74.641016381,41.040974761],[-74.641111734,41.040808218],[-74.641113027,41.040569884],[-74.641114192,41.040355378],[-74.641272233,41.040236701],[-74.641587392,41.04016618],[-74.641997792,41.039952948],[-74.64243977,41.03971598],[-74.642787454,41.03945488],[-74.643103521,41.039217521],[-74.643483058,41.038885017],[-74.643799002,41.038671485],[-74.644146792,41.03838655],[-74.644557162,41.038173315],[-74.644905084,41.03786454],[-74.645253111,41.037531933],[-74.645569416,41.037246898],[-74.645823038,41.036913998],[-74.645981956,41.036628478],[-74.646140987,41.036319127],[-74.646362865,41.03603379],[-74.646615939,41.035796227],[-74.646837432,41.035582397],[-74.647215148,41.035583553],[-74.647434963,41.035679565],[-74.647591846,41.035775384],[-74.647747588,41.036085698],[-74.648028446,41.036539407],[-74.648247526,41.036778422],[-74.6484977,41.037089026],[-74.648810695,41.037423659],[-74.649092463,41.037710525],[-74.649438086,41.037830748],[-74.649940971,41.037975285],[-74.650381532,41.038000453],[-74.650822207,41.038001789],[-74.651325863,41.038003313],[-74.651830009,41.037909498],[-74.652334132,41.037815688],[-74.652744105,41.037673916],[-74.653186167,41.037413078],[-74.653470589,41.037199424],[-74.653881159,41.036938479],[-74.654071265,41.03670071],[-74.654292861,41.036463036],[-74.6543884,41.036248814],[-74.654452603,41.036010665],[-74.654453723,41.035796161],[-74.654423249,41.035605391],[-74.654361042,41.035462204],[-74.65429897,41.035295179],[-74.654425743,41.035128719],[-74.654584107,41.034938525],[-74.654742743,41.034700652],[-74.654775333,41.034486248],[-74.654713387,41.034295384],[-74.654683661,41.033961617],[-74.654685155,41.033675612],[-74.654811672,41.033556822],[-74.655064477,41.033366909],[-74.655254194,41.033200637],[-74.655381216,41.032986507],[-74.655508725,41.03267704],[-74.655573415,41.032343564],[-74.655827581,41.031891473],[-74.656019029,41.031391526],[-74.656273174,41.030939436],[-74.656590401,41.030463694],[-74.656907365,41.030035628],[-74.657223831,41.029702891],[-74.657571775,41.029370244],[-74.657792819,41.029227892],[-74.65817124,41.029086014],[-74.658612369,41.028991984],[-74.658832807,41.028968805],[-74.659021629,41.028969364],[-74.65914814,41.028850561],[-74.659432641,41.028613062],[-74.659748718,41.028351824],[-74.659938298,41.028209375],[-74.660284849,41.028138896],[-74.660568363,41.028092061],[-74.660789409,41.027949704],[-74.661105233,41.027736133],[-74.661295173,41.027522182],[-74.661548291,41.027260747],[-74.661707117,41.026975202],[-74.66196072,41.026618435],[-74.6622136,41.026404669],[-74.66252916,41.026238753],[-74.662781429,41.026144151],[-74.663128353,41.026002166],[-74.663318767,41.025692874],[-74.66360335,41.025431533],[-74.663950256,41.025289537],[-74.664518069,41.025029012],[-74.665022954,41.02476831],[-74.665591119,41.024436281],[-74.665969975,41.02419904],[-74.666506916,41.023819244],[-74.666854277,41.02358191],[-74.667075907,41.02332037],[-74.667234326,41.023106318],[-74.667613289,41.02284524],[-74.667803314,41.022607441],[-74.667961992,41.022345726],[-74.668057837,41.022059994],[-74.668059152,41.021797818],[-74.668123291,41.021559662],[-74.668218774,41.021345428],[-74.668408553,41.021155303],[-74.668692857,41.020941611],[-74.669228431,41.020823979],[-74.669827184,41.020658856],[-74.670362874,41.020517379],[-74.67089855,41.020375909],[-74.67127713,41.020186312],[-74.671718774,41.019973059],[-74.672097584,41.019735797],[-74.672413935,41.019403018],[-74.672698315,41.019165486],[-74.673014199,41.018928043],[-74.673487401,41.018691044],[-74.673960481,41.018477873],[-74.674338805,41.018335934],[-74.67468625,41.018074742],[-74.675065506,41.017742133],[-74.675412935,41.017480933],[-74.675759668,41.017362737],[-74.676326561,41.017268992],[-74.676830271,41.017222735],[-74.677207998,41.017199962],[-74.677806349,41.017106297],[-74.678436742,41.016893557],[-74.67881551,41.016656265],[-74.679162825,41.01641889],[-74.67954147,41.016205434],[-74.679825832,41.015967884],[-74.679953318,41.015634557],[-74.680206548,41.01532542],[-74.680270177,41.015182587],[-74.68042888,41.014897017],[-74.680650309,41.014659289],[-74.680683037,41.014397202],[-74.6807787,41.014135296],[-74.680937306,41.013873555],[-74.68128492,41.013564666],[-74.681663773,41.013303542],[-74.681948217,41.013042148],[-74.682358662,41.01275727],[-74.68276874,41.01254389],[-74.683367611,41.012331026],[-74.683808573,41.012236904],[-74.684186612,41.012142602],[-74.684596248,41.012024553],[-74.684974512,41.011882579],[-74.685258496,41.011716514],[-74.685511222,41.011502703],[-74.685732281,41.011336463],[-74.685984675,41.011194143],[-74.686236855,41.01109949],[-74.686457322,41.011052429],[-74.686709162,41.011029274],[-74.686866935,41.010934363],[-74.68705652,41.010768046],[-74.687246315,41.010554052],[-74.687625241,41.010269069],[-74.688414317,41.009746845],[-74.689045738,41.009295699],[-74.689582637,41.008868134],[-74.690056265,41.00851189],[-74.690498776,41.008084066],[-74.690784055,41.007631982],[-74.690974388,41.00729881],[-74.691070442,41.006941557],[-74.691040666,41.006583959],[-74.690885136,41.006202191],[-74.690728714,41.0060111],[-74.690383629,41.005795663],[-74.690101247,41.005628064],[-74.689724707,41.005412541],[-74.689536945,41.005197534],[-74.689349287,41.00495868],[-74.689067249,41.004719578],[-74.688879267,41.00455223],[-74.688880165,41.004361562],[-74.689164777,41.00405248],[-74.689481169,41.00367199],[-74.689892285,41.003220246],[-74.690145331,41.002934916],[-74.69039813,41.002697246],[-74.690587232,41.002626251],[-74.690713281,41.002578921],[-74.690902619,41.002460257],[-74.691060924,41.002246172],[-74.691313817,41.001984677],[-74.691692011,41.001842678],[-74.691849988,41.001700101],[-74.691850755,41.001533262],[-74.691788408,41.001413918],[-74.691600076,41.001318083],[-74.691222775,41.001269403],[-74.690782231,41.001292052],[-74.690247399,41.001290617],[-74.689870101,41.00124194],[-74.68952437,41.0011695],[-74.689210443,41.001025653],[-74.68899113,41.000834382],[-74.688771795,41.000643118],[-74.688678652,41.000380686],[-74.688680111,41.000070848],[-74.688744825,40.999689673],[-74.688840544,40.999403921],[-74.688936051,40.999165838],[-74.689094353,40.998951754],[-74.689346917,40.998761762],[-74.689567926,40.998595517],[-74.689789702,40.998262433],[-74.689917418,40.997857595],[-74.690108629,40.99733375],[-74.690267817,40.996928995],[-74.690269603,40.996547649],[-74.690333869,40.996261811],[-74.690523835,40.996000148],[-74.690777064,40.995667146],[-74.690841194,40.995405137],[-74.691062945,40.995072052],[-74.69128438,40.994810466],[-74.691411756,40.994477133],[-74.6915079,40.994096038],[-74.691509568,40.993738522],[-74.691447564,40.993547687],[-74.691197018,40.993308672],[-74.690694814,40.993068985],[-74.690098272,40.992829033],[-74.689658332,40.992732519],[-74.68921818,40.992683663],[-74.688935184,40.992659059],[-74.68871442,40.992777643],[-74.688430864,40.99287221],[-74.688147765,40.992871444],[-74.687896457,40.992799263],[-74.687645139,40.992727082],[-74.687425498,40.992607315],[-74.686954574,40.992415357],[-74.686797858,40.99229576],[-74.68657823,40.992175992],[-74.686390271,40.992008642],[-74.686297149,40.991746207],[-74.686141238,40.991459771],[-74.685922171,40.991220833],[-74.685671447,40.991029477],[-74.685326454,40.990814027],[-74.685075611,40.990646501],[-74.684823963,40.990645813],[-74.684728352,40.990907734],[-74.684569827,40.991169471],[-74.684285009,40.991526212],[-74.684063694,40.991763947],[-74.68384191,40.992097021],[-74.683808865,40.99243061],[-74.683744347,40.992764114],[-74.683585025,40.993192691],[-74.68336311,40.993549594],[-74.683141658,40.993811165],[-74.682699218,40.994238971],[-74.682382926,40.994595611],[-74.682098447,40.994880838],[-74.681814071,40.995142235],[-74.681593297,40.995260795],[-74.681246687,40.995379008],[-74.680742919,40.995472953],[-74.680270944,40.995495476],[-74.679829963,40.995613424],[-74.679671847,40.995779823],[-74.679765536,40.995923094],[-74.679952894,40.996209625],[-74.680077472,40.996472143],[-74.680202038,40.99673467],[-74.680200887,40.996973009],[-74.680105237,40.997234923],[-74.679789494,40.997472388],[-74.679411531,40.997566676],[-74.678970546,40.997684619],[-74.678623688,40.997850493],[-74.678402562,40.998040548],[-74.6781496,40.998302022],[-74.677959705,40.998539834],[-74.677769892,40.998753815],[-74.677611086,40.99906322],[-74.677389596,40.999324772],[-74.676948117,40.999538047],[-74.676412972,40.999608047],[-74.6760041,40.999583067],[-74.675407202,40.999414547],[-74.674810062,40.999293694],[-74.67427561,40.999220675],[-74.673866646,40.999219519],[-74.673645489,40.999409574],[-74.673518709,40.999599887],[-74.673328782,40.999837689],[-74.673076628,40.999932312],[-74.672824603,41.000003098],[-74.672478544,41.000002117],[-74.672195524,40.99997748],[-74.671912752,40.999905176],[-74.671567166,40.999808851],[-74.67109586,40.999688338],[-74.670687723,40.999520331],[-74.670310569,40.999447753],[-74.669995967,40.999446854],[-74.66968115,40.999493623],[-74.669334857,40.999540289],[-74.668988441,40.999610805],[-74.668736162,40.999729251],[-74.668577924,40.999919466],[-74.668388324,41.000085761],[-74.668072895,41.000251695],[-74.667757823,41.000346128],[-74.667222638,41.000416085],[-74.666813069,41.00053407],[-74.666339612,41.000842552],[-74.665929654,41.001032036],[-74.665771393,41.001222249],[-74.665676063,41.00141265],[-74.665423662,41.001554919],[-74.665077222,41.001625422],[-74.664730793,41.001695916],[-74.664446933,41.001838092],[-74.664257198,41.002028218],[-74.664098456,41.002313767],[-74.663971389,41.002551736],[-74.663844101,41.002837377],[-74.663466085,41.002931613],[-74.662994043,41.002954066],[-74.662647969,41.002953053],[-74.662144603,41.00295158],[-74.661703662,41.003045626],[-74.661356745,41.003211448],[-74.661198464,41.003401654],[-74.661039817,41.003663367],[-74.660849577,41.00394882],[-74.660659591,41.004186599],[-74.660312655,41.004352419],[-74.659934995,41.004375143],[-74.659651704,41.004398138],[-74.65927429,41.004373193],[-74.658771148,41.004324034],[-74.658173635,41.004274595],[-74.657733297,41.004249448],[-74.657167108,41.004223936],[-74.656726533,41.004246455],[-74.656442995,41.00431712],[-74.656158983,41.004483114],[-74.655843376,41.004672843],[-74.655685562,41.00476771],[-74.6553707,41.00481444],[-74.654835987,41.004788999],[-74.654427352,41.004716276],[-74.653924573,41.004595597],[-74.653139923,41.004235719],[-74.652606205,41.004019609],[-74.652385725,41.004066615],[-74.652383847,41.00442412],[-74.652412413,41.004972397],[-74.652252359,41.005496266],[-74.65221777,41.006092013],[-74.652183293,41.006663941],[-74.652117973,41.007116593],[-74.652051797,41.007736085],[-74.652111957,41.008260617],[-74.652265514,41.00897611],[-74.652325573,41.009524474],[-74.65241733,41.010025271],[-74.652289352,41.010430066],[-74.652004402,41.010762886],[-74.651750694,41.011143469],[-74.651466629,41.011309451],[-74.651025617,41.011403455],[-74.65033314,41.011449019],[-74.649640642,41.011494585],[-74.649200016,41.011517084],[-74.648601421,41.011658263],[-74.648128805,41.011775992],[-74.647687289,41.01196532],[-74.647339008,41.012369436],[-74.646959134,41.012797293],[-74.646705505,41.013154027],[-74.646326006,41.013510374],[-74.645821143,41.013771003],[-74.645285189,41.013960025],[-74.644780972,41.014101482],[-74.644371522,41.01417172],[-74.644025016,41.014242152],[-74.643489439,41.014359665],[-74.643079612,41.014501407],[-74.64276392,41.014691099],[-74.642353433,41.014952008],[-74.641880019,41.015212716],[-74.641218182,41.015401328],[-74.640462205,41.015541981],[-74.639895289,41.015635542],[-74.639359833,41.015729209],[-74.638824757,41.015751363],[-74.63838409,41.015773822],[-74.637786468,41.015724275],[-74.637377273,41.015746819],[-74.637124888,41.015865195],[-74.636745582,41.016173849],[-74.636397748,41.016482594],[-74.636081887,41.016696107],[-74.635577102,41.016932853],[-74.634977906,41.017169305],[-74.634063371,41.017523915],[-74.633589629,41.01783226],[-74.633273884,41.018021925],[-74.63308375,41.01825966],[-74.633050831,41.018521735],[-74.633017527,41.018855308],[-74.632953132,41.019117274],[-74.632762452,41.019450347],[-74.632446585,41.019663849],[-74.632099355,41.019853413],[-74.631626794,41.019947241],[-74.631060626,41.019897762],[-74.630211893,41.019728202],[-74.629553061,41.019368575],[-74.628737275,41.018936931],[-74.628172326,41.01867294],[-74.62766978,41.018504477],[-74.62732403,41.01843186],[-74.627041476,41.018311768],[-74.626884943,41.018168261],[-74.626697227,41.017976984],[-74.626414418,41.017904558],[-74.626099865,41.017879707],[-74.625721578,41.017997649],[-74.625375424,41.017996525],[-74.624998217,41.017923798],[-74.624841701,41.017780281],[-74.624842916,41.017565774],[-74.62478105,41.017374902],[-74.62459347,41.017159781],[-74.62431176,41.016896684],[-74.624249896,41.016705811],[-74.62412538,41.016467067],[-74.624001142,41.016180652],[-74.623939709,41.015918272],[-74.623972798,41.015632369],[-74.624130932,41.015489884],[-74.624415083,41.01532397],[-74.624668176,41.015086446],[-74.62482739,41.014753286],[-74.624892624,41.014348317],[-74.624926674,41.013895579],[-74.624929919,41.013323568],[-74.624651041,41.012559971],[-74.624308045,41.012010663],[-74.623870785,41.011437217],[-74.623558311,41.011054847],[-74.62312052,41.010576734],[-74.622807646,41.010265862],[-74.622555925,41.010265038],[-74.622178628,41.010216133],[-74.621707621,41.010047748],[-74.621299686,41.009855737],[-74.621017189,41.009735637],[-74.620703772,41.009520098],[-74.62057929,41.009281348],[-74.620455062,41.008994929],[-74.620330308,41.008803838],[-74.620205832,41.008565088],[-74.620175992,41.00827898],[-74.620272181,41.007969448],[-74.620432503,41.007445623],[-74.620560388,41.007088534],[-74.620656845,41.006731342],[-74.620847517,41.006398287],[-74.621037947,41.006112904],[-74.621134103,41.005803369],[-74.621134923,41.005660363],[-74.62091495,41.005611979],[-74.62034905,41.005538608],[-74.619971907,41.005465864],[-74.619563602,41.005345347],[-74.619061297,41.005153018],[-74.618621666,41.005008554],[-74.618213209,41.004911863],[-74.617898593,41.00491082],[-74.617237898,41.004908627],[-74.616671594,41.004906746],[-74.616293777,41.004953159],[-74.61610431,41.005071698],[-74.616040418,41.005238325],[-74.615913471,41.005428581],[-74.615724001,41.00554712],[-74.615565307,41.005784934],[-74.615500846,41.006046897],[-74.615499045,41.006356732],[-74.615560598,41.006595277],[-74.615527754,41.006833517],[-74.615400654,41.007047595],[-74.615210357,41.00730914],[-74.614925248,41.007641868],[-74.614735066,41.007879573],[-74.614512463,41.008284009],[-74.614384405,41.008664929],[-74.614288756,41.008879121],[-74.614130175,41.0090931],[-74.613814718,41.009235044],[-74.613593346,41.009424982],[-74.613466095,41.009662894],[-74.613339144,41.009853139],[-74.613054849,41.010042865],[-74.612739793,41.010113308],[-74.612456322,41.010160025],[-74.612203785,41.010302176],[-74.612076378,41.010563927],[-74.611791516,41.010848978],[-74.611381094,41.011085937],[-74.610876675,41.011251073],[-74.61049868,41.011321297],[-74.610120682,41.011391528],[-74.609774283,41.011438026],[-74.609490677,41.011508565],[-74.609175046,41.011674335],[-74.608984832,41.011912031],[-74.608889183,41.012126217],[-74.608573827,41.012244316],[-74.608259039,41.012267077],[-74.607881881,41.012194295],[-74.607410463,41.012097349],[-74.60706492,41.012000843],[-74.606656153,41.011951779],[-74.606121818,41.011854613],[-74.605807314,41.011829708],[-74.605461184,41.011828524],[-74.605114923,41.01185117],[-74.604579889,41.011873173],[-74.603887522,41.011894627],[-74.603258512,41.011844794],[-74.602692857,41.011723675],[-74.602473306,41.011603749],[-74.602317284,41.0113887],[-74.602129771,41.011173544],[-74.601878785,41.011053507],[-74.601218172,41.011027394],[-74.600809138,41.011025977],[-74.60046245,41.011120115],[-74.600146797,41.011285853],[-74.600019916,41.011452253],[-74.600081273,41.011714645],[-74.600110561,41.012072257],[-74.600265589,41.012454144],[-74.600294756,41.012835594],[-74.600261268,41.013169158],[-74.600070751,41.013454507],[-74.599786259,41.013668029],[-74.599281637,41.013856947],[-74.598808786,41.01399831],[-74.598462233,41.014068605],[-74.598209631,41.014210724],[-74.597988218,41.014400632],[-74.597860612,41.014686197],[-74.597669635,41.015043042],[-74.597605115,41.015304996],[-74.597760697,41.015591547],[-74.598200217,41.01575992],[-74.59863975,41.015928292],[-74.599111171,41.016025271],[-74.59939351,41.016169255],[-74.599486033,41.016479425],[-74.599326953,41.016764881],[-74.598980254,41.016859006],[-74.598665138,41.016929419],[-74.598192253,41.017070772],[-74.597844958,41.01726024],[-74.597685592,41.017593354],[-74.597778542,41.017832026],[-74.597870924,41.018166028],[-74.597899487,41.018642809],[-74.597990992,41.019119808],[-74.59805219,41.019406039],[-74.598302198,41.01969292],[-74.598646621,41.019980131],[-74.59892853,41.020195613],[-74.599305289,41.020339933],[-74.599523839,41.020626702],[-74.599364341,41.020983656],[-74.599173785,41.021269003],[-74.598857781,41.021482414],[-74.598384729,41.021647604],[-74.597912254,41.021717467],[-74.597345943,41.021691651],[-74.596685527,41.021617842],[-74.595963023,41.021400803],[-74.59561819,41.021185084],[-74.595304788,41.020969475],[-74.594864971,41.020848759],[-74.594580577,41.021038438],[-74.594547483,41.021300492],[-74.594640303,41.021562998],[-74.594732955,41.021849333],[-74.594699423,41.022182894],[-74.59457166,41.022492285],[-74.594443573,41.022849353],[-74.594064032,41.023157857],[-74.593400514,41.023584537],[-74.592516402,41.024058094],[-74.591948326,41.024318263],[-74.591412283,41.024483203],[-74.590813009,41.024695586],[-74.590497712,41.024789799],[-74.590025501,41.024811958],[-74.589459018,41.024809942],[-74.58889299,41.024736424],[-74.588452989,41.024639515],[-74.587950639,41.02444705],[-74.587605496,41.024278975],[-74.587385933,41.024159012],[-74.587103163,41.0240865],[-74.586789331,41.023942374],[-74.586569643,41.023846246],[-74.586288056,41.023583058],[-74.58603717,41.023439155],[-74.585785411,41.023438252],[-74.585533663,41.023437347],[-74.5850613,41.023483317],[-74.584462614,41.02360033],[-74.583738192,41.023693047],[-74.583045533,41.023738212],[-74.58257364,41.023712674],[-74.582259378,41.023640037],[-74.581820459,41.023376265],[-74.581507408,41.023112951],[-74.581037776,41.022729903],[-74.580724739,41.022466587],[-74.58044301,41.022227221],[-74.580255266,41.022059699],[-74.580257083,41.021773696],[-74.580037238,41.021701386],[-74.579564886,41.021747334],[-74.579218283,41.02181757],[-74.578714603,41.021839568],[-74.578274648,41.021742621],[-74.577897775,41.02162207],[-74.577614841,41.021573364],[-74.577363558,41.021500943],[-74.577048539,41.021547456],[-74.57670224,41.021570018],[-74.576419472,41.021497476],[-74.576231555,41.021353779],[-74.575981191,41.021138356],[-74.575856216,41.020994888],[-74.575668949,41.020755858],[-74.575626045,41.020492596],[-74.575596571,41.020182639],[-74.575440595,41.019967556],[-74.57534315,41.019627811],[-74.575281741,41.019389243],[-74.575157855,41.019078939],[-74.574939723,41.018744455],[-74.574784222,41.018457872],[-74.574628416,41.018218956],[-74.574441587,41.017908419],[-74.574411823,41.017646139],[-74.574507898,41.017384314],[-74.57463501,41.017194112],[-74.574919597,41.016980654],[-74.575172709,41.016767078],[-74.575425208,41.016648837],[-74.575520535,41.016506188],[-74.575521453,41.016363181],[-74.575365191,41.016195767],[-74.574925419,41.016074977],[-74.574453551,41.016049405],[-74.574138425,41.016119739],[-74.573980171,41.016262155],[-74.573664439,41.016427828],[-74.573380147,41.016593617],[-74.573158811,41.016759637],[-74.572780744,41.016829737],[-74.572276638,41.016923206],[-74.571898724,41.016969473],[-74.57158359,41.017039803],[-74.571299312,41.017205586],[-74.571014712,41.017419036],[-74.570793357,41.017585051],[-74.570508588,41.01782233],[-74.570160756,41.018083212],[-74.569813977,41.018177259],[-74.5693105,41.018175378],[-74.568838487,41.018173614],[-74.568178128,41.018099633],[-74.567675264,41.018002416],[-74.5672665,41.017953215],[-74.566983278,41.017952149],[-74.566824692,41.018142224],[-74.566603325,41.018308233],[-74.566225554,41.018330649],[-74.56578517,41.018305152],[-74.565376721,41.018208274],[-74.565062974,41.01806409],[-74.564969357,41.017944567],[-74.565064699,41.017801917],[-74.56522329,41.017611845],[-74.565351356,41.017278648],[-74.565416642,41.016921386],[-74.565450142,41.016611663],[-74.565452177,41.01630183],[-74.565360286,41.015920135],[-74.565268083,41.015586107],[-74.565143455,41.015394967],[-74.56498739,41.0152037],[-74.564894718,41.014941179],[-74.56489707,41.01458367],[-74.564930728,41.014250117],[-74.564964227,41.013940403],[-74.565091974,41.013654875],[-74.56528187,41.013488751],[-74.565503057,41.013346577],[-74.565661334,41.013204172],[-74.565662431,41.013037337],[-74.565663996,41.012799002],[-74.565633776,41.01260821],[-74.565635341,41.012369877],[-74.565668222,41.01215549],[-74.565763708,41.01198901],[-74.565764804,41.011822175],[-74.565608889,41.011607077],[-74.565484439,41.011392107],[-74.565422926,41.011177367],[-74.56542465,41.010915194],[-74.565489137,41.010677097],[-74.565490701,41.010438762],[-74.565460337,41.010271808],[-74.565366877,41.010128445],[-74.565274212,41.009865926],[-74.565213174,41.009579677],[-74.565278441,41.009222412],[-74.565343563,41.008888978],[-74.565470672,41.008698787],[-74.565660698,41.008508825],[-74.565755867,41.008390013],[-74.56572566,41.008199228],[-74.565726599,41.008056222],[-74.565696705,41.007817771],[-74.565572093,41.00762663],[-74.565448451,41.007292484],[-74.565356406,41.006934625],[-74.56532667,41.006672335],[-74.565202844,41.006362018],[-74.564890273,41.006050997],[-74.564545128,41.005906685],[-74.564199367,41.005857718],[-74.564009962,41.005952333],[-74.563788786,41.006094505],[-74.563504197,41.006307936],[-74.563063256,41.006377767],[-74.5627798,41.006424363],[-74.562433711,41.006423049],[-74.561929672,41.006516465],[-74.561394037,41.006633607],[-74.56082709,41.00672678],[-74.560228502,41.006843668],[-74.559597989,41.007031939],[-74.559188337,41.007125705],[-74.55877774,41.007362482],[-74.558304201,41.007599008],[-74.557894077,41.007764277],[-74.557641262,41.007930148],[-74.557294199,41.008071815],[-74.557010402,41.008166065],[-74.556664476,41.008140902],[-74.556256571,41.007972495],[-74.555912406,41.007685159],[-74.555536295,41.007469199],[-74.555065781,41.007252875],[-74.55456366,41.007060264],[-74.554186915,41.006939631],[-74.55377792,41.006938047],[-74.553085267,41.007006872],[-74.552297077,41.007242154],[-74.551351594,41.007476819],[-74.550564061,41.00761676],[-74.549933989,41.007733471],[-74.54949285,41.007827079],[-74.548831327,41.007943671],[-74.548138496,41.008036287],[-74.547130864,41.008151504],[-74.546311682,41.008315124],[-74.545460864,41.008502448],[-74.544799163,41.008642839],[-74.544168591,41.008831027],[-74.543475087,41.009018952],[-74.54284498,41.009135624],[-74.542435465,41.0092055],[-74.541994987,41.009203751],[-74.5415237,41.009106547],[-74.541116314,41.008866577],[-74.540897902,41.008603536],[-74.540742563,41.008316906],[-74.540651,41.007911362],[-74.540653483,41.007553853],[-74.54065613,41.007172516],[-74.540658118,41.006886512],[-74.540660601,41.006529013],[-74.540632773,41.006004551],[-74.540634924,41.005694711],[-74.540638068,41.005241873],[-74.540640717,41.004860543],[-74.54067566,41.004360161],[-74.540740404,41.00409824],[-74.540962604,41.003813116],[-74.541216118,41.003551945],[-74.541594966,41.003362781],[-74.542004764,41.003245239],[-74.542508794,41.003151902],[-74.542981051,41.003106105],[-74.543768544,41.002966224],[-74.544366938,41.002873252],[-74.544902266,41.002803867],[-74.545374496,41.00275806],[-74.545878508,41.002664706],[-74.546256849,41.002547026],[-74.546666338,41.002477137],[-74.547012731,41.002430829],[-74.547295864,41.002431941],[-74.547547543,41.00243293],[-74.547736626,41.002386002],[-74.547957823,41.002243868],[-74.548274234,41.00198293],[-74.548433972,41.001626045],[-74.548499638,41.001221111],[-74.548504028,41.000577608],[-74.548507444,41.000077103],[-74.548447474,40.999647856],[-74.548355845,40.999242308],[-74.548138238,40.998860114],[-74.547700272,40.998500876],[-74.547292776,40.998284766],[-74.546665258,40.99804396],[-74.546320197,40.997899601],[-74.546069016,40.997827103],[-74.546007242,40.99766002],[-74.546228765,40.997470222],[-74.546513022,40.997304499],[-74.546797287,40.997138778],[-74.547143967,40.997044809],[-74.547490669,40.996950831],[-74.547963493,40.996809676],[-74.548404888,40.996668405],[-74.548815445,40.996431672],[-74.549226356,40.99614726],[-74.549479459,40.995933748],[-74.549764533,40.995648851],[-74.54992506,40.995172788],[-74.550053148,40.994839608],[-74.550056064,40.994410609],[-74.550057685,40.994172264],[-74.549965091,40.993909733],[-74.549621846,40.99350321],[-74.54940344,40.993240176],[-74.549247298,40.993072727],[-74.549027758,40.992976528],[-74.548744643,40.99297542],[-74.548398462,40.992997902],[-74.548020507,40.993067922],[-74.547642711,40.993114111],[-74.54717104,40.993088419],[-74.546636633,40.993038657],[-74.546322871,40.992918244],[-74.545978349,40.992702386],[-74.545728497,40.992439222],[-74.545636587,40.992081349],[-74.54557792,40.991461426],[-74.545580374,40.991103916],[-74.545583975,40.990579579],[-74.545618391,40.990150694],[-74.545589538,40.989769238],[-74.545591338,40.989507064],[-74.545687998,40.989173764],[-74.545753362,40.988816511],[-74.545849682,40.98853088],[-74.546008758,40.988269326],[-74.546198616,40.988103233],[-74.546483332,40.987866012],[-74.546894014,40.987605447],[-74.547210012,40.987392177],[-74.547337631,40.987130507],[-74.547371351,40.986796958],[-74.547436713,40.986439704],[-74.547627215,40.986178271],[-74.54797465,40.985965123],[-74.548163379,40.985965864],[-74.548414009,40.986109856],[-74.548664823,40.986230008],[-74.549041116,40.98639832],[-74.549574359,40.986614909],[-74.550014514,40.986640466],[-74.550612301,40.986618958],[-74.55117925,40.986501997],[-74.551840565,40.986385399],[-74.552596394,40.986245333],[-74.553289311,40.986105011],[-74.553762232,40.985940003],[-74.554140462,40.985822295],[-74.554613676,40.985609612],[-74.554992384,40.985420405],[-74.55537157,40.985159686],[-74.555719638,40.984851188],[-74.556036233,40.984542557],[-74.556195726,40.984209489],[-74.55622958,40.983852108],[-74.556231816,40.983518435],[-74.556139523,40.983208238],[-74.556080475,40.982635979],[-74.556083353,40.982206978],[-74.556117195,40.981849596],[-74.55621362,40.981540117],[-74.556278918,40.981182856],[-74.556374693,40.980968713],[-74.55637677,40.980658872],[-74.556316285,40.980301127],[-74.556318841,40.979919786],[-74.556320597,40.97965762],[-74.556354107,40.979347899],[-74.556451496,40.978895421],[-74.556642592,40.978538643],[-74.556864328,40.978301153],[-74.557085586,40.978135164],[-74.557400708,40.978041035],[-74.557809856,40.977994934],[-74.558564631,40.977997828],[-74.559319398,40.978000714],[-74.559822568,40.978002637],[-74.560168508,40.978003958],[-74.560671678,40.978005876],[-74.560955047,40.977959286],[-74.561396432,40.977794125],[-74.561648322,40.977747414],[-74.562340514,40.977702382],[-74.562875126,40.977704408],[-74.563378474,40.977682478],[-74.563756325,40.977612407],[-74.56410242,40.977589878],[-74.564323345,40.977471541],[-74.56473358,40.977258588],[-74.565143822,40.977045627],[-74.565680316,40.976761638],[-74.566058942,40.976572384],[-74.566564296,40.976240602],[-74.56703757,40.976004038],[-74.567543071,40.975648424],[-74.567985204,40.975364069],[-74.568301075,40.975150742],[-74.568616622,40.974985082],[-74.568995538,40.974748157],[-74.569248528,40.974534592],[-74.569501962,40.974249527],[-74.569756176,40.973845293],[-74.569979388,40.973369434],[-74.570170239,40.973036464],[-74.570204619,40.972583739],[-74.570206783,40.972250066],[-74.57014653,40.971844658],[-74.570179829,40.971558771],[-74.570212814,40.971320552],[-74.570373289,40.970820627],[-74.570689902,40.970488123],[-74.570943632,40.970155388],[-74.571322822,40.969870786],[-74.571859541,40.969539097],[-74.572270162,40.96925461],[-74.572585991,40.96904127],[-74.573027595,40.968828403],[-74.573311827,40.968638774],[-74.573816482,40.9684023],[-74.574226476,40.968213143],[-74.574605183,40.968000031],[-74.574826809,40.967762504],[-74.575048904,40.967453473],[-74.575114098,40.9670962],[-74.575116543,40.966714858],[-74.575118531,40.966405021],[-74.575184018,40.966000071],[-74.575344745,40.965452477],[-74.575693215,40.965048568],[-74.576040907,40.964763835],[-74.576451341,40.964503171],[-74.576830323,40.964242381],[-74.577019731,40.964123905],[-74.577272785,40.963886492],[-74.57736864,40.963648492],[-74.577464939,40.963339],[-74.577561996,40.962910335],[-74.577626553,40.962648398],[-74.577786039,40.96229146],[-74.577788924,40.961838617],[-74.577822345,40.961528896],[-74.577951441,40.961005014],[-74.578269185,40.960481813],[-74.578523291,40.96007756],[-74.578870955,40.959792818],[-74.579250052,40.959508189],[-74.579597408,40.959271113],[-74.580071257,40.958915317],[-74.580483148,40.958416302],[-74.580863437,40.957940992],[-74.581275003,40.957489632],[-74.581560675,40.957061647],[-74.581814888,40.956633553],[-74.582164174,40.956086626],[-74.582608055,40.955492377],[-74.582988462,40.954993229],[-74.583306295,40.954446184],[-74.583687139,40.953875533],[-74.584068575,40.953209544],[-74.584417523,40.952710277],[-74.584607781,40.95244879],[-74.58492349,40.952235415],[-74.585175885,40.952093313],[-74.585553418,40.952047001],[-74.585867482,40.952095798],[-74.586275866,40.952144934],[-74.586715383,40.952241852],[-74.587217309,40.952410492],[-74.58784517,40.952555739],[-74.588283507,40.952843318],[-74.588690702,40.953083115],[-74.588972456,40.9532748],[-74.589191471,40.953442423],[-74.589221573,40.953657041],[-74.589345564,40.953943496],[-74.589626289,40.95430201],[-74.589938882,40.954589135],[-74.590126333,40.954780473],[-74.590470974,40.954972378],[-74.590942392,40.954997884],[-74.591445829,40.954928166],[-74.59179209,40.954857892],[-74.592106624,40.954835166],[-74.592358122,40.954836057],[-74.592829247,40.95490923],[-74.593111749,40.954981729],[-74.593425834,40.955030507],[-74.593740221,40.955031615],[-74.593929875,40.954865442],[-74.593962612,40.954651045],[-74.593964074,40.954412707],[-74.593902657,40.95417414],[-74.593872831,40.953911862],[-74.59387473,40.953602015],[-74.593877066,40.953220679],[-74.594099473,40.952840109],[-74.594415734,40.95253137],[-74.594700417,40.952246357],[-74.595016227,40.952009125],[-74.595551819,40.951820333],[-74.596024524,40.951631308],[-74.596591397,40.95146645],[-74.597000652,40.951372549],[-74.597283859,40.951325869],[-74.597693113,40.951231958],[-74.598039193,40.951185495],[-74.598417148,40.951067639],[-74.598858418,40.950878504],[-74.599206081,40.95056986],[-74.599521731,40.950356446],[-74.599743498,40.950071202],[-74.599964854,40.949857468],[-74.600185754,40.949715223],[-74.600469538,40.949573204],[-74.60072233,40.949359568],[-74.600943955,40.949098152],[-74.601165569,40.948836736],[-74.601513938,40.948408925],[-74.601767571,40.948052279],[-74.602052619,40.94769575],[-74.602274663,40.947362831],[-74.602590707,40.947077908],[-74.602749173,40.946863943],[-74.602844768,40.946649767],[-74.603223259,40.946436559],[-74.603538736,40.946246962],[-74.603728198,40.946104611],[-74.60391765,40.945962251],[-74.604076372,40.945700622],[-74.604329269,40.94546314],[-74.604613595,40.945225772],[-74.605085799,40.945108218],[-74.605494721,40.945061947],[-74.605871917,40.945063238],[-74.606280839,40.945016964],[-74.606910194,40.944899942],[-74.607539579,40.944782913],[-74.607980491,40.944641409],[-74.608578689,40.944476601],[-74.609145743,40.944264011],[-74.609681233,40.944075152],[-74.610153993,40.943862239],[-74.610375001,40.943696145],[-74.610848296,40.94338789],[-74.61113204,40.943245845],[-74.611478637,40.943104002],[-74.611762777,40.942890446],[-74.6120479,40.942510061],[-74.612206871,40.942200742],[-74.61239728,40.941891539],[-74.612461665,40.941629573],[-74.612621618,40.941153424],[-74.612906859,40.940749189],[-74.613128835,40.940416247],[-74.613476086,40.940155239],[-74.613917519,40.939918373],[-74.614170222,40.939704708],[-74.614454741,40.939419647],[-74.614802005,40.939158625],[-74.614959859,40.939039978],[-74.615149274,40.9388976],[-74.615244809,40.938683415],[-74.615340617,40.938421551],[-74.615499415,40.938136068],[-74.615846402,40.937922711],[-74.616255801,40.937781072],[-74.616665232,40.937639423],[-74.617011101,40.937616741],[-74.617356821,40.937617889],[-74.617638718,40.937785667],[-74.617888515,40.938072506],[-74.618169466,40.938407121],[-74.618419679,40.938622457],[-74.618701035,40.938885568],[-74.618888937,40.939005363],[-74.619076692,40.939148993],[-74.619263911,40.939387955],[-74.619388679,40.939555208],[-74.6195767,40.939651169],[-74.619859578,40.939652102],[-74.62008014,40.93955749],[-74.620206559,40.939438733],[-74.620428199,40.93915345],[-74.620618959,40.938772723],[-74.62077871,40.938320393],[-74.62106458,40.937796975],[-74.621382266,40.937202152],[-74.621667731,40.936750233],[-74.621952216,40.936465152],[-74.622205558,40.936132299],[-74.62252188,40.935775818],[-74.622806369,40.935490737],[-74.623058879,40.935300881],[-74.623374529,40.935063569],[-74.623659135,40.934754643],[-74.62397586,40.934326659],[-74.624260876,40.933946235],[-74.624451057,40.93366084],[-74.624515805,40.933327367],[-74.624580945,40.932922392],[-74.624582564,40.932636383],[-74.624553041,40.932302602],[-74.624492334,40.931921051],[-74.624493952,40.931635041],[-74.624369872,40.931348623],[-74.62408811,40.931157031],[-74.623711395,40.931084293],[-74.62330352,40.930963789],[-74.622896063,40.930771784],[-74.622583157,40.930532417],[-74.622333638,40.930197916],[-74.622147938,40.92969678],[-74.622024801,40.92924352],[-74.621963996,40.928885805],[-74.621934748,40.928504353],[-74.621936922,40.928123005],[-74.622032406,40.927908807],[-74.622222059,40.927718754],[-74.622475083,40.927433569],[-74.622790675,40.927196257],[-74.623044122,40.926839562],[-74.623423787,40.926387945],[-74.623677072,40.926055087],[-74.624055919,40.925746478],[-74.624402533,40.925580763],[-74.624716771,40.925581786],[-74.625219009,40.925678761],[-74.62556441,40.925727546],[-74.62590981,40.925776338],[-74.626443885,40.925801908],[-74.626946674,40.925803536],[-74.627449453,40.92580516],[-74.627826809,40.925758709],[-74.628235875,40.925664687],[-74.628645717,40.925427666],[-74.628929735,40.925214066],[-74.629025203,40.92499986],[-74.629089784,40.924690222],[-74.629217072,40.924404617],[-74.629344488,40.924095171],[-74.629472193,40.923738067],[-74.629694151,40.923381262],[-74.629884279,40.923095851],[-74.630105958,40.922786717],[-74.630264408,40.922548879],[-74.630391165,40.922358605],[-74.630580767,40.922168539],[-74.630770755,40.921906964],[-74.630834926,40.921668824],[-74.630899498,40.921359186],[-74.630963802,40.921097208],[-74.630965922,40.920715859],[-74.630937675,40.92014374],[-74.63094046,40.919643219],[-74.630974141,40.919238141],[-74.631007546,40.918880731],[-74.631040287,40.918642483],[-74.630948016,40.918284673],[-74.630918323,40.917974731],[-74.630888754,40.91764095],[-74.630827513,40.91735474],[-74.630672524,40.916972888],[-74.630485736,40.916662436],[-74.630141696,40.916375316],[-74.629765857,40.916159605],[-74.629415638,40.916007747],[-74.629856045,40.915913822],[-74.630453545,40.915820395],[-74.630988869,40.915607605],[-74.631806819,40.915419537],[-74.632813824,40.915136733],[-74.633506357,40.914900591],[-74.634198636,40.914712115],[-74.634764837,40.914594729],[-74.635329857,40.914691859],[-74.635800352,40.914836357],[-74.636302004,40.915028614],[-74.636898326,40.915149665],[-74.637494237,40.915342214],[-74.638122238,40.915415696],[-74.638687271,40.915512801],[-74.639284357,40.915490839],[-74.639850417,40.915397267],[-74.640573848,40.91525652],[-74.641266218,40.915044163],[-74.641676356,40.914735591],[-74.641960672,40.914450452],[-74.642088269,40.914093331],[-74.642089425,40.913878828],[-74.6422169,40.913545531],[-74.642218956,40.913164189],[-74.642283337,40.912878374],[-74.642504664,40.912616877],[-74.642694452,40.91237912],[-74.642853217,40.912069757],[-74.642917582,40.911783941],[-74.642888606,40.911330994],[-74.642859245,40.910949545],[-74.642860143,40.910782706],[-74.643143539,40.910664411],[-74.643427446,40.910450774],[-74.643680325,40.91016554],[-74.644027299,40.909904446],[-74.644593314,40.909810842],[-74.645064699,40.909788462],[-74.645346421,40.909980002],[-74.645753955,40.910148099],[-74.646193166,40.910268619],[-74.646507587,40.910221913],[-74.646979332,40.910128025],[-74.647357104,40.909986169],[-74.647640996,40.909772522],[-74.648018247,40.909726004],[-74.648364697,40.90956022],[-74.648523303,40.909274687],[-74.648588157,40.908893536],[-74.648652872,40.908536208],[-74.648811717,40.908203005],[-74.649033394,40.907869996],[-74.649285986,40.907632417],[-74.649538575,40.90739484],[-74.649853975,40.907157453],[-74.650231712,40.907015589],[-74.650546263,40.906945041],[-74.651049276,40.906875061],[-74.651521877,40.906614305],[-74.651774706,40.906329055],[-74.652090977,40.905924822],[-74.652280585,40.905710878],[-74.652564328,40.90552106],[-74.652659691,40.905306833],[-74.652880456,40.905140656],[-74.653132028,40.90509374],[-74.653320021,40.905189648],[-74.653508377,40.905214045],[-74.653759328,40.905286299],[-74.654073471,40.905287243],[-74.654481854,40.905288468],[-74.654796381,40.905217907],[-74.654954072,40.905099207],[-74.65520625,40.904933117],[-74.655709254,40.904863119],[-74.656086967,40.904721234],[-74.656181813,40.904602343],[-74.656277184,40.904388114],[-74.656278787,40.904078273],[-74.656279529,40.903935263],[-74.65621781,40.903720565],[-74.655967112,40.903600644],[-74.655716422,40.903480725],[-74.655717288,40.903313885],[-74.655813368,40.902956653],[-74.655846652,40.902599234],[-74.655879779,40.902265647],[-74.655881016,40.902027297],[-74.655913906,40.901741379],[-74.655946436,40.901526972],[-74.655916624,40.901217027],[-74.655854929,40.901002328],[-74.655730511,40.900763612],[-74.655731624,40.900549102],[-74.655858388,40.900334967],[-74.65617325,40.9001929],[-74.656582206,40.900074946],[-74.657085799,40.899885763],[-74.657715026,40.899696958],[-74.658218347,40.899555447],[-74.65872191,40.899366255],[-74.659036523,40.899271842],[-74.659318866,40.899344188],[-74.659569056,40.899559441],[-74.659881596,40.89987021],[-74.660100381,40.90008537],[-74.660382351,40.900229203],[-74.660570087,40.900372769],[-74.660694664,40.900587649],[-74.660913566,40.900778967],[-74.661196038,40.900827468],[-74.661572987,40.900828575],[-74.661949936,40.900829681],[-74.662483341,40.900950416],[-74.663142037,40.901143015],[-74.663518625,40.901215625],[-74.66408261,40.901503284],[-74.664457626,40.901885734],[-74.664675712,40.902243886],[-74.664799201,40.902673264],[-74.665048218,40.903126846],[-74.665360672,40.903461441],[-74.665829952,40.903844159],[-74.666269041,40.903988443],[-74.666833648,40.904156917],[-74.667963849,40.90430318],[-74.668811896,40.904329457],[-74.669471725,40.904307512],[-74.670351795,40.904214706],[-74.67101173,40.904168911],[-74.671735307,40.903956459],[-74.672458643,40.903791673],[-74.673120918,40.903269191],[-74.67394108,40.902580301],[-74.674666742,40.901938815],[-74.675171558,40.901487379],[-74.67548721,40.901178413],[-74.675614356,40.900868923],[-74.675679755,40.900344747],[-74.675712687,40.900034992],[-74.675683015,40.899677383],[-74.675652666,40.899462783],[-74.675653714,40.899248272],[-74.675905681,40.899105975],[-74.675969553,40.898891643],[-74.675971064,40.898581791],[-74.676036224,40.898105282],[-74.676194676,40.897819713],[-74.676384309,40.897581899],[-74.676668625,40.897248999],[-74.676953295,40.896844618],[-74.67720585,40.896583142],[-74.677458518,40.89629783],[-74.677836136,40.896155875],[-74.678118716,40.896180502],[-74.678463194,40.896395977],[-74.678808115,40.896516112],[-74.679687632,40.896518558],[-74.680221943,40.89644853],[-74.680913094,40.896426614],[-74.681352945,40.896403998],[-74.681886692,40.896453134],[-74.682263297,40.896525682],[-74.682671969,40.896455297],[-74.68289321,40.896169889],[-74.683083258,40.895836725],[-74.683242024,40.89547965],[-74.683494198,40.895289669],[-74.683871229,40.895266854],[-74.684499444,40.895268576],[-74.685222544,40.895127547],[-74.686009146,40.894843674],[-74.686638909,40.8945117],[-74.687048352,40.894274459],[-74.68720698,40.893941211],[-74.687366269,40.893464942],[-74.687367952,40.893107437],[-74.687244099,40.892725736],[-74.687088628,40.892391626],[-74.686995652,40.892129189],[-74.686996887,40.891867016],[-74.68728181,40.891391089],[-74.687659827,40.891153767],[-74.68806958,40.890845028],[-74.688353707,40.890535941],[-74.688638164,40.89015535],[-74.688891542,40.889703174],[-74.689144358,40.889370169],[-74.689460109,40.8890135],[-74.689964949,40.888514328],[-74.690248945,40.888229075],[-74.690281903,40.887895475],[-74.690251836,40.887609378],[-74.689876294,40.887322345],[-74.689124557,40.886891308],[-74.688686102,40.886627939],[-74.688215788,40.886459826],[-74.687463511,40.886147933],[-74.686836302,40.885955556],[-74.686365662,40.885858937],[-74.685801036,40.885714396],[-74.685299358,40.885546183],[-74.685049115,40.885330994],[-74.684893775,40.884973043],[-74.684801395,40.884591432],[-74.684866796,40.884043409],[-74.684962938,40.883638481],[-74.685058495,40.883352725],[-74.685406426,40.882829312],[-74.685723295,40.882234303],[-74.68607133,40.881687049],[-74.686419123,40.881187471],[-74.686797771,40.880807141],[-74.687143636,40.880712738],[-74.687583067,40.880761601],[-74.688053873,40.880810546],[-74.688493641,40.880787893],[-74.688714131,40.880645485],[-74.688872374,40.880383728],[-74.68893652,40.880097882],[-74.689126939,40.879669366],[-74.689411245,40.879312613],[-74.689789298,40.879051452],[-74.690199966,40.878528186],[-74.690578899,40.878076342],[-74.691083203,40.877672502],[-74.691838386,40.877340835],[-74.692624432,40.877128417],[-74.693347304,40.876987345],[-74.69381955,40.876726406],[-74.694292088,40.876393971],[-74.695046805,40.876157623],[-74.696021005,40.875993342],[-74.696743533,40.87592375],[-74.697340171,40.875925316],[-74.697810746,40.876021883],[-74.698625977,40.876286203],[-74.699253239,40.876454683],[-74.700005894,40.876671158],[-74.70079008,40.876863871],[-74.70154253,40.877128007],[-74.702388764,40.877487712],[-74.702921416,40.877751273],[-74.703235111,40.877823581],[-74.703392555,40.877728645],[-74.703613739,40.877419364],[-74.704024181,40.876919887],[-74.704246124,40.876443763],[-74.704499449,40.875967711],[-74.704721584,40.875443917],[-74.705037609,40.874991864],[-74.705541897,40.874564122],[-74.706171183,40.87427971],[-74.706800334,40.874019132],[-74.707366168,40.873877557],[-74.708058323,40.873569454],[-74.708687472,40.873308867],[-74.709222619,40.87300036],[-74.70972646,40.872667942],[-74.710199525,40.872192438],[-74.71076689,40.871693329],[-74.711208338,40.87126542],[-74.711775069,40.870909302],[-74.712089763,40.870743243],[-74.712498888,40.870529749],[-74.713002795,40.870173484],[-74.713474596,40.869983981],[-74.714071775,40.86984245],[-74.714919606,40.869820716],[-74.715453176,40.869869696],[-74.715672748,40.869917909],[-74.716048813,40.87008568],[-74.716141182,40.870514937],[-74.716202871,40.870777276],[-74.716421013,40.871159165],[-74.716576491,40.871517074],[-74.71695145,40.871947017],[-74.717169213,40.872424253],[-74.717324181,40.872901325],[-74.717322862,40.87321118],[-74.717164547,40.873520639],[-74.716974824,40.87383003],[-74.716847912,40.874139569],[-74.716971779,40.874545063],[-74.717158967,40.87483154],[-74.717189159,40.875117641],[-74.71715694,40.875308236],[-74.717029811,40.875665445],[-74.716902897,40.875974988],[-74.716838367,40.87638002],[-74.716993859,40.876737922],[-74.717276057,40.876833957],[-74.717903875,40.876883164],[-74.718751403,40.876956737],[-74.719599257,40.8769588],[-74.720478487,40.876960935],[-74.721482535,40.877154039],[-74.722956407,40.877634289],[-74.723739571,40.878089029],[-74.724146802,40.878328349],[-74.724334329,40.878543313],[-74.724427346,40.878829554],[-74.72448867,40.879187218],[-74.724738404,40.879545342],[-74.725019858,40.879832031],[-74.725394917,40.880261946],[-74.72570727,40.880667888],[-74.725831214,40.881073372],[-74.725766537,40.88152608],[-74.725639138,40.881954799],[-74.725448268,40.882550218],[-74.725319978,40.883193449],[-74.725348424,40.883908563],[-74.725471779,40.88445706],[-74.725658649,40.884838854],[-74.726034331,40.885125772],[-74.726379476,40.885198093],[-74.726850267,40.885270712],[-74.727163546,40.885462129],[-74.727696752,40.88563024],[-74.728042206,40.885631056],[-74.728388254,40.885488858],[-74.72876619,40.885227555],[-74.729457975,40.885014673],[-74.730118174,40.884849376],[-74.730715247,40.884755437],[-74.731186514,40.884708865],[-74.731594687,40.884733648],[-74.732096968,40.884782487],[-74.732912255,40.885094234],[-74.73375926,40.885334537],[-74.734574656,40.885622434],[-74.734950759,40.885813974],[-74.735201039,40.886052895],[-74.73529383,40.886410636],[-74.735261394,40.886672746],[-74.735322498,40.887101907],[-74.735635039,40.887483983],[-74.736167904,40.887747388],[-74.736952213,40.887963687],[-74.737391823,40.887988527],[-74.738020032,40.887966116],[-74.738365615,40.887943069],[-74.738649578,40.887610027],[-74.738933445,40.887300822],[-74.739310786,40.887182494],[-74.739875928,40.88723144],[-74.740628559,40.887519152],[-74.741161353,40.887806364],[-74.74163152,40.888045774],[-74.742006917,40.888427965],[-74.742193699,40.88885742],[-74.742286437,40.889238977],[-74.742472484,40.889859096],[-74.742533822,40.890240592],[-74.742720878,40.890598528],[-74.743002719,40.890813671],[-74.743848996,40.891268413],[-74.744632718,40.891651501],[-74.745259804,40.891938913],[-74.745824239,40.892178506],[-74.746295285,40.892203374],[-74.74682932,40.892180714],[-74.747331125,40.892372491],[-74.747424361,40.89263488],[-74.74742264,40.893087738],[-74.747483737,40.893540731],[-74.747356827,40.893874141],[-74.747324325,40.894160084],[-74.747354924,40.894374667],[-74.747605383,40.894589721],[-74.747761513,40.894828417],[-74.748042678,40.895234213],[-74.748166514,40.895711182],[-74.748290792,40.896068981],[-74.748509865,40.896283964],[-74.748854651,40.8964754],[-74.749105675,40.896547448],[-74.749389082,40.896357388],[-74.749609764,40.896143353],[-74.749610843,40.89585734],[-74.749800108,40.895643244],[-74.750084147,40.895286333],[-74.750304926,40.895048457],[-74.75074584,40.894739563],[-74.750966672,40.894477856],[-74.751093643,40.894120611],[-74.751189398,40.893715628],[-74.751409966,40.893525421],[-74.751599141,40.893335152],[-74.751850676,40.8932642],[-74.75203977,40.893097756],[-74.752166299,40.892859674],[-74.752386962,40.89264564],[-74.753141306,40.892504247],[-74.7535183,40.89248122],[-74.753957847,40.89252983],[-74.754397207,40.892626099],[-74.754899576,40.89267484],[-74.755371155,40.892556667],[-74.755685843,40.892390491],[-74.756220588,40.892177108],[-74.756723817,40.891987496],[-74.757163547,40.891988422],[-74.757603008,40.892060849],[-74.758135986,40.892324153],[-74.758511764,40.892634788],[-74.758981769,40.892945628],[-74.759327023,40.89301785],[-74.759641357,40.892947003],[-74.760112834,40.892852643],[-74.76064714,40.892758412],[-74.761181358,40.892688017],[-74.76158984,40.892641192],[-74.76190461,40.892451168],[-74.76209408,40.892165541],[-74.762252157,40.891879842],[-74.762692729,40.891642413],[-74.763101724,40.89145257],[-74.763637189,40.891024646],[-74.764046919,40.890620289],[-74.764456844,40.890168265],[-74.765054603,40.889883468],[-74.766091808,40.889671069],[-74.766909156,40.88945821],[-74.767757735,40.889293077],[-74.768575392,40.888984864],[-74.769110142,40.888747592],[-74.769613731,40.88843875],[-74.76995979,40.888272596],[-74.77039999,40.888130462],[-74.770651723,40.887987958],[-74.770903879,40.887726281],[-74.771030494,40.887440508],[-74.771188919,40.887035632],[-74.771441171,40.886750115],[-74.771850582,40.886417238],[-74.772353824,40.886203717],[-74.772762829,40.88599001],[-74.773046623,40.885656882],[-74.773078827,40.885418597],[-74.773048577,40.88508485],[-74.773080944,40.884798896],[-74.77336392,40.884704113],[-74.773803685,40.884681144],[-74.774557082,40.88477796],[-74.774996998,40.884707309],[-74.775468887,40.884469883],[-74.775878355,40.88411316],[-74.776068235,40.883684498],[-74.77606968,40.883255471],[-74.775820278,40.882706791],[-74.775413961,40.882133967],[-74.775070853,40.881442084],[-74.77507279,40.880870052],[-74.77523167,40.880322166],[-74.775390861,40.879678931],[-74.775612854,40.879035827],[-74.775645941,40.87853536],[-74.775773564,40.877939732],[-74.775838289,40.877367817],[-74.775965035,40.877034382],[-74.775871476,40.876843525],[-74.775463827,40.876675886],[-74.774835553,40.876746164],[-74.774238105,40.876983344],[-74.773545732,40.877434847],[-74.772602546,40.877766682],[-74.771974163,40.877860782],[-74.77125202,40.877835521],[-74.770404976,40.877595484],[-74.769024806,40.877163714],[-74.767864263,40.876780016],[-74.766986289,40.876420727],[-74.766453296,40.876181294],[-74.766077323,40.875942185],[-74.765952398,40.875751257],[-74.765921672,40.875560518],[-74.76623635,40.875370473],[-74.766991386,40.874966818],[-74.767997789,40.874515976],[-74.768846921,40.874136322],[-74.769287672,40.873803516],[-74.769509136,40.873327265],[-74.769573991,40.872731521],[-74.769482927,40.871825613],[-74.769484663,40.871325084],[-74.769423457,40.8708721],[-74.769079713,40.870394728],[-74.768955369,40.870036941],[-74.769050897,40.869655783],[-74.769209115,40.86929857],[-74.769711825,40.86920425],[-74.770654821,40.868896261],[-74.771597901,40.868564446],[-74.772289696,40.868255963],[-74.773233328,40.867757288],[-74.773863223,40.86718649],[-74.774304884,40.866567646],[-74.774275343,40.866019394],[-74.774152193,40.865304095],[-74.773809094,40.864636053],[-74.773372153,40.863872475],[-74.77284097,40.863132549],[-74.772215198,40.862511608],[-74.771965086,40.862201255],[-74.771903626,40.861819782],[-74.77174827,40.861342771],[-74.771467463,40.860841682],[-74.771217526,40.860483665],[-74.771187202,40.860173756],[-74.771376296,40.859959615],[-74.771879083,40.859817598],[-74.772193679,40.859627543],[-74.772571213,40.85938994],[-74.77301201,40.859009448],[-74.773861503,40.858462911],[-74.774961935,40.85796453],[-74.776188244,40.857371047],[-74.777634764,40.856634963],[-74.77845253,40.856159833],[-74.779239475,40.855517803],[-74.779649136,40.855041882],[-74.779933158,40.854589561],[-74.780060695,40.853993936],[-74.780125595,40.853350511],[-74.780127486,40.852778478],[-74.780097834,40.852254056],[-74.780099568,40.851729691],[-74.780100907,40.851324493],[-74.780227401,40.851038717],[-74.780730508,40.850777495],[-74.781798753,40.850469662],[-74.782835834,40.85009025],[-74.783747425,40.849686777],[-74.784721938,40.849235737],[-74.785445336,40.848784221],[-74.786357745,40.84811854],[-74.786861472,40.847642769],[-74.787019617,40.847261699],[-74.78689522,40.846903949],[-74.786551037,40.846569623],[-74.786176153,40.846020722],[-74.785926675,40.845519716],[-74.785928592,40.844923858],[-74.786118666,40.844376003],[-74.786276963,40.843947264],[-74.786278418,40.843494402],[-74.786060567,40.842921959],[-74.785780159,40.842277899],[-74.785436552,40.841776724],[-74.785029995,40.841323103],[-74.784466941,40.840750023],[-74.783841327,40.840105293],[-74.783184222,40.83950819],[-74.782307412,40.838910661],[-74.781775213,40.838504463],[-74.781431109,40.83817012],[-74.781275359,40.837812304],[-74.781370691,40.837454953],[-74.781717313,40.837026584],[-74.782408887,40.836670369],[-74.78347674,40.83641019],[-74.785297922,40.836103734],[-74.786208704,40.835890918],[-74.787120004,40.835511239],[-74.787843236,40.835059709],[-74.788158025,40.834750427],[-74.78831608,40.834393194],[-74.788286523,40.833821101],[-74.788351322,40.833177676],[-74.788479122,40.832462858],[-74.788826117,40.831891454],[-74.789267176,40.831344054],[-74.789707937,40.830891992],[-74.79033702,40.830416433],[-74.790902679,40.830155278],[-74.791531009,40.829918067],[-74.792504363,40.829729137],[-74.793760356,40.829469208],[-74.794828051,40.829208915],[-74.795644417,40.829043526],[-74.796115681,40.828853684],[-74.796744439,40.828473431],[-74.797059096,40.828187965],[-74.797248513,40.827806935],[-74.797532295,40.827354567],[-74.798099565,40.826545173],[-74.798792116,40.825807489],[-74.799453554,40.824974419],[-74.800020564,40.824236517],[-74.800650225,40.823522554],[-74.8013743,40.822713413],[-74.801972368,40.82207089],[-74.802221355,40.821801963],[-74.802413032,40.821594946],[-74.802884647,40.821262055],[-74.803325673,40.820666942],[-74.804111994,40.820000889],[-74.80452121,40.819548715],[-74.804867301,40.819215611],[-74.80511921,40.818906184],[-74.805119976,40.818643996],[-74.804901194,40.818357608],[-74.804713774,40.818071261],[-74.804432482,40.817713268],[-74.804214054,40.817307703],[-74.804027203,40.81683068],[-74.803996897,40.816473106],[-74.803998019,40.816091744],[-74.803936524,40.815662603],[-74.80403176,40.815281409],[-74.804221273,40.814852697],[-74.80441082,40.814400153],[-74.804506484,40.813875944],[-74.804507322,40.813589924],[-74.804383033,40.81318452],[-74.804132956,40.812874234],[-74.803726328,40.812468347],[-74.80328875,40.811919392],[-74.802882556,40.811370488],[-74.802570256,40.810893257],[-74.802539736,40.810607184],[-74.802635185,40.81015448],[-74.803013247,40.809606915],[-74.803611029,40.809012061],[-74.804020532,40.808440709],[-74.80452369,40.808012534],[-74.805027123,40.807489015],[-74.805624323,40.807084819],[-74.806001716,40.806751763],[-74.806473208,40.806418869],[-74.806944292,40.806228972],[-74.80741558,40.80596758],[-74.80754186,40.805681761],[-74.807542893,40.805324237],[-74.807512424,40.805014333],[-74.80726273,40.804584882],[-74.807075763,40.804155533],[-74.806795529,40.803440015],[-74.80667166,40.802891598],[-74.806642073,40.802271834],[-74.806737919,40.801676112],[-74.806990491,40.801104492],[-74.807305546,40.80062832],[-74.807714257,40.800295308],[-74.807872319,40.799866535],[-74.808187889,40.799199684],[-74.808692321,40.798294774],[-74.809007419,40.797794766],[-74.809478901,40.797438011],[-74.810075498,40.797200645],[-74.810546145,40.797129916],[-74.811331001,40.796869013],[-74.812115695,40.796655775],[-74.81252402,40.796441928],[-74.812932812,40.796061228],[-74.81318513,40.795561097],[-74.813249527,40.794965318],[-74.813219383,40.794536241],[-74.813063829,40.794083121],[-74.812813994,40.793701351],[-74.812470222,40.793271756],[-74.812126579,40.792794489],[-74.811813501,40.792603316],[-74.811406398,40.792388124],[-74.810999446,40.79212527],[-74.810749157,40.79191034],[-74.810624733,40.791552611],[-74.810626088,40.791075906],[-74.810534447,40.790217688],[-74.810535802,40.789740991],[-74.810568444,40.789288176],[-74.810788834,40.788978675],[-74.811699083,40.788694143],[-74.81264022,40.7885765],[-74.813455588,40.78857782],[-74.814490134,40.788698663],[-74.815179708,40.788818953],[-74.815869318,40.788939222],[-74.816339256,40.789106817],[-74.816777513,40.789393536],[-74.817215511,40.789775596],[-74.817434121,40.790109635],[-74.817934722,40.790539464],[-74.81846699,40.790850155],[-74.819124794,40.791137211],[-74.819908,40.791448298],[-74.82047224,40.791544512],[-74.821099473,40.791545486],[-74.821538776,40.79145083],[-74.821978535,40.79118932],[-74.82273177,40.790975962],[-74.823516192,40.790834156],[-74.824520177,40.790668841],[-74.825273213,40.790526968],[-74.826026493,40.790289757],[-74.8270625,40.789862278],[-74.828255563,40.789339687],[-74.829228481,40.78905511],[-74.830294896,40.788985178],[-74.831580405,40.789082405],[-74.832552042,40.78929833],[-74.833429465,40.78956179],[-74.833993541,40.789729449],[-74.835184943,40.789850333],[-74.836188487,40.789851761],[-74.837160825,40.789781635],[-74.8380395,40.789544521],[-74.838667348,40.789283209],[-74.839201459,40.788878758],[-74.839798609,40.788331377],[-74.840270496,40.787712314],[-74.840616699,40.787188422],[-74.840868944,40.786616726],[-74.841027387,40.785925716],[-74.841311194,40.785258727],[-74.841657273,40.784782493],[-74.842097937,40.784091878],[-74.842318797,40.783520135],[-74.84231981,40.783091099],[-74.842164039,40.782661849],[-74.841789,40.782136961],[-74.841476725,40.78158832],[-74.841289781,40.78108753],[-74.841228021,40.780682231],[-74.841354707,40.780158041],[-74.841888877,40.779682072],[-74.842548317,40.779277769],[-74.84358428,40.778754803],[-74.844525701,40.778422381],[-74.845435617,40.778161421],[-74.846627712,40.77790082],[-74.84738061,40.777734973],[-74.847725518,40.777735427],[-74.848101459,40.777878938],[-74.84860312,40.777879597],[-74.849042153,40.777856333],[-74.849512475,40.777856947],[-74.850045355,40.777929144],[-74.850828531,40.778240023],[-74.851204366,40.778431186],[-74.851768488,40.778551087],[-74.852458259,40.778575811],[-74.853179369,40.778600562],[-74.853931945,40.778577685],[-74.854684574,40.778530964],[-74.855531275,40.778484356],[-74.856315355,40.77838999],[-74.856943027,40.778128596],[-74.857382968,40.777676263],[-74.857823094,40.777128601],[-74.858231431,40.776795401],[-74.85889053,40.776486353],[-74.859549312,40.776320311],[-74.860113891,40.776225652],[-74.86077233,40.776226449],[-74.861336897,40.776131776],[-74.861713887,40.775774711],[-74.861934352,40.775298274],[-74.862029741,40.77465483],[-74.862188181,40.773844623],[-74.862220538,40.773367951],[-74.862315419,40.772962864],[-74.862159651,40.772485977],[-74.861909468,40.772175817],[-74.861534329,40.771650993],[-74.8611589,40.771269177],[-74.860971529,40.770911423],[-74.860940829,40.770601523],[-74.860941672,40.770196326],[-74.861193074,40.769910605],[-74.861507239,40.769601129],[-74.861978191,40.769267996],[-74.862386642,40.768839446],[-74.862575615,40.768410633],[-74.862889802,40.768077311],[-74.863454698,40.767791958],[-74.864207393,40.767649838],[-74.864959891,40.76760305],[-74.865774814,40.767699345],[-74.866808978,40.767891221],[-74.867811448,40.768273742],[-74.868813869,40.768680084],[-74.869941828,40.769015056],[-74.871257459,40.769588575],[-74.872009473,40.769803931],[-74.872416895,40.769875887],[-74.87273046,40.769852401],[-74.873044559,40.769542885],[-74.873327671,40.769042653],[-74.87379942,40.768256604],[-74.874114495,40.767422719],[-74.874461142,40.766469684],[-74.874587452,40.765993119],[-74.87468246,40.765468838],[-74.874934208,40.764968571],[-74.875342529,40.764539981],[-74.87575079,40.764159053],[-74.876190333,40.763801999],[-74.876536249,40.763206474],[-74.877038843,40.762658804],[-74.877698545,40.761896779],[-74.878201226,40.761277591],[-74.878672439,40.760729875],[-74.879143329,40.760348999],[-74.879551389,40.76003957],[-74.87973998,40.759753744],[-74.879709154,40.759467689],[-74.879647276,40.759014754],[-74.879585325,40.75860948],[-74.879680003,40.758252053],[-74.880025228,40.758014061],[-74.880715351,40.75772875],[-74.881280083,40.757443318],[-74.881844599,40.757277042],[-74.882471741,40.757134665],[-74.882910617,40.757111279],[-74.883380501,40.757278604],[-74.883944192,40.757589028],[-74.88475831,40.758090386],[-74.885854594,40.758568186],[-74.886731958,40.758759732],[-74.887170762,40.758783993],[-74.887703653,40.758784512],[-74.888142437,40.758808779],[-74.888612475,40.758904569],[-74.889301599,40.759191257],[-74.889771415,40.759430064],[-74.890210009,40.759573491],[-74.890774247,40.759574026],[-74.891338642,40.759479223],[-74.892122729,40.759217767],[-74.892844448,40.758741729],[-74.893566245,40.75821802],[-74.894225452,40.757622748],[-74.894508429,40.757074791],[-74.894979817,40.756312485],[-74.895074848,40.755669021],[-74.895107313,40.754953987],[-74.895076909,40.754358081],[-74.895077734,40.753833697],[-74.895015947,40.753261583],[-74.895080093,40.752332077],[-74.895082005,40.751116469],[-74.89508343,40.750210727],[-74.895115741,40.749591038],[-74.895147961,40.749042857],[-74.895304943,40.748852312],[-74.895555979,40.748661859],[-74.896026216,40.748590771],[-74.896433657,40.748591137],[-74.89706022,40.748758546],[-74.897843464,40.748949929],[-74.8985016,40.748974344],[-74.899034427,40.748950979],[-74.89988102,40.748713365],[-74.900602251,40.748451795],[-74.90160577,40.748047456],[-74.902264248,40.747833493],[-74.902577816,40.747714584],[-74.902609569,40.747428586],[-74.902609917,40.747190235],[-74.902516466,40.746808787],[-74.902485712,40.746403561],[-74.902423703,40.745950636],[-74.902487104,40.745450145],[-74.90261329,40.744878204],[-74.902896226,40.744282551],[-74.903179155,40.743686902],[-74.903524829,40.743019806],[-74.903995933,40.742305133],[-74.904278936,40.741637977],[-74.904436624,40.740946881],[-74.904374723,40.740398614],[-74.904281397,40.739921832],[-74.904156809,40.739397343],[-74.903969639,40.738801305],[-74.903970393,40.73827693],[-74.904002307,40.737871746],[-74.904159339,40.737633525],[-74.904535508,40.737538501],[-74.90509938,40.737658143],[-74.90578857,40.737801714],[-74.906352558,40.737849845],[-74.906948056,40.737778823],[-74.907512331,40.737612429],[-74.90791987,40.737493577],[-74.908484033,40.737398683],[-74.909079448,40.737375313],[-74.910019638,40.737304546],[-74.910520994,40.737328776],[-74.911366797,40.737520109],[-74.911961981,40.737663579],[-74.912431999,40.737687769],[-74.91290207,40.737664294],[-74.91418709,40.737474567],[-74.915566132,40.737284903],[-74.916788514,40.73704744],[-74.918073622,40.736786165],[-74.91892,40.736524571],[-74.919296257,40.736334153],[-74.919641342,40.736000699],[-74.919861158,40.735619482],[-74.920018621,40.734952196],[-74.920364644,40.733832177],[-74.920773342,40.73268835],[-74.921307081,40.731782976],[-74.921683723,40.731235007],[-74.922154115,40.730901637],[-74.922624438,40.730615928],[-74.92312594,40.730473245],[-74.92362731,40.730425906],[-74.924003304,40.730426154],[-74.924692539,40.730498109],[-74.925569841,40.73052252],[-74.926227831,40.730522942],[-74.92697987,40.730475749],[-74.927888645,40.730357143],[-74.92864078,40.730214595],[-74.929110954,40.730048035],[-74.929455831,40.729833734],[-74.929894676,40.729643312],[-74.930364866,40.729452916],[-74.930960279,40.729357928],[-74.931399248,40.729048334],[-74.931587651,40.728643235],[-74.931744831,40.72814279],[-74.931933203,40.727761533],[-74.932246768,40.727523364],[-74.932591574,40.727356716],[-74.933030288,40.727261629],[-74.93368835,40.727166664],[-74.934565892,40.726904979],[-74.935412197,40.726524087],[-74.93647776,40.72619098],[-74.937041909,40.725976768],[-74.937919203,40.725953413],[-74.939454374,40.725978059],[-74.940770137,40.726121758],[-74.94186657,40.726289163],[-74.942524497,40.726313326],[-74.943245086,40.726313683],[-74.943777822,40.726218606],[-74.944216541,40.726099634],[-74.944592727,40.725837631],[-74.944843624,40.725527885],[-74.944969223,40.725194248],[-74.944969478,40.72488439],[-74.945063838,40.724431569],[-74.945189522,40.723978747],[-74.94565993,40.723406912],[-74.946161598,40.722930439],[-74.946757185,40.722501673],[-74.94738408,40.722120598],[-74.947854289,40.721763273],[-74.948073782,40.721501188],[-74.948199426,40.721096042],[-74.948199794,40.720619328],[-74.948106106,40.720214083],[-74.947887239,40.719665766],[-74.947574517,40.718974396],[-74.947512148,40.718592998],[-74.947512468,40.718187795],[-74.947544129,40.717782609],[-74.947544465,40.717353564],[-74.94738821,40.716876787],[-74.947200622,40.716399988],[-74.94701322,40.715708672],[-74.946856998,40.715184222],[-74.946732291,40.714445264],[-74.946639049,40.71351563],[-74.946608387,40.71268137],[-74.946734133,40.712133216],[-74.946985091,40.711656617],[-74.947455338,40.711156285],[-74.947862899,40.710727434],[-74.948395587,40.710465481],[-74.948928368,40.710108187],[-74.949304408,40.709893839],[-74.94986854,40.709465034],[-74.95055795,40.709060128],[-74.951216024,40.708655206],[-74.95196826,40.707964291],[-74.952532521,40.707320959],[-74.952814707,40.706915873],[-74.952940378,40.706343871],[-74.953066002,40.705867215],[-74.953222824,40.705557412],[-74.953598808,40.705366882],[-74.954319383,40.705104968],[-74.955321875,40.70479551],[-74.956167644,40.704605144],[-74.956950807,40.704367084],[-74.957640082,40.704009808],[-74.95839211,40.703461861],[-74.959018839,40.702937705],[-74.959896158,40.702318288],[-74.96052289,40.701770283],[-74.961055608,40.701269915],[-74.961619617,40.700793396],[-74.962121035,40.7002215],[-74.962434567,40.699601876],[-74.962810717,40.699006113],[-74.963061478,40.698624822],[-74.963343588,40.698172037],[-74.963594357,40.697766912],[-74.963970397,40.697337977],[-74.964534277,40.697004462],[-74.965348718,40.696647176],[-74.966006556,40.696289841],[-74.966633031,40.695980158],[-74.967165598,40.695598938],[-74.968042664,40.695193979],[-74.968481227,40.694884242],[-74.968951063,40.694693678],[-74.969452156,40.694622308],[-74.96992187,40.694670103],[-74.970861177,40.695075548],[-74.971581279,40.695457099],[-74.971925723,40.695552529],[-74.972426729,40.695671826],[-74.972990448,40.69564812],[-74.973554147,40.695600578],[-74.974055286,40.695433841],[-74.974556414,40.69526711],[-74.975151487,40.695100391],[-74.975746544,40.694957493],[-74.9762476,40.694909932],[-74.976842628,40.694910052],[-74.977218413,40.694933969],[-74.977562851,40.695029373],[-74.977907243,40.695267801],[-74.978220348,40.695434702],[-74.978564762,40.69564929],[-74.979065801,40.695768559],[-74.979472897,40.695816304],[-74.980067901,40.695816408],[-74.980725602,40.69567351],[-74.981258044,40.695435234],[-74.981727868,40.695173125],[-74.982354284,40.694815691],[-74.982730106,40.694696561],[-74.983262484,40.694625137],[-74.983826182,40.694553711],[-74.984389912,40.694434612],[-74.985047604,40.694124832],[-74.985486084,40.693910366],[-74.986018539,40.693529068],[-74.986363062,40.693171569],[-74.986895546,40.692528071],[-74.987271427,40.692003733],[-74.987428054,40.69181306],[-74.987522048,40.691527043],[-74.987647379,40.69109802],[-74.987678799,40.6905498],[-74.987835534,40.689644064],[-74.988054888,40.688762165],[-74.98849351,40.687332074],[-74.988556264,40.686640848],[-74.988525018,40.686164129],[-74.988399843,40.685782743],[-74.988243358,40.685425195],[-74.988180805,40.685019983],[-74.988274775,40.68480548],[-74.988556608,40.68463865],[-74.989245447,40.684614892],[-74.990028241,40.684638785],[-74.990466599,40.684567318],[-74.991061543,40.684424347],[-74.99162518,40.684090691],[-74.99231408,40.683542523],[-74.992909041,40.682922835],[-74.993159571,40.682541476],[-74.993410104,40.682088613],[-74.993660633,40.681659583],[-74.993911132,40.681278232],[-74.994161641,40.680992209],[-74.994599988,40.680706203],[-74.995069668,40.680444037],[-74.995508,40.680253364],[-74.996134204,40.680038873],[-74.996541211,40.679967371],[-74.99691692,40.67991971],[-74.997167402,40.679919717],[-74.997198709,40.679824372],[-74.997136119,40.679657529],[-74.996979574,40.679419171],[-74.99682303,40.679228482],[-74.996666508,40.679037795],[-74.996697826,40.678751762],[-74.996823069,40.678394223],[-74.997167483,40.677989027],[-74.997511903,40.677559998],[-74.997668449,40.677035619],[-74.997981551,40.676535067],[-74.998294626,40.676010688],[-74.998607705,40.675605488],[-74.998732953,40.675247947],[-74.998670335,40.674890414],[-74.998513808,40.674628224],[-74.998263379,40.67424684],[-74.99804423,40.674008488],[-74.997793789,40.673865467],[-74.997512047,40.673698611],[-74.997355514,40.673531757],[-74.997292905,40.673388745],[-74.997418141,40.673150384],[-74.997512078,40.672840528],[-74.997512086,40.672626003],[-74.997449482,40.672387648],[-74.997261657,40.672101615],[-74.99704253,40.671839414],[-74.996917307,40.671529551],[-74.99685474,40.671076671],[-74.996792143,40.670528446],[-74.996979989,40.670242423],[-74.997355645,40.670170926],[-74.997825209,40.670170936],[-74.998482616,40.670266292],[-74.999296533,40.670290132],[-74.999797388,40.670290134],[-75.000861761,40.670242458],[-75.002051319,40.670147098],[-75.003209585,40.670027894],[-75.003929574,40.669932526],[-75.00496261,40.669789477],[-75.005870421,40.669646417],[-75.007059981,40.669527172],[-75.007873866,40.66940794],[-75.008374735,40.66931256],[-75.009032087,40.669050324],[-75.009658126,40.668716573],[-75.010315437,40.66833514],[-75.011223199,40.668025196],[-75.011974436,40.667762924],[-75.012756962,40.667476805],[-75.013508182,40.667190699],[-75.014509814,40.666856876],[-75.015167119,40.666594596],[-75.016074835,40.666379951],[-75.016951276,40.666189141],[-75.017733822,40.666093679],[-75.018453742,40.665974387],[-75.019549293,40.665831199],[-75.020269208,40.665711896],[-75.020863919,40.665568772],[-75.021302075,40.665354169],[-75.021458525,40.665139624],[-75.021521024,40.664805913],[-75.021489579,40.664376871],[-75.021239035,40.664019385],[-75.020894612,40.663638073],[-75.020393617,40.66311378],[-75.02001787,40.662660965],[-75.019485646,40.662255843],[-75.018922103,40.661779224],[-75.018546403,40.661445585],[-75.018264625,40.661183432],[-75.018108019,40.660825923],[-75.01792009,40.660373073],[-75.017857388,40.65999171],[-75.017763421,40.659729535],[-75.017481647,40.65944355],[-75.01682423,40.658943096],[-75.016166852,40.658561817],[-75.015697302,40.658275852],[-75.01550946,40.658037521],[-75.015509403,40.657799158],[-75.015634548,40.657560785],[-75.016260452,40.657298511],[-75.017011535,40.656988533],[-75.017700051,40.656773906],[-75.018294635,40.656511625],[-75.018795332,40.656201675],[-75.019483751,40.655748681],[-75.020485089,40.655104945],[-75.021329942,40.654556566],[-75.02198699,40.653960546],[-75.022706578,40.65326917],[-75.023113309,40.652887715],[-75.023520058,40.652577771],[-75.023801606,40.652267846],[-75.023864141,40.652100981],[-75.023864055,40.651862625],[-75.023770086,40.651624289],[-75.023769943,40.651219082],[-75.02376985,40.650956884],[-75.023988763,40.65055164],[-75.024301558,40.650122519],[-75.024864779,40.649836369],[-75.025553176,40.649597864],[-75.025959913,40.649359425],[-75.026304036,40.64904947],[-75.026585531,40.648644197],[-75.02692961,40.64823891],[-75.027430077,40.647666735],[-75.028024414,40.647070692],[-75.02855613,40.646426999],[-75.028900157,40.645950194],[-75.029087756,40.645544938],[-75.029275349,40.645211189],[-75.029306451,40.644782139],[-75.029306284,40.644400765],[-75.029493886,40.644043183],[-75.029587561,40.643590278],[-75.029681213,40.643089701],[-75.030087702,40.642422192],[-75.030494291,40.641945362],[-75.030869643,40.641635401],[-75.031119825,40.641349304],[-75.031338661,40.640896365],[-75.03171396,40.640491055],[-75.032151881,40.640204904],[-75.032589869,40.640037931],[-75.03337211,40.639966193],[-75.033997853,40.639846833],[-75.034592296,40.639703646],[-75.035186722,40.639536615],[-75.035655982,40.639345777],[-75.036438232,40.639369375],[-75.03715801,40.639535996],[-75.037971732,40.639845594],[-75.038691563,40.640107553],[-75.039411474,40.640512516],[-75.040162766,40.641036644],[-75.04097656,40.641417734],[-75.041853026,40.641917973],[-75.042447787,40.64227529],[-75.043105108,40.642584916],[-75.0438562,40.642727644],[-75.044607247,40.642798871],[-75.045295667,40.64277477],[-75.046140463,40.642679089],[-75.047298057,40.642392582],[-75.048267893,40.642129993],[-75.049456819,40.641914967],[-75.050551854,40.641699969],[-75.051240167,40.641580493],[-75.051834595,40.641461043],[-75.052491589,40.641293895],[-75.052835672,40.64115072],[-75.053398735,40.640912103],[-75.054149413,40.640554218],[-75.055056557,40.640196255],[-75.055525712,40.639957665],[-75.055869692,40.639695312],[-75.055900721,40.639385435],[-75.055650066,40.638980331],[-75.055211742,40.638670687],[-75.054836031,40.638384838],[-75.05405341,40.637908485],[-75.053082796,40.637098519],[-75.052080708,40.636026362],[-75.05139184,40.635359265],[-75.050953489,40.634930409],[-75.050828181,40.63471594],[-75.050890537,40.634453725],[-75.051140731,40.634286762],[-75.051547235,40.634000553],[-75.05182866,40.633785901],[-75.052078615,40.633332907],[-75.05214081,40.632856158],[-75.052140476,40.632427118],[-75.052014966,40.631950452],[-75.051733118,40.631593044],[-75.051200922,40.631164231],[-75.050606213,40.630806957],[-75.049855124,40.630521254],[-75.049197995,40.630354685],[-75.048603556,40.630331104],[-75.047727487,40.630259956],[-75.04722682,40.630117151],[-75.046475813,40.629902932],[-75.045599603,40.629593418],[-75.044848574,40.629331513],[-75.043784645,40.628998219],[-75.043065018,40.628903144],[-75.042470584,40.628879531],[-75.041907397,40.628784391],[-75.041437965,40.628546204],[-75.04084328,40.628069701],[-75.04027975,40.627426325],[-75.039872718,40.626878238],[-75.0396535,40.626473105],[-75.039434201,40.625948793],[-75.039183661,40.625495996],[-75.038933178,40.625138545],[-75.03796286,40.624185432],[-75.037462065,40.623732712],[-75.036930034,40.623303834],[-75.036491936,40.623065624],[-75.035522088,40.622875227],[-75.034614829,40.622756323],[-75.033582472,40.622661281],[-75.032675186,40.622494697],[-75.031799244,40.622375764],[-75.031048341,40.62208993],[-75.029984604,40.621804181],[-75.029014793,40.621613745],[-75.027919888,40.621542507],[-75.027044005,40.621542717],[-75.026480987,40.621662026],[-75.025761592,40.621900545],[-75.024635565,40.622234495],[-75.023822304,40.622473024],[-75.022915253,40.62283075],[-75.022446083,40.623045359],[-75.022102018,40.623188446],[-75.021601515,40.623212374],[-75.021288657,40.623140926],[-75.020350129,40.622950411],[-75.019130058,40.622783768],[-75.018254166,40.622807742],[-75.017722363,40.622783991],[-75.017034107,40.622736421],[-75.016502292,40.622617322],[-75.016095599,40.622450527],[-75.015626285,40.622140719],[-75.015188205,40.621568717],[-75.014750157,40.621115891],[-75.014312082,40.620543886],[-75.014061755,40.620114867],[-75.014061674,40.619733497],[-75.014030315,40.619328284],[-75.013779974,40.618899272],[-75.01327936,40.618231924],[-75.013001209,40.617945883],[-75.012653629,40.617588426],[-75.012263558,40.617306133],[-75.012027941,40.617135611],[-75.011183293,40.616611299],[-75.010776651,40.616516001],[-75.010119776,40.616420713],[-75.009024997,40.616444638],[-75.007680002,40.616611586],[-75.006335008,40.616754686],[-75.005208941,40.616802417],[-75.004301807,40.616730939],[-75.003519812,40.61651645],[-75.001768138,40.615729904],[-75.000798495,40.61539621],[-74.999265816,40.614847982],[-74.998421305,40.614514269],[-74.997764464,40.614204395],[-74.997107645,40.613775329],[-74.997076412,40.612607365],[-74.996982627,40.611653923],[-74.996982662,40.610819672],[-74.996951431,40.609913905],[-74.996826344,40.60922265],[-74.996607451,40.608674424],[-74.996263434,40.608269194],[-74.995575415,40.607673277],[-74.995012517,40.60695817],[-74.994605986,40.606219238],[-74.994512225,40.605599498],[-74.994512305,40.604622225],[-74.994449827,40.603764128],[-74.994387329,40.603168222],[-74.994199716,40.602786835],[-74.993887045,40.602286261],[-74.993605624,40.601904875],[-74.993230395,40.601475804],[-74.99276134,40.601118238],[-74.99238611,40.600784509],[-74.992104713,40.600426945],[-74.991917127,40.599997888],[-74.991854639,40.599449654],[-74.991792157,40.59892526],[-74.991854783,40.598257853],[-74.991854846,40.597733464],[-74.991761129,40.597066046],[-74.991636122,40.596446302],[-74.991511097,40.595898062],[-74.99141737,40.595278317],[-74.991229838,40.594658566],[-74.991073609,40.593871965],[-74.990854826,40.593061526],[-74.990698623,40.592060397],[-74.990417341,40.591202286],[-74.990198572,40.59041567],[-74.99007365,40.589462215],[-74.990042504,40.588675624],[-74.990167665,40.58798439],[-74.990292797,40.587460011],[-74.990449211,40.586935625],[-74.990636917,40.586172889],[-74.99091842,40.585243301],[-74.991106093,40.584575904],[-74.99119996,40.584075361],[-74.991231307,40.583407953],[-74.991200204,40.582216146],[-74.991200313,40.581381882],[-74.991294172,40.580833648],[-74.991450586,40.580118584],[-74.99163825,40.579355845],[-74.991638316,40.578831455],[-74.991513319,40.578307045],[-74.990825703,40.577377388],[-74.990200576,40.576662259],[-74.989387914,40.575970934],[-74.98873157,40.575208114],[-74.988168979,40.574588319],[-74.987762705,40.574040051],[-74.987450201,40.573610964],[-74.987168973,40.573038868],[-74.986825246,40.572323743],[-74.986637793,40.571847002],[-74.986387766,40.571608613],[-74.986106492,40.571346381],[-74.985668894,40.571298652],[-74.985137503,40.571298586],[-74.984606123,40.571203169],[-74.984199832,40.570940922],[-74.98373103,40.570654824],[-74.983168452,40.570368712],[-74.982574617,40.570154095],[-74.981855767,40.569844111],[-74.981261948,40.569605657],[-74.980699347,40.569391037],[-74.980168079,40.56905724],[-74.979730551,40.568771132],[-74.979418098,40.568389705],[-74.979136918,40.567984432],[-74.97894948,40.567674532],[-74.978668252,40.567412281],[-74.978449491,40.567269229],[-74.978199473,40.567173835],[-74.977918268,40.566887747],[-74.977824584,40.566601696],[-74.977855947,40.566267995],[-74.978043644,40.565791312],[-74.978543873,40.565338519],[-74.979169148,40.564838074],[-74.979575549,40.564552113],[-74.97995069,40.564361484],[-74.980325793,40.564147021],[-74.980544678,40.563837193],[-74.980669802,40.563455832],[-74.980857494,40.562859965],[-74.98113897,40.562240272],[-74.981545439,40.561668261],[-74.982201909,40.561143971],[-74.982795812,40.56078652],[-74.983483408,40.560691273],[-74.984139787,40.560548355],[-74.984827365,40.560476931],[-74.985233689,40.560357804],[-74.984889964,40.560024054],[-74.984358789,40.559523414],[-74.983483893,40.558712872],[-74.982234105,40.557568552],[-74.981578,40.556877202],[-74.980765654,40.556185814],[-74.979984516,40.555708961],[-74.977859527,40.555398698],[-74.976640794,40.555255446],[-74.975172006,40.555231299],[-74.974515735,40.555231156],[-74.97320326,40.555064005],[-74.97126569,40.555111215],[-74.969390607,40.555182246],[-74.967984328,40.555134192],[-74.966859357,40.555014696],[-74.965921914,40.554871401],[-74.964640812,40.554513477],[-74.963265985,40.554179339],[-74.962359755,40.554107541],[-74.961797172,40.554250369],[-74.960859407,40.554679111],[-74.960171528,40.555298615],[-74.959733755,40.555727512],[-74.959389792,40.556037267],[-74.958733407,40.55622772],[-74.95782699,40.556418086],[-74.957045464,40.556799172],[-74.956357761,40.557061114],[-74.955420114,40.55722761],[-74.95423246,40.557322493],[-74.953044777,40.557465031],[-74.952107192,40.557512318],[-74.95141965,40.557512031],[-74.950482045,40.557583139],[-74.949325508,40.557844839],[-74.948012566,40.558297143],[-74.947231032,40.558606656],[-74.945855551,40.559058907],[-74.944823977,40.559344459],[-74.944042544,40.559487097],[-74.942511108,40.559534019],[-74.941042251,40.559509428],[-74.940136015,40.559389791],[-74.939073637,40.559150877],[-74.93838631,40.558888311],[-74.937355507,40.558315696],[-74.93648106,40.557647805],[-74.935575495,40.556884542],[-74.934919831,40.556240601],[-74.93429539,40.55564434],[-74.933795935,40.555071987],[-74.932952798,40.554427919],[-74.93195351,40.553712254],[-74.931079014,40.553211174],[-74.930141895,40.552853072],[-74.929329575,40.552685724],[-74.928173433,40.552569974],[-74.927892223,40.552541821],[-74.926767187,40.552588781],[-74.925673061,40.552945622],[-74.924641094,40.553588535],[-74.923952666,40.554398512],[-74.923170484,40.555208422],[-74.922544371,40.556161452],[-74.921980959,40.556923844],[-74.921511453,40.557543258],[-74.921323527,40.557900672],[-74.920885502,40.558329426],[-74.920354007,40.558495915],[-74.919572547,40.558614555],[-74.918447403,40.558661437],[-74.91760358,40.558660839],[-74.916822283,40.558660279],[-74.915915823,40.558754963],[-74.915165583,40.558897434],[-74.91416505,40.559254236],[-74.91316435,40.559730216],[-74.91232007,40.560087117],[-74.911194411,40.56049148],[-74.909693752,40.560847855],[-74.909037158,40.561061861],[-74.90841182,40.561252061],[-74.907630386,40.561322944],[-74.907099326,40.561131833],[-74.90672498,40.560630971],[-74.906069956,40.559700825],[-74.905134123,40.55846058],[-74.904572794,40.557602016],[-74.904167398,40.556981941],[-74.904011933,40.556433576],[-74.903701289,40.555122329],[-74.903265377,40.554001663],[-74.902642354,40.552642478],[-74.902050279,40.551497841],[-74.901489525,40.550305556],[-74.9009911,40.549256331],[-74.900586513,40.548159524],[-74.900431524,40.547301288],[-74.90030778,40.54646691],[-74.90009014,40.545727801],[-74.899716355,40.54494088],[-74.899342615,40.544130119],[-74.899031354,40.543343243],[-74.898689015,40.542437174],[-74.898471452,40.541674228],[-74.898191185,40.541054239],[-74.897910865,40.540481923],[-74.897568592,40.539552001],[-74.897320394,40.538407643],[-74.897321486,40.537692554],[-74.897229087,40.536810535],[-74.897105402,40.535976154],[-74.896919078,40.535237064],[-74.896576609,40.534473993],[-74.896328107,40.533544161],[-74.896142434,40.532399846],[-74.89611287,40.531303353],[-74.896083228,40.530278367],[-74.89605504,40.528299931],[-74.896056881,40.527108119],[-74.895965235,40.5257732],[-74.895966267,40.525105782],[-74.896155347,40.524033327],[-74.89662616,40.522555889],[-74.896909438,40.521149799],[-74.897285749,40.520172849],[-74.89775594,40.519076788],[-74.898007184,40.518171231],[-74.898478274,40.516455431],[-74.899168249,40.514549125],[-74.899700826,40.51345312],[-74.900139153,40.512714574],[-74.900452471,40.512047425],[-74.900828328,40.51130882],[-74.901203792,40.51083241],[-74.901672893,40.510379919],[-74.902329671,40.509736898],[-74.90289235,40.509355988],[-74.903549025,40.508760624],[-74.904361631,40.508308417],[-74.905018016,40.507903723],[-74.905768042,40.507522963],[-74.906549515,40.506975366],[-74.90729985,40.506356224],[-74.908644116,40.505284655],[-74.909644494,40.504475001],[-74.910769814,40.503617767],[-74.911832722,40.502712799],[-74.912676463,40.502236715],[-74.913645119,40.501736879],[-74.914707756,40.500974898],[-74.915676538,40.50035586],[-74.916489099,40.499784378],[-74.917114164,40.499331936],[-74.917583012,40.498950878],[-74.917926972,40.498545913],[-74.918489626,40.498045746],[-74.919677285,40.49709312],[-74.920708742,40.496188048],[-74.92280238,40.494735448],[-74.924239975,40.49354457],[-74.925583584,40.492591985],[-74.926271155,40.491948845],[-74.927021613,40.490924355],[-74.927116179,40.490066305],[-74.927085506,40.489565719],[-74.926742674,40.489017259],[-74.92633726,40.48861179],[-74.925682086,40.488206139],[-74.924964399,40.48787197],[-74.924215398,40.48763312],[-74.923122803,40.487560883],[-74.922467193,40.487560445],[-74.921842715,40.487631538],[-74.920937285,40.487678598],[-74.920281711,40.487654306],[-74.919719822,40.487606251],[-74.919002018,40.487391213],[-74.918315454,40.487176208],[-74.917254312,40.486913248],[-74.916255522,40.486745674],[-74.915131967,40.48648265],[-74.91435184,40.486196037],[-74.913696731,40.485814165],[-74.91316655,40.485408557],[-74.912698832,40.484979145],[-74.912387104,40.484621356],[-74.912137953,40.484168274],[-74.912169613,40.483834587],[-74.912482367,40.483381931],[-74.913201109,40.48281039],[-74.91410724,40.482167493],[-74.91488837,40.481595997],[-74.916575314,40.480596091],[-74.918168613,40.479572263],[-74.919793046,40.478548432],[-74.920761532,40.477857835],[-74.922542063,40.476738731],[-74.924291389,40.4755719],[-74.925603587,40.474476267],[-74.926696966,40.473642694],[-74.927852873,40.47268996],[-74.928914928,40.471904012],[-74.929852094,40.471141809],[-74.93085148,40.470546504],[-74.931944383,40.470046583],[-74.933287168,40.469332268],[-74.934473847,40.468665521],[-74.936004048,40.46776059],[-74.937253306,40.466855486],[-74.938096515,40.466260031],[-74.938502844,40.465592824],[-74.938690983,40.464615626],[-74.938816653,40.463709887],[-74.938817216,40.463090153],[-74.938817605,40.462661092],[-74.938786769,40.462232013],[-74.938599942,40.46177902],[-74.938319443,40.461373651],[-74.938038836,40.461087463],[-74.937539947,40.460634298],[-74.936479631,40.459870947],[-74.935855889,40.459465382],[-74.935325963,40.458845335],[-74.934983528,40.457987028],[-74.935047079,40.456795234],[-74.935172832,40.455818007],[-74.935392223,40.454840822],[-74.935892345,40.45393531],[-74.936423238,40.453482708],[-74.936954111,40.453053945],[-74.937641003,40.452601423],[-74.938296483,40.452363408],[-74.938858359,40.452125335],[-74.939389122,40.451791902],[-74.939795041,40.4514584],[-74.940450722,40.450982011],[-74.940856643,40.450648506],[-74.941137759,40.45033877],[-74.941293934,40.450124326],[-74.941294101,40.449933629],[-74.941076029,40.449552136],[-74.940733108,40.449218248],[-74.940358972,40.448884342],[-74.940078451,40.448550483],[-74.939735594,40.448145085],[-74.939299193,40.447691959],[-74.938831419,40.447429507],[-74.938301191,40.447214695],[-74.937771043,40.446928371],[-74.937490555,40.446570672],[-74.93739732,40.446189227],[-74.937335659,40.445402591],[-74.937274387,40.444186877],[-74.937181781,40.443114185],[-74.937244445,40.44282818],[-74.937557027,40.442184763],[-74.938056961,40.441350746],[-74.938276154,40.440492746],[-74.93846427,40.43946787],[-74.938620828,40.438824358],[-74.938839736,40.438252395],[-74.939152001,40.437918846],[-74.939963535,40.437442539],[-74.940556633,40.437013783],[-74.94099362,40.436751809],[-74.941180925,40.436608881],[-74.941212313,40.436370531],[-74.941025478,40.435989048],[-74.940869824,40.435607579],[-74.940870261,40.435107015],[-74.94080856,40.434344207],[-74.940902621,40.433796008],[-74.941308654,40.433200303],[-74.941589859,40.432676031],[-74.942214412,40.431913574],[-74.942401913,40.431508445],[-74.942433519,40.431007889],[-74.942433906,40.430554992],[-74.942340634,40.43019739],[-74.941966728,40.429720473],[-74.941437084,40.429005102],[-74.939939299,40.429624087],[-74.938878374,40.430028763],[-74.938067066,40.430338205],[-74.936257322,40.430933141],[-74.934634728,40.431480474],[-74.93338654,40.431932659],[-74.932169557,40.432361015],[-74.930983506,40.433027742],[-74.930047031,40.433646941],[-74.929079585,40.434051568],[-74.928299448,40.434289452],[-74.927457126,40.434360433],[-74.926864414,40.434360061],[-74.926240509,40.434359662],[-74.925710208,40.434359323],[-74.925179703,40.434525838],[-74.924617987,40.434716172],[-74.924025067,40.434906475],[-74.923525878,40.43495382],[-74.923026611,40.435096514],[-74.922464874,40.435286828],[-74.921934445,40.43538182],[-74.920592989,40.435428573],[-74.918877238,40.435427383],[-74.916693656,40.435354321],[-74.915227564,40.435281747],[-74.913917389,40.435256938],[-74.91295046,40.435160874],[-74.912451395,40.435112822],[-74.911827683,40.434969323],[-74.911235246,40.434754346],[-74.91083003,40.434515661],[-74.910300026,40.434276887],[-74.909832372,40.434085832],[-74.90936485,40.433799428],[-74.908897544,40.433322322],[-74.908398938,40.432964381],[-74.907962412,40.432821017],[-74.907401001,40.432749054],[-74.907058257,40.432462739],[-74.906996413,40.432081299],[-74.906903415,40.43165217],[-74.906747976,40.431270654],[-74.906218406,40.430745821],[-74.905595358,40.430173226],[-74.905065539,40.429839078],[-74.904722786,40.429576596],[-74.90438001,40.429337949],[-74.903881164,40.429170678],[-74.903319731,40.429146368],[-74.902727016,40.429193545],[-74.901853105,40.429550356],[-74.900916892,40.429835597],[-74.899668802,40.430096727],[-74.89873294,40.430143586],[-74.897765805,40.430238085],[-74.896580349,40.43033237],[-74.895488334,40.430498246],[-74.89439634,40.430640279],[-74.893647669,40.430663424],[-74.8920881,40.430614314],[-74.890247512,40.430731763],[-74.888437978,40.430920721],[-74.887689103,40.431063022],[-74.887252206,40.431181778],[-74.886596825,40.431371828],[-74.886222463,40.431395293],[-74.885910922,40.431156621],[-74.88510088,40.430583738],[-74.884384539,40.429939438],[-74.884135489,40.429653148],[-74.884011739,40.429057103],[-74.884043787,40.428556563],[-74.884044484,40.428151342],[-74.884325653,40.427889417],[-74.885074954,40.427484941],[-74.886323346,40.427057119],[-74.88785259,40.426534198],[-74.888788734,40.426296737],[-74.889194515,40.426106436],[-74.889319685,40.425868183],[-74.889382576,40.425558369],[-74.889289474,40.425272241],[-74.888916068,40.424723636],[-74.888636161,40.424246627],[-74.888512172,40.423769777],[-74.888450737,40.423197638],[-74.888451761,40.422577881],[-74.888171803,40.422124715],[-74.887766705,40.42190979],[-74.886269591,40.421932167],[-74.885427328,40.422026678],[-74.884865634,40.422192977],[-74.884335246,40.422287797],[-74.88402349,40.422215977],[-74.883805564,40.421977393],[-74.883431914,40.421619461],[-74.882871976,40.420784606],[-74.882592272,40.420212241],[-74.882250527,40.419449123],[-74.882002724,40.418471559],[-74.881879398,40.417660978],[-74.881756053,40.416850412],[-74.881632441,40.416206689],[-74.881383822,40.415705861],[-74.881166284,40.415276588],[-74.881104319,40.415038151],[-74.880980476,40.41453745],[-74.880825589,40.413941368],[-74.880701854,40.41336916],[-74.880984003,40.412535162],[-74.880984423,40.412296795],[-74.878553606,40.411412304],[-74.877556646,40.410886838],[-74.876746254,40.410671453],[-74.875094182,40.41031213],[-74.873629393,40.409857641],[-74.872164523,40.409450806],[-74.8713543,40.409163867],[-74.870762012,40.409067857],[-74.87026308,40.409067298],[-74.869764159,40.409066737],[-74.868984563,40.409065856],[-74.868142635,40.409064899],[-74.867269505,40.409063901],[-74.866489969,40.409039169],[-74.865710491,40.408990593],[-74.865055741,40.408942154],[-74.86465044,40.408894007],[-74.864151998,40.408655056],[-74.863747154,40.408392371],[-74.863405104,40.407915235],[-74.86325058,40.40722378],[-74.863282802,40.406723252],[-74.86315916,40.406174858],[-74.862941612,40.405817051],[-74.862443441,40.405458902],[-74.861913847,40.405219905],[-74.861134857,40.404956764],[-74.860511718,40.404717647],[-74.860106764,40.404526467],[-74.859857704,40.404335466],[-74.859671911,40.403715484],[-74.859423996,40.402976241],[-74.859362985,40.402332577],[-74.859396589,40.401164611],[-74.859492503,40.400020564],[-74.859619292,40.399019568],[-74.859745207,40.398447637],[-74.860058023,40.397947443],[-74.860371071,40.397328072],[-74.860684144,40.396708683],[-74.860841137,40.396160621],[-74.860873214,40.395731592],[-74.860686649,40.39549301],[-74.860281432,40.395444846],[-74.859689083,40.395444129],[-74.858629003,40.395466673],[-74.85763156,40.395370098],[-74.857102302,40.395011897],[-74.856635808,40.394463068],[-74.856450235,40.393771573],[-74.856576713,40.392937446],[-74.856952434,40.392175127],[-74.857733465,40.391389474],[-74.858108315,40.391032384],[-74.859232394,40.390175625],[-74.860325175,40.389366499],[-74.861230236,40.388867014],[-74.862291133,40.388391548],[-74.863601101,40.388059384],[-74.865160342,40.387775178],[-74.866532432,40.387538386],[-74.867748811,40.387229908],[-74.868466327,40.386944685],[-74.869121837,40.386492528],[-74.86965284,40.385944877],[-74.8703399,40.385278215],[-74.871214367,40.384421067],[-74.872026087,40.383754532],[-74.872993979,40.382921315],[-74.873930393,40.382231063],[-74.874710715,40.381659827],[-74.875460212,40.38089786],[-74.876116008,40.38023113],[-74.876428706,40.379683214],[-74.876679026,40.379159071],[-74.876804651,40.378634786],[-74.876992203,40.378348943],[-74.877553787,40.378039664],[-74.878115486,40.377682706],[-74.878583472,40.37742099],[-74.878895508,40.377230616],[-74.879176367,40.377040219],[-74.879301628,40.37670663],[-74.879302181,40.376396756],[-74.879302947,40.375967688],[-74.879334982,40.375490985],[-74.87961616,40.375109888],[-74.880146766,40.374681369],[-74.881176493,40.373991164],[-74.882081422,40.373372328],[-74.883204573,40.372706034],[-74.884171577,40.372206427],[-74.885388114,40.37158788],[-74.886573346,40.371040805],[-74.887384535,40.37051718],[-74.888070831,40.370112619],[-74.888352167,40.369612312],[-74.88835268,40.369302436],[-74.888197357,40.368992402],[-74.887823974,40.36863449],[-74.887263246,40.368490919],[-74.886764802,40.368371248],[-74.886453601,40.368108742],[-74.886329511,40.367774901],[-74.886018544,40.367369368],[-74.88580093,40.367059269],[-74.885334154,40.366653579],[-74.884743071,40.366057065],[-74.88405897,40.365174417],[-74.883686122,40.364530441],[-74.883468979,40.363958136],[-74.883407556,40.363433663],[-74.88347099,40.362790133],[-74.883628016,40.362075177],[-74.883597598,40.361646079],[-74.883286492,40.361359722],[-74.882725874,40.361192294],[-74.882258464,40.361191821],[-74.88191476,40.361715889],[-74.881664724,40.362144694],[-74.881196541,40.362573283],[-74.88047925,40.362906262],[-74.879388073,40.363191173],[-74.878515364,40.363285609],[-74.877798677,40.363261013],[-74.877019805,40.363164837],[-74.876084931,40.363163839],[-74.874931733,40.363281791],[-74.873715653,40.363685687],[-74.872561783,40.364137334],[-74.871532155,40.364803623],[-74.870471086,40.365612902],[-74.869503835,40.366231575],[-74.868598619,40.366993329],[-74.868036551,40.367564775],[-74.867693043,40.367921941],[-74.867349872,40.36811224],[-74.866694903,40.368373698],[-74.865946608,40.368539691],[-74.865291747,40.368753465],[-74.864823854,40.368967446],[-74.864199982,40.369252757],[-74.863388965,40.369609362],[-74.862234908,40.370084728],[-74.861049987,40.370393195],[-74.859958596,40.370677921],[-74.858773486,40.371081708],[-74.857713136,40.371414126],[-74.857058098,40.371675528],[-74.856278816,40.37174607],[-74.855468798,40.371602036],[-74.854659407,40.371171962],[-74.854068648,40.370527613],[-74.853446687,40.369907068],[-74.852855485,40.369477256],[-74.852357376,40.369238245],[-74.851672152,40.369046676],[-74.850768957,40.368783306],[-74.849647724,40.368471978],[-74.848402056,40.368065124],[-74.847592537,40.36773034],[-74.846970134,40.367348126],[-74.8464101,40.366942157],[-74.846192592,40.366655825],[-74.845882056,40.366178668],[-74.845727317,40.365701726],[-74.84579084,40.365177401],[-74.845885206,40.364796132],[-74.846197903,40.364319805],[-74.846821967,40.36396308],[-74.847321201,40.363677699],[-74.847820025,40.363583006],[-74.848412575,40.363369258],[-74.848818315,40.363083737],[-74.849130751,40.362726594],[-74.849162586,40.362416757],[-74.848976208,40.362154305],[-74.848509526,40.361819977],[-74.848105194,40.361485726],[-74.847483093,40.36098433],[-74.847047701,40.360602362],[-74.846705943,40.360149007],[-74.846550963,40.35979125],[-74.846551828,40.359409857],[-74.846677658,40.358885613],[-74.846803165,40.358504386],[-74.847021825,40.358266299],[-74.847209692,40.357861328],[-74.847397565,40.357456347],[-74.847554758,40.356836794],[-74.84777405,40.356312663],[-74.848149346,40.355693393],[-74.848649048,40.355169636],[-74.848961754,40.354669466],[-74.849118436,40.354264443],[-74.849088187,40.353859177],[-74.849057682,40.353573093],[-74.848684208,40.353381903],[-74.847967423,40.353452481],[-74.847126014,40.353522882],[-74.846066662,40.353521476],[-74.845350199,40.353449011],[-74.844602805,40.353281149],[-74.84413583,40.353113662],[-74.843637906,40.35285078],[-74.843358042,40.352612033],[-74.842953899,40.35223009],[-74.84258046,40.35203889],[-74.841957363,40.352014199],[-74.841146905,40.352179948],[-74.840024302,40.352583637],[-74.839088839,40.352892216],[-74.837966042,40.353367384],[-74.836780804,40.35389014],[-74.836125109,40.3544613],[-74.835126077,40.355270334],[-74.834626445,40.355722523],[-74.834126962,40.356103203],[-74.833782983,40.356603286],[-74.833563814,40.357032041],[-74.833531674,40.357437223],[-74.833530092,40.358080815],[-74.83352845,40.358748251],[-74.83327793,40.359248459],[-74.832746963,40.35974828],[-74.832153735,40.360224155],[-74.83087431,40.360961236],[-74.828939574,40.362054898],[-74.827472978,40.36283934],[-74.826069047,40.363480831],[-74.825507327,40.36378987],[-74.82497719,40.363932087],[-74.824198149,40.363930906],[-74.823699976,40.363763289],[-74.823296364,40.363190587],[-74.822954889,40.362689486],[-74.822457749,40.362140472],[-74.822147641,40.361567908],[-74.821961307,40.361329254],[-74.821930755,40.361090839],[-74.821993642,40.360876401],[-74.822243438,40.360686094],[-74.822368824,40.360400243],[-74.822338107,40.360233345],[-74.822182993,40.359970888],[-74.821934645,40.359612955],[-74.82168612,40.359326528],[-74.821562293,40.359016452],[-74.821563236,40.3586589],[-74.821533338,40.358182111],[-74.821347644,40.357705089],[-74.821037312,40.357227856],[-74.820695442,40.356893615],[-74.820477645,40.356774093],[-74.819948388,40.356606412],[-74.819543751,40.356438929],[-74.818952307,40.356223471],[-74.818298495,40.356031735],[-74.817925106,40.355840457],[-74.81739611,40.35557742],[-74.817022842,40.355338463],[-74.816836306,40.355195142],[-74.816712628,40.354837385],[-74.816713791,40.354408326],[-74.816808303,40.35402709],[-74.816965442,40.353526761],[-74.8171218,40.353312473],[-74.817527567,40.353050904],[-74.817995627,40.35278944],[-74.818526053,40.35250423],[-74.81896308,40.352195029],[-74.81933798,40.35181422],[-74.819681797,40.351409528],[-74.819838656,40.351004547],[-74.819932746,40.350766324],[-74.819933315,40.35055179],[-74.819809207,40.350360904],[-74.81968497,40.350217683],[-74.819560843,40.350026798],[-74.819623725,40.34981236],[-74.819873497,40.349622058],[-74.820279276,40.349336644],[-74.820560486,40.349027196],[-74.820779281,40.348765324],[-74.821122789,40.348455979],[-74.821435115,40.348170418],[-74.821903188,40.347885103],[-74.822371072,40.347671281],[-74.822932484,40.347433773],[-74.823306909,40.347219811],[-74.823650587,40.346838941],[-74.823963068,40.346481862],[-74.824119693,40.346148382],[-74.82433871,40.345791162],[-74.824526505,40.345457728],[-74.824776212,40.345267405],[-74.825181463,40.345172676],[-74.825586577,40.345125613],[-74.8262099,40.345031199],[-74.826615442,40.344817272],[-74.82692796,40.344436346],[-74.826959718,40.344198025],[-74.826805537,40.34357803],[-74.826651044,40.34307722],[-74.826309912,40.342480787],[-74.826062033,40.341956001],[-74.825596155,40.341407046],[-74.824974527,40.340857851],[-74.824352684,40.340404005],[-74.82373027,40.340164689],[-74.822827248,40.340020284],[-74.821986293,40.339971317],[-74.820990089,40.339731412],[-74.820243032,40.339515717],[-74.819216055,40.33913273],[-74.818282891,40.338630687],[-74.817411755,40.338224087],[-74.816727801,40.337722426],[-74.816292732,40.337340342],[-74.81613788,40.337006375],[-74.81610752,40.336720291],[-74.816170403,40.336505846],[-74.8159528,40.336338642],[-74.815579395,40.336195029],[-74.815237343,40.335979947],[-74.815050841,40.335836622],[-74.814988933,40.335693506],[-74.815020653,40.335479022],[-74.815551236,40.335098473],[-74.816113021,40.334694139],[-74.816612234,40.334385053],[-74.816955259,40.33424257],[-74.817578686,40.334076696],[-74.818015535,40.333791339],[-74.818140823,40.333529333],[-74.81814204,40.333076422],[-74.818018671,40.332623322],[-74.81770912,40.33190773],[-74.817337343,40.331168192],[-74.817027987,40.330381078],[-74.816842455,40.329880206],[-74.816688464,40.329236355],[-74.816598061,40.328115865],[-74.816476002,40.327186027],[-74.814108161,40.327468293],[-74.812238898,40.327655967],[-74.809528103,40.328056773],[-74.808188232,40.328269087],[-74.806661264,40.328552598],[-74.805477731,40.328550613],[-74.804948653,40.328406697],[-74.804264261,40.328119496],[-74.803767111,40.327713424],[-74.803270658,40.327068973],[-74.802898571,40.326496251],[-74.802402959,40.325565761],[-74.801844442,40.32484969],[-74.80134733,40.324443608],[-74.800787444,40.324204277],[-74.800009042,40.324131407],[-74.798949384,40.324391789],[-74.798294214,40.324772045],[-74.797825854,40.325176456],[-74.797263887,40.325628377],[-74.797045169,40.325866364],[-74.79670229,40.325961113],[-74.796359694,40.325960509],[-74.79586124,40.326007307],[-74.795611716,40.326126042],[-74.795393056,40.3263402],[-74.795267619,40.326626023],[-74.794924514,40.326792275],[-74.794457196,40.326839123],[-74.794176959,40.326814782],[-74.793803726,40.326647258],[-74.793555731,40.326265419],[-74.793432239,40.325907644],[-74.7933091,40.325430686],[-74.793404515,40.324787249],[-74.793718639,40.323905842],[-74.793968788,40.323572566],[-74.794280958,40.323334753],[-74.794438132,40.322858285],[-74.794439432,40.322429215],[-74.794346708,40.322190681],[-74.79403557,40.322094777],[-74.792010781,40.322258016],[-74.791920042,40.321375883],[-74.790393628,40.321516146],[-74.790214072,40.319155942],[-74.790154801,40.318178514],[-74.790062932,40.317677766],[-74.79003498,40.316652719],[-74.790130972,40.315818591],[-74.790570037,40.314818233],[-74.791069732,40.314342387],[-74.791912184,40.31379565],[-74.792474227,40.313296085],[-74.793005042,40.312820289],[-74.793161898,40.312439171],[-74.793381393,40.311938983],[-74.793632662,40.311224321],[-74.794039933,40.310414578],[-74.794633415,40.309795866],[-74.795320819,40.309010456],[-74.795852082,40.308367795],[-74.796195367,40.308106188],[-74.796570147,40.307725457],[-74.796789176,40.30736828],[-74.796884438,40.306748679],[-74.796948853,40.306033682],[-74.796856804,40.305580614],[-74.79660843,40.305341799],[-74.795799928,40.305006662],[-74.794556112,40.304480034],[-74.793872234,40.304121264],[-74.793001687,40.303714478],[-74.792068983,40.303283734],[-74.79098053,40.302876541],[-74.789425738,40.302253954],[-74.788399745,40.301799175],[-74.787001639,40.300866953],[-74.786256182,40.300317329],[-74.785416794,40.299934377],[-74.783767814,40.299597586],[-74.781962422,40.299498846],[-74.780966274,40.29947313],[-74.780436627,40.299591311],[-74.780093313,40.299852872],[-74.779780055,40.300448202],[-74.779279295,40.301257718],[-74.778840308,40.302210369],[-74.778089511,40.303305441],[-74.777214237,40.304376423],[-74.775746011,40.3058515],[-74.774122828,40.307087877],[-74.772936967,40.307896017],[-74.771657707,40.308680128],[-74.770160642,40.309416123],[-74.768539894,40.309889631],[-74.76732446,40.310197072],[-74.766825766,40.310339104],[-74.766357476,40.310695706],[-74.765826573,40.311147537],[-74.76501543,40.311598799],[-74.76379952,40.312025397],[-74.761493132,40.312640431],[-74.759218397,40.313088625],[-74.757940191,40.313515036],[-74.755538705,40.314558809],[-74.753853895,40.315461049],[-74.752012186,40.316672813],[-74.750170511,40.317860706],[-74.74811007,40.319238788],[-74.74489514,40.321186391],[-74.743209032,40.322350682],[-74.74158495,40.323562754],[-74.740585524,40.324299467],[-74.7397103,40.325131802],[-74.738304758,40.326177465],[-74.737024301,40.327080372],[-74.735837733,40.327864294],[-74.734151467,40.328980775],[-74.731841962,40.330167296],[-74.730936905,40.3306181],[-74.729564932,40.330996295],[-74.727943378,40.33146923],[-74.726540603,40.331751959],[-74.725512453,40.331821041],[-74.724234923,40.331937186],[-74.722428176,40.331980541],[-74.721089235,40.331881978],[-74.720061963,40.331736462],[-74.719097597,40.331448088],[-74.71832049,40.331064804],[-74.717730994,40.33051512],[-74.717297615,40.329870456],[-74.717020492,40.329106996],[-74.717023379,40.328415722],[-74.716933121,40.327652719],[-74.716935909,40.326985286],[-74.716688358,40.326603283],[-74.716128425,40.326435051],[-74.715038989,40.326289355],[-74.714448546,40.325978012],[-74.713983481,40.325476282],[-74.713549878,40.32490312],[-74.713053689,40.324401311],[-74.712432234,40.324066048],[-74.711809355,40.324064497],[-74.711434719,40.324278098],[-74.710903232,40.324753528],[-74.71015282,40.325442915],[-74.709277619,40.326179668],[-74.708466012,40.326606696],[-74.707499494,40.326842624],[-74.706814298,40.32684089],[-74.706067026,40.32679132],[-74.705413926,40.326575122],[-74.704263436,40.326143123],[-74.703579812,40.325783813],[-74.702772262,40.325281162],[-74.702120014,40.324874253],[-74.701189169,40.324085227],[-74.700475589,40.323463618],[-74.699948265,40.322985514],[-74.699483554,40.322436051],[-74.69920538,40.321958589],[-74.699176146,40.321529434],[-74.699396247,40.321053276],[-74.700335051,40.32003071],[-74.70171117,40.318699392],[-74.702149663,40.318128433],[-74.703181383,40.317201432],[-74.704213285,40.316226756],[-74.704683082,40.31560819],[-74.70480971,40.315131766],[-74.704811787,40.314655033],[-74.704595379,40.314296924],[-74.704285445,40.313962414],[-74.703635682,40.313007264],[-74.703264942,40.312338872],[-74.702862877,40.311718073],[-74.702242299,40.311215898],[-74.701341417,40.310736835],[-74.700470724,40.310472373],[-74.699661361,40.3104226],[-74.698633403,40.310515278],[-74.697543271,40.310583942],[-74.696577576,40.310676764],[-74.695675245,40.310531367],[-74.695084588,40.310315285],[-74.694588976,40.309741879],[-74.693752575,40.30878618],[-74.693069956,40.308259957],[-74.69241847,40.307733811],[-74.691673375,40.30725508],[-74.690585899,40.306751603],[-74.689031729,40.306175338],[-74.688597157,40.305888124],[-74.688038913,40.305409878],[-74.687480784,40.304907791],[-74.686891535,40.304405616],[-74.686643882,40.304095067],[-74.684737647,40.305186207],[-74.679800881,40.29609087],[-74.678350854,40.29332173],[-74.677024216,40.290815129],[-74.676858321,40.290571618],[-74.676715072,40.290361359],[-74.676310857,40.290264878],[-74.675718522,40.290453914],[-74.675405988,40.29071525],[-74.67490645,40.291023734],[-74.67409585,40.291283659],[-74.673379318,40.291400823],[-74.672258693,40.291397655],[-74.670143096,40.291153272],[-74.668246378,40.290718784],[-74.666443501,40.290189176],[-74.665231879,40.289708936],[-74.664425032,40.289206016],[-74.663711458,40.288727195],[-74.66330868,40.288344634],[-74.663091983,40.288105625],[-74.662561749,40.288318616],[-74.662280188,40.288603841],[-74.662154373,40.288865687],[-74.662090809,40.289127712],[-74.661714667,40.28965103],[-74.660683277,40.290482316],[-74.65977723,40.291147097],[-74.659183383,40.291622091],[-74.658715501,40.291811407],[-74.658278628,40.292024654],[-74.657935124,40.292238174],[-74.657186947,40.292450497],[-74.656502464,40.292376958],[-74.655694925,40.292016995],[-74.654422292,40.291298088],[-74.653397975,40.290722916],[-74.652466078,40.290338749],[-74.651626851,40.290097838],[-74.651035778,40.290024547],[-74.650443735,40.290141945],[-74.649851454,40.290307015],[-74.649259272,40.290448248],[-74.648823489,40.290446926],[-74.648171034,40.290206566],[-74.647053656,40.289583403],[-74.645283991,40.288696012],[-74.644042402,40.288024755],[-74.642800461,40.287424993],[-74.64183843,40.286873768],[-74.640906652,40.286489482],[-74.639725502,40.286175932],[-74.638201711,40.285908972],[-74.637019192,40.285857585],[-74.635961799,40.285687402],[-74.635278197,40.285470712],[-74.634408859,40.285062737],[-74.63338338,40.284749613],[-74.632077274,40.284530932],[-74.630303393,40.2844776],[-74.629151765,40.284473914],[-74.627503179,40.284277918],[-74.626415108,40.284036038],[-74.625700819,40.283747684],[-74.624925458,40.28324459],[-74.624615137,40.283076724],[-74.616431398,40.282692327],[-74.613662002,40.282563929],[-74.612544931,40.281964259],[-74.60779893,40.279183151],[-74.603859416,40.276929035],[-74.599672621,40.27443555],[-74.597533207,40.273093241],[-74.593811518,40.270958723],[-74.591919843,40.269855549],[-74.589625585,40.268441036],[-74.583517607,40.264795947],[-74.582618917,40.264196765],[-74.581875515,40.263645838],[-74.5813831,40.262762076],[-74.581168234,40.262284555],[-74.580924307,40.261473198],[-74.580774194,40.260590681],[-74.580688062,40.259422345],[-74.580818541,40.258445483],[-74.581040891,40.257707324],[-74.581292447,40.257279167],[-74.581419091,40.256922067],[-74.581328392,40.256492664],[-74.581113114,40.256086653],[-74.580741977,40.255727745],[-74.580184759,40.255272815],[-74.57959644,40.25481777],[-74.579193915,40.254506425],[-74.578016265,40.253763181],[-74.576063558,40.252588012],[-74.575102575,40.252036228],[-74.574236108,40.251294086],[-74.573463617,40.250456932],[-74.572627853,40.249786411],[-74.572040684,40.24916447],[-74.571359589,40.248637522],[-74.57080204,40.248254063],[-74.570056344,40.248108268],[-74.568968909,40.247889684],[-74.568192574,40.247672252],[-74.567602742,40.247479355],[-74.567137938,40.24719157],[-74.566581802,40.246593551],[-74.566149479,40.246091354],[-74.565686691,40.245493679],[-74.565099011,40.244967054],[-74.564603743,40.244583791],[-74.563984659,40.244104709],[-74.563243161,40.243315288],[-74.562875232,40.24247959],[-74.562756645,40.241573322],[-74.562853802,40.24097775],[-74.563296165,40.239906738],[-74.56379995,40.238955143],[-74.563927439,40.238478879],[-74.563992236,40.238073888],[-74.563962065,40.237930746],[-74.563465321,40.237785853],[-74.562871892,40.238165006],[-74.561934935,40.238757402],[-74.561279285,40.239136318],[-74.560687239,40.239300935],[-74.559753499,40.23939273],[-74.558446652,40.239459271],[-74.5568611,40.239334016],[-74.554715367,40.239254271],[-74.553193145,40.238962357],[-74.551733442,40.238622988],[-74.550087158,40.238282875],[-74.54856575,40.237871717],[-74.54710676,40.237436942],[-74.546020188,40.237122802],[-74.545306107,40.236929304],[-74.544778634,40.236736525],[-74.544096599,40.236400117],[-74.542856178,40.235846969],[-74.541708903,40.235318005],[-74.540686065,40.23478953],[-74.54025273,40.234477919],[-74.539881766,40.234142728],[-74.539634742,40.233879533],[-74.539046709,40.233448115],[-74.53814767,40.233015463],[-74.537279113,40.23267827],[-74.536192045,40.23245938],[-74.535291258,40.232288904],[-74.534079622,40.232093338],[-74.533614093,40.231948426],[-74.53299289,40.231826743],[-74.532589569,40.231682087],[-74.532217509,40.231513729],[-74.531906987,40.231440955],[-74.531159742,40.231557118],[-74.530288121,40.231672769],[-74.529385524,40.231764454],[-74.528732079,40.231809473],[-74.52745662,40.231851949],[-74.526399532,40.231799951],[-74.525186942,40.231747307],[-74.523974365,40.23169465],[-74.522824453,40.23157073],[-74.522140421,40.231544074],[-74.521736108,40.231542403],[-74.521299692,40.23168362],[-74.520831832,40.231872387],[-74.520177717,40.232012697],[-74.519493167,40.232057533],[-74.518777676,40.232078387],[-74.518062704,40.232027751],[-74.517504408,40.231810887],[-74.516574254,40.231401771],[-74.515271282,40.230943412],[-74.514029997,40.230556807],[-74.511980813,40.230071441],[-74.51117393,40.229829656],[-74.51077116,40.229613416],[-74.510462238,40.229326062],[-74.509935265,40.229085459],[-74.50931396,40.228987474],[-74.508723063,40.228984969],[-74.508318086,40.2290786],[-74.508099367,40.2292207],[-74.507942308,40.229434561],[-74.507754851,40.229552959],[-74.507443168,40.229646968],[-74.506446764,40.229809594],[-74.505044675,40.230161172],[-74.504109775,40.230419377],[-74.502646156,40.230675311],[-74.501836321,40.230838691],[-74.500903138,40.230858504],[-74.500219299,40.23080787],[-74.499567598,40.230614358],[-74.499040842,40.230349873],[-74.498576445,40.230061813],[-74.498173903,40.229821697],[-74.497739388,40.229700626],[-74.497024632,40.229626011],[-74.496589943,40.229528771],[-74.495968113,40.22950223],[-74.495501093,40.229571704],[-74.495096628,40.229593768],[-74.494567937,40.22959146],[-74.493945406,40.229660266],[-74.493073385,40.229823304],[-74.4923563,40.230058541],[-74.491545387,40.230364864],[-74.490891217,40.230505017],[-74.490422936,40.230741327],[-74.489922651,40.231096681],[-74.489329609,40.231380114],[-74.488799999,40.231496963],[-74.488209102,40.23149435],[-74.487587817,40.231396257],[-74.487121665,40.231346517],[-74.486562766,40.231224853],[-74.4860657,40.231151137],[-74.485598638,40.231220573],[-74.485099055,40.231480558],[-74.484629833,40.231836035],[-74.484348491,40.232025476],[-74.483942548,40.232238205],[-74.48359899,40.23242737],[-74.483380026,40.232593253],[-74.483037551,40.232639401],[-74.482541215,40.232470321],[-74.482232558,40.232159059],[-74.481923914,40.231847788],[-74.481489597,40.231702823],[-74.481023448,40.231653059],[-74.480246125,40.231625726],[-74.47959339,40.231575128],[-74.479127609,40.23147768],[-74.478445406,40.231212393],[-74.477234894,40.23089705],[-74.47630299,40.230749808],[-74.475526049,40.230674781],[-74.474779457,40.230695221],[-74.474375163,40.230693387],[-74.473846456,40.230690984],[-74.473504732,40.230641769],[-74.473101352,40.23052074],[-74.472605611,40.230280111],[-74.472359025,40.229992939],[-74.472018798,40.229753016],[-74.471522674,40.229560057],[-74.470623567,40.229198381],[-74.470097122,40.228909925],[-74.469757631,40.228574644],[-74.469451841,40.227905797],[-74.46930194,40.227189993],[-74.469183322,40.226450491],[-74.469156302,40.225925938],[-74.469128185,40.225544418],[-74.469006014,40.225257802],[-74.468758739,40.22506597],[-74.468107186,40.224872283],[-74.467207235,40.224629762],[-74.466183273,40.224338996],[-74.465625584,40.224074218],[-74.46491279,40.223761034],[-74.464603889,40.223497408],[-74.464233547,40.22313812],[-74.463987774,40.222755589],[-74.463772931,40.222397028],[-74.463682276,40.222062884],[-74.463684908,40.221729171],[-74.463624585,40.221490529],[-74.463438955,40.221370474],[-74.463066751,40.221249562],[-74.462756363,40.221176611],[-74.46263273,40.221080685],[-74.462571866,40.220913541],[-74.462418075,40.220698288],[-74.462201738,40.220530421],[-74.461424518,40.220502973],[-74.460490913,40.220593978],[-74.45971279,40.220685693],[-74.4588093,40.22089601],[-74.457998553,40.221178264],[-74.457125404,40.221484062],[-74.456688539,40.221672709],[-74.456220212,40.221908881],[-74.455689453,40.222168601],[-74.45494222,40.222284271],[-74.454351576,40.222257661],[-74.453916433,40.222231759],[-74.45345172,40.222015028],[-74.452955911,40.221798149],[-74.452491193,40.221581421],[-74.452088875,40.221341136],[-74.451747972,40.221196502],[-74.451375211,40.22114706],[-74.45097136,40.221097468],[-74.450382656,40.22083246],[-74.45001144,40.220592324],[-74.449671134,40.220376177],[-74.449393401,40.220112643],[-74.449240435,40.219802024],[-74.449243138,40.219468312],[-74.449308801,40.219039565],[-74.449281562,40.218562676],[-74.449161632,40.218013851],[-74.448885259,40.217583459],[-74.448669534,40.217344058],[-74.448454186,40.217056984],[-74.448301436,40.216722533],[-74.448459791,40.216365729],[-74.448494187,40.21596065],[-74.448310522,40.215602215],[-74.44812571,40.215386797],[-74.447785233,40.215194476],[-74.44750656,40.21505012],[-74.447072423,40.214905025],[-74.446607773,40.214688267],[-74.446298218,40.214519923],[-74.445957944,40.214303757],[-74.445495051,40.213872471],[-74.445001669,40.21336952],[-74.444540549,40.212723694],[-74.444232145,40.21241233],[-74.444079989,40.212006365],[-74.444052225,40.21160099],[-74.444180887,40.211077186],[-74.444496464,40.210506604],[-74.444809884,40.210198225],[-74.444997804,40.210032264],[-74.445154421,40.209889986],[-74.445372635,40.209819522],[-74.445529435,40.209653402],[-74.445561493,40.209534378],[-74.445500486,40.209391056],[-74.445439849,40.20920007],[-74.445473092,40.208938014],[-74.445475812,40.208604303],[-74.445477364,40.208413614],[-74.445572758,40.208151857],[-74.445262458,40.20807886],[-74.444765996,40.207957293],[-74.443772116,40.207833335],[-74.443057447,40.207782222],[-74.442591686,40.207708471],[-74.441970883,40.207586295],[-74.441567706,40.207465155],[-74.441163738,40.207439363],[-74.440698188,40.20734177],[-74.440481934,40.207173862],[-74.440515176,40.206911817],[-74.440550375,40.206411399],[-74.440646195,40.206101971],[-74.44077272,40.205840377],[-74.440743366,40.205625696],[-74.440495459,40.205529145],[-74.440185353,40.205432293],[-74.439844761,40.205263791],[-74.439659592,40.205096033],[-74.439444145,40.204832775],[-74.439353229,40.204546286],[-74.439261934,40.20430747],[-74.43917163,40.203949468],[-74.439174575,40.203591922],[-74.439176934,40.203305884],[-74.439054153,40.203114593],[-74.438806246,40.203018039],[-74.43849635,40.20289735],[-74.438218542,40.202657621],[-74.437878146,40.202465271],[-74.437754988,40.202321653],[-74.437319378,40.202367204],[-74.437153543,40.202421635],[-74.436941861,40.202521657],[-74.436730177,40.202621674],[-74.436465947,40.202701225],[-74.436280446,40.20282158],[-74.436147499,40.202962405],[-74.436093782,40.203083403],[-74.435934808,40.203183673],[-74.435749304,40.203304027],[-74.435563307,40.203485014],[-74.435404332,40.203585282],[-74.435219497,40.2036248],[-74.434982294,40.203623643],[-74.43477178,40.203582195],[-74.434508552,40.20354049],[-74.434246501,40.203357326],[-74.434011307,40.20311366],[-74.43385485,40.202910797],[-74.433698565,40.202687722],[-74.43356763,40.202586035],[-74.433331936,40.20240299],[-74.43317481,40.202280963],[-74.432859213,40.202198578],[-74.432516931,40.20215648],[-74.432254047,40.202074352],[-74.432017527,40.201992361],[-74.43183438,40.201829785],[-74.431651417,40.201646995],[-74.4315742,40.201424311],[-74.431497334,40.201161203],[-74.431263,40.200816491],[-74.431080041,40.2006337],[-74.430844358,40.200450658],[-74.430662245,40.200166826],[-74.430532156,40.199964087],[-74.430297673,40.199639577],[-74.430114537,40.199476999],[-74.429905393,40.199273872],[-74.429863814,40.199219954],[-74.429748958,40.199071002],[-74.42969828,40.198828236],[-74.429673625,40.198626018],[-74.429516345,40.198524189],[-74.429252801,40.19852289],[-74.42898892,40.198562008],[-74.428778083,40.198560969],[-74.428593597,40.198560058],[-74.428330734,40.198477921],[-74.42809423,40.198395912],[-74.427910594,40.198293961],[-74.427753657,40.198151714],[-74.427571052,40.197928507],[-74.427229124,40.197845976],[-74.427045331,40.197764228],[-74.426888057,40.197662397],[-74.426440726,40.197460254],[-74.426197213,40.197807335],[-74.425977007,40.198116126],[-74.425724903,40.198520112],[-74.425379152,40.198971308],[-74.425220909,40.199304246],[-74.425125028,40.199613662],[-74.425028755,40.199970742],[-74.424933688,40.20018481],[-74.424651293,40.200493289],[-74.4244012,40.200658908],[-74.423996069,40.200776072],[-74.423684203,40.200893715],[-74.423584273,40.200816079],[-74.423437134,40.200701787],[-74.423221753,40.200438499],[-74.423036849,40.200246881],[-74.422788368,40.200221808],[-74.422227404,40.200385881],[-74.42182243,40.200431624],[-74.421417957,40.200524849],[-74.420920579,40.200522363],[-74.420423417,40.200496041],[-74.419646673,40.200444473],[-74.419149297,40.200441979],[-74.418559889,40.200295992],[-74.417939195,40.200173685],[-74.417319109,40.199979869],[-74.416824197,40.199691329],[-74.416578572,40.199332524],[-74.416146045,40.19902046],[-74.415526791,40.198731286],[-74.414627994,40.198416853],[-74.413884207,40.198150891],[-74.41282985,40.197859318],[-74.412619072,40.197808418],[-74.412023273,40.197664618],[-74.411401969,40.197613859],[-74.411234587,40.19754859],[-74.411026827,40.197467735],[-74.410718885,40.197350774],[-74.40966639,40.197009088],[-74.408890958,40.196814435],[-74.408176226,40.196786941],[-74.407523459,40.196783603],[-74.406931823,40.196899758],[-74.406308472,40.197087268],[-74.404469299,40.197673754],[-74.40210797,40.198429929],[-74.401538972,40.198612141],[-74.398919626,40.199528234],[-74.397735433,40.199855803],[-74.397112672,40.199971749],[-74.396364932,40.200158548],[-74.395741098,40.200393666],[-74.395240335,40.200772452],[-74.394491095,40.201126093],[-74.393806357,40.201217863],[-74.393433114,40.201239741],[-74.393123956,40.201047425],[-74.393002372,40.200736897],[-74.393036004,40.200451025],[-74.392852471,40.200116344],[-74.39266872,40.199805491],[-74.392486255,40.199351622],[-74.392428338,40.198874572],[-74.392404054,40.198111644],[-74.392471119,40.197563732],[-74.392447059,40.196776969],[-74.392420438,40.196276242],[-74.392428947,40.195322796],[-74.392433201,40.194846056],[-74.392499623,40.194369667],[-74.392749994,40.194180277],[-74.393186855,40.193991871],[-74.39393581,40.193662077],[-74.394716261,40.193284751],[-74.395497558,40.192812088],[-74.39624797,40.192315415],[-74.396686708,40.191912467],[-74.397094567,40.191485523],[-74.397469232,40.191296777],[-74.397751921,40.190964514],[-74.397941997,40.190560267],[-74.397946634,40.190035861],[-74.397881896,40.189512789],[-74.397581169,40.188771427],[-74.397539943,40.188695829],[-74.39725668,40.18822407],[-74.397104925,40.188015794],[-74.396541528,40.18739704],[-74.396438528,40.187290861],[-74.395676264,40.186686783],[-74.39505848,40.186254488],[-74.394533315,40.185894183],[-74.39385354,40.185565624],[-74.393634127,40.185462856],[-74.392768611,40.185122135],[-74.391714271,40.184854386],[-74.391154863,40.184851445],[-74.391040248,40.184872783],[-74.390656751,40.184944177],[-74.39015885,40.185013067],[-74.389599228,40.18503395],[-74.388853556,40.185006182],[-74.388076586,40.185002079],[-74.38757954,40.184975616],[-74.387145083,40.184901798],[-74.386772998,40.184804484],[-74.386456404,40.184671554],[-74.386326276,40.184622591],[-74.386091639,40.184538656],[-74.385874089,40.184537503],[-74.385779998,40.184632356],[-74.385747192,40.18482288],[-74.385683325,40.185013238],[-74.385495126,40.185202942],[-74.385244779,40.18539231],[-74.385056365,40.18560585],[-74.384836886,40.185819222],[-74.384537215,40.186075013],[-74.3843666,40.186269635],[-74.384210342,40.186364157],[-74.383899543,40.186362503],[-74.383536262,40.186356555],[-74.383184728,40.186358696],[-74.382966525,40.186429035],[-74.382840478,40.186619069],[-74.382713565,40.186904442],[-74.382555789,40.187165815],[-74.382428669,40.18747502],[-74.382324285,40.187771185],[-74.382039103,40.188037127],[-74.381816097,40.188202972],[-74.381713617,40.188274827],[-74.381580634,40.188353934],[-74.381470969,40.188398198],[-74.381175938,40.188517183],[-74.380584664,40.188756407],[-74.380461563,40.188799428],[-74.380177256,40.188964751],[-74.380053798,40.188868739],[-74.379806245,40.188748226],[-74.37940199,40.188769902],[-74.378995862,40.188860979],[-74.37844587,40.189062108],[-74.378271808,40.189135198],[-74.377997934,40.189358299],[-74.377748413,40.18945231],[-74.377436518,40.18956982],[-74.376766443,40.189843344],[-74.376313687,40.189992862],[-74.37615581,40.190251737],[-74.376091098,40.190539911],[-74.376182155,40.190778775],[-74.37639776,40.190994475],[-74.376581414,40.191305355],[-74.376765934,40.191520885],[-74.376951118,40.191664904],[-74.37704218,40.191903767],[-74.376979822,40.192120608],[-74.376975643,40.19238017],[-74.377096712,40.192738373],[-74.37718625,40.19314409],[-74.377180797,40.19374],[-74.376991244,40.194072707],[-74.37691161,40.19426059],[-74.376770619,40.194405243],[-74.376581497,40.194690274],[-74.376268269,40.194950802],[-74.375955037,40.195211319],[-74.375705053,40.195353],[-74.375578531,40.19559069],[-74.375513749,40.19587639],[-74.375355269,40.19620926],[-74.375166356,40.196470455],[-74.374852237,40.196826317],[-74.374415746,40.19696698],[-74.373764792,40.1971522],[-74.373435404,40.197269734],[-74.373088032,40.197429647],[-74.372979511,40.1976505],[-74.373101216,40.197937218],[-74.373222705,40.198247748],[-74.373219413,40.198605298],[-74.373028737,40.199057176],[-74.372991938,40.199676751],[-74.372861004,40.200391158],[-74.372793999,40.200915225],[-74.372666808,40.201224418],[-74.372447008,40.201461598],[-74.372227195,40.201698771],[-74.37216726,40.201865676],[-74.372152057,40.202127758],[-74.372059852,40.202176647],[-74.371859441,40.202290339],[-74.371655757,40.202383744],[-74.371445196,40.202478001],[-74.371342176,40.202511096],[-74.371051466,40.202572182],[-74.370782021,40.202627542],[-74.370571598,40.202651173],[-74.370384304,40.202642268],[-74.370073,40.202688241],[-74.369853185,40.202925426],[-74.369508137,40.203257272],[-74.369038143,40.203635989],[-74.368932032,40.203716446],[-74.368850448,40.203778116],[-74.368351284,40.203966089],[-74.368051565,40.203950832],[-74.367730432,40.203867338],[-74.367265237,40.203745619],[-74.366954357,40.20374392],[-74.365272321,40.204092275],[-74.363746159,40.204393781],[-74.362541873,40.204606638],[-74.361784301,40.204740538],[-74.360195709,40.205065492],[-74.35938368,40.205153118],[-74.358795193,40.205224614],[-74.358389251,40.205413059],[-74.357919341,40.205791847],[-74.357387257,40.206170294],[-74.356919141,40.206482367],[-74.356386337,40.206808339],[-74.355887791,40.20692476],[-74.355454262,40.206847944],[-74.355289027,40.206797293],[-74.355081298,40.206729566],[-74.354738657,40.206799166],[-74.354363786,40.206987771],[-74.353739749,40.20722267],[-74.353303149,40.207363259],[-74.352835236,40.207527505],[-74.352127605,40.207851145],[-74.351831695,40.207964178],[-74.351202388,40.208267775],[-74.350337911,40.208586198],[-74.349803177,40.208848424],[-74.34971316,40.208892573],[-74.349617605,40.209130406],[-74.349614416,40.209464113],[-74.349572757,40.209844828],[-74.349529247,40.210182198],[-74.349281942,40.210778391],[-74.348882711,40.211200128],[-74.348537975,40.211484237],[-74.347912744,40.211838281],[-74.347444103,40.212074012],[-74.347348765,40.212288012],[-74.347253208,40.212525836],[-74.346720775,40.212928084],[-74.346220564,40.213211297],[-74.345877423,40.213328545],[-74.345937762,40.213519582],[-74.345935241,40.213781781],[-74.345746165,40.214042925],[-74.344963602,40.214586762],[-74.342742735,40.215956734],[-74.341303232,40.216902045],[-74.339801984,40.21779931],[-74.338112042,40.218910013],[-74.336891954,40.21966582],[-74.33670306,40.219903118],[-74.33700983,40.220333942],[-74.337255562,40.220645246],[-74.337498277,40.221266397],[-74.337429165,40.221741778],[-74.337302887,40.222171096],[-74.336855885,40.22261151],[-74.336113358,40.222974745],[-74.335333864,40.223184808],[-74.334522578,40.223466193],[-74.333806591,40.223825086],[-74.333272433,40.224102603],[-74.332804824,40.224219102],[-74.33208633,40.224548673],[-74.331554416,40.224879324],[-74.331271265,40.225211412],[-74.331175164,40.225496904],[-74.330924517,40.225686158],[-74.330581743,40.225755686],[-74.330208818,40.225729695],[-74.329929178,40.225704234],[-74.329400299,40.225725012],[-74.32877718,40.225840586],[-74.328309551,40.225957059],[-74.327777606,40.226287694],[-74.327088757,40.226760432],[-74.326274086,40.227375462],[-74.32558733,40.227633676],[-74.324840735,40.227831091],[-74.324749192,40.227875284],[-74.324059287,40.228053828],[-74.323245996,40.228525833],[-74.322838629,40.228833323],[-74.322523137,40.229284385],[-74.322455951,40.229784573],[-74.32248183,40.230309151],[-74.322663192,40.230834629],[-74.322815127,40.231193074],[-74.323153426,40.231576452],[-74.323583841,40.232079553],[-74.323826708,40.232676897],[-74.323947081,40.23308284],[-74.323911471,40.23353554],[-74.323844539,40.234011891],[-74.323871367,40.23444112],[-74.324023314,40.234799564],[-74.32441894,40.235493757],[-74.324568766,40.235766296],[-74.324848349,40.236282288],[-74.324906776,40.236664026],[-74.324903162,40.236946111],[-74.324797459,40.237261092],[-74.324587461,40.237496459],[-74.324553294,40.237806148],[-74.324457373,40.238067801],[-74.324237049,40.238328727],[-74.323863108,40.238398052],[-74.323344566,40.238334446],[-74.322776198,40.238224835],[-74.322343366,40.23796009],[-74.322117894,40.237784637],[-74.32197299,40.237671866],[-74.321539461,40.237478632],[-74.320734594,40.237116109],[-74.320091521,40.236788153],[-74.318551516,40.236438148],[-74.317471518,40.236358153],[-74.316841519,40.236318155],[-74.315711515,40.236388148],[-74.314821517,40.236298154],[-74.314302041,40.236353885],[-74.313925522,40.236405372],[-74.313581713,40.236544068],[-74.313337397,40.236548285],[-74.313058686,40.236427439],[-74.312595056,40.236138648],[-74.312006058,40.235944453],[-74.311692392,40.236204793],[-74.311719868,40.23656252],[-74.311870791,40.237016323],[-74.311992548,40.237279253],[-74.311740357,40.237611467],[-74.311270919,40.237894728],[-74.310802453,40.238082641],[-74.310333503,40.238318218],[-74.309737231,40.238839081],[-74.309468769,40.239182682],[-74.309106932,40.239645781],[-74.308601038,40.24045323],[-74.308407146,40.241167183],[-74.308433163,40.241667919],[-74.308429767,40.242001621],[-74.308550296,40.242383747],[-74.308512153,40.243074787],[-74.308351778,40.243550577],[-74.308182196,40.243701338],[-74.30787073,40.243918869],[-74.307348655,40.244307363],[-74.306963106,40.244472367],[-74.306317073,40.244801769],[-74.305287192,40.245129311],[-74.304257767,40.245409171],[-74.30257439,40.245756594],[-74.301140583,40.246033999],[-74.299675409,40.246335022],[-74.298756923,40.246544404],[-74.298147514,40.24668332],[-74.297241985,40.247011546],[-74.296833896,40.24736663],[-74.296644056,40.247675354],[-74.296545062,40.24822301],[-74.296352985,40.248746258],[-74.296255716,40.249127062],[-74.296312749,40.249627991],[-74.296403117,40.249914586],[-74.296398922,40.250319791],[-74.296364846,40.250605629],[-74.295986609,40.251080067],[-74.295700704,40.251650426],[-74.295477999,40.25212581],[-74.295070625,40.252409374],[-74.294572375,40.252454024],[-74.294043773,40.252426957],[-74.293360869,40.252279763],[-74.292245177,40.251867714],[-74.291470938,40.251529256],[-74.290449588,40.251022416],[-74.289520836,40.250587647],[-74.288713776,40.250415836],[-74.28715873,40.250430192],[-74.285755813,40.250708922],[-74.284477075,40.25096181],[-74.283677404,40.251312663],[-74.283351905,40.251455427],[-74.282380751,40.25209301],[-74.281877972,40.252566621],[-74.281437153,40.253064474],[-74.281305664,40.253731098],[-74.281517105,40.254328342],[-74.281696974,40.254973058],[-74.282001017,40.255642386],[-74.282088048,40.25623885],[-74.281737269,40.25704714],[-74.281140362,40.25759169],[-74.280387383,40.258182933],[-74.279478318,40.258820874],[-74.27878703,40.259460175],[-74.278066132,40.259956259],[-74.27728605,40.260165926],[-74.276414398,40.260208147],[-74.275356584,40.260201527],[-74.27464227,40.260077867],[-74.274268925,40.260075526],[-74.273644492,40.260471728],[-74.2730785,40.260830846],[-74.271699061,40.261799488],[-74.271446327,40.262155453],[-74.270816125,40.26289044],[-74.270123466,40.263790104],[-74.269270798,40.264811492],[-74.268293413,40.265997169],[-74.267347874,40.26711153],[-74.266936938,40.267704848],[-74.266489998,40.26875085],[-74.266105516,40.269773403],[-74.265979097,40.270165676],[-74.265783527,40.270772519],[-74.265653651,40.271272274],[-74.265650042,40.271605971],[-74.265863471,40.272012553],[-74.265889958,40.272441783],[-74.265886864,40.272727807],[-74.265696027,40.273107991],[-74.265288658,40.273367614],[-74.264759392,40.273388087],[-74.264046512,40.273121352],[-74.263333378,40.272878437],[-74.262618957,40.272754704],[-74.262121335,40.272727697],[-74.261653782,40.272796224],[-74.261501274,40.272884548],[-74.26124666,40.273031994],[-74.261025462,40.273340466],[-74.260087295,40.273595142],[-74.258497628,40.273630052],[-74.256849838,40.273596935],[-74.255676612,40.273228703],[-74.254973291,40.272953662],[-74.254180929,40.272745668],[-74.253415042,40.272808356],[-74.252795044,40.272984696],[-74.25179198,40.27320365],[-74.250937793,40.273265749],[-74.250349211,40.273261938],[-74.25005591,40.273169871],[-74.249942688,40.272763353],[-74.249562851,40.272512914],[-74.249062809,40.272487129],[-74.24879795,40.272485412],[-74.248593697,40.272326284],[-74.24845055,40.271964665],[-74.248136323,40.271105983],[-74.247530818,40.269974882],[-74.247041294,40.269002343],[-74.245881482,40.267439301],[-74.244979036,40.266554236],[-74.244279341,40.265963542],[-74.243665409,40.265598841],[-74.243166687,40.265460318],[-74.242814578,40.265367842],[-74.242668208,40.265299255],[-74.242640534,40.265141275],[-74.242612373,40.265028374],[-74.242880468,40.264737067],[-74.243266265,40.264446526],[-74.243533851,40.264200309],[-74.243480024,40.263749085],[-74.243042417,40.263408072],[-74.242573634,40.263224662],[-74.242162447,40.263154337],[-74.24142632,40.263194599],[-74.240926107,40.26319132],[-74.240015206,40.263072628],[-74.239048741,40.262660499],[-74.238199225,40.26231676],[-74.237024283,40.26212867],[-74.23570096,40.262052311],[-74.234817723,40.26209156],[-74.234022003,40.262199009],[-74.232516278,40.262639897],[-74.232310053,40.262661085],[-74.232193373,40.262570128],[-74.232431574,40.262323732],[-74.232815862,40.262168478],[-74.233083225,40.261944816],[-74.233232899,40.261720378],[-74.233266898,40.261314825],[-74.233271733,40.260886535],[-74.233421901,40.260617014],[-74.233453113,40.260459419],[-74.233337962,40.260233219],[-74.232932913,40.25962187],[-74.232407885,40.259212611],[-74.232052019,40.259114292],[-74.231613491,40.259373591],[-74.231114894,40.259441789],[-74.230897112,40.259440341],[-74.230712339,40.259272254],[-74.230373888,40.258936284],[-74.230007577,40.258314083],[-74.229612049,40.257524829],[-74.22927633,40.256950504],[-74.228752595,40.256494109],[-74.228265954,40.256006461],[-74.227652969,40.255574056],[-74.227450354,40.255279641],[-74.227453431,40.255009136],[-74.227455738,40.254806262],[-74.227103973,40.254691208],[-74.226897761,40.25471237],[-74.22668771,40.255071657],[-74.226509396,40.255228267],[-74.225863416,40.255111233],[-74.225043994,40.25472251],[-74.22475365,40.254382415],[-74.224052701,40.253926853],[-74.223085432,40.253604759],[-74.221970818,40.253304208],[-74.221029363,40.253297874],[-74.220266258,40.253134933],[-74.219299017,40.252812809],[-74.218333343,40.252355425],[-74.217223187,40.25167162],[-74.216001613,40.250446017],[-74.215719992,40.24982056],[-74.215625289,40.249474191],[-74.215590977,40.248782515],[-74.215591976,40.24869609],[-74.215846624,40.248622186],[-74.216158546,40.248473052],[-74.216358287,40.248269131],[-74.216361029,40.248031459],[-74.216322849,40.247674671],[-74.216117849,40.24711149],[-74.216007055,40.246937876],[-74.215750338,40.246716538],[-74.215517107,40.246632048],[-74.21465886,40.24647497],[-74.214108524,40.246514444],[-74.213584402,40.246726968],[-74.213301564,40.246800674],[-74.213153268,40.246821273],[-74.213062518,40.246745027],[-74.213093214,40.24652916],[-74.213096217,40.246269884],[-74.213100222,40.245924185],[-74.212989186,40.245772182],[-74.212456583,40.245498459],[-74.212077817,40.245333819],[-74.211699802,40.245104367],[-74.211040466,40.244818974],[-74.209959584,40.244411858],[-74.20967913,40.24428029],[-74.20952656,40.244063173],[-74.209262236,40.243758861],[-74.208971084,40.243335516],[-74.208973724,40.243108655],[-74.20908991,40.242817745],[-74.209204691,40.242645657],[-74.209113759,40.242392146],[-74.208759777,40.242305014],[-74.208491345,40.242366309],[-74.208264282,40.242412096],[-74.207874135,40.242314738],[-74.207524797,40.242249225],[-74.207195697,40.242215405],[-74.206659934,40.2422433],[-74.206311217,40.242319838],[-74.206092926,40.242376721],[-74.206007537,40.242234378],[-74.205932444,40.242142139],[-74.205792366,40.242024436],[-74.205585735,40.242014679],[-74.205400767,40.242013408],[-74.205259324,40.242012438],[-74.205106798,40.242028066],[-74.204703355,40.24210034],[-74.204299802,40.242180952],[-74.203646489,40.242218154],[-74.202396629,40.242277116],[-74.201745856,40.24222901],[-74.200180023,40.242017897],[-74.199918376,40.242039652],[-74.199454921,40.242224969],[-74.199284698,40.242318053],[-74.198946457,40.242315712],[-74.19847124,40.242194598],[-74.1982114,40.242063188],[-74.198079697,40.241975081],[-74.197997823,40.241920312],[-74.197827729,40.242001616],[-74.197579931,40.242153071],[-74.197301443,40.242340927],[-74.197213689,40.242382177],[-74.196974224,40.242388853],[-74.196670164,40.24233671],[-74.19632149,40.242375985],[-74.195918025,40.242448228],[-74.195362336,40.242511068],[-74.194436409,40.242596359],[-74.193784473,40.242516772],[-74.193294256,40.242563381],[-74.192978626,40.242569518],[-74.192598696,40.24249182],[-74.192338067,40.242448313],[-74.191805125,40.242427917],[-74.191270089,40.242582613],[-74.190952572,40.242747163],[-74.190766025,40.242879278],[-74.190579871,40.242978035],[-74.190459382,40.243043903],[-74.190458288,40.243135617],[-74.19059725,40.243345047],[-74.190692097,40.243604211],[-74.190755399,40.243771424],[-74.190764989,40.24387989],[-74.190742326,40.243954779],[-74.190532713,40.244195129],[-74.19031311,40.244360363],[-74.190159098,40.244501041],[-74.189915053,40.244891247],[-74.189723902,40.245406899],[-74.189632388,40.245781487],[-74.189497842,40.246114094],[-74.189375457,40.24633837],[-74.189210454,40.246487308],[-74.188892615,40.246676872],[-74.18880437,40.246776313],[-74.18876954,40.246959515],[-74.188710848,40.247317663],[-74.188784631,40.247518301],[-74.188891253,40.247702502],[-74.188955001,40.247832191],[-74.188865601,40.248027523],[-74.188691408,40.24803464],[-74.188560635,40.248050398],[-74.188390326,40.248186791],[-74.188297088,40.248248678],[-74.188156132,40.248205994],[-74.187939204,40.248146101],[-74.187798735,40.24806173],[-74.187723173,40.248011172],[-74.187365878,40.24785857],[-74.187159431,40.247832097],[-74.187038444,40.247939656],[-74.186981438,40.248156058],[-74.186704721,40.248546025],[-74.186407925,40.248794095],[-74.186056828,40.24903345],[-74.185827815,40.249207486],[-74.185605071,40.249623065],[-74.185570255,40.249932705],[-74.185550978,40.250242447],[-74.185578662,40.250528687],[-74.185608049,40.250671919],[-74.18543425,40.250897148],[-74.185120903,40.251085635],[-74.184558951,40.251248536],[-74.183671671,40.251301873],[-74.182956769,40.251249153],[-74.182784662,40.251332558],[-74.182439177,40.251604245],[-74.181641776,40.251944253],[-74.181252778,40.25195341],[-74.180973535,40.251891841],[-74.180541906,40.251566992],[-74.180294621,40.251434132],[-74.180139948,40.251361526],[-74.1798112,40.251344578],[-74.179420008,40.251725902],[-74.179290977,40.252106373],[-74.179083156,40.252569727],[-74.179091509,40.253165709],[-74.179146528,40.253762027],[-74.179357655,40.254311779],[-74.179398719,40.254776891],[-74.179377252,40.255265392],[-74.179405488,40.255503969],[-74.17932527,40.255706002],[-74.178809944,40.255869214],[-74.178467158,40.255914456],[-74.177501753,40.255991024],[-74.176878988,40.256034273],[-74.176396059,40.256090428],[-74.175976221,40.256075521],[-74.176005457,40.256230674],[-74.175957208,40.25636143],[-74.175625198,40.256800053],[-74.175055083,40.257630285],[-74.174755626,40.257949953],[-74.174318483,40.258077935],[-74.173834682,40.258205583],[-74.173489561,40.258441487],[-74.173454248,40.258786879],[-74.173450623,40.259084812],[-74.173293173,40.25923863],[-74.172916646,40.259498142],[-74.172712981,40.259615869],[-74.17241815,40.259554169],[-74.171922694,40.259359933],[-74.171472019,40.259320947],[-74.171021055,40.259305801],[-74.170709343,40.259351244],[-74.170533734,40.259719453],[-74.17021942,40.25997941],[-74.169671614,40.260249607],[-74.16892246,40.260446846],[-74.16857951,40.260503975],[-74.168052793,40.260321406],[-74.1676677,40.26000875],[-74.167217204,40.259832123],[-74.167048399,40.259765934],[-74.166537257,40.259583479],[-74.165966087,40.259221803],[-74.165114633,40.258881943],[-74.164883061,40.258737254],[-74.164585044,40.258482749],[-74.164390417,40.258316547],[-74.164127304,40.258207378],[-74.163689216,40.25841041],[-74.163312806,40.258657975],[-74.163109117,40.258775678],[-74.162783192,40.258713735],[-74.162409853,40.258711034],[-74.162129864,40.258709008],[-74.161943195,40.258707655],[-74.161801578,40.258837731],[-74.161798635,40.259076085],[-74.161606828,40.25949184],[-74.161479879,40.259693537],[-74.161120186,40.259845864],[-74.160479465,40.260079595],[-74.159808644,40.26022966],[-74.159618886,40.260478575],[-74.159351039,40.260750763],[-74.159225273,40.26085711],[-74.159038303,40.260879585],[-74.158665551,40.260829199],[-74.157813227,40.26056079],[-74.156181947,40.260382047],[-74.154840562,40.260578439],[-74.153808535,40.260999956],[-74.152996658,40.261232392],[-74.152872207,40.261231481],[-74.152748054,40.26120673],[-74.152407319,40.26108505],[-74.151974431,40.260867354],[-74.151478428,40.260720693],[-74.151016256,40.260439613],[-74.150987682,40.260236793],[-74.151147409,40.259904247],[-74.15121141,40.259761691],[-74.151447877,40.25951314],[-74.151558846,40.259347094],[-74.151561227,40.259156412],[-74.151361248,40.258976169],[-74.150759496,40.258578444],[-74.149137539,40.257660724],[-74.14829963,40.257490084],[-74.147289299,40.257423053],[-74.147212871,40.25731522],[-74.147370514,40.257149523],[-74.147591424,40.256900865],[-74.147924053,40.256426571],[-74.148194017,40.25598758],[-74.148312319,40.255237581],[-74.14831755,40.254820475],[-74.148323677,40.254331858],[-74.148233181,40.254104742],[-74.148064329,40.253924723],[-74.147615951,40.253706887],[-74.146717852,40.253378475],[-74.145213598,40.253009812],[-74.143820797,40.252439346],[-74.142585061,40.251750842],[-74.14161286,40.251135797],[-74.140358603,40.25054534],[-74.140222542,40.250374603],[-74.139928536,40.250253235],[-74.139725586,40.250311319],[-74.138938106,40.251080167],[-74.138529478,40.251410845],[-74.138246336,40.251659022],[-74.137934509,40.251716291],[-74.137157123,40.251686663],[-74.136581645,40.251682371],[-74.136145384,40.251738708],[-74.135597967,40.251972988],[-74.135142208,40.252339059],[-74.134698957,40.252943582],[-74.134643196,40.253658278],[-74.134527479,40.254193756],[-74.134318451,40.254727326],[-74.13429819,40.255096643],[-74.133999163,40.255368533],[-74.133403076,40.255757381],[-74.132464926,40.256131744],[-74.131640378,40.256137476],[-74.129603794,40.25603875],[-74.128111603,40.255944083],[-74.127428896,40.255807836],[-74.127150904,40.255650796],[-74.126932527,40.255696826],[-74.126713691,40.2557786],[-74.126525663,40.255884446],[-74.126384904,40.255942977],[-74.126136342,40.255917259],[-74.125779351,40.255854978],[-74.125391551,40.255768614],[-74.124879481,40.2556694],[-74.124288409,40.255664929],[-74.123636512,40.255552727],[-74.12317156,40.255418095],[-74.122351642,40.255066244],[-74.121407295,40.254713444],[-74.120665471,40.254338339],[-74.120309576,40.254192609],[-74.120045613,40.254154845],[-74.119775586,40.254195789],[-74.118755352,40.254481931],[-74.117832132,40.254680634],[-74.116661456,40.254628164],[-74.115875776,40.254680388],[-74.115380784,40.254397402],[-74.114868346,40.253982023],[-74.114395031,40.253508152],[-74.114053082,40.253255718],[-74.113729759,40.253047504],[-74.113159219,40.252675753],[-74.112685731,40.252216576],[-74.112346826,40.2516766],[-74.112225665,40.251425371],[-74.112027828,40.251090141],[-74.111891897,40.25077922],[-74.111770738,40.250528],[-74.111385495,40.250250915],[-74.111092478,40.250057971],[-74.110750783,40.25001958],[-74.109986329,40.250192495],[-74.109066193,40.250376107],[-74.108507055,40.250312209],[-74.107234512,40.250087865],[-74.106554082,40.249784654],[-74.106229352,40.24963912],[-74.105672104,40.249432206],[-74.105332132,40.249262719],[-74.104929958,40.24909275],[-74.104651112,40.249007158],[-74.10430817,40.249064097],[-74.104184392,40.249120904],[-74.103823028,40.249286791],[-74.103307734,40.249437742],[-74.10272866,40.24970738],[-74.102274463,40.249942227],[-74.101929466,40.250154074],[-74.101305757,40.250268424],[-74.100637118,40.250251314],[-74.100015795,40.250186891],[-74.099301454,40.250097901],[-74.098648378,40.250080898],[-74.098381133,40.25029335],[-74.098148582,40.250692031],[-74.097903612,40.251111991],[-74.097647324,40.251670171],[-74.097139979,40.253561255],[-74.097009691,40.254001223],[-74.096895897,40.254369802],[-74.096751946,40.254666646],[-74.096547055,40.254867657],[-74.096139945,40.255067094],[-74.095237166,40.255107715],[-74.094085678,40.255134456],[-74.092771459,40.255138166],[-74.09217106,40.255226718],[-74.091716002,40.255521107],[-74.091384265,40.255899894],[-74.091062963,40.256660158],[-74.090582286,40.257705201],[-74.090056045,40.25866646],[-74.089687255,40.259485935],[-74.088725393,40.261142184],[-74.088193989,40.261788742],[-74.087268103,40.262615736],[-74.085321495,40.264836261],[-74.08494361,40.265400598],[-74.084779236,40.266283641],[-74.084505955,40.267165831],[-74.084148936,40.267797065],[-74.083529856,40.268476279],[-74.082913702,40.268938615],[-74.081621441,40.269528165],[-74.081359495,40.270666878],[-74.081002654,40.270971061],[-74.079974257,40.271847714],[-74.078533541,40.272527507],[-74.077779939,40.273022085],[-74.077250971,40.273017869],[-74.076474985,40.272868652],[-74.075572294,40.272885285],[-74.074731167,40.272950072],[-74.074100064,40.273588612],[-74.07334707,40.274035486],[-74.07233993,40.274861705],[-74.071236807,40.27587784],[-74.070954134,40.276066278],[-74.070669829,40.27637386],[-74.070353427,40.27675271],[-74.070130702,40.277108471],[-74.069845082,40.277511406],[-74.069560438,40.277842827],[-74.069213552,40.278173753],[-74.068836528,40.278432935],[-74.068399881,40.278500919],[-74.067398837,40.278874246],[-74.066051202,40.279554643],[-74.065205388,40.279953034],[-74.064795911,40.280307284],[-74.064661892,40.280997465],[-74.064656636,40.281378813],[-74.06462126,40.281688402],[-74.064431576,40.281901401],[-74.064117414,40.282113394],[-74.063743967,40.282110371],[-74.063151688,40.282177086],[-74.062598125,40.282354145],[-74.062136491,40.282650752],[-74.061957606,40.282983019],[-74.061847073,40.283098922],[-74.061541385,40.283146501],[-74.061082522,40.283242886],[-74.060686936,40.283489965],[-74.06046539,40.283755142],[-74.060220676,40.284120236],[-74.059936542,40.284184671],[-74.05924034,40.28411227],[-74.058847981,40.284125763],[-74.058607652,40.284173864],[-74.058452148,40.284389516],[-74.058425031,40.284773077],[-74.058401166,40.284923048],[-74.058290854,40.28502226],[-74.058138358,40.285021017],[-74.057550155,40.285016227],[-74.056807365,40.285160349],[-74.055995502,40.285570869],[-74.055576001,40.28596791],[-74.054865629,40.286913188],[-74.053937808,40.287823327],[-74.053387339,40.288235964],[-74.052839877,40.288431715],[-74.051838176,40.288390135],[-74.050342848,40.287810558],[-74.04818039,40.286443561],[-74.046797752,40.285206884],[-74.046308573,40.284437026],[-74.045986771,40.283617496],[-74.046099311,40.282724971],[-74.046406798,40.282191436],[-74.046512154,40.281809391],[-74.046517176,40.281452053],[-74.04632295,40.281042011],[-74.045524906,40.280907795],[-74.043929168,40.280613822],[-74.042468904,40.280167775],[-74.041014082,40.279338856],[-74.040155179,40.278795664],[-74.039425614,40.278534338],[-74.038692462,40.278528249],[-74.037822732,40.27875077],[-74.037252212,40.279026815],[-74.036679148,40.279481537],[-74.036400588,40.280321622],[-74.036391165,40.280985249],[-74.036649802,40.281549001],[-74.037473212,40.282245095],[-74.037932553,40.282759456],[-74.038591881,40.283275485],[-74.038921182,40.283559021],[-74.038746939,40.284093648],[-74.038306805,40.284575002],[-74.037433386,40.28505276],[-74.035204869,40.285914956],[-74.034699302,40.286227763],[-74.034283233,40.286374465],[-74.033825261,40.286404016],[-74.033433826,40.286350681],[-74.032767036,40.28574442],[-74.032053836,40.285337997],[-74.030730892,40.284909791],[-74.029533418,40.284849694],[-74.02742338,40.284615061],[-74.026031303,40.284453175],[-74.023281872,40.284326401],[-74.021828481,40.28430092],[-74.020602985,40.284674324],[-74.019771532,40.284917566],[-74.019072485,40.28504514],[-74.017742626,40.285100592],[-74.017177198,40.285029056],[-74.016497006,40.285356982],[-74.015394439,40.286265316],[-74.014470719,40.286858139],[-74.014054374,40.28702145],[-74.013312932,40.287065187],[-74.012121435,40.287127714],[-74.010659291,40.28765716],[-74.00855889,40.288769703],[-74.007239251,40.289933251],[-74.00597713,40.29111944],[-74.005221327,40.291334617],[-74.004266813,40.291282073],[-74.003835573,40.291078859],[-74.003111971,40.291072626],[-74.002330146,40.291088049],[-74.0017467,40.291393355],[-74.00037423,40.292201687],[-73.998941878,40.293142491],[-73.99684142,40.294588172],[-73.995350773,40.29519508],[-73.992926212,40.296659192],[-73.990404802,40.298787428],[-73.989079701,40.300283219],[-73.988599346,40.301431711],[-73.988617164,40.303660456],[-73.988531423,40.304498185],[-73.988431096,40.305028531],[-73.987810066,40.30581834],[-73.987194494,40.306322785],[-73.985943649,40.306710833],[-73.983937075,40.30729174],[-73.982310833,40.307609954],[-73.981260929,40.308110553],[-73.980881416,40.308748176],[-73.98057142,40.31081818],[-73.979581412,40.317628185],[-73.978051415,40.320758181],[-73.975181415,40.328098187],[-73.974951416,40.330108183],[-73.974801413,40.331728179],[-73.974325087,40.335926511],[-73.974171411,40.337608176],[-73.974233695,40.340048755],[-73.974251416,40.342098181],[-73.974081415,40.343968186],[-73.97408141,40.345468189],[-73.973861418,40.348648183],[-73.973771421,40.353328184],[-73.973681422,40.359418191],[-73.974031412,40.360698185],[-73.974121416,40.364668185],[-73.974161415,40.367058193],[-73.974161415,40.371158195],[-73.974301413,40.373828192],[-73.974651414,40.378778195],[-73.97483142,40.382748195],[-73.975141415,40.384868191],[-73.975361416,40.387788196],[-73.975621421,40.390838197],[-73.976111417,40.394148194],[-73.976331425,40.395518193],[-73.97646142,40.397058197],[-73.976681423,40.399008205],[-73.977261423,40.400068196],[-73.977561423,40.400858206],[-73.978011426,40.402538193],[-73.978311421,40.4035182],[-73.97849142,40.404268196],[-73.978451418,40.405328196],[-73.978860598,40.406686982],[-73.978981417,40.407088195],[-73.979371416,40.409388197],[-73.980171421,40.412568202],[-73.980611419,40.413938196],[-73.982111426,40.416938199],[-73.983391429,40.418928197],[-73.983971425,40.421088198],[-73.984941422,40.4236382],[-73.985951424,40.426728202],[-73.986881426,40.4295982],[-73.988547006,40.434815934],[-73.989544075,40.437229857],[-73.989750783,40.437730283],[-73.99019143,40.439368207],[-73.99024143,40.4407682],[-73.989351424,40.445148199],[-73.988781425,40.447528203],[-73.990411426,40.450538206],[-73.991831425,40.452828208],[-73.993151429,40.455448208],[-73.994821425,40.459038208],[-73.995284556,40.459650276],[-73.995735604,40.459817215],[-73.997371431,40.459968205],[-74.000951428,40.462378207],[-74.002461435,40.464818204],[-74.004541422,40.467108203],[-74.005841437,40.46830821],[-74.007086909,40.47010625],[-74.008694484,40.471317039],[-74.011055715,40.472600766],[-74.012432866,40.473499899],[-74.015013208,40.475569434],[-74.01563478,40.476490725],[-74.016311977,40.478436243],[-73.940564064,40.542953213],[-73.928642595,40.527377044],[-73.9249716,40.52257898],[-73.907384144,40.499579581],[-73.910512423,40.497300752],[-73.913160238,40.494592219],[-73.916470711,40.491144337],[-73.91978084,40.487696363],[-73.92344383,40.482512093],[-73.925451657,40.479051809],[-73.926145968,40.476324786],[-73.925653594,40.471624032],[-73.924928262,40.470493322],[-73.924294814,40.469473501],[-73.923212373,40.467636041],[-73.921662965,40.46458396],[-73.920378509,40.461461049],[-73.920318912,40.461296515],[-73.920109283,40.460713946],[-73.919154857,40.457698106],[-73.918612466,40.455464681],[-73.91848301,40.454854612],[-73.918286104,40.453863852],[-73.91809755,40.45275776],[-73.918047398,40.452435503],[-73.917998105,40.452302381],[-73.917926405,40.452107251],[-73.916912609,40.448926871],[-73.916173504,40.445702679],[-73.915712214,40.442448484],[-73.915530672,40.439178228],[-73.915629633,40.4359059],[-73.916008603,40.432645526],[-73.916099822,40.432098938],[-73.916134734,40.431646118],[-73.916275105,40.430387642],[-73.916274268,40.430385626],[-73.915260866,40.427205252],[-73.914522075,40.423981074],[-73.914061,40.420726888],[-73.913879595,40.417456643],[-73.913878222,40.417331463],[-73.913754257,40.416777105],[-73.913544081,40.415804341],[-73.913315518,40.414664859],[-73.913087292,40.413296465],[-73.912486608,40.411304371],[-73.912474852,40.411261288],[-73.911946567,40.409321],[-73.911219866,40.406139905],[-73.910759064,40.402885722],[-73.910636506,40.401306247],[-73.910617685,40.400975173],[-73.910610851,40.400931947],[-73.910360767,40.399051583],[-73.909977643,40.395505829],[-73.909733981,40.393380087],[-73.909722917,40.393282448],[-73.90945515,40.390892304],[-73.909400728,40.390374956],[-73.90931468,40.389363014],[-73.909146874,40.387022917],[-73.909121909,40.386649197],[-73.908877771,40.382704394],[-73.90876276,40.382292287],[-73.908024744,40.379068104],[-73.907564269,40.37581393],[-73.907383294,40.372543714],[-73.907380324,40.372030226],[-73.907381944,40.370310226],[-73.907383207,40.3700325],[-73.90732514,40.369676343],[-73.907006723,40.367238129],[-73.906828631,40.364157557],[-73.906796329,40.362992532],[-73.906798326,40.361898666],[-73.906807012,40.36135975],[-73.906841232,40.360245359],[-73.906840972,40.36022448],[-73.906842966,40.359130653],[-73.906851253,40.358616239],[-73.906948511,40.356437812],[-73.907002744,40.355775665],[-73.907029975,40.35518712],[-73.907002958,40.354150053],[-73.907102198,40.350877806],[-73.907144677,40.350347888],[-73.907152563,40.349858046],[-73.907249803,40.347679526],[-73.907436863,40.345775727],[-73.907410526,40.344755759],[-73.907412503,40.343662133],[-73.907414873,40.343515163],[-73.907512094,40.341336549],[-73.907586794,40.340455216],[-73.907526696,40.340137499],[-73.907066501,40.336883355],[-73.906885653,40.33361316],[-73.906887631,40.332519673],[-73.90689186,40.332257568],[-73.907367891,40.326818568],[-73.908024633,40.323584231],[-73.908956473,40.320389675],[-73.909849978,40.317987576],[-73.910158355,40.315562464],[-73.910814866,40.312328125],[-73.911175282,40.310972176],[-73.911655715,40.304965806],[-73.911936178,40.303409484],[-73.912416468,40.297426961],[-73.912821563,40.2952747],[-73.912890642,40.294956845],[-73.913141772,40.293874773],[-73.914044243,40.290765852],[-73.914875469,40.287926847],[-73.914970864,40.287531711],[-73.915036725,40.287268796],[-73.915628291,40.284426363],[-73.915876973,40.283470109],[-73.916265205,40.28155748],[-73.916505515,40.279786044],[-73.917161391,40.276551692],[-73.917739666,40.274455729],[-73.917742255,40.27443943],[-73.918035786,40.272817113],[-73.91824405,40.271790046],[-73.91829675,40.271534517],[-73.91857363,40.270214101],[-73.918883157,40.268857607],[-73.919425132,40.266880803],[-73.919632248,40.26599808],[-73.920002375,40.264606522],[-73.920369175,40.263321051],[-73.920377752,40.263288641],[-73.920415155,40.263081887],[-73.920932274,40.260661821],[-73.921546047,40.258449323],[-73.922473138,40.255267873],[-73.922560607,40.25501069],[-73.923214547,40.252873757],[-73.92348867,40.252085575],[-73.924123186,40.24898042],[-73.924228106,40.248564641],[-73.924568718,40.247244789],[-73.925393875,40.244465939],[-73.9255066,40.244135432],[-73.925510952,40.244117757],[-73.926440924,40.240923114],[-73.927371908,40.23842517],[-73.927353971,40.237643948],[-73.927452082,40.234371769],[-73.927829418,40.23111151],[-73.92848432,40.227877128],[-73.929413933,40.224682483],[-73.930614269,40.221541223],[-73.932080131,40.218466815],[-73.932242468,40.218160975],[-73.932253097,40.218093684],[-73.932907671,40.214859291],[-73.933836917,40.211664613],[-73.934017131,40.211140111],[-73.934351602,40.210187666],[-73.935371261,40.207570871],[-73.936685773,40.204786002],[-73.936722868,40.204685716],[-73.936860458,40.204268789],[-73.938060091,40.201127473],[-73.938652962,40.199806988],[-73.939080051,40.198616165],[-73.939291135,40.197969966],[-73.94049056,40.194828628],[-73.94195542,40.19175411],[-73.942141578,40.191403648],[-73.942731952,40.189376169],[-73.94275357,40.189214994],[-73.94271779,40.187982923],[-73.942815113,40.184710767],[-73.943191449,40.181450491],[-73.943845179,40.178216063],[-73.94406486,40.177363938],[-73.94429565,40.176507903],[-73.945004201,40.174165277],[-73.946202961,40.171023897],[-73.947667072,40.167949324],[-73.948060461,40.167217022],[-73.948428775,40.166466159],[-73.948655981,40.165768407],[-73.949854429,40.16262699],[-73.95063404,40.160912317],[-73.951079586,40.1594997],[-73.952277816,40.156358268],[-73.952738018,40.155321962],[-73.953497166,40.153422507],[-73.953792148,40.152749737],[-73.954729929,40.150253552],[-73.954855259,40.149903771],[-73.955545622,40.147626106],[-73.955707082,40.147154255],[-73.95629982,40.145230097],[-73.956941764,40.14345255],[-73.957080606,40.143013065],[-73.957990324,40.139889039],[-73.95821167,40.139246684],[-73.958280371,40.138930222],[-73.958350427,40.138613814],[-73.958558142,40.137724347],[-73.959358716,40.134913015],[-73.960219639,40.131983105],[-73.960896221,40.130115775],[-73.961002548,40.129778765],[-73.961839725,40.12694171],[-73.963036923,40.123800184],[-73.963046016,40.123778947],[-73.964100127,40.121056456],[-73.964183716,40.12086242],[-73.965101681,40.11842284],[-73.965368075,40.117598989],[-73.965572953,40.117002868],[-73.966125428,40.11436798],[-73.966257561,40.11384511],[-73.966326782,40.113578746],[-73.966632532,40.112468244],[-73.966829055,40.111580159],[-73.966945547,40.110790926],[-73.96702786,40.11029138],[-73.966716616,40.108777394],[-73.966255204,40.105523631],[-73.966072177,40.102253677],[-73.966168284,40.098981552],[-73.966543081,40.09572125],[-73.966787265,40.094338143],[-73.967432423,40.091145606],[-73.968358448,40.087950725],[-73.969554678,40.084809159],[-73.971015957,40.081734341],[-73.971869267,40.080182279],[-73.971936182,40.080066063],[-73.972802925,40.078623217],[-73.972883284,40.078504924],[-73.972957265,40.078293523],[-73.973410654,40.077029373],[-73.973674021,40.07631576],[-73.973850524,40.075776128],[-73.974161933,40.074880463],[-73.974206166,40.074757826],[-73.97455554,40.073663186],[-73.974646838,40.07339358],[-73.975424011,40.070784122],[-73.975675842,40.070054684],[-73.97574565,40.069757115],[-73.975949273,40.068696972],[-73.976133591,40.067688222],[-73.976162069,40.067450936],[-73.976360497,40.066022513],[-73.976467593,40.065379038],[-73.976473199,40.065346989],[-73.976625292,40.064289468],[-73.977081441,40.061888823],[-73.977231238,40.061215207],[-73.977521234,40.059892083],[-73.977724572,40.059012333],[-73.97776816,40.058833094],[-73.978012226,40.057706098],[-73.978111593,40.057259713],[-73.978343895,40.056243888],[-73.978486374,40.055642478],[-73.97914903,40.053259867],[-73.97937708,40.05252767],[-73.979377718,40.052525636],[-73.979479961,40.052116072],[-73.979591589,40.051635336],[-73.979703953,40.051164532],[-73.979714505,40.051121576],[-73.979968736,40.050089249],[-73.980000803,40.049959959],[-73.980276634,40.048541066],[-73.980512665,40.046786188],[-73.981163405,40.043551628],[-73.982061941,40.040435353],[-73.982096467,40.040331417],[-73.982573953,40.03860175],[-73.982657563,40.03832323],[-73.983236448,40.035526922],[-73.983612733,40.034147373],[-73.984189515,40.031221858],[-73.984495612,40.029870494],[-73.985282155,40.027095419],[-73.98543888,40.026435092],[-73.985505635,40.026158225],[-73.986429973,40.022963241],[-73.986434554,40.022949563],[-73.98713749,40.020616623],[-73.987285127,40.020183072],[-73.98741544,40.019702644],[-73.987460064,40.019542101],[-73.987467508,40.019510648],[-73.987527263,40.019261672],[-73.987599282,40.018965822],[-73.987649812,40.018722661],[-73.987957972,40.017360803],[-73.987963277,40.017339151],[-73.988342794,40.015408714],[-73.989181401,40.013332118],[-73.992681401,40.000125116],[-73.995893403,39.989267113],[-73.999578403,39.97680611],[-74.007599403,39.936675102],[-74.019900403,39.87512709],[-74.022337402,39.855769086],[-74.024786402,39.829594081],[-74.027661402,39.806512076],[-74.030483401,39.786690072],[-74.033080401,39.770027069],[-74.034616401,39.762435067],[-74.038159402,39.750128064],[-74.043864402,39.736361061],[-74.049490404,39.723793058],[-74.052720799,39.71953536],[-74.053073642,39.719196051],[-74.055939037,39.716782498],[-74.056681878,39.716205916],[-74.056841736,39.715937004],[-74.05730881,39.715168573],[-74.057680329,39.714580474],[-74.057705902,39.714531217],[-74.059413271,39.711535165],[-74.061086053,39.709026412],[-74.061141652,39.708910928],[-74.061744124,39.707707339],[-74.061863816,39.707481615],[-74.062196407,39.707043054],[-74.070689409,39.691261051],[-74.083317411,39.669570047],[-74.096532415,39.649957042],[-74.111321418,39.631573038],[-74.11640542,39.625127036],[-74.124581421,39.615147034],[-74.153432428,39.574819025],[-74.183190436,39.533002016],[-74.196078336,39.517868907],[-74.196784352,39.51727066],[-74.198779186,39.515754569],[-74.199566448,39.514634594],[-74.200204882,39.513773443],[-74.201478547,39.511525662],[-74.211181443,39.500125008],[-74.212743442,39.500125007],[-74.224846005,39.48451742],[-74.224940534,39.484430011],[-74.227790495,39.482012301],[-74.230838454,39.479743962],[-74.231301011,39.47942466],[-74.233009707,39.478132546],[-74.233722961,39.477612749],[-74.234777066,39.476861436],[-74.238009714,39.474752059],[-74.24027466,39.473430912],[-74.241030783,39.473009663],[-74.242169581,39.472389511],[-74.245729852,39.470624579],[-74.24583915,39.470574919],[-74.246040931,39.469543863],[-74.246243284,39.468735028],[-74.247289018,39.464731873],[-74.247991816,39.462343783],[-74.248519998,39.460831896],[-74.249222051,39.458940259],[-74.249866988,39.457307888],[-74.251265669,39.454302511],[-74.252043758,39.452784365],[-74.252081138,39.452711595],[-74.252095294,39.452684121],[-74.252750412,39.451413863],[-74.254428967,39.44844246],[-74.255791982,39.44635504],[-74.257054266,39.444529109],[-74.257633434,39.443709768],[-74.259816695,39.44090755],[-74.26029337,39.440346933],[-74.26040749,39.440214656],[-74.260692729,39.439650477],[-74.262384816,39.436651489],[-74.263574411,39.435097385],[-74.264412317,39.434004124],[-74.265248743,39.433048164],[-74.266145128,39.432001024],[-74.266740626,39.43150127],[-74.267041487,39.430953883],[-74.26842817,39.428170414],[-74.269217404,39.42606979],[-74.269641523,39.42501966],[-74.270430685,39.422919017],[-74.271404938,39.420041375],[-74.272137835,39.417665733],[-74.272689852,39.415655134],[-74.272877811,39.414603513],[-74.273169044,39.414221576],[-74.274966989,39.412187221],[-74.275147118,39.412008565],[-74.277355351,39.409596294],[-74.27944543,39.40718324],[-74.281415026,39.40499828],[-74.283737069,39.40295277],[-74.285527547,39.400949731],[-74.286897981,39.399630688],[-74.288329671,39.398083144],[-74.291905392,39.39453459],[-74.294287616,39.392306141],[-74.29679502,39.389346008],[-74.299535392,39.386661865],[-74.301202923,39.385069802],[-74.302627177,39.384208641],[-74.303402134,39.383389344],[-74.309993705,39.378896979],[-74.313024458,39.376580435],[-74.315580979,39.374489884]]]} \ No newline at end of file diff --git a/src/mmw/mmw/settings/data/drwi_simple_perimeter.json b/src/mmw/mmw/settings/data/drwi_simple_perimeter.json new file mode 100644 index 000000000..6d2e0e7d9 --- /dev/null +++ b/src/mmw/mmw/settings/data/drwi_simple_perimeter.json @@ -0,0 +1 @@ +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.73207141866402, 39.181705928577301 ], [ -75.796410926705121, 39.414925228803668 ], [ -75.796664330792936, 39.415464704460085 ], [ -75.796610963240781, 39.415650325750889 ], [ -75.796968128299767, 39.416944985714231 ], [ -75.780975332034529, 39.520634606187905 ], [ -75.853348019981382, 39.638458442492869 ], [ -75.857550783691096, 39.663127447563753 ], [ -75.925860865685152, 39.773859720632004 ], [ -75.926558566160665, 39.777869142640462 ], [ -75.92851105835166, 39.779712657573526 ], [ -76.028765047026454, 40.086156361971618 ], [ -76.02896352874582, 40.086317495679452 ], [ -76.028850759307531, 40.086418356424645 ], [ -76.029349710447406, 40.087943487121578 ], [ -76.010752911748881, 40.133601666422237 ], [ -76.04517143609722, 40.209532582461087 ], [ -76.140667462736218, 40.264699573920659 ], [ -76.149673032222282, 40.265048873805199 ], [ -76.358166753638542, 40.269139057426401 ], [ -76.361668385431614, 40.273271557835727 ], [ -76.366316858101797, 40.273451858589553 ], [ -76.403550326568393, 40.322699124501526 ], [ -76.437856711615282, 40.363186291235976 ], [ -76.43697071767356, 40.36690298074754 ], [ -76.438859150635906, 40.369400737848437 ], [ -76.435650016693913, 40.372443239261607 ], [ -76.429086769904373, 40.39997565156817 ], [ -76.390366225938678, 40.415375693891619 ], [ -76.385860235768035, 40.419647712981416 ], [ -76.246035241625663, 40.500019562473028 ], [ -76.275048521086134, 40.567765084414631 ], [ -76.28569662163595, 40.592554661946956 ], [ -76.286714514439666, 40.593119398898118 ], [ -76.412051116764104, 40.656253390232315 ], [ -76.411994621715607, 40.662626036106069 ], [ -76.422142045721287, 40.668255926870806 ], [ -76.411467579106571, 40.722076483485679 ], [ -76.411356302401316, 40.734628504511242 ], [ -76.408623123398201, 40.736418201439029 ], [ -76.40837397204794, 40.73767442011826 ], [ -76.401847704688535, 40.740854773663294 ], [ -76.318014955753455, 40.795748804769929 ], [ -76.25128906956013, 40.814224383364568 ], [ -76.05510904895857, 40.909826017441873 ], [ -76.05209332437127, 40.912421016821035 ], [ -75.964030979399041, 41.045058419499377 ], [ -75.956481321083288, 41.057687437193941 ], [ -75.955274456702682, 41.058247285038959 ], [ -75.952178495248958, 41.062910348305593 ], [ -75.833817536606745, 41.114764543287173 ], [ -75.8619248559543, 41.220635516631312 ], [ -75.844587490187635, 41.231405109597212 ], [ -75.844975473575985, 41.235585393804577 ], [ -75.770015519200825, 41.277727589321167 ], [ -75.720832489228115, 41.308279013382034 ], [ -75.716926774056645, 41.307573875865032 ], [ -75.695763193461275, 41.319471958764296 ], [ -75.618809963622326, 41.290103446052022 ], [ -75.525560446552063, 41.322580542588 ], [ -75.51756606457505, 41.325385639076586 ], [ -75.571553360058985, 41.418399564486791 ], [ -75.569391304711033, 41.421792580220547 ], [ -75.571817487419494, 41.426304745662115 ], [ -75.501006493412476, 41.558390553036489 ], [ -75.481560976833094, 41.614345227596559 ], [ -75.492192541734198, 41.676220716277768 ], [ -75.506321637626087, 41.697635667556987 ], [ -75.50156569897679, 41.730772298313475 ], [ -75.508338640457097, 41.770190678185244 ], [ -75.491972406179116, 41.797612815951801 ], [ -75.487811233289563, 41.826605462771496 ], [ -75.443479742004172, 41.87886379251043 ], [ -75.443294047857407, 41.87917492886524 ], [ -75.443676257757971, 41.879556469412314 ], [ -75.578571572604687, 41.994217089078475 ], [ -75.599299236241833, 42.034906909737188 ], [ -75.613817412797445, 42.049399661017247 ], [ -75.610366504957241, 42.056632714781834 ], [ -75.615495985061884, 42.066702234877503 ], [ -75.595039354067893, 42.128370892370263 ], [ -75.557048116228643, 42.168387299422328 ], [ -75.541399210704157, 42.201187182889711 ], [ -75.489005100424237, 42.240057431072159 ], [ -75.479596545390621, 42.249967520593053 ], [ -75.475243162917948, 42.250267165019011 ], [ -75.473600198823391, 42.251486050534375 ], [ -75.332602865325256, 42.279237089232033 ], [ -75.300176484105606, 42.300061862084561 ], [ -75.114473402791816, 42.322921365005868 ], [ -75.113117516124717, 42.32345377821833 ], [ -74.936404266632863, 42.433435532514288 ], [ -74.93606527011012, 42.433871494303652 ], [ -74.935614947858099, 42.433926784097281 ], [ -74.90957225811654, 42.450135080377258 ], [ -74.599980542552473, 42.499604312387795 ], [ -74.590979813112497, 42.503993070091383 ], [ -74.589517322010835, 42.501276215925678 ], [ -74.585165123232798, 42.501971647748569 ], [ -74.520017231933551, 42.410654106320607 ], [ -74.476974864339709, 42.391876020528578 ], [ -74.451237617611184, 42.314245993102752 ], [ -74.375170689343477, 42.207623280765404 ], [ -74.376116340940598, 42.205892525073089 ], [ -74.373926939788944, 42.202979622750227 ], [ -74.382788809661477, 42.19368040249477 ], [ -74.450439496344742, 42.069864388835789 ], [ -74.450415473208494, 42.069492763021309 ], [ -74.333894777067925, 42.036392413779943 ], [ -74.334027879016915, 42.033557655361847 ], [ -74.314232052960378, 41.979007001357012 ], [ -74.337161158631844, 41.966826169969558 ], [ -74.338513341956471, 41.938027845892215 ], [ -74.536619875403545, 41.860865953615445 ], [ -74.537640596943334, 41.860323706693656 ], [ -74.518222488494345, 41.704060469717241 ], [ -74.399458466880318, 41.656796561863189 ], [ -74.381401668279679, 41.595474103214237 ], [ -74.388094452708955, 41.586349829690285 ], [ -74.387486253187518, 41.582431778555282 ], [ -74.403127436272385, 41.565855362049312 ], [ -74.674521280673346, 41.195864113235281 ], [ -74.606533476345447, 41.166442343913843 ], [ -74.606162807734563, 41.164633777364706 ], [ -74.601709077134132, 41.163246456490306 ], [ -74.586299160749817, 41.067990890631677 ], [ -74.586062167614742, 41.067880510444475 ], [ -74.513151463237477, 41.042110749880742 ], [ -74.510235164611856, 41.03256388077186 ], [ -74.5025806177932, 41.028998755096303 ], [ -74.504176751526074, 41.012730906113696 ], [ -74.498327750382941, 40.993583467699615 ], [ -74.506960718053335, 40.984356625121031 ], [ -74.50876418372701, 40.965975641986347 ], [ -74.565087653867508, 40.922231049443084 ], [ -74.603622498384212, 40.881045334666823 ], [ -74.630948720116777, 40.871078918717608 ], [ -74.673629021365329, 40.837930528125121 ], [ -74.735695274190817, 40.832875769472707 ], [ -74.737314857511294, 40.832285075259861 ], [ -74.744326957106921, 40.820568677731885 ], [ -74.771232648600119, 40.770936932329143 ], [ -74.775895043489498, 40.767822101016641 ], [ -74.783612486004088, 40.754927158044545 ], [ -74.963897567174214, 40.641635310522204 ], [ -74.960447896778504, 40.639318138711843 ], [ -74.872007044923251, 40.586454813849954 ], [ -74.87193292836993, 40.579861910706207 ], [ -74.864670400556349, 40.574983611393165 ], [ -74.87055828732457, 40.471705349498265 ], [ -74.870520350428095, 40.471663168991839 ], [ -74.771475859324212, 40.365598890137697 ], [ -74.748550313408586, 40.36610764415547 ], [ -74.723469451629171, 40.375373958577697 ], [ -74.707315570517537, 40.367022708127983 ], [ -74.690998654084936, 40.367384806235627 ], [ -74.481621097583002, 40.268681889857511 ], [ -74.373864958319032, 40.246914880209061 ], [ -74.274545413796403, 40.315774988548945 ], [ -74.115205036908733, 40.298083716699644 ], [ -74.017716355393119, 40.338510011235925 ], [ -74.059625875733985, 40.481260976699083 ], [ -73.968709057194218, 40.575997611952104 ], [ -73.872904088842361, 40.525946202708788 ], [ -73.863491599743384, 40.331557315427375 ], [ -73.922880675185866, 40.107298085285272 ], [ -74.009872781515895, 39.706058432751199 ], [ -74.238361543912561, 39.388284313727283 ], [ -74.34195382623065, 39.29649349787379 ], [ -74.440958280427452, 39.261440303145768 ], [ -74.55212166461132, 39.165542187623693 ], [ -74.69175770328664, 38.965971209253389 ], [ -74.788146833014167, 38.877817715957015 ], [ -74.961918337557805, 38.8427329929061 ], [ -75.038722088605638, 38.797988348552863 ], [ -75.043121182225192, 38.792960849371234 ], [ -75.062045443655791, 38.698432926598798 ], [ -75.143416897853385, 38.699267708216404 ], [ -75.149718218219164, 38.693185674029387 ], [ -75.257512539607248, 38.645519243129577 ], [ -75.27231180377143, 38.646074308052732 ], [ -75.279792480329647, 38.641371963232231 ], [ -75.391788053282113, 38.65055541431029 ], [ -75.400446711540383, 38.650880168124225 ], [ -75.458621607684208, 38.7648756723109 ], [ -75.58584133814513, 38.846092327152498 ], [ -75.598196846766399, 38.852985548480888 ], [ -75.690698860371242, 38.962599103138601 ], [ -75.696487280446206, 39.009523352504367 ], [ -75.698312807113751, 39.012318426085237 ], [ -75.696995667977916, 39.013644633096227 ], [ -75.697272763449448, 39.015890927738923 ], [ -75.685231675112661, 39.025489615445281 ], [ -75.643899811841337, 39.067106028895182 ], [ -75.681466362026313, 39.115131739181251 ], [ -75.731492606027857, 39.177299373406051 ], [ -75.73207141866402, 39.181705928577301 ] ] ] ] } } diff --git a/src/mmw/mmw/settings/data/scripts/README.md b/src/mmw/mmw/settings/data/scripts/README.md index d36eb3e96..dfca28393 100644 --- a/src/mmw/mmw/settings/data/scripts/README.md +++ b/src/mmw/mmw/settings/data/scripts/README.md @@ -8,3 +8,20 @@ to be modified slightly to put it into the same format as `drb_simple_perimeter.json`. To test the validity of the GeoJSON, use [GeoJSONLint](http://geojsonlint.com/). The original and simplified polygons can be easily compared using QGIS. + +The `drwi_perimeter.json` was generated with the following query in PostGIS: + +```sql +SELECT ST_AsGeoJSON(ST_Union(geom)) +FROM boundary_huc08 +WHERE huc08 LIKE '0204%' + AND huc08 NOT IN ('02040303', '02040304'); +``` + +This was then buffered with `scripts/bufferDRWI.js`, and then simplified using +[Mapshaper](http://www.mapshaper.org) to 2.2%, which is about the same as was +done for `drb_simple_perimeter`. The file was then manually edited to remove +the `GeometryCollection` parent, keeping only the `Polygon` value. + +Finally, this was Unioned and Dissolved with the `drb_simple_perimeter` in QGIS +to ensure that no DRB parts were missed. \ No newline at end of file diff --git a/src/mmw/mmw/settings/data/scripts/bufferDRWI.js b/src/mmw/mmw/settings/data/scripts/bufferDRWI.js new file mode 100755 index 000000000..31c4706ef --- /dev/null +++ b/src/mmw/mmw/settings/data/scripts/bufferDRWI.js @@ -0,0 +1,12 @@ +#!/usr/bin/env node + +var turfBuffer = require('turf-buffer'), + fs = require('fs'); + drwiPath = '../drwi_perimeter.json', + drwiBufPath = '../drwi_buffered_perimeter.json', + drwi = require(drwiPath), + distance = 3, + unit = 'miles', + drwiBuf = turfBuffer(drwi, distance, unit); + +fs.writeFileSync(drwiBufPath, JSON.stringify(drwiBuf)); diff --git a/src/mmw/mmw/settings/layer_settings.py b/src/mmw/mmw/settings/layer_settings.py index 0c96bf322..e3a78e5cd 100644 --- a/src/mmw/mmw/settings/layer_settings.py +++ b/src/mmw/mmw/settings/layer_settings.py @@ -51,6 +51,13 @@ with open(nhd_region2_simple_perimeter_path) as nhd_region2_simple_perimeter_file: NHD_REGION2_PERIMETER = json.load(nhd_region2_simple_perimeter_file) +# Buffered (3 mi) and simplified perimeter of the +# Delaware River Watershed Initiative (DRWI) +drwi_simple_perimeter_path = join(dirname(abspath(__file__)), + 'data/drwi_simple_perimeter.json') +with open(drwi_simple_perimeter_path) as drwi_simple_perimeter_file: + DRWI_SIMPLE_PERIMETER_JSON = json.load(drwi_simple_perimeter_file) + LAYER_GROUPS = { 'basemap': [ { @@ -624,6 +631,8 @@ DRB_PERIMETER = GEOSGeometry(json.dumps(drb_perimeter['geometry']), srid=4326) DRB_SIMPLE_PERIMETER = \ GEOSGeometry(json.dumps(drb_simple_perimeter['geometry']), srid=4326) +DRWI_SIMPLE_PERIMETER = \ + GEOSGeometry(json.dumps(DRWI_SIMPLE_PERIMETER_JSON['geometry']), srid=4326) # Vizer observation meta data URL. Happens to be proxied through a local app # server to avoid Cross Domain request errors