mapbox_directions 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +14 -0
  3. data/.rspec +4 -0
  4. data/.travis.yml +14 -0
  5. data/Gemfile +6 -0
  6. data/Guardfile +5 -0
  7. data/LICENSE.txt +22 -0
  8. data/README.md +148 -0
  9. data/Rakefile +2 -0
  10. data/lib/mapbox_directions.rb +12 -0
  11. data/lib/mapbox_directions/client.rb +43 -0
  12. data/lib/mapbox_directions/error.rb +7 -0
  13. data/lib/mapbox_directions/model.rb +6 -0
  14. data/lib/mapbox_directions/model/location.rb +19 -0
  15. data/lib/mapbox_directions/model/maneuver.rb +14 -0
  16. data/lib/mapbox_directions/model/point.rb +17 -0
  17. data/lib/mapbox_directions/model/response.rb +16 -0
  18. data/lib/mapbox_directions/model/route.rb +24 -0
  19. data/lib/mapbox_directions/model/step.rb +19 -0
  20. data/lib/mapbox_directions/parametizer.rb +50 -0
  21. data/lib/mapbox_directions/response_parser.rb +69 -0
  22. data/lib/mapbox_directions/version.rb +3 -0
  23. data/mapbox_directions.gemspec +32 -0
  24. data/spec/acceptance/directions_spec.rb +158 -0
  25. data/spec/acceptance/no_routes_found_spec.rb +25 -0
  26. data/spec/acceptance/raising_exceptions_spec.rb +54 -0
  27. data/spec/fixtures/cassettes/driving_geojson_as_geometry.yml +186 -0
  28. data/spec/fixtures/cassettes/driving_polyline_as_geometry.yml +186 -0
  29. data/spec/fixtures/cassettes/no_routes_found.yml +52 -0
  30. data/spec/fixtures/cassettes/unauthorized.yml +144 -0
  31. data/spec/lib/mapbox_directions/client_spec.rb +48 -0
  32. data/spec/lib/mapbox_directions/model/location_spec.rb +21 -0
  33. data/spec/lib/mapbox_directions/model/point_spec.rb +17 -0
  34. data/spec/lib/mapbox_directions/model/route_spec.rb +17 -0
  35. data/spec/lib/mapbox_directions/parametizer_spec.rb +92 -0
  36. data/spec/lib/mapbox_directions/response_parser_spec.rb +140 -0
  37. data/spec/spec_helper.rb +18 -0
  38. metadata +235 -0
@@ -0,0 +1,69 @@
1
+ require "mapbox_directions/model/response"
2
+
3
+ module MapboxDirections
4
+ class ResponseParser
5
+ def self.directions(body)
6
+ new(body).directions
7
+ end
8
+
9
+ def initialize(body)
10
+ @body = body
11
+ end
12
+
13
+ def directions
14
+ Response.new(
15
+ origin: origin,
16
+ destination: destination,
17
+ waypoints: @body["waypoints"],
18
+ routes: routes,
19
+ message: @body["message"],
20
+ error: @body["error"]
21
+ )
22
+ end
23
+
24
+ private
25
+
26
+ def origin
27
+ Location.from_geojson(@body["origin"]) if @body["origin"]
28
+ end
29
+
30
+ def destination
31
+ Location.from_geojson(@body["destination"]) if @body["destination"]
32
+ end
33
+
34
+ def routes
35
+ return [] unless @body["routes"] && @body["routes"].any?
36
+ @body["routes"].map do |route|
37
+ Route.new(
38
+ distance: route["distance"],
39
+ duration: route["duration"],
40
+ summary: route["summary"],
41
+ geometry: route["geometry"],
42
+ steps: steps(route["steps"])
43
+ )
44
+ end
45
+ end
46
+
47
+ def steps(steps)
48
+ steps.map do |step|
49
+ Step.new(
50
+ distance: step["distance"],
51
+ duration: step["duration"],
52
+ way_name: step["way_name"],
53
+ direction: step["direction"],
54
+ heading: step["heading"],
55
+ maneuver: maneuver(step["maneuver"])
56
+ )
57
+ end
58
+ end
59
+
60
+ def maneuver(maneuver)
61
+ coordinates = maneuver["location"]["coordinates"]
62
+ Maneuver.new(
63
+ type: maneuver["type"],
64
+ location: Point.new(coordinates.last, coordinates.first),
65
+ instruction: maneuver["instruction"]
66
+ )
67
+ end
68
+ end
69
+ end
@@ -0,0 +1,3 @@
1
+ module MapboxDirections
2
+ VERSION = "0.1.1"
3
+ end
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'mapbox_directions/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "mapbox_directions"
8
+ spec.version = MapboxDirections::VERSION
9
+ spec.authors = ["yonelacort"]
10
+ spec.email = ["yonedev@gmail.com"]
11
+ spec.summary = %q{MapBox Directions API}
12
+ spec.description = %q{Ruby wrapper for the MapBox Directions Service}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "faraday"
22
+ spec.add_dependency "polylines"
23
+
24
+ spec.add_development_dependency "bundler"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ spec.add_development_dependency "rspec"
27
+ spec.add_development_dependency "vcr"
28
+ spec.add_development_dependency "webmock"
29
+ spec.add_development_dependency "byebug"
30
+ spec.add_development_dependency "guard-rspec"
31
+ spec.add_development_dependency "ruby_gntp"
32
+ end
@@ -0,0 +1,158 @@
1
+ RSpec.describe "directions" do
2
+ let(:options) do
3
+ {
4
+ access_token: "whatever",
5
+ mode: "driving",
6
+ origin: "-122.42,37.78",
7
+ destination: "-77.03,38.91",
8
+ geometry: geometry,
9
+ alternatives: false,
10
+ instructions: "text"
11
+ }
12
+ end
13
+
14
+ let(:directions_response) do
15
+ VCR.use_cassette(cassette) { MapboxDirections.directions(options) }
16
+ end
17
+
18
+ describe "success response when" do
19
+ context "polyline as geometry" do
20
+ let(:cassette) { "driving_polyline_as_geometry" }
21
+ let(:geometry) { "polyline" }
22
+
23
+ describe "origin" do
24
+ let(:origin) { directions_response.origin }
25
+
26
+ it "lat" do
27
+ expect(origin.lat).to eq(37.780094)
28
+ end
29
+
30
+ it "lng" do
31
+ expect(origin.lng).to eq(-122.420013)
32
+ end
33
+
34
+ it "name" do
35
+ expect(origin.name).to eq("McAllister Street")
36
+ end
37
+ end
38
+
39
+ describe "destination" do
40
+ let(:destination) { directions_response.destination }
41
+
42
+ it "lat" do
43
+ expect(destination.lat).to eq(38.91008)
44
+ end
45
+
46
+ it "lng" do
47
+ expect(destination.lng).to eq(-77.030067)
48
+ end
49
+
50
+ it "name" do
51
+ expect(destination.name).to eq("Logan Circle Northwest")
52
+ end
53
+ end
54
+
55
+ it "waypoints" do
56
+ expect(directions_response.waypoints).to be_empty
57
+ end
58
+
59
+ describe "routes" do
60
+ let(:route) { directions_response.routes.first }
61
+
62
+ it "distance" do
63
+ expect(route.distance).to eq(4524005)
64
+ end
65
+
66
+ it "duration" do
67
+ expect(route.duration).to eq(163463)
68
+ end
69
+
70
+ it "summary" do
71
+ expect(route.summary).to eq("I 80 - I 80;I 90")
72
+ end
73
+
74
+ it "geometry" do
75
+ expect(route.geometry).to include("_g|`gA`r|nhFs@cKeEir@aAmOc@mG[sFmBoYiGqy@e@_I[kEoFqv@gDog@aFks@wEqq@U}DeB_ZdYa_@l")
76
+ end
77
+
78
+ describe "steps" do
79
+ let(:steps) { route.steps }
80
+
81
+ it "is an array with step elements" do
82
+ expect(steps.count).to be > 0
83
+ expect(steps.first).to be_kind_of(MapboxDirections::Step)
84
+ end
85
+
86
+ describe "each step contains" do
87
+ let(:step) { steps.first }
88
+
89
+ it "distance" do
90
+ expect(step.distance).to eq(611)
91
+ end
92
+
93
+ it "duration" do
94
+ expect(step.duration).to eq(53)
95
+ end
96
+
97
+ it "way_name" do
98
+ expect(step.way_name).to eq("McAllister Street")
99
+ end
100
+
101
+ it "direction" do
102
+ expect(step.direction).to eq("E")
103
+ end
104
+
105
+ it "heading" do
106
+ expect(step.heading).to eq(80)
107
+ end
108
+
109
+ it "lat" do
110
+ expect(step.lat).to eq(37.780096)
111
+ end
112
+
113
+ it "lng" do
114
+ expect(step.lng).to eq(-122.420017)
115
+ end
116
+
117
+ describe "maneuver" do
118
+ let(:maneuver) { step.maneuver }
119
+
120
+ it "type" do
121
+ expect(maneuver.type).to eq("depart")
122
+ end
123
+
124
+ it "instruction" do
125
+ expect(maneuver.instruction).to eq("Head east on McAllister Street")
126
+ end
127
+ end
128
+ end
129
+ end
130
+ end
131
+ end
132
+
133
+ context "geojson as geometry" do
134
+ let(:cassette) { "driving_geojson_as_geometry" }
135
+ let(:geometry) { "geojson" }
136
+
137
+ describe "routes" do
138
+ let(:route) { directions_response.routes.first }
139
+
140
+ describe "geometry" do
141
+
142
+ it "type is linestring" do
143
+ expect(route.geometry["type"]).to eq("LineString")
144
+ end
145
+
146
+ it "returns coordinates of the linestring" do
147
+ expect(route.geometry["coordinates"].count).to be > 0
148
+ end
149
+
150
+ it "each coordinates element is gotten with the expected format" do
151
+ expect(route.geometry["coordinates"].first.first).to eq(-122.420017)
152
+ expect(route.geometry["coordinates"].first.last).to eq(37.780096)
153
+ end
154
+ end
155
+ end
156
+ end
157
+ end
158
+ end
@@ -0,0 +1,25 @@
1
+ RSpec.describe "when calling directions with wrong options" do
2
+ let(:options) do
3
+ {
4
+ access_token: "whatever",
5
+ mode: "driving",
6
+ origin: "52.12,13.2",
7
+ destination: "-77.03,38.91",
8
+ geometry: "polyline",
9
+ alternatives: false,
10
+ instructions: "text"
11
+ }
12
+ end
13
+ let(:mode) { "driving" }
14
+ let(:directions) do
15
+ VCR.use_cassette("no_routes_found") { MapboxDirections.directions(options) }
16
+ end
17
+
18
+ it "returns empty routes" do
19
+ expect(directions.routes).to be_empty
20
+ end
21
+
22
+ it "returns an informative error" do
23
+ expect(directions.error).to eq("Cannot find route between points")
24
+ end
25
+ end
@@ -0,0 +1,54 @@
1
+ RSpec.describe "when calling directions with wrong options" do
2
+ let(:options) do
3
+ {
4
+ access_token: "whatever",
5
+ mode: mode,
6
+ origin: origin,
7
+ destination: "-77.03,38.91",
8
+ geometry: "polyline",
9
+ alternatives: false,
10
+ instructions: "text"
11
+ }
12
+ end
13
+ let(:mode) { "driving" }
14
+ let(:directions) { MapboxDirections.directions(options) }
15
+ let(:origin) { "-122.42,38.78" }
16
+
17
+ context "when the access_token is missing" do
18
+ before do
19
+ options.delete(:access_token)
20
+ end
21
+
22
+ it "raises MissingAccessTokenError" do
23
+ expect { directions }.to raise_error(MapboxDirections::MissingAccessTokenError)
24
+ end
25
+ end
26
+
27
+ context "when the transport mode is not supported" do
28
+ let(:mode) { "horse" }
29
+
30
+ it "raises UnsupportedTransportModeError" do
31
+ expect { directions }.to raise_error(MapboxDirections::UnsupportedTransportModeError)
32
+ end
33
+ end
34
+
35
+ context "when some of the coordinates is wrongly formatted" do
36
+ let(:origin) { "-122.42878" }
37
+
38
+ it "raises CoordinatesFormatError" do
39
+ expect { directions }.to raise_error(MapboxDirections::CoordinatesFormatError)
40
+ end
41
+ end
42
+
43
+ context "failure response when unauthorized" do
44
+ let(:directions) do
45
+ VCR.use_cassette("unauthorized") { MapboxDirections.directions(options) }
46
+ end
47
+
48
+ let(:cassette) { "unauthorized" }
49
+
50
+ it "raises an InvalidAccessTokenError exception" do
51
+ expect { directions }.to raise_error(MapboxDirections::InvalidAccessTokenError)
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,186 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.tiles.mapbox.com/v4/directions/mapbox.driving/-122.42,37.78;-77.03,38.91.json?alternatives=false&geometry=geojson&instructions=text
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.9.1
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Content-Type:
22
+ - application/json; charset=utf-8
23
+ Transfer-Encoding:
24
+ - chunked
25
+ Connection:
26
+ - keep-alive
27
+ Access-Control-Allow-Methods:
28
+ - GET
29
+ Access-Control-Allow-Origin:
30
+ - "*"
31
+ Cache-Control:
32
+ - max-age=0
33
+ Date:
34
+ - Thu, 18 Jun 2015 15:34:40 GMT
35
+ Etag:
36
+ - W/"a45c1-3142625159"
37
+ X-Powered-By:
38
+ - Express
39
+ Vary:
40
+ - Accept-Encoding
41
+ X-Cache:
42
+ - Miss from cloudfront
43
+ Via:
44
+ - 1.1 1470442994f5c934501af506cad58c44.cloudfront.net (CloudFront)
45
+ X-Amz-Cf-Id:
46
+ - WJ6XTvqOq6CmSzHFY8IewYLbD_f-hO7TQd_TrcinZbvlPcsPuPlbpg==
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"origin":{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.420013,37.780094]},"properties":{"name":"McAllister
50
+ Street"}},"destination":{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.030067,38.91008]},"properties":{"name":"Logan
51
+ Circle Northwest"}},"waypoints":[],"routes":[{"distance":4524005,"duration":163463,"summary":"I
52
+ 80 - I 80;I 90","geometry":{"type":"LineString","coordinates":[[-122.420017,37.780096],[-122.419823,37.780122],[-122.419002,37.780221],[-122.418739,37.780254],[-122.418604,37.780272],[-122.418482,37.780286],[-122.418058,37.780341],[-122.417121,37.780474],[-122.416961,37.780493],[-122.416859,37.780507],[-122.41597,37.780627],[-122.415322,37.780711],[-122.414484,37.780824],[-122.413675,37.780932],[-122.41358,37.780943],[-122.413148,37.780994],[-122.412635,37.780575],[-122.412528,37.780488],[-122.411978,37.780923],[-122.411603,37.781218],[-122.410355,37.782206],[-122.409099,37.783201],[-122.40871,37.783508],[-122.408397,37.783756],[-122.40809,37.783999],[-122.407934,37.784122],[-122.407357,37.784576],[-122.405916,37.785713],[-122.405078,37.786375],[-122.404605,37.786749],[-122.403436,37.787675],[-122.402986,37.788029],[-122.402905,37.788093],[-122.402128,37.788706],[-122.402007,37.788802],[-122.401863,37.788917],[-122.401398,37.789283],[-122.400812,37.788814],[-122.400345,37.78844],[-122.399805,37.788009],[-122.399265,37.787577],[-122.398818,37.787219],[-122.398258,37.786773],[-122.397709,37.786334],[-122.39724,37.785959],[-122.396719,37.785543],[-122.395919,37.784905],[-122.395178,37.784312],[-122.394809,37.784606],[-122.394414,37.784922],[-122.394038,37.785216],[-122.393776,37.785152],[-122.393388,37.785114],[-122.392768,37.785107],[-122.392138,37.785171],[-122.391499,37.785488],[-122.390944,37.78592],[-122.390367,37.786409],[-122.367442,37.807814],[-122.367208,37.808121],[-122.366752,37.808555],[-122.365044,37.810178],[-122.364355,37.810776],[-122.363429,37.811589],[-122.362938,37.812064],[-122.362376,37.812555],[-122.361732,37.813046],[-122.36122,37.813408],[-122.360852,37.813658],[-122.36057,37.813845],[-122.360276,37.814019],[-122.35481,37.817143],[-122.354564,37.81728],[-122.354304,37.817417],[-122.354047,37.817545],[-122.353785,37.817669],[-122.353543,37.817779],[-122.353302,37.817883],[-122.353044,37.817988],[-122.352762,37.818097],[-122.352508,37.818189],[-122.352256,37.818275],[-122.351987,37.818357],[-122.351694,37.818441],[-122.351379,37.818525],[-122.351055,37.818606],[-122.350714,37.818679],[-122.350364,37.818744],[-122.350019,37.818801],[-122.333594,37.821168],[-122.332881,37.821266],[-122.332195,37.821355],[-122.331403,37.821452],[-122.33075,37.821525],[-122.330054,37.821598],[-122.327731,37.821827],[-122.324921,37.822056],[-122.323506,37.822176],[-122.322862,37.822253],[-122.322217,37.82234],[-122.320559,37.822626],[-122.318611,37.822973],[-122.315929,37.823443],[-122.314335,37.823723],[-122.313663,37.823837],[-122.311996,37.824119],[-122.31138,37.824225],[-122.310645,37.824341],[-122.309916,37.824433],[-122.307901,37.82464],[-122.307282,37.824703],[-122.306645,37.82478],[-122.306066,37.824882],[-122.305644,37.824963],[-122.303347,37.82548],[-122.302654,37.825632],[-122.300675,37.826072],[-122.298791,37.826492],[-122.297792,37.826714],[-122.296018,37.827125],[-122.295642,37.827231],[-122.295299,37.827375],[-122.294993,37.827544],[-122.294727,37.827725],[-122.294448,37.82795],[-122.294202,37.828217],[-122.294003,37.828488],[-122.293906,37.828655],[-122.293725,37.829245],[-122.293649,37.829558],[-122.293604,37.82993],[-122.293588,37.830311],[-122.293604,37.831269],[-122.293647,37.831612],[-122.293733,37.832002],[-122.293856,37.832387],[-122.294011,37.832769],[-122.294226,37.833167],[-122.294757,37.834133],[-122.295342,37.835251],[-122.295562,37.835717],[-122.295882,37.836444],[-122.296069,37.836819],[-122.296273,37.83749],[-122.296447,37.838124],[-122.296534,37.838577],[-122.296859,37.840355],[-122.297038,37.841288],[-122.29718,37.842015],[-122.297422,37.843072],[-122.297775,37.844677],[-122.297843,37.844968],[-122.297904,37.845228],[-122.298087,37.846016],[-122.298404,37.847386],[-122.298725,37.848761],[-122.299055,37.850167],[-122.299404,37.851614],[-122.299556,37.852171],[-122.300383,37.855197],[-122.302038,37.861103],[-122.302773,37.863828],[-122.302896,37.864282],[-122.303731,37.867084],[-122.304726,37.870337],[-122.305122,37.871673],[-122.30584,37.873929],[-122.306768,37.876836],[-122.307025,37.877706],[-122.307292,37.878689],[-122.307668,37.880394],[-122.307796,37.881011],[-122.307986,37.881833],[-122.308023,37.882066],[-122.308281,37.883134],[-122.308377,37.883534],[-122.308688,37.884831],[-122.308901,37.885919],[-122.308983,37.886393],[-122.309019,37.886737],[-122.309021,37.887165],[-122.308998,37.887629],[-122.308888,37.888222],[-122.308775,37.888615],[-122.308575,37.889087],[-122.308341,37.889556],[-122.307992,37.890154],[-122.307693,37.890808],[-122.307532,37.891187],[-122.307392,37.891648],[-122.307338,37.891999],[-122.307285,37.892726],[-122.307285,37.893146],[-122.30742,37.893723],[-122.30765,37.894298],[-122.307983,37.895109],[-122.308389,37.896121],[-122.308788,37.897102],[-122.309147,37.897974],[-122.309422,37.898612],[-122.309602,37.899018],[-122.309782,37.899397],[-122.310014,37.899838],[-122.310263,37.900257],[-122.310538,37.900691],[-122.310859,37.901179],[-122.312396,37.903439],[-122.315023,37.907294],[-122.316569,37.909564],[-122.316892,37.910028],[-122.317009,37.910308],[-122.317133,37.910642],[-122.317295,37.911238],[-122.317343,37.911675],[-122.317301,37.912979],[-122.317304,37.914434],[-122.317369,37.916834],[-122.31732,37.918701],[-122.317336,37.919238],[-122.317409,37.919779],[-122.317573,37.920454],[-122.317807,37.921101],[-122.318123,37.921707],[-122.318496,37.922303],[-122.319712,37.924125],[-122.320361,37.925065],[-122.320866,37.925804],[-122.321155,37.926231],[-122.321976,37.927385],[-122.322397,37.927979],[-122.32332,37.929191],[-122.324494,37.930718],[-122.325182,37.931673],[-122.325628,37.932286],[-122.326126,37.932988],[-122.326299,37.933261],[-122.32655,37.933767],[-122.326647,37.934025],[-122.326722,37.934313],[-122.326776,37.934655],[-122.326792,37.935019],[-122.326776,37.935294],[-122.326684,37.935741],[-122.326606,37.936035],[-122.326495,37.936311],[-122.326384,37.936565],[-122.326243,37.936836],[-122.326079,37.937136],[-122.325889,37.937512],[-122.324842,37.93961],[-122.324017,37.94115],[-122.323817,37.941661],[-122.323705,37.942105],[-122.323635,37.942538],[-122.323625,37.942971],[-122.323633,37.943348],[-122.323717,37.943864],[-122.323852,37.944293],[-122.324062,37.944779],[-122.324259,37.945204],[-122.325093,37.946904],[-122.326346,37.949509],[-122.326767,37.950378],[-122.327737,37.952406],[-122.327999,37.952979],[-122.329883,37.956203],[-122.330147,37.956685],[-122.3303,37.957066],[-122.330441,37.957486],[-122.330523,37.957875],[-122.330577,37.958278],[-122.330591,37.958724],[-122.330573,37.959117],[-122.330512,37.959512],[-122.330393,37.959933],[-122.330263,37.960303],[-122.330147,37.960596],[-122.329975,37.960964],[-122.329785,37.961274],[-122.329601,37.961542],[-122.329347,37.961865],[-122.329064,37.962171],[-122.328766,37.962445],[-122.328429,37.962723],[-122.328119,37.962953],[-122.327778,37.963167],[-122.327426,37.96337],[-122.327074,37.963548],[-122.325061,37.964623],[-122.324918,37.964716],[-122.324311,37.965017],[-122.323928,37.96521],[-122.323529,37.965422],[-122.32312,37.965674],[-122.322845,37.965863],[-122.322519,37.966103],[-122.322339,37.966255],[-122.322174,37.966417],[-122.321951,37.966661],[-122.321764,37.966887],[-122.321577,37.967138],[-122.321401,37.967405],[-122.321362,37.967485],[-122.321214,37.967741],[-122.321082,37.968056],[-122.320685,37.969152],[-122.320482,37.969876],[-122.319707,37.972182],[-122.318802,37.974871],[-122.318194,37.976668],[-122.317606,37.978425],[-122.317525,37.978679],[-122.317444,37.978943],[-122.317151,37.979937],[-122.316459,37.981771],[-122.316088,37.982924],[-122.316051,37.983026],[-122.315409,37.984785],[-122.315266,37.985124],[-122.315074,37.985519],[-122.31483,37.985946],[-122.31463,37.986255],[-122.314391,37.9866],[-122.31382,37.987441],[-122.313553,37.987799],[-122.313298,37.988115],[-122.31303,37.988414],[-122.312666,37.9888],[-122.311994,37.989412],[-122.311185,37.990034],[-122.310786,37.990315],[-122.309948,37.990855],[-122.309363,37.991199],[-122.308595,37.991589],[-122.307965,37.991863],[-122.307138,37.992185],[-122.306724,37.99231],[-122.30569,37.992638],[-122.304749,37.992838],[-122.303774,37.993023],[-122.302931,37.993151],[-122.302183,37.993261],[-122.300843,37.993433],[-122.297935,37.993861],[-122.296835,37.99401],[-122.291859,37.994681],[-122.291277,37.99477],[-122.290755,37.994879],[-122.290188,37.995024],[-122.289553,37.995211],[-122.289001,37.995393],[-122.288274,37.995695],[-122.287582,37.996035],[-122.287096,37.99632],[-122.286622,37.996627],[-122.286313,37.996847],[-122.286084,37.997016],[-122.285764,37.997283],[-122.285454,37.997584],[-122.285038,37.997988],[-122.284637,37.998412],[-122.284231,37.998837],[-122.28292,38.000275],[-122.276703,38.006968],[-122.276502,38.007184],[-122.273106,38.010846],[-122.271775,38.012297],[-122.271393,38.012737],[-122.269556,38.014719],[-122.268652,38.015704],[-122.266189,38.018308],[-122.262431,38.022335],[-122.262346,38.022431],[-122.262099,38.022709],[-122.259551,38.025455],[-122.254258,38.03115],[-122.248732,38.037121],[-122.248242,38.037658],[-122.248047,38.037855],[-122.247841,38.038073],[-122.247587,38.038318],[-122.247309,38.038549],[-122.247106,38.038717],[-122.246843,38.038916],[-122.246584,38.039107],[-122.246499,38.039166],[-122.245221,38.040072],[-122.244061,38.040887],[-122.24158,38.042623],[-122.234304,38.047765],[-122.232463,38.049054],[-122.22983,38.050891],[-122.229187,38.051341],[-122.227978,38.052197],[-122.226354,38.053338],[-122.225817,38.053727],[-122.225472,38.054061],[-122.225198,38.054404],[-122.22497,38.05478],[-122.224872,38.055015],[-122.224813,38.055219],[-122.224729,38.055494],[-122.224709,38.055756],[-122.224741,38.056235],[-122.225557,38.065506],[-122.225652,38.066515],[-122.225764,38.067123],[-122.225915,38.067548],[-122.226036,38.067846],[-122.226641,38.069126],[-122.226965,38.069684],[-122.227197,38.07009],[-122.227377,38.070428],[-122.227566,38.070711],[-122.227763,38.071015],[-122.228201,38.071549],[-122.229395,38.073003],[-122.230467,38.074381],[-122.231266,38.075476],[-122.231455,38.075746],[-122.231661,38.076084],[-122.231935,38.076589],[-122.232047,38.076832],[-122.232261,38.077285],[-122.232407,38.077636],[-122.232536,38.077988],[-122.232656,38.07832],[-122.232776,38.078692],[-122.232879,38.079064],[-122.232999,38.079584],[-122.233111,38.080192],[-122.233188,38.080753],[-122.233231,38.081361],[-122.233257,38.081901],[-122.233257,38.08242],[-122.233214,38.082968],[-122.23318,38.08334],[-122.233128,38.083745],[-122.233025,38.084326],[-122.232939,38.084752],[-122.232845,38.085123],[-122.232831,38.085231],[-122.232647,38.085858],[-122.232353,38.086639],[-122.231781,38.087934],[-122.231549,38.088495],[-122.230588,38.090758],[-122.230425,38.09121],[-122.230249,38.091763],[-122.230176,38.092028],[-122.230116,38.092305],[-122.23003,38.092804],[-122.229918,38.093615],[-122.229789,38.094554],[-122.229764,38.094757],[-122.229746,38.094952],[-122.229729,38.095182],[-122.229704,38.095871],[-122.229635,38.100241],[-122.229667,38.100756],[-122.22964,38.102884],[-122.229592,38.103666],[-122.229583,38.105172],[-122.229575,38.105645],[-122.229549,38.107055],[-122.229547,38.110567],[-122.229695,38.11258],[-122.229831,38.114272],[-122.230006,38.116444],[-122.230046,38.116936],[-122.230081,38.117372],[-122.230147,38.118353],[-122.230233,38.119294],[-122.230241,38.119431],[-122.230282,38.120243],[-122.230258,38.121033],[-122.230225,38.121408],[-122.230164,38.121814],[-122.230064,38.122381],[-122.229825,38.12315],[-122.229789,38.123253],[-122.229706,38.123494],[-122.229652,38.123627],[-122.229331,38.12434],[-122.228999,38.12495],[-122.22863,38.125538],[-122.227989,38.12645],[-122.22763,38.127047],[-122.227378,38.127467],[-122.226353,38.129028],[-122.226032,38.129517],[-122.225972,38.129608],[-122.225783,38.129925],[-122.2256,38.130231],[-122.224876,38.13135],[-122.224144,38.132481],[-122.223781,38.13306],[-122.223705,38.133182],[-122.223633,38.133297],[-122.222757,38.134651],[-122.222189,38.135544],[-122.221281,38.136969],[-122.221061,38.137285],[-122.220799,38.137695],[-122.220442,38.138235],[-122.220138,38.138718],[-122.219977,38.138977],[-122.219525,38.139636],[-122.219151,38.140219],[-122.218549,38.141154],[-122.218324,38.14151],[-122.218125,38.141814],[-122.217768,38.142395],[-122.217542,38.142797],[-122.217266,38.143356],[-122.216961,38.144152],[-122.216845,38.14454],[-122.216661,38.145293],[-122.2166,38.1457],[-122.216523,38.146425],[-122.216506,38.146831],[-122.216522,38.147441],[-122.216694,38.14915],[-122.216631,38.150353],[-122.216461,38.151272],[-122.216222,38.152089],[-122.216008,38.152631],[-122.215728,38.153228],[-122.215433,38.153772],[-122.214814,38.154737],[-122.214685,38.154921],[-122.212256,38.158314],[-122.211187,38.159806],[-122.208978,38.162863],[-122.207858,38.163899],[-122.206365,38.164952],[-122.202885,38.167275],[-122.202068,38.167843],[-122.196389,38.171763],[-122.195419,38.172394],[-122.194551,38.173025],[-122.194142,38.173325],[-122.194035,38.173418],[-122.193614,38.173786],[-122.193047,38.174336],[-122.191858,38.175711],[-122.190656,38.177131],[-122.19035,38.177464],[-122.189767,38.178031],[-122.189208,38.178506],[-122.188658,38.178931],[-122.188039,38.179347],[-122.186153,38.180469],[-122.185428,38.180919],[-122.184728,38.181425],[-122.184,38.182064],[-122.183389,38.182653],[-122.182847,38.183156],[-122.182481,38.183517],[-122.182061,38.183858],[-122.181603,38.184211],[-122.181103,38.184539],[-122.18028,38.185011],[-122.179967,38.185175],[-122.179654,38.185323],[-122.178703,38.185736],[-122.178197,38.185919],[-122.177622,38.186092],[-122.175806,38.186561],[-122.174981,38.186786],[-122.174131,38.187061],[-122.173194,38.187422],[-122.172561,38.187725],[-122.171894,38.188083],[-122.171333,38.188411],[-122.170536,38.188956],[-122.169833,38.189478],[-122.168542,38.190758],[-122.16785,38.19155],[-122.167286,38.192228],[-122.165269,38.194528],[-122.164578,38.195292],[-122.163394,38.196344],[-122.160667,38.198731],[-122.159258,38.199972],[-122.157058,38.201929],[-122.156867,38.202099],[-122.155978,38.202854],[-122.154961,38.203731],[-122.153306,38.205161],[-122.150933,38.207206],[-122.149989,38.208019],[-122.149231,38.208631],[-122.146885,38.210256],[-122.145417,38.211289],[-122.144167,38.212158],[-122.141105,38.214279],[-122.138702,38.215904],[-122.135934,38.217851],[-122.133901,38.2193],[-122.132334,38.220369],[-122.130547,38.221614],[-122.127339,38.22374],[-122.124925,38.225174],[-122.124025,38.225688],[-122.123304,38.226107],[-122.122603,38.22646],[-122.122429,38.226548],[-122.121618,38.226945],[-122.120241,38.227623],[-122.119696,38.227886],[-122.119072,38.22815],[-122.117544,38.228858],[-122.116289,38.229375],[-122.113907,38.230441],[-122.113209,38.230734],[-122.112555,38.23103],[-122.112338,38.231115],[-122.110901,38.231746],[-122.108396,38.232844],[-122.106738,38.233571],[-122.098928,38.23695],[-122.097736,38.237465],[-122.097045,38.237776],[-122.093377,38.239366],[-122.091133,38.24035],[-122.088044,38.24171],[-122.085414,38.242846],[-122.082663,38.244045],[-122.081729,38.24445],[-122.079013,38.245628],[-122.078022,38.24606],[-122.076873,38.24653],[-122.076234,38.246761],[-122.074777,38.24717],[-122.074142,38.247345],[-122.072962,38.247712],[-122.072703,38.2478],[-122.07206,38.248046],[-122.071043,38.248601],[-122.069897,38.249462],[-122.069584,38.249746],[-122.069358,38.24997],[-122.068843,38.250584],[-122.065325,38.254681],[-122.065014,38.255047],[-122.064449,38.255714],[-122.064169,38.256044],[-122.059564,38.26153],[-122.058344,38.262972],[-122.053573,38.268593],[-122.052922,38.26936],[-122.052315,38.270075],[-122.051886,38.270581],[-122.050097,38.272712],[-122.047039,38.276319],[-122.044933,38.278808],[-122.043656,38.280292],[-122.042703,38.281423],[-122.0411,38.283328],[-122.040591,38.283914],[-122.040442,38.284086],[-122.038958,38.285814],[-122.037923,38.287046],[-122.037225,38.287877],[-122.036539,38.288692],[-122.035783,38.289567],[-122.03515,38.290339],[-122.034914,38.290644],[-122.034764,38.290878],[-122.034592,38.291183],[-122.034494,38.291369],[-122.034264,38.291928],[-122.034178,38.2922],[-122.034056,38.292636],[-122.033964,38.2931],[-122.033933,38.293497],[-122.033911,38.294106],[-122.033889,38.296067],[-122.033884,38.296261],[-122.0338,38.299514],[-122.033781,38.3002],[-122.033764,38.300783],[-122.033748,38.301778],[-122.033686,38.305621],[-122.033672,38.306461],[-122.033625,38.307131],[-122.033569,38.307761],[-122.033497,38.308369],[-122.033439,38.308742],[-122.033392,38.309047],[-122.03315,38.310447],[-122.0329,38.312011],[-122.032697,38.313122],[-122.03266,38.313268],[-122.032589,38.313544],[-122.032454,38.313956],[-122.0324,38.314122],[-122.032172,38.314683],[-122.031925,38.315175],[-122.031809,38.315367],[-122.031642,38.315644],[-122.031267,38.316178],[-122.030819,38.316742],[-122.029731,38.317967],[-122.025703,38.322442],[-122.02545,38.322733],[-122.025011,38.323322],[-122.024239,38.324511],[-122.023883,38.325081],[-122.023644,38.325464],[-122.022772,38.326797],[-122.022139,38.327805],[-122.021712,38.328475],[-122.019119,38.332545],[-122.018681,38.333233],[-122.017234,38.335497],[-122.017034,38.335803],[-122.016458,38.336711],[-122.016044,38.337325],[-122.015819,38.33763],[-122.015706,38.337783],[-122.015197,38.338369],[-122.014908,38.338667],[-122.014425,38.339117],[-122.013819,38.339614],[-122.013189,38.340083],[-122.012675,38.340447],[-122.01205,38.340822],[-122.011392,38.341164],[-122.010731,38.341469],[-122.010382,38.341613],[-122.010014,38.341764],[-122.009467,38.341947],[-122.008458,38.342242],[-122.007489,38.342514],[-122.006566,38.342793],[-122.006369,38.342853],[-122.004917,38.343269],[-122.003986,38.343572],[-122.003233,38.343858],[-122.002231,38.344261],[-122.001689,38.344467],[-122.001504,38.344539],[-122.000758,38.344829],[-121.996406,38.346519],[-121.994508,38.347233],[-121.993833,38.347494],[-121.992692,38.347958],[-121.990739,38.348728],[-121.989303,38.349278],[-121.986864,38.350233],[-121.985721,38.350679],[-121.985135,38.350905],[-121.984689,38.351078],[-121.983419,38.351588],[-121.981761,38.352253],[-121.981273,38.352459],[-121.980866,38.352644],[-121.980479,38.352846],[-121.980082,38.353081],[-121.97968,38.353338],[-121.979011,38.353792],[-121.978432,38.354271],[-121.977916,38.354742],[-121.977622,38.355014],[-121.976777,38.355839],[-121.976608,38.355991],[-121.976309,38.356273],[-121.975697,38.356853],[-121.973956,38.358439],[-121.97357,38.358753],[-121.973168,38.359039],[-121.971958,38.359772],[-121.970464,38.360692],[-121.969508,38.361247],[-121.968889,38.361632],[-121.966728,38.362972],[-121.966328,38.36321],[-121.966111,38.363339],[-121.965419,38.363754],[-121.964764,38.364147],[-121.964392,38.364444],[-121.964331,38.364485],[-121.964148,38.364608],[-121.963921,38.364761],[-121.963636,38.364953],[-121.962697,38.365689],[-121.961479,38.366625],[-121.959951,38.367782],[-121.959637,38.368015],[-121.958381,38.368956],[-121.956314,38.370586],[-121.95515,38.371597],[-121.954214,38.372375],[-121.953136,38.373231],[-121.952868,38.373432],[-121.9521,38.374008],[-121.951356,38.374597],[-121.951228,38.3747],[-121.950772,38.375019],[-121.950367,38.375325],[-121.950144,38.375499],[-121.948706,38.376622],[-121.946983,38.377947],[-121.945069,38.379433],[-121.943339,38.380761],[-121.941606,38.382067],[-121.941422,38.382206],[-121.93895,38.384058],[-121.938271,38.384586],[-121.937657,38.385065],[-121.936548,38.385903],[-121.936481,38.385953],[-121.935047,38.387069],[-121.934962,38.387134],[-121.934498,38.387488],[-121.932571,38.388974],[-121.93115,38.390089],[-121.930803,38.390356],[-121.930169,38.390844],[-121.927311,38.393114],[-121.926661,38.39361],[-121.92568,38.394359],[-121.925558,38.394453],[-121.924469,38.395325],[-121.920356,38.398556],[-121.918853,38.399706],[-121.917839,38.400508],[-121.917189,38.401035],[-121.916958,38.401203],[-121.916619,38.40145],[-121.915553,38.402284],[-121.915042,38.402683],[-121.912884,38.404338],[-121.912225,38.404844],[-121.908656,38.407508],[-121.906744,38.408989],[-121.901608,38.412889],[-121.900929,38.413409],[-121.900526,38.413718],[-121.900073,38.414093],[-121.896956,38.416453],[-121.894469,38.418336],[-121.893473,38.41909],[-121.888728,38.422719],[-121.887603,38.42355],[-121.886403,38.424482],[-121.886086,38.424728],[-121.882331,38.427567],[-121.879533,38.4297],[-121.878322,38.430611],[-121.877344,38.431375],[-121.876267,38.432189],[-121.875742,38.432603],[-121.875019,38.433117],[-121.87305,38.434631],[-121.872578,38.434989],[-121.869331,38.437447],[-121.868569,38.438039],[-121.867989,38.438489],[-121.863439,38.442019],[-121.861772,38.443306],[-121.859326,38.445222],[-121.858706,38.445708],[-121.858318,38.446007],[-121.858132,38.44615],[-121.857945,38.446292],[-121.857274,38.446805],[-121.856814,38.447156],[-121.856198,38.447639],[-121.854794,38.448739],[-121.852003,38.450886],[-121.849365,38.45295],[-121.845808,38.455733],[-121.844564,38.456692],[-121.843802,38.457287],[-121.841772,38.458872],[-121.841516,38.459067],[-121.840559,38.459799],[-121.839028,38.460992],[-121.837533,38.462142],[-121.837197,38.462403],[-121.836669,38.462815],[-121.8344,38.464581],[-121.83359,38.465222],[-121.83285,38.465808],[-121.83082,38.467387],[-121.82506,38.471894],[-121.822357,38.474004],[-121.820683,38.475321],[-121.816849,38.47831],[-121.815305,38.479549],[-121.813832,38.480702],[-121.80973,38.483938],[-121.808432,38.484946],[-121.807805,38.485452],[-121.80606,38.486838],[-121.804775,38.487846],[-121.803184,38.489079],[-121.802942,38.489281],[-121.801774,38.490218],[-121.800802,38.491084],[-121.797567,38.494147],[-121.792551,38.49879],[-121.791701,38.499575],[-121.790704,38.500485],[-121.789631,38.501483],[-121.788156,38.502858],[-121.784743,38.506072],[-121.782469,38.5082],[-121.781756,38.508856],[-121.779731,38.510711],[-121.7761,38.514106],[-121.775604,38.514644],[-121.772406,38.517579],[-121.771301,38.518608],[-121.767654,38.522052],[-121.766735,38.522911],[-121.766169,38.523449],[-121.765159,38.524326],[-121.76467,38.524717],[-121.764198,38.525062],[-121.763111,38.525761],[-121.762561,38.526114],[-121.762025,38.526436],[-121.761508,38.526717],[-121.760481,38.527253],[-121.759894,38.527522],[-121.758717,38.528006],[-121.757839,38.528347],[-121.7574,38.528515],[-121.756535,38.52878],[-121.755689,38.529033],[-121.755132,38.529191],[-121.754393,38.529385],[-121.753621,38.529553],[-121.75272,38.529714],[-121.750772,38.530058],[-121.749973,38.530278],[-121.748806,38.530648],[-121.748256,38.53085],[-121.747425,38.531172],[-121.746561,38.531567],[-121.745742,38.531967],[-121.745006,38.532375],[-121.744219,38.532861],[-121.743514,38.53335],[-121.74275,38.533931],[-121.741886,38.534639],[-121.741114,38.535307],[-121.740392,38.535933],[-121.739364,38.536767],[-121.73849,38.537518],[-121.738281,38.537686],[-121.736545,38.539172],[-121.733491,38.541697],[-121.73197,38.542918],[-121.731101,38.543513],[-121.729019,38.544572],[-121.727812,38.545089],[-121.726702,38.545503],[-121.720419,38.546973],[-121.713604,38.548537],[-121.699679,38.551661],[-121.698604,38.551859],[-121.696321,38.552154],[-121.695799,38.55221],[-121.695219,38.552305],[-121.694671,38.552396],[-121.693841,38.552602],[-121.693351,38.552738],[-121.692887,38.552872],[-121.690481,38.553657],[-121.690073,38.55379],[-121.689473,38.553971],[-121.688966,38.554112],[-121.675985,38.557049],[-121.668723,38.558572],[-121.653111,38.560753],[-121.646153,38.562],[-121.643245,38.562532],[-121.640548,38.56302],[-121.638814,38.563325],[-121.628337,38.565201],[-121.619703,38.566758],[-121.612318,38.568074],[-121.583027,38.573278],[-121.582255,38.573415],[-121.579471,38.573827],[-121.577883,38.574063],[-121.577059,38.57419],[-121.575481,38.574423],[-121.572512,38.574855],[-121.570356,38.575053],[-121.570072,38.575073],[-121.569798,38.57508],[-121.569472,38.575066],[-121.569102,38.575046],[-121.568716,38.575019],[-121.567892,38.574963],[-121.567463,38.574939],[-121.566982,38.574939],[-121.566656,38.574952],[-121.566373,38.574979],[-121.566081,38.575019],[-121.565781,38.575073],[-121.565463,38.57514],[-121.565137,38.575227],[-121.56488,38.575301],[-121.564665,38.575381],[-121.564408,38.575475],[-121.564176,38.575576],[-121.563893,38.575704],[-121.563661,38.575827],[-121.563103,38.576163],[-121.562594,38.576557],[-121.562053,38.5771],[-121.561249,38.57823],[-121.560809,38.578852],[-121.560625,38.579094],[-121.558608,38.582106],[-121.557182,38.584275],[-121.556873,38.58474],[-121.554848,38.587708],[-121.554342,38.588453],[-121.552943,38.590513],[-121.552113,38.591795],[-121.551836,38.59219],[-121.551303,38.592948],[-121.544607,38.60297],[-121.542348,38.606228],[-121.539688,38.610213],[-121.538439,38.612058],[-121.538273,38.612303],[-121.538047,38.612614],[-121.5378,38.612925],[-121.537539,38.613229],[-121.537264,38.613525],[-121.536968,38.61382],[-121.536656,38.614105],[-121.536332,38.61438],[-121.535947,38.614681],[-121.535341,38.615095],[-121.534766,38.615484],[-121.534458,38.615678],[-121.534104,38.615884],[-121.533747,38.616074],[-121.53338,38.616251],[-121.531292,38.617341],[-121.530056,38.617986],[-121.527691,38.61922],[-121.527467,38.619496],[-121.524945,38.620818],[-121.522595,38.622091],[-121.518789,38.624098],[-121.517833,38.6246],[-121.513009,38.627157],[-121.50997,38.628748],[-121.508685,38.629397],[-121.505537,38.631073],[-121.501949,38.632982],[-121.498989,38.634512],[-121.495966,38.636151],[-121.493099,38.637607],[-121.490953,38.638537],[-121.489324,38.639051],[-121.487726,38.639418],[-121.483935,38.639932],[-121.480943,38.640263],[-121.474474,38.64107],[-121.470856,38.641474],[-121.46907,38.641657],[-121.467331,38.641706],[-121.46354,38.641584],[-121.455818,38.641351],[-121.451808,38.641217],[-121.449912,38.64118],[-121.448361,38.641266],[-121.447124,38.641351],[-121.446043,38.641486],[-121.443819,38.641853],[-121.437553,38.642918],[-121.435344,38.643223],[-121.433762,38.64326],[-121.432211,38.643248],[-121.43041,38.643028],[-121.428687,38.642685],[-121.427246,38.642294],[-121.425914,38.641829],[-121.424379,38.641143],[-121.420165,38.639051],[-121.41885,38.638452],[-121.417894,38.638097],[-121.416657,38.637754],[-121.415764,38.637558],[-121.414464,38.637399],[-121.412036,38.637326],[-121.408135,38.637387],[-121.405926,38.637239],[-121.404647,38.637242],[-121.40443,38.637248],[-121.403656,38.637327],[-121.40311,38.637431],[-121.402579,38.637575],[-121.401977,38.637776],[-121.401407,38.638026],[-121.400876,38.638323],[-121.40058,38.638515],[-121.400297,38.638718],[-121.398815,38.639786],[-121.396782,38.641252],[-121.396445,38.641488],[-121.395947,38.64183],[-121.395832,38.64191],[-121.395588,38.642053],[-121.395178,38.642292],[-121.394485,38.642631],[-121.394148,38.642786],[-121.393475,38.643063],[-121.392785,38.643311],[-121.392079,38.643529],[-121.391358,38.643716],[-121.390637,38.643869],[-121.389904,38.643983],[-121.389119,38.644089],[-121.387794,38.644268],[-121.386011,38.644511],[-121.383167,38.64493],[-121.382183,38.645071],[-121.379448,38.645499],[-121.378673,38.645667],[-121.377915,38.645875],[-121.376636,38.646367],[-121.375954,38.646664],[-121.375402,38.646959],[-121.374314,38.647743],[-121.374056,38.647947],[-121.372234,38.649601],[-121.370506,38.651204],[-121.370179,38.651504],[-121.367476,38.653935],[-121.364378,38.656798],[-121.363441,38.657664],[-121.357833,38.66289],[-121.35553,38.665036],[-121.35496,38.66558],[-121.353673,38.666746],[-121.351587,38.668656],[-121.347055,38.672817],[-121.346566,38.673253],[-121.343347,38.676241],[-121.339886,38.67945],[-121.334481,38.684349],[-121.333786,38.684972],[-121.333211,38.685514],[-121.33037,38.688114],[-121.327786,38.690479],[-121.327494,38.69074],[-121.326645,38.691517],[-121.324087,38.693849],[-121.322765,38.695068],[-121.319581,38.697975],[-121.317607,38.69979],[-121.315693,38.701525],[-121.314472,38.702614],[-121.313195,38.703809],[-121.312637,38.704318],[-121.309787,38.706937],[-121.308522,38.708085],[-121.306363,38.710058],[-121.302818,38.7133],[-121.302755,38.713358],[-121.299325,38.716501],[-121.297205,38.718437],[-121.295754,38.719722],[-121.293864,38.721415],[-121.293169,38.722024],[-121.292576,38.722547],[-121.289469,38.725386],[-121.28875,38.726044],[-121.287942,38.726779],[-121.287444,38.72723],[-121.285478,38.729015],[-121.282843,38.731439],[-121.280963,38.733166],[-121.279994,38.73405],[-121.278938,38.735021],[-121.277959,38.735911],[-121.277101,38.736701],[-121.27608,38.737632],[-121.275324,38.738322],[-121.274071,38.73948],[-121.273694,38.739861],[-121.273316,38.740263],[-121.272938,38.740698],[-121.272252,38.741575],[-121.271943,38.742037],[-121.271636,38.742503],[-121.271479,38.74274],[-121.26874,38.746871],[-121.267147,38.749402],[-121.264905,38.752861],[-121.264351,38.753741],[-121.263059,38.755706],[-121.262677,38.756288],[-121.262167,38.757065],[-121.261241,38.75848],[-121.260684,38.759329],[-121.260071,38.760123],[-121.259797,38.760534],[-121.259674,38.760726],[-121.259512,38.760962],[-121.259154,38.761502],[-121.258756,38.762103],[-121.25845,38.762566],[-121.257908,38.763378],[-121.257655,38.763708],[-121.257359,38.764044],[-121.256944,38.764449],[-121.256743,38.764621],[-121.256538,38.764786],[-121.256301,38.764957],[-121.256054,38.765122],[-121.25575,38.765326],[-121.255468,38.765501],[-121.253956,38.766486],[-121.252896,38.767144],[-121.252291,38.767528],[-121.249464,38.769286],[-121.247843,38.770289],[-121.246636,38.771047],[-121.245701,38.771631],[-121.2454,38.771817],[-121.244085,38.772638],[-121.242888,38.773378],[-121.241959,38.773961],[-121.241473,38.774293],[-121.2401,38.775149],[-121.238726,38.776006],[-121.237439,38.776809],[-121.236117,38.777638],[-121.234873,38.778408],[-121.234418,38.778696],[-121.233997,38.778963],[-121.233594,38.779244],[-121.23313,38.779579],[-121.23271,38.779907],[-121.232341,38.780215],[-121.230972,38.781363],[-121.228092,38.783781],[-121.225033,38.786358],[-121.222627,38.788382],[-121.222403,38.788562],[-121.219172,38.791288],[-121.218997,38.791437],[-121.210188,38.79885],[-121.209815,38.799162],[-121.208784,38.800026],[-121.20741,38.801183],[-121.205385,38.80288],[-121.202096,38.805648],[-121.200633,38.806881],[-121.198702,38.808499],[-121.196865,38.810044],[-121.195363,38.811315],[-121.193414,38.81294],[-121.192359,38.813829],[-121.191746,38.814337],[-121.189106,38.816558],[-121.188411,38.817147],[-121.186738,38.818546],[-121.184699,38.820268],[-121.183446,38.821318],[-121.18275,38.8219],[-121.180922,38.823438],[-121.178219,38.825718],[-121.175154,38.828259],[-121.171883,38.831011],[-121.171523,38.831292],[-121.168738,38.833661],[-121.168338,38.833987],[-121.164484,38.837216],[-121.160888,38.840204],[-121.158622,38.842076],[-121.156442,38.843868],[-121.155381,38.844757],[-121.154728,38.845278],[-121.153318,38.846448],[-121.152245,38.847331],[-121.150305,38.848922],[-121.143835,38.854258],[-121.140548,38.856958],[-121.135662,38.86102],[-121.135079,38.861514],[-121.134581,38.862009],[-121.13416,38.86249],[-121.1338,38.862978],[-121.133508,38.863425],[-121.133122,38.864181],[-121.132813,38.865016],[-121.132658,38.865644],[-121.132487,38.866673],[-121.132229,38.868251],[-121.132109,38.868966],[-121.131954,38.869934],[-121.131501,38.872713],[-121.131349,38.873672],[-121.13128,38.874026],[-121.131229,38.874253],[-121.131211,38.874333],[-121.131175,38.87445],[-121.13108,38.874717],[-121.130892,38.875125],[-121.130806,38.875292],[-121.130662,38.875543],[-121.13045,38.875819],[-121.130199,38.876111],[-121.129958,38.876358],[-121.129707,38.876582],[-121.129297,38.876899],[-121.128988,38.877106],[-121.128654,38.877294],[-121.128233,38.877494],[-121.127933,38.877621],[-121.127624,38.877735],[-121.12716,38.877882],[-121.126725,38.877993],[-121.12639,38.878046],[-121.126038,38.878101],[-121.125646,38.87814],[-121.125569,38.878141],[-121.123409,38.878256],[-121.120964,38.878388],[-121.118661,38.878516],[-121.118121,38.878582],[-121.117555,38.87867],[-121.117104,38.878751],[-121.116617,38.878846],[-121.116138,38.878954],[-121.115468,38.879124],[-121.111249,38.880381],[-121.107125,38.881622],[-121.106554,38.881799],[-121.106096,38.881957],[-121.105667,38.88212],[-121.105162,38.882326],[-121.104569,38.882584],[-121.104047,38.882843],[-121.103489,38.883115],[-121.102656,38.883594],[-121.099284,38.885615],[-121.098593,38.886017],[-121.097677,38.886554],[-121.096982,38.886936],[-121.096429,38.887193],[-121.09592,38.887417],[-121.095475,38.887589],[-121.09533,38.88764],[-121.09514,38.88771],[-121.094642,38.88788],[-121.093645,38.888146],[-121.092053,38.888528],[-121.09134,38.888708],[-121.090625,38.888932],[-121.090004,38.889178],[-121.08932,38.889502],[-121.088527,38.889978],[-121.087973,38.890395],[-121.087297,38.890985],[-121.08653,38.891614],[-121.08593,38.892041],[-121.085412,38.892358],[-121.084862,38.892655],[-121.084133,38.893035],[-121.083588,38.893312],[-121.083029,38.893603],[-121.082542,38.89395],[-121.082254,38.894208],[-121.081941,38.894524],[-121.081792,38.894694],[-121.081657,38.894852],[-121.08139,38.895126],[-121.081115,38.895393],[-121.080867,38.895634],[-121.080669,38.895787],[-121.080472,38.895928],[-121.080214,38.896081],[-121.079768,38.896342],[-121.07885,38.896823],[-121.078154,38.89721],[-121.077665,38.897511],[-121.077313,38.897765],[-121.077106,38.897956],[-121.07693,38.89811],[-121.074976,38.89984],[-121.074315,38.900434],[-121.073963,38.900745],[-121.073552,38.901115],[-121.073202,38.901432],[-121.072687,38.901886],[-121.072581,38.901997],[-121.072329,38.902261],[-121.072138,38.90246],[-121.071871,38.902841],[-121.071669,38.903164],[-121.071462,38.903522],[-121.07124,38.904167],[-121.07119,38.904438],[-121.071107,38.904966],[-121.071126,38.905192],[-121.071142,38.905508],[-121.071236,38.906221],[-121.071262,38.906515],[-121.071254,38.906722],[-121.071236,38.906996],[-121.071202,38.907223],[-121.071142,38.90747],[-121.071082,38.90769],[-121.070902,38.908064],[-121.070713,38.908412],[-121.070515,38.908685],[-121.070284,38.908939],[-121.070078,38.909153],[-121.069854,38.909353],[-121.069262,38.909794],[-121.068344,38.910462],[-121.067752,38.910923],[-121.067511,38.91115],[-121.067322,38.911357],[-121.06625,38.912746],[-121.065984,38.913093],[-121.065786,38.913327],[-121.065572,38.913554],[-121.065348,38.913775],[-121.064778,38.914311],[-121.063985,38.915021],[-121.063256,38.915672],[-121.062919,38.915968],[-121.061452,38.917269],[-121.060855,38.917817],[-121.060576,38.918102],[-121.059967,38.918843],[-121.059632,38.919418],[-121.059231,38.919979],[-121.05777,38.922469],[-121.057366,38.923217],[-121.057169,38.923685],[-121.056765,38.92466],[-121.056516,38.925434],[-121.056428,38.92581],[-121.05637,38.926102],[-121.055873,38.928339],[-121.055604,38.929637],[-121.055111,38.932081],[-121.054964,38.932807],[-121.054879,38.933227],[-121.054705,38.934045],[-121.054634,38.934299],[-121.054554,38.934525],[-121.054514,38.934633],[-121.054442,38.934799],[-121.054319,38.935052],[-121.054155,38.935332],[-121.053853,38.935784],[-121.053598,38.936104],[-121.053126,38.936771],[-121.052663,38.937426],[-121.052113,38.93826],[-121.051751,38.938918],[-121.051423,38.939555],[-121.0512,38.939985],[-121.050963,38.940417],[-121.050706,38.940904],[-121.050226,38.941659],[-121.049504,38.942441],[-121.049086,38.942764],[-121.048915,38.942895],[-121.048326,38.943361],[-121.047373,38.944101],[-121.046038,38.945296],[-121.043871,38.947453],[-121.042873,38.948449],[-121.04247,38.948848],[-121.041889,38.949497],[-121.040776,38.950781],[-121.039892,38.951792],[-121.039048,38.952799],[-121.038551,38.953356],[-121.038169,38.953801],[-121.037335,38.954543],[-121.037015,38.954815],[-121.036681,38.955076],[-121.036038,38.955553],[-121.035554,38.955877],[-121.033398,38.95722],[-121.031006,38.958693],[-121.030085,38.959281],[-121.026616,38.961482],[-121.024773,38.962617],[-121.022837,38.963773],[-121.022293,38.964145],[-121.02186,38.964518],[-121.021587,38.964767],[-121.02106,38.96545],[-121.020577,38.966186],[-121.020289,38.966629],[-121.020014,38.967048],[-121.01943,38.967785],[-121.018966,38.968292],[-121.018568,38.96867],[-121.01764,38.969664],[-121.016002,38.971418],[-121.015182,38.972495],[-121.014276,38.973796],[-121.012976,38.975579],[-121.011657,38.977332],[-121.010692,38.978671],[-121.009454,38.980425],[-121.008062,38.982297],[-121.007634,38.982803],[-121.006756,38.983849],[-121.005651,38.985027],[-121.003581,38.987158],[-121.00146,38.98938],[-121.000796,38.99011],[-121.000164,38.991062],[-120.998487,38.994048],[-120.998386,38.994227],[-120.997629,38.995641],[-120.997207,38.996673],[-120.996567,38.998232],[-120.995964,38.999763],[-120.995543,39.000532],[-120.995187,39.0013],[-120.994573,39.002187],[-120.993906,39.003066],[-120.993433,39.00373],[-120.992982,39.004323],[-120.992363,39.005085],[-120.991698,39.006028],[-120.991269,39.006587],[-120.990499,39.007651],[-120.990107,39.008308],[-120.989784,39.008937],[-120.989579,39.010014],[-120.989606,39.010602],[-120.989748,39.012462],[-120.98971,39.013039],[-120.989536,39.013645],[-120.989356,39.014176],[-120.989178,39.014542],[-120.98899,39.014868],[-120.988795,39.015134],[-120.988542,39.015442],[-120.988155,39.015804],[-120.987668,39.016075],[-120.987374,39.016268],[-120.986911,39.01652],[-120.986386,39.016773],[-120.982797,39.018387],[-120.982054,39.018808],[-120.981457,39.019244],[-120.981062,39.019603],[-120.980792,39.019876],[-120.980549,39.020158],[-120.979628,39.021236],[-120.978821,39.022242],[-120.978467,39.02288],[-120.978238,39.023468],[-120.977499,39.026001],[-120.97693,39.027952],[-120.976735,39.028788],[-120.976447,39.030259],[-120.976356,39.030717],[-120.976278,39.031117],[-120.975965,39.032698],[-120.975847,39.033107],[-120.97562,39.033622],[-120.975342,39.034122],[-120.97498,39.034631],[-120.974258,39.035649],[-120.973984,39.036066],[-120.9738,39.036402],[-120.973617,39.036796],[-120.97335,39.037583],[-120.973252,39.038022],[-120.97319,39.03847],[-120.973172,39.038996],[-120.973204,39.03954],[-120.973293,39.040078],[-120.973432,39.040605],[-120.973605,39.041165],[-120.973798,39.041759],[-120.974053,39.042641],[-120.97411,39.042996],[-120.97415,39.043343],[-120.974127,39.044084],[-120.974092,39.044281],[-120.974037,39.044569],[-120.973953,39.044865],[-120.973802,39.045277],[-120.973515,39.045804],[-120.973274,39.046293],[-120.972976,39.046921],[-120.972541,39.04784],[-120.972048,39.048849],[-120.971404,39.050162],[-120.970687,39.051772],[-120.970084,39.053435],[-120.969206,39.056523],[-120.968578,39.058989],[-120.967937,39.061467],[-120.967598,39.06228],[-120.967038,39.063162],[-120.966605,39.063753],[-120.965372,39.065176],[-120.964762,39.065941],[-120.964501,39.066375],[-120.964244,39.066896],[-120.964038,39.068142],[-120.963922,39.070177],[-120.96385,39.070524],[-120.963735,39.071079],[-120.962767,39.072965],[-120.962207,39.073954],[-120.962016,39.07447],[-120.961724,39.074993],[-120.961578,39.07528],[-120.961408,39.075591],[-120.959538,39.078983],[-120.959076,39.079868],[-120.95853,39.0809],[-120.957783,39.08235],[-120.956039,39.0857],[-120.955563,39.086589],[-120.955178,39.087145],[-120.954875,39.087542],[-120.951842,39.090498],[-120.950995,39.091466],[-120.95013,39.092914],[-120.949737,39.094054],[-120.949532,39.095478],[-120.949402,39.096606],[-120.94925,39.097908],[-120.949184,39.098436],[-120.948922,39.100294],[-120.9486,39.101751],[-120.94849,39.102737],[-120.948167,39.104477],[-120.948142,39.104641],[-120.948089,39.104848],[-120.947892,39.105401],[-120.947731,39.105828],[-120.947328,39.106674],[-120.946852,39.107556],[-120.945743,39.110098],[-120.944805,39.112531],[-120.944244,39.114141],[-120.943529,39.115835],[-120.943196,39.116434],[-120.942835,39.116952],[-120.942392,39.117533],[-120.942027,39.118041],[-120.941716,39.118532],[-120.941501,39.119073],[-120.941134,39.120518],[-120.9409,39.121655],[-120.940858,39.121818],[-120.940814,39.121955],[-120.940664,39.122312],[-120.940522,39.122602],[-120.94038,39.122864],[-120.940145,39.123243],[-120.939882,39.123671],[-120.939329,39.124574],[-120.939061,39.125035],[-120.938777,39.125514],[-120.938404,39.126121],[-120.938098,39.126608],[-120.937828,39.127067],[-120.937548,39.1276],[-120.937366,39.127995],[-120.937193,39.128397],[-120.937065,39.128721],[-120.936958,39.128998],[-120.93683,39.12939],[-120.936672,39.12989],[-120.936509,39.130447],[-120.936303,39.131115],[-120.936173,39.131487],[-120.936093,39.131687],[-120.935997,39.131887],[-120.935865,39.132095],[-120.935703,39.132298],[-120.935534,39.132474],[-120.935372,39.132624],[-120.935156,39.132791],[-120.934943,39.132928],[-120.934692,39.133072],[-120.934388,39.133204],[-120.934129,39.133296],[-120.933267,39.133564],[-120.932622,39.133765],[-120.932302,39.133875],[-120.932043,39.133994],[-120.931839,39.134098],[-120.931611,39.134246],[-120.931383,39.134423],[-120.931204,39.134583],[-120.931053,39.134745],[-120.930925,39.134894],[-120.930756,39.13512],[-120.930599,39.135361],[-120.930363,39.135715],[-120.930046,39.136172],[-120.929684,39.136711],[-120.929391,39.137165],[-120.929196,39.13746],[-120.929001,39.137733],[-120.928891,39.13788],[-120.928764,39.138016],[-120.928584,39.138195],[-120.928406,39.138351],[-120.928197,39.138494],[-120.927957,39.138632],[-120.927725,39.138743],[-120.927388,39.138877],[-120.927073,39.138972],[-120.92677,39.139036],[-120.926395,39.139089],[-120.926048,39.139108],[-120.925699,39.139101],[-120.92434,39.138946],[-120.923021,39.1388],[-120.921831,39.138673],[-120.92102,39.138583],[-120.920685,39.13856],[-120.920341,39.138552],[-120.920011,39.138561],[-120.919734,39.13858],[-120.919431,39.138613],[-120.919121,39.138664],[-120.918762,39.138742],[-120.918373,39.138843],[-120.917997,39.138967],[-120.91762,39.139134],[-120.917276,39.139313],[-120.916952,39.139512],[-120.915915,39.140241],[-120.914817,39.141024],[-120.913877,39.141689],[-120.913554,39.141928],[-120.913232,39.142184],[-120.913013,39.142392],[-120.912809,39.14261],[-120.912656,39.142798],[-120.912481,39.143048],[-120.91232,39.1433],[-120.912145,39.143676],[-120.911898,39.144313],[-120.911673,39.144873],[-120.911565,39.145105],[-120.911451,39.145286],[-120.911351,39.145431],[-120.911221,39.145587],[-120.911081,39.145742],[-120.910922,39.145912],[-120.910772,39.146042],[-120.910537,39.146224],[-120.910309,39.146376],[-120.910083,39.14652],[-120.909795,39.146673],[-120.909559,39.146776],[-120.909256,39.146881],[-120.908999,39.146956],[-120.908784,39.147011],[-120.908477,39.147067],[-120.908169,39.147105],[-120.907952,39.147117],[-120.907735,39.147123],[-120.907403,39.147113],[-120.905654,39.147031],[-120.905174,39.147044],[-120.904732,39.147085],[-120.904328,39.147151],[-120.90386,39.147278],[-120.903505,39.147395],[-120.903108,39.147541],[-120.902699,39.147719],[-120.901294,39.148431],[-120.900653,39.148728],[-120.898589,39.149658],[-120.897764,39.150045],[-120.896724,39.150535],[-120.895925,39.150951],[-120.89514,39.151278],[-120.893993,39.151822],[-120.892834,39.152387],[-120.891171,39.153141],[-120.889529,39.153879],[-120.888267,39.154459],[-120.887506,39.154795],[-120.886489,39.155259],[-120.882914,39.156831],[-120.878111,39.158491],[-120.877065,39.159031],[-120.876462,39.159519],[-120.875914,39.160101],[-120.875607,39.160653],[-120.875363,39.16122],[-120.875189,39.16184],[-120.875254,39.162711],[-120.875395,39.163812],[-120.87555,39.164451],[-120.875673,39.16516],[-120.875662,39.166058],[-120.875645,39.166341],[-120.875471,39.167012],[-120.875254,39.167456],[-120.874786,39.168219],[-120.874211,39.168953],[-120.872925,39.169917],[-120.872689,39.170058],[-120.872443,39.170188],[-120.872133,39.170322],[-120.871454,39.170572],[-120.870728,39.170791],[-120.867635,39.171492],[-120.866669,39.171731],[-120.862039,39.172749],[-120.861253,39.172987],[-120.860801,39.173163],[-120.860501,39.173292],[-120.860227,39.17343],[-120.859709,39.173728],[-120.859281,39.174019],[-120.858623,39.174561],[-120.858109,39.174989],[-120.856111,39.17667],[-120.854936,39.17764],[-120.853996,39.17841],[-120.852566,39.179615],[-120.850731,39.181081],[-120.849808,39.181859],[-120.8495,39.182165],[-120.849011,39.182704],[-120.848339,39.183705],[-120.847837,39.184475],[-120.847462,39.184844],[-120.847037,39.185246],[-120.846664,39.185539],[-120.846384,39.18572],[-120.845624,39.186181],[-120.844387,39.186802],[-120.842065,39.187937],[-120.841066,39.188281],[-120.839537,39.18851],[-120.837639,39.188685],[-120.837076,39.188723],[-120.836131,39.188778],[-120.83557,39.188806],[-120.834953,39.188797],[-120.834516,39.18876],[-120.833868,39.188652],[-120.833219,39.188481],[-120.832422,39.18821],[-120.830941,39.187807],[-120.830126,39.187715],[-120.829714,39.187712],[-120.82931,39.187726],[-120.824752,39.188344],[-120.823646,39.188586],[-120.822358,39.18916],[-120.820302,39.190516],[-120.818863,39.19144],[-120.817851,39.192324],[-120.817458,39.19286],[-120.817066,39.19428],[-120.816819,39.195165],[-120.816358,39.19597],[-120.815616,39.196986],[-120.814551,39.198384],[-120.814186,39.198966],[-120.81409,39.199134],[-120.813475,39.200302],[-120.813205,39.200698],[-120.812856,39.201109],[-120.812189,39.201641],[-120.811886,39.20183],[-120.81102,39.202213],[-120.810217,39.202427],[-120.808884,39.202632],[-120.805889,39.203055],[-120.804673,39.203173],[-120.803564,39.203198],[-120.801867,39.20301],[-120.800153,39.202784],[-120.799413,39.202707],[-120.798472,39.202734],[-120.797938,39.202807],[-120.797442,39.202912],[-120.796912,39.203097],[-120.79636,39.203329],[-120.795716,39.203733],[-120.795231,39.204132],[-120.794721,39.204546],[-120.794022,39.205145],[-120.793206,39.205691],[-120.791951,39.206337],[-120.790612,39.206979],[-120.789669,39.207426],[-120.788793,39.207837],[-120.78735,39.208571],[-120.786583,39.209001],[-120.785552,39.209591],[-120.784551,39.210163],[-120.783713,39.210644],[-120.781173,39.212091],[-120.780207,39.212644],[-120.777298,39.214299],[-120.776656,39.214753],[-120.775934,39.215417],[-120.775589,39.215836],[-120.77532,39.216239],[-120.774137,39.217943],[-120.773397,39.218772],[-120.772695,39.219394],[-120.770635,39.221058],[-120.768726,39.22245],[-120.768109,39.223115],[-120.767601,39.223891],[-120.76653,39.225436],[-120.765395,39.226235],[-120.763975,39.226821],[-120.762766,39.227453],[-120.761873,39.228182],[-120.761458,39.228852],[-120.760422,39.230526],[-120.759597,39.231243],[-120.758777,39.231656],[-120.756793,39.232678],[-120.755724,39.233532],[-120.755271,39.234027],[-120.75487,39.23438],[-120.753455,39.235764],[-120.75293,39.236738],[-120.752666,39.237417],[-120.75251,39.238023],[-120.752412,39.238729],[-120.7524,39.239124],[-120.75235,39.240229],[-120.752211,39.240787],[-120.752002,39.241251],[-120.751732,39.241663],[-120.751273,39.242178],[-120.750824,39.24255],[-120.748227,39.244038],[-120.746552,39.244684],[-120.745907,39.244966],[-120.745047,39.245357],[-120.744281,39.245948],[-120.74358,39.246636],[-120.742063,39.248224],[-120.740593,39.249724],[-120.738955,39.251416],[-120.737179,39.253179],[-120.736287,39.253659],[-120.734725,39.254299],[-120.733121,39.254998],[-120.732327,39.255602],[-120.731884,39.25598],[-120.731514,39.256368],[-120.731108,39.256918],[-120.730533,39.257925],[-120.729329,39.260213],[-120.72857,39.261693],[-120.727012,39.264652],[-120.726233,39.266217],[-120.725933,39.266502],[-120.725473,39.266945],[-120.724958,39.267305],[-120.724563,39.267527],[-120.720518,39.268871],[-120.717582,39.26991],[-120.716486,39.270291],[-120.71551,39.270737],[-120.714536,39.271592],[-120.714359,39.271813],[-120.714201,39.27204],[-120.714055,39.272288],[-120.713938,39.272542],[-120.713854,39.272784],[-120.713785,39.273035],[-120.713732,39.273296],[-120.71371,39.273537],[-120.713706,39.273813],[-120.713718,39.274074],[-120.713813,39.275509],[-120.713858,39.2759],[-120.713871,39.276163],[-120.713867,39.276427],[-120.713842,39.276686],[-120.713797,39.276943],[-120.713734,39.277206],[-120.713657,39.27746],[-120.713564,39.277713],[-120.713455,39.277961],[-120.713328,39.278194],[-120.713174,39.278439],[-120.713013,39.278667],[-120.712835,39.278896],[-120.712644,39.27911],[-120.712439,39.279314],[-120.712222,39.279509],[-120.711983,39.279702],[-120.711751,39.27987],[-120.711481,39.280048],[-120.711206,39.280207],[-120.710929,39.280351],[-120.710636,39.280491],[-120.709808,39.280873],[-120.70786,39.281751],[-120.707576,39.281907],[-120.703925,39.283599],[-120.703505,39.283794],[-120.700946,39.284975],[-120.699698,39.285554],[-120.698855,39.285946],[-120.692674,39.288805],[-120.687731,39.291084],[-120.687451,39.29121],[-120.687159,39.291328],[-120.686869,39.291432],[-120.686544,39.291528],[-120.686225,39.291604],[-120.685892,39.291665],[-120.685544,39.291712],[-120.685232,39.291738],[-120.684895,39.291754],[-120.683727,39.291808],[-120.683376,39.291825],[-120.683035,39.291837],[-120.682701,39.291859],[-120.682369,39.291891],[-120.682024,39.291937],[-120.681673,39.291994],[-120.681328,39.29206],[-120.68099,39.29214],[-120.680703,39.292218],[-120.680398,39.292311],[-120.6801,39.292412],[-120.679816,39.292518],[-120.679608,39.292602],[-120.679403,39.292688],[-120.67907,39.29284],[-120.678783,39.292986],[-120.678504,39.293139],[-120.678227,39.293304],[-120.677963,39.29348],[-120.675926,39.2949],[-120.675735,39.295038],[-120.675565,39.295175],[-120.675397,39.29533],[-120.675239,39.295491],[-120.675105,39.295647],[-120.674976,39.295814],[-120.674839,39.29601],[-120.674712,39.296223],[-120.674172,39.297183],[-120.674039,39.297399],[-120.673895,39.297613],[-120.673718,39.297827],[-120.673526,39.298032],[-120.673323,39.298219],[-120.673106,39.298388],[-120.672869,39.298552],[-120.672604,39.298712],[-120.672327,39.298858],[-120.672072,39.298975],[-120.671817,39.299074],[-120.671561,39.29916],[-120.668414,39.300167],[-120.668094,39.300265],[-120.667751,39.300363],[-120.667397,39.300456],[-120.666633,39.300633],[-120.665612,39.300883],[-120.663091,39.301482],[-120.661286,39.301944],[-120.660535,39.302126],[-120.657426,39.302868],[-120.655704,39.30332],[-120.654427,39.303621],[-120.652319,39.304124],[-120.650094,39.304543],[-120.648859,39.304795],[-120.648183,39.304992],[-120.64747,39.305238],[-120.646375,39.305681],[-120.639576,39.309112],[-120.637472,39.309596],[-120.634549,39.309725],[-120.633826,39.309769],[-120.63292,39.309925],[-120.631795,39.310309],[-120.630829,39.310846],[-120.627558,39.312995],[-120.626096,39.313976],[-120.624718,39.314515],[-120.62327,39.314836],[-120.622667,39.3149],[-120.619323,39.314969],[-120.617886,39.315232],[-120.617198,39.315427],[-120.616456,39.31561],[-120.614678,39.316387],[-120.613312,39.317105],[-120.611158,39.318195],[-120.607467,39.320094],[-120.60527,39.321184],[-120.604678,39.321551],[-120.604305,39.321874],[-120.603798,39.322418],[-120.603417,39.323072],[-120.603088,39.323617],[-120.602778,39.324087],[-120.602464,39.324478],[-120.60203,39.324887],[-120.60157,39.325182],[-120.601167,39.325386],[-120.60081,39.325549],[-120.600336,39.325747],[-120.599624,39.325901],[-120.599074,39.32597],[-120.598457,39.325967],[-120.59767,39.325976],[-120.595631,39.326011],[-120.594951,39.326138],[-120.594393,39.326344],[-120.593607,39.326697],[-120.592702,39.327287],[-120.591218,39.328682],[-120.590392,39.329263],[-120.589762,39.329615],[-120.588824,39.32998],[-120.587751,39.330141],[-120.586664,39.330168],[-120.58575,39.330054],[-120.573939,39.326921],[-120.57279,39.326486],[-120.5717,39.325869],[-120.570286,39.324771],[-120.56799,39.322415],[-120.567591,39.321998],[-120.56609,39.320678],[-120.56536,39.320175],[-120.565094,39.320005],[-120.564823,39.319858],[-120.564153,39.319525],[-120.563233,39.319137],[-120.562166,39.31872],[-120.561715,39.318572],[-120.560775,39.318214],[-120.55986,39.317726],[-120.556937,39.315759],[-120.556238,39.315423],[-120.555905,39.315316],[-120.555324,39.315118],[-120.553183,39.314484],[-120.55145,39.313809],[-120.547198,39.311415],[-120.54481,39.310097],[-120.543462,39.30934],[-120.541291,39.307924],[-120.538916,39.306304],[-120.538489,39.306038],[-120.537928,39.305756],[-120.537484,39.305582],[-120.537049,39.305426],[-120.536634,39.305311],[-120.536084,39.305169],[-120.534838,39.304862],[-120.533725,39.304569],[-120.532945,39.304412],[-120.532553,39.304368],[-120.532227,39.304338],[-120.531831,39.304341],[-120.531319,39.30437],[-120.530705,39.304464],[-120.528338,39.305064],[-120.527762,39.305163],[-120.527246,39.30522],[-120.526795,39.305235],[-120.525292,39.305203],[-120.525156,39.305202],[-120.524302,39.305195],[-120.523772,39.305204],[-120.523372,39.305241],[-120.522985,39.305302],[-120.522408,39.305455],[-120.521855,39.305633],[-120.521249,39.30595],[-120.520746,39.30627],[-120.520346,39.306636],[-120.519926,39.307098],[-120.5197,39.307459],[-120.51947,39.307916],[-120.519298,39.308437],[-120.518602,39.310153],[-120.51848,39.31041],[-120.518306,39.310689],[-120.518017,39.311063],[-120.517736,39.31139],[-120.517285,39.311806],[-120.51692,39.312065],[-120.516479,39.312367],[-120.515975,39.312632],[-120.515446,39.312864],[-120.514972,39.31302],[-120.514701,39.313093],[-120.514333,39.313181],[-120.513955,39.31325],[-120.513353,39.313326],[-120.512911,39.313347],[-120.512495,39.313352],[-120.511937,39.313321],[-120.511435,39.313265],[-120.510812,39.313133],[-120.506867,39.312146],[-120.506259,39.312011],[-120.505762,39.311935],[-120.505097,39.311828],[-120.504556,39.311779],[-120.50394,39.311738],[-120.503375,39.311715],[-120.501019,39.311691],[-120.499447,39.311678],[-120.498912,39.311674],[-120.496309,39.311621],[-120.491774,39.311577],[-120.490639,39.311572],[-120.489989,39.311612],[-120.489379,39.311677],[-120.488262,39.311851],[-120.485981,39.312206],[-120.476889,39.313614],[-120.4744,39.313641],[-120.47095,39.313481],[-120.470666,39.313479],[-120.469785,39.313465],[-120.469268,39.313461],[-120.468392,39.313548],[-120.463543,39.314909],[-120.462172,39.315154],[-120.460968,39.315175],[-120.458325,39.314842],[-120.457975,39.314789],[-120.451537,39.313823],[-120.449406,39.313661],[-120.448555,39.313656],[-120.447576,39.313737],[-120.44587,39.314102],[-120.44501,39.314272],[-120.441848,39.314893],[-120.436892,39.315819],[-120.436206,39.315952],[-120.434274,39.316516],[-120.430386,39.317891],[-120.419709,39.322061],[-120.417563,39.322871],[-120.416409,39.323325],[-120.415899,39.323522],[-120.415355,39.323688],[-120.414894,39.323777],[-120.414362,39.32382],[-120.413658,39.323847],[-120.412842,39.323774],[-120.411503,39.323442],[-120.409383,39.322678],[-120.408169,39.322297],[-120.407024,39.32208],[-120.405855,39.321979],[-120.40492,39.322027],[-120.403779,39.32214],[-120.401762,39.322612],[-120.399126,39.32323],[-120.397164,39.323685],[-120.39596,39.32395],[-120.394716,39.324248],[-120.393858,39.324482],[-120.393148,39.324726],[-120.392426,39.325094],[-120.391799,39.325417],[-120.390075,39.326339],[-120.389387,39.326705],[-120.388617,39.327058],[-120.387769,39.327338],[-120.386898,39.327474],[-120.386049,39.327495],[-120.385137,39.327386],[-120.384293,39.327201],[-120.382241,39.326661],[-120.381635,39.326575],[-120.381034,39.326443],[-120.380764,39.326402],[-120.379351,39.32621],[-120.376073,39.326177],[-120.372788,39.326704],[-120.371345,39.327116],[-120.367827,39.328694],[-120.365958,39.329565],[-120.356377,39.334224],[-120.355464,39.334766],[-120.352208,39.337348],[-120.351359,39.337937],[-120.350823,39.33825],[-120.350007,39.338589],[-120.349321,39.338827],[-120.347651,39.339306],[-120.346518,39.339623],[-120.342786,39.340719],[-120.337754,39.342144],[-120.336919,39.342379],[-120.336202,39.342535],[-120.33548,39.342659],[-120.334571,39.342773],[-120.333712,39.342826],[-120.332841,39.342838],[-120.331922,39.342793],[-120.329827,39.342687],[-120.326991,39.342551],[-120.325999,39.342491],[-120.325319,39.342406],[-120.324686,39.342261],[-120.324127,39.342104],[-120.323514,39.341859],[-120.322177,39.341332],[-120.321384,39.341106],[-120.320696,39.340991],[-120.319899,39.340958],[-120.319086,39.341015],[-120.318234,39.341172],[-120.316332,39.341656],[-120.315765,39.341743],[-120.315218,39.34178],[-120.314694,39.341771],[-120.314206,39.341734],[-120.313679,39.341622],[-120.313178,39.341493],[-120.312631,39.341293],[-120.312131,39.341033],[-120.311455,39.340556],[-120.307966,39.337971],[-120.307208,39.337062],[-120.306839,39.336504],[-120.306555,39.335661],[-120.306049,39.334314],[-120.305028,39.332415],[-120.302785,39.329335],[-120.302435,39.328956],[-120.302247,39.328724],[-120.301864,39.32835],[-120.301466,39.328113],[-120.301242,39.327987],[-120.300993,39.327843],[-120.30077,39.327728],[-120.300341,39.327569],[-120.299037,39.327276],[-120.298135,39.327164],[-120.296951,39.32713],[-120.296499,39.327162],[-120.296007,39.327237],[-120.295637,39.327396],[-120.295286,39.327535],[-120.294462,39.32802],[-120.293689,39.328544],[-120.292403,39.329573],[-120.292334,39.329634],[-120.291882,39.330033],[-120.291114,39.330457],[-120.290241,39.330785],[-120.289465,39.330942],[-120.288716,39.331018],[-120.288079,39.330992],[-120.287591,39.330926],[-120.287062,39.330807],[-120.286631,39.330681],[-120.285907,39.330431],[-120.284615,39.330054],[-120.28402,39.329887],[-120.282593,39.329423],[-120.276488,39.327338],[-120.275199,39.327095],[-120.272954,39.327137],[-120.271676,39.327326],[-120.268322,39.328554],[-120.266588,39.328969],[-120.264455,39.329089],[-120.262985,39.32952],[-120.260123,39.33072],[-120.259391,39.330979],[-120.258318,39.331278],[-120.257575,39.331375],[-120.256612,39.331427],[-120.254638,39.331344],[-120.251101,39.331107],[-120.249344,39.330977],[-120.248003,39.330889],[-120.246694,39.330708],[-120.244388,39.33023],[-120.243345,39.329906],[-120.24254,39.329566],[-120.24168,39.329108],[-120.240845,39.32851],[-120.239523,39.327497],[-120.239138,39.327217],[-120.238656,39.326881],[-120.237846,39.326448],[-120.236837,39.326086],[-120.236263,39.325932],[-120.232923,39.32519],[-120.231567,39.324969],[-120.229112,39.324624],[-120.225202,39.324165],[-120.224131,39.324012],[-120.223071,39.323878],[-120.22057,39.323569],[-120.217268,39.323177],[-120.216389,39.323087],[-120.215243,39.323052],[-120.212964,39.323041],[-120.21133,39.323023],[-120.209451,39.323009],[-120.208,39.322986],[-120.207351,39.322979],[-120.205663,39.322972],[-120.203792,39.322939],[-120.202533,39.32295],[-120.201729,39.322991],[-120.20087,39.32311],[-120.200226,39.323238],[-120.199522,39.32341],[-120.197581,39.323856],[-120.196203,39.32419],[-120.195398,39.324395],[-120.194601,39.324664],[-120.193646,39.32506],[-120.192718,39.325541],[-120.192047,39.325959],[-120.191488,39.326372],[-120.191105,39.326692],[-120.190863,39.326924],[-120.190578,39.327197],[-120.190155,39.327608],[-120.189607,39.328157],[-120.189041,39.328686],[-120.188599,39.329074],[-120.18816,39.329448],[-120.187706,39.329805],[-120.186923,39.330378],[-120.18629,39.330793],[-120.185527,39.33128],[-120.184111,39.332118],[-120.179517,39.334708],[-120.179121,39.334933],[-120.178611,39.335203],[-120.178288,39.335354],[-120.178144,39.335416],[-120.177773,39.335571],[-120.177357,39.335734],[-120.177095,39.33583],[-120.176266,39.336099],[-120.175674,39.336246],[-120.174845,39.336408],[-120.174039,39.336563],[-120.171863,39.336961],[-120.170626,39.337201],[-120.170013,39.337352],[-120.169385,39.337519],[-120.16878,39.337732],[-120.168087,39.338024],[-120.167619,39.338252],[-120.166515,39.338895],[-120.165735,39.339402],[-120.162662,39.341853],[-120.158738,39.345071],[-120.158384,39.345355],[-120.148632,39.353137],[-120.146514,39.354944],[-120.14612,39.35526],[-120.144836,39.356238],[-120.143925,39.356913],[-120.143556,39.357141],[-120.142925,39.35756],[-120.142337,39.357866],[-120.141569,39.358268],[-120.139837,39.358937],[-120.127061,39.362517],[-120.12603,39.362802],[-120.123798,39.36336],[-120.122773,39.363549],[-120.119886,39.363733],[-120.119373,39.363762],[-120.118855,39.363849],[-120.118222,39.364028],[-120.117647,39.364284],[-120.117171,39.364507],[-120.116764,39.364833],[-120.115998,39.365565],[-120.115601,39.366149],[-120.115271,39.366965],[-120.115173,39.367214],[-120.114794,39.368344],[-120.114717,39.368589],[-120.114638,39.368837],[-120.113868,39.370937],[-120.113639,39.371448],[-120.11319,39.371971],[-120.112407,39.372626],[-120.111496,39.37316],[-120.11021,39.373681],[-120.10922,39.374044],[-120.108045,39.374456],[-120.106869,39.374865],[-120.105762,39.375377],[-120.105101,39.375771],[-120.104412,39.376242],[-120.103688,39.376755],[-120.101214,39.378407],[-120.097795,39.380542],[-120.094389,39.382622],[-120.093517,39.382993],[-120.092589,39.383173],[-120.089012,39.383558],[-120.085214,39.383878],[-120.084378,39.383952],[-120.083571,39.383965],[-120.082025,39.383858],[-120.081644,39.383775],[-120.081229,39.383713],[-120.080202,39.383472],[-120.079164,39.383126],[-120.078503,39.382833],[-120.078005,39.382556],[-120.076316,39.381625],[-120.074806,39.380728],[-120.073338,39.379789],[-120.072823,39.379322],[-120.072615,39.379028],[-120.071636,39.377345],[-120.071164,39.376796],[-120.070556,39.376287],[-120.069616,39.375677],[-120.067022,39.374645],[-120.066732,39.374534],[-120.063732,39.373327],[-120.062494,39.372961],[-120.059961,39.372682],[-120.054212,39.372113],[-120.052799,39.371885],[-120.051829,39.371559],[-120.049471,39.370306],[-120.048482,39.369914],[-120.047127,39.369632],[-120.045443,39.369689],[-120.041674,39.370234],[-120.040376,39.370417],[-120.039024,39.370748],[-120.034224,39.372625],[-120.033295,39.373008],[-120.032605,39.373511],[-120.032131,39.374082],[-120.031282,39.375454],[-120.030541,39.376134],[-120.028627,39.376956],[-120.025688,39.377902],[-120.024512,39.378314],[-120.024115,39.378522],[-120.023764,39.378797],[-120.022963,39.37953],[-120.022622,39.380214],[-120.022441,39.381285],[-120.022599,39.382027],[-120.022888,39.382775],[-120.023878,39.384286],[-120.024335,39.384938],[-120.024766,39.385688],[-120.02487,39.386326],[-120.024791,39.387382],[-120.024515,39.388733],[-120.024548,39.389337],[-120.024785,39.38997],[-120.025362,39.391663],[-120.025554,39.392318],[-120.025622,39.392809],[-120.025599,39.393321],[-120.025537,39.393734],[-120.025428,39.394061],[-120.025258,39.394516],[-120.025133,39.394754],[-120.024972,39.394989],[-120.02482,39.395171],[-120.024611,39.395379],[-120.023969,39.395989],[-120.023344,39.396573],[-120.022922,39.396983],[-120.022583,39.397388],[-120.022351,39.397735],[-120.022161,39.3981],[-120.022019,39.398485],[-120.021928,39.398946],[-120.021885,39.399396],[-120.021936,39.399849],[-120.02203,39.400237],[-120.02236,39.401442],[-120.022531,39.401784],[-120.022749,39.402132],[-120.02304,39.40247],[-120.02337,39.402772],[-120.023761,39.403062],[-120.024251,39.403346],[-120.024492,39.403483],[-120.024921,39.40372],[-120.025272,39.403968],[-120.025483,39.404087],[-120.025889,39.404417],[-120.026318,39.404924],[-120.026618,39.405402],[-120.026812,39.405943],[-120.026865,39.406661],[-120.027036,39.409678],[-120.027144,39.410145],[-120.027763,39.411271],[-120.02806,39.411926],[-120.028315,39.412588],[-120.028595,39.414388],[-120.028734,39.415082],[-120.029127,39.415899],[-120.029657,39.416608],[-120.031563,39.418684],[-120.032814,39.420117],[-120.033344,39.420671],[-120.034703,39.421808],[-120.035088,39.422195],[-120.035342,39.422593],[-120.035595,39.423057],[-120.035732,39.423553],[-120.03577,39.423947],[-120.035726,39.424354],[-120.035635,39.424676],[-120.035599,39.4248],[-120.034356,39.427967],[-120.033809,39.429362],[-120.033516,39.430105],[-120.033126,39.430668],[-120.032672,39.431153],[-120.03199,39.431637],[-120.030302,39.432574],[-120.029003,39.43335],[-120.027693,39.434178],[-120.025379,39.435703],[-120.022482,39.437605],[-120.020969,39.438588],[-120.019542,39.439544],[-120.018493,39.440231],[-120.017995,39.44051],[-120.017495,39.440732],[-120.016729,39.440999],[-120.015858,39.441279],[-120.014306,39.441767],[-120.013535,39.442072],[-120.013126,39.442286],[-120.012693,39.442523],[-120.012297,39.442781],[-120.011924,39.443056],[-120.011584,39.443358],[-120.01123,39.443753],[-120.01095,39.444094],[-120.010763,39.444403],[-120.010491,39.444854],[-120.010352,39.445189],[-120.010267,39.445442],[-120.010183,39.445685],[-120.010083,39.446009],[-120.009884,39.446699],[-120.009677,39.447363],[-120.00927,39.448747],[-120.009195,39.449095],[-120.009128,39.449464],[-120.009109,39.449667],[-120.009103,39.449876],[-120.009092,39.45009],[-120.009091,39.450277],[-120.009095,39.450469],[-120.009123,39.45095],[-120.00919,39.453092],[-120.009249,39.455007],[-120.009274,39.455781],[-120.009265,39.456166],[-120.009238,39.456526],[-120.009185,39.45691],[-120.009097,39.457326],[-120.008992,39.457698],[-120.008875,39.458072],[-120.008685,39.458525],[-120.00786,39.460351],[-120.007633,39.460807],[-120.007374,39.461276],[-120.007039,39.461807],[-120.006296,39.462942],[-120.00357,39.467173],[-120.003319,39.467539],[-120.003042,39.467902],[-120.002701,39.468326],[-120.00064,39.470748],[-120.00042,39.470988],[-120.000174,39.471237],[-119.9999,39.471477],[-119.999621,39.471684],[-119.999283,39.471891],[-119.99887,39.47211],[-119.998442,39.472352],[-119.998253,39.472466],[-119.998028,39.472617],[-119.997919,39.472699],[-119.997724,39.472858],[-119.997538,39.473024],[-119.997439,39.473124],[-119.997286,39.473296],[-119.997144,39.473491],[-119.997012,39.473688],[-119.996896,39.473901],[-119.996794,39.474118],[-119.99671,39.474343],[-119.996031,39.476372],[-119.995577,39.47762],[-119.994358,39.481336],[-119.994172,39.481953],[-119.994073,39.482373],[-119.993992,39.482816],[-119.993904,39.483449],[-119.993871,39.483929],[-119.99386,39.48425],[-119.993857,39.484721],[-119.993862,39.484939],[-119.993898,39.485479],[-119.993934,39.485815],[-119.99399,39.486141],[-119.994075,39.486574],[-119.994094,39.486695],[-119.994141,39.486904],[-119.994154,39.486952],[-119.9942,39.487129],[-119.994293,39.487445],[-119.994402,39.48777],[-119.994471,39.487991],[-119.99521,39.489936],[-119.995647,39.491087],[-119.995946,39.491853],[-119.996449,39.493197],[-119.996475,39.493264],[-119.997267,39.495316],[-119.997426,39.495742],[-119.997545,39.496082],[-119.997696,39.496607],[-119.997779,39.496938],[-119.997911,39.497599],[-119.998072,39.498464],[-119.998268,39.499518],[-119.998543,39.500994],[-119.998659,39.501614],[-119.999095,39.503956],[-119.999126,39.504221],[-119.999147,39.504398],[-119.999164,39.504614],[-119.999152,39.505263],[-119.99915,39.505372],[-119.999049,39.505921],[-119.998949,39.506284],[-119.998933,39.506342],[-119.998752,39.506831],[-119.998645,39.507077],[-119.998491,39.50738],[-119.998322,39.507668],[-119.998119,39.507971],[-119.997953,39.508192],[-119.997711,39.508473],[-119.997456,39.50874],[-119.997107,39.509063],[-119.996907,39.509237],[-119.996612,39.50945],[-119.996275,39.509681],[-119.996015,39.509851],[-119.995672,39.510044],[-119.995601,39.510084],[-119.995193,39.51029],[-119.994835,39.510449],[-119.993939,39.510898],[-119.993325,39.511207],[-119.99242,39.511639],[-119.991798,39.511954],[-119.990688,39.512492],[-119.990423,39.512609],[-119.989894,39.512829],[-119.989787,39.512874],[-119.9894,39.513022],[-119.988879,39.513208],[-119.988616,39.513296],[-119.988012,39.513486],[-119.987544,39.513617],[-119.986764,39.513804],[-119.986351,39.51389],[-119.98577,39.513997],[-119.985086,39.514108],[-119.984806,39.514144],[-119.984264,39.514205],[-119.983313,39.514284],[-119.98196,39.514306],[-119.98123,39.514296],[-119.980824,39.514281],[-119.979704,39.514184],[-119.979386,39.514143],[-119.978711,39.514046],[-119.978438,39.514001],[-119.977597,39.513833],[-119.970947,39.512274],[-119.963522,39.510529],[-119.962829,39.510393],[-119.96256,39.510356],[-119.962339,39.510332],[-119.96213,39.510309],[-119.961714,39.510281],[-119.961422,39.51027],[-119.960868,39.510277],[-119.960506,39.510296],[-119.960252,39.510324],[-119.959319,39.510459],[-119.959114,39.510489],[-119.958379,39.510624],[-119.954636,39.51128],[-119.953905,39.511409],[-119.953457,39.511489],[-119.951336,39.511863],[-119.951009,39.511918],[-119.950773,39.511951],[-119.950369,39.511988],[-119.950114,39.512004],[-119.949449,39.512015],[-119.949278,39.512014],[-119.949022,39.512],[-119.948735,39.51198],[-119.948402,39.511947],[-119.948043,39.511885],[-119.947618,39.511801],[-119.947052,39.51165],[-119.946773,39.511552],[-119.946515,39.511468],[-119.946011,39.51129],[-119.945341,39.511031],[-119.944798,39.510815],[-119.944232,39.510597],[-119.943822,39.51045],[-119.943655,39.510393],[-119.943506,39.510343],[-119.943043,39.510199],[-119.942749,39.510114],[-119.942231,39.509982],[-119.941839,39.509901],[-119.941367,39.509812],[-119.941094,39.509774],[-119.940679,39.509722],[-119.940466,39.509703],[-119.940207,39.509681],[-119.939839,39.509653],[-119.939558,39.509642],[-119.93883,39.50965],[-119.938269,39.509669],[-119.937858,39.509698],[-119.937487,39.509739],[-119.937077,39.509793],[-119.936738,39.509852],[-119.936296,39.509937],[-119.935926,39.510015],[-119.935449,39.510142],[-119.935351,39.510169],[-119.934549,39.510429],[-119.934274,39.510531],[-119.933957,39.510659],[-119.932615,39.511244],[-119.932297,39.511387],[-119.93137,39.511793],[-119.929406,39.512676],[-119.928874,39.512919],[-119.928572,39.513068],[-119.928193,39.513249],[-119.927518,39.513599],[-119.92634,39.514242],[-119.926123,39.514359],[-119.925657,39.514627],[-119.925163,39.514897],[-119.924588,39.515201],[-119.924322,39.515328],[-119.923838,39.515545],[-119.923604,39.51563],[-119.923241,39.515748],[-119.922959,39.515825],[-119.922532,39.515924],[-119.92217,39.515987],[-119.921843,39.516034],[-119.921545,39.51606],[-119.921308,39.516074],[-119.921194,39.516075],[-119.920658,39.516081],[-119.92012,39.516046],[-119.919966,39.516025],[-119.919829,39.516013],[-119.919557,39.515975],[-119.91932,39.515932],[-119.918893,39.515841],[-119.918667,39.515788],[-119.918564,39.515762],[-119.918162,39.515661],[-119.917276,39.515424],[-119.916385,39.515185],[-119.916023,39.515088],[-119.914607,39.5147],[-119.913932,39.514527],[-119.911997,39.514013],[-119.911457,39.513878],[-119.910811,39.513733],[-119.910211,39.513617],[-119.909664,39.513518],[-119.909262,39.513464],[-119.908834,39.5134],[-119.908678,39.513377],[-119.90823,39.513329],[-119.907747,39.513286],[-119.907684,39.51328],[-119.906818,39.513221],[-119.906605,39.513212],[-119.905967,39.513187],[-119.905545,39.513181],[-119.905116,39.513186],[-119.904121,39.513219],[-119.903917,39.513233],[-119.90354,39.513258],[-119.90305,39.513301],[-119.902284,39.513381],[-119.901694,39.513468],[-119.900741,39.513627],[-119.900134,39.513722],[-119.897659,39.514125],[-119.896577,39.514307],[-119.89624,39.514361],[-119.89476,39.514598],[-119.893417,39.51482],[-119.89212,39.515034],[-119.888178,39.515684],[-119.887973,39.515713],[-119.887679,39.515754],[-119.887476,39.515782],[-119.886675,39.515918],[-119.885955,39.516038],[-119.882207,39.516691],[-119.881932,39.516739],[-119.879432,39.517142],[-119.877298,39.517502],[-119.876737,39.517608],[-119.875993,39.517788],[-119.875407,39.517929],[-119.874988,39.518021],[-119.874691,39.518108],[-119.874547,39.51815],[-119.873967,39.518331],[-119.873171,39.518588],[-119.8716,39.519167],[-119.870409,39.519709],[-119.869828,39.519985],[-119.869214,39.520296],[-119.868615,39.520618],[-119.868443,39.520715],[-119.867312,39.521333],[-119.864918,39.522643],[-119.862866,39.523749],[-119.862051,39.524211],[-119.861244,39.524641],[-119.860797,39.524861],[-119.860124,39.525166],[-119.859691,39.525346],[-119.859205,39.525531],[-119.858734,39.525693],[-119.858276,39.525837],[-119.857737,39.525985],[-119.857213,39.526112],[-119.856706,39.526218],[-119.856223,39.526307],[-119.855681,39.526393],[-119.855283,39.526445],[-119.854767,39.526499],[-119.854259,39.526539],[-119.853691,39.526567],[-119.852455,39.526588],[-119.849805,39.526642],[-119.847184,39.526736],[-119.841405,39.526971],[-119.838583,39.527086],[-119.838251,39.527099],[-119.837538,39.527129],[-119.836403,39.527176],[-119.835985,39.527208],[-119.835655,39.527244],[-119.83502,39.527339],[-119.834636,39.527415],[-119.834306,39.527491],[-119.83394,39.527587],[-119.833561,39.527701],[-119.833169,39.527835],[-119.832814,39.527971],[-119.832448,39.528127],[-119.832092,39.528296],[-119.831755,39.528473],[-119.83142,39.528665],[-119.830883,39.529006],[-119.829923,39.529617],[-119.829117,39.530129],[-119.828834,39.530297],[-119.828512,39.530466],[-119.828166,39.530625],[-119.827803,39.530768],[-119.827454,39.530885],[-119.825711,39.531379],[-119.824698,39.531662],[-119.823973,39.531865],[-119.82369,39.531944],[-119.823448,39.532012],[-119.823143,39.532118],[-119.822779,39.532257],[-119.821402,39.532867],[-119.820009,39.533483],[-119.819588,39.533669],[-119.819467,39.533716],[-119.81933,39.53377],[-119.819001,39.533883],[-119.818663,39.533983],[-119.818321,39.534069],[-119.815856,39.534529],[-119.814522,39.534779],[-119.814373,39.534806],[-119.814064,39.534866],[-119.813672,39.534962],[-119.81306,39.535134],[-119.810721,39.535896],[-119.810501,39.535972],[-119.810156,39.536081],[-119.809767,39.536191],[-119.809373,39.536289],[-119.808921,39.536385],[-119.808663,39.536433],[-119.808241,39.5365],[-119.807341,39.536599],[-119.806985,39.536615],[-119.805995,39.536616],[-119.805866,39.536614],[-119.803667,39.536573],[-119.803052,39.536558],[-119.802221,39.536539],[-119.79907,39.536487],[-119.798805,39.536482],[-119.798221,39.536473],[-119.797749,39.536466],[-119.79689,39.536446],[-119.796272,39.536459],[-119.795599,39.536491],[-119.794727,39.536565],[-119.793629,39.536678],[-119.792067,39.536804],[-119.791011,39.536903],[-119.789698,39.537015],[-119.788771,39.537095],[-119.788273,39.537135],[-119.787724,39.537187],[-119.787458,39.537214],[-119.786642,39.537274],[-119.785907,39.537315],[-119.785475,39.537313],[-119.785097,39.5373],[-119.784702,39.537274],[-119.784413,39.537245],[-119.784076,39.537207],[-119.783793,39.537166],[-119.783158,39.537055],[-119.782591,39.536943],[-119.782256,39.53685],[-119.781767,39.536704],[-119.781364,39.536572],[-119.780943,39.536413],[-119.780394,39.536175],[-119.779699,39.535837],[-119.779257,39.535607],[-119.778536,39.535243],[-119.777913,39.53495],[-119.777518,39.534791],[-119.777167,39.534665],[-119.776729,39.53454],[-119.776528,39.534492],[-119.776257,39.534427],[-119.775814,39.534343],[-119.775006,39.534219],[-119.773175,39.533997],[-119.772042,39.533898],[-119.771364,39.533871],[-119.770515,39.533871],[-119.769837,39.533864],[-119.768729,39.533871],[-119.76733,39.533864],[-119.765893,39.533861],[-119.765172,39.533861],[-119.76291,39.533845],[-119.761691,39.533845],[-119.760934,39.53385],[-119.76051,39.533853],[-119.758438,39.533845],[-119.7576,39.53383],[-119.756837,39.53382],[-119.754868,39.533838],[-119.753941,39.533845],[-119.753378,39.53386],[-119.752966,39.533893],[-119.752648,39.533933],[-119.752468,39.533966],[-119.751683,39.534116],[-119.75092,39.534262],[-119.750327,39.534348],[-119.749872,39.534401],[-119.749272,39.534434],[-119.748671,39.534434],[-119.747263,39.534428],[-119.745491,39.534391],[-119.744358,39.534391],[-119.742891,39.534377],[-119.742539,39.534364],[-119.742113,39.534321],[-119.741607,39.534248],[-119.741118,39.534156],[-119.740362,39.533931],[-119.739727,39.533686],[-119.738998,39.533368],[-119.738371,39.53309],[-119.737152,39.532567],[-119.736225,39.532157],[-119.735221,39.53172],[-119.734243,39.531289],[-119.733157,39.530827],[-119.732552,39.530574],[-119.731848,39.530316],[-119.731281,39.530131],[-119.730509,39.529906],[-119.729668,39.529687],[-119.729187,39.529588],[-119.728226,39.529423],[-119.727265,39.52929],[-119.726569,39.529211],[-119.72566,39.529125],[-119.723291,39.528893],[-119.721886,39.528756],[-119.720192,39.528569],[-119.717892,39.528324],[-119.71566,39.528098],[-119.713884,39.527913],[-119.710742,39.527575],[-119.709099,39.527418],[-119.706468,39.527145],[-119.705548,39.527051],[-119.704519,39.52692],[-119.703601,39.526794],[-119.702648,39.526635],[-119.701507,39.526424],[-119.70088,39.526285],[-119.699824,39.52604],[-119.698674,39.525742],[-119.697696,39.52547],[-119.696795,39.525186],[-119.696319,39.525026],[-119.69537,39.524696],[-119.693851,39.524146],[-119.692297,39.523577],[-119.691078,39.52312],[-119.690314,39.522789],[-119.689654,39.522478],[-119.689302,39.522286],[-119.688873,39.522061],[-119.687988,39.521511],[-119.687113,39.520915],[-119.68628,39.52028],[-119.685602,39.51977],[-119.685027,39.519326],[-119.684538,39.518889],[-119.684057,39.518359],[-119.683551,39.51779],[-119.683036,39.517274],[-119.682633,39.516923],[-119.682169,39.516558],[-119.681577,39.516155],[-119.681122,39.51589],[-119.680735,39.515691],[-119.67956,39.515108],[-119.678787,39.514744],[-119.677697,39.514214],[-119.676959,39.51385],[-119.676341,39.513566],[-119.675783,39.51334],[-119.674994,39.513089],[-119.67423,39.51291],[-119.673427,39.512739],[-119.671277,39.512235],[-119.669535,39.511817],[-119.668883,39.511652],[-119.668059,39.511427],[-119.666823,39.511069],[-119.665681,39.510751],[-119.665166,39.510639],[-119.664531,39.510513],[-119.663776,39.510394],[-119.663012,39.510308],[-119.662359,39.510261],[-119.66151,39.510241],[-119.660806,39.510255],[-119.660162,39.510294],[-119.659553,39.510341],[-119.65884,39.510433],[-119.658265,39.510533],[-119.657583,39.510669],[-119.655407,39.511069],[-119.653716,39.511374],[-119.652661,39.511519],[-119.651622,39.511645],[-119.650352,39.511791],[-119.649018,39.511944],[-119.648172,39.512029],[-119.647494,39.512142],[-119.646901,39.512274],[-119.646352,39.512466],[-119.645751,39.512725],[-119.645125,39.513016],[-119.644558,39.513261],[-119.644026,39.513446],[-119.643511,39.513585],[-119.643056,39.513678],[-119.64261,39.513738],[-119.642163,39.513784],[-119.641683,39.513804],[-119.641245,39.513797],[-119.64043,39.513791],[-119.639623,39.513804],[-119.639039,39.51383],[-119.638541,39.513903],[-119.638129,39.513989],[-119.637717,39.514082],[-119.637314,39.514195],[-119.636911,39.514334],[-119.63643,39.514526],[-119.635966,39.514757],[-119.635546,39.515002],[-119.635134,39.515267],[-119.633493,39.516451],[-119.632035,39.517459],[-119.631203,39.518055],[-119.629838,39.519015],[-119.629453,39.519291],[-119.627031,39.521014],[-119.625401,39.52216],[-119.624967,39.522488],[-119.62407,39.5231],[-119.622843,39.523974],[-119.620989,39.525291],[-119.618826,39.526814],[-119.617041,39.528085],[-119.616346,39.528575],[-119.615925,39.52884],[-119.615565,39.529072],[-119.615118,39.529297],[-119.614586,39.529522],[-119.614148,39.529687],[-119.613616,39.529853],[-119.61305,39.530005],[-119.611814,39.530323],[-119.610552,39.530654],[-119.609428,39.530945],[-119.608938,39.531097],[-119.608518,39.531256],[-119.60802,39.531468],[-119.607531,39.531713],[-119.607119,39.531938],[-119.606715,39.532183],[-119.606389,39.532428],[-119.605969,39.532779],[-119.605565,39.533169],[-119.604947,39.533792],[-119.603763,39.534983],[-119.602287,39.536459],[-119.60093,39.53783],[-119.600063,39.538703],[-119.598647,39.540093],[-119.596716,39.542059],[-119.596227,39.542529],[-119.595781,39.54292],[-119.59548,39.543165],[-119.594991,39.543548],[-119.594553,39.543853],[-119.594004,39.544204],[-119.593317,39.544607],[-119.59257,39.544991],[-119.592055,39.54523],[-119.591506,39.545468],[-119.590579,39.545812],[-119.589532,39.546189],[-119.58833,39.546593],[-119.587155,39.547003],[-119.586399,39.547255],[-119.585927,39.547394],[-119.585567,39.54748],[-119.585232,39.547533],[-119.583867,39.547771],[-119.582082,39.548069],[-119.581146,39.548221],[-119.580348,39.548373],[-119.57967,39.548512],[-119.578932,39.548678],[-119.578151,39.548876],[-119.57731,39.549095],[-119.57652,39.54932],[-119.575507,39.549644],[-119.574529,39.549968],[-119.573379,39.550379],[-119.572623,39.550683],[-119.571825,39.551021],[-119.569088,39.552279],[-119.565474,39.55396],[-119.563329,39.554953],[-119.562015,39.555562],[-119.559724,39.556629],[-119.55835,39.557269],[-119.554196,39.559188],[-119.551106,39.560624],[-119.5506,39.560855],[-119.549793,39.5612],[-119.549098,39.561471],[-119.548557,39.561676],[-119.548051,39.561848],[-119.54763,39.56198],[-119.547192,39.562113],[-119.5466,39.562291],[-119.545991,39.56245],[-119.545493,39.562569],[-119.544935,39.562695],[-119.544403,39.562807],[-119.543811,39.562927],[-119.543219,39.563065],[-119.542515,39.563224],[-119.541905,39.563363],[-119.541485,39.563476],[-119.541107,39.563595],[-119.540661,39.563773],[-119.540232,39.563952],[-119.539828,39.564131],[-119.539476,39.564316],[-119.539133,39.564495],[-119.538876,39.56464],[-119.538661,39.564786],[-119.538326,39.564998],[-119.536541,39.566162],[-119.53624,39.566361],[-119.535932,39.566553],[-119.535665,39.566705],[-119.535331,39.56689],[-119.534962,39.567082],[-119.534507,39.567274],[-119.534095,39.567439],[-119.533708,39.567585],[-119.533314,39.56771],[-119.53291,39.567836],[-119.532473,39.567949],[-119.531966,39.568061],[-119.531537,39.568134],[-119.531108,39.568193],[-119.530687,39.568246],[-119.530267,39.568279],[-119.529829,39.568306],[-119.529391,39.568312],[-119.525658,39.56824],[-119.520594,39.568147],[-119.516396,39.568068],[-119.511238,39.567962],[-119.508775,39.567922],[-119.507101,39.567882],[-119.506758,39.567876],[-119.506363,39.567856],[-119.505625,39.567829],[-119.505203,39.567799],[-119.504784,39.567757],[-119.504208,39.567697],[-119.503771,39.567651],[-119.503179,39.567591],[-119.499934,39.567241],[-119.497471,39.566983],[-119.496801,39.566904],[-119.495205,39.566738],[-119.493814,39.566586],[-119.493153,39.566506],[-119.492501,39.56644],[-119.491626,39.566374],[-119.490973,39.566334],[-119.49039,39.566301],[-119.489669,39.566281],[-119.488974,39.566268],[-119.488373,39.566261],[-119.487437,39.566268],[-119.486236,39.566314],[-119.485506,39.566347],[-119.484708,39.566407],[-119.483918,39.566473],[-119.483128,39.566559],[-119.480699,39.566897],[-119.477592,39.56734],[-119.477232,39.567419],[-119.476828,39.567519],[-119.476399,39.567651],[-119.47603,39.567783],[-119.475532,39.568002],[-119.475095,39.568213],[-119.474605,39.568531],[-119.474271,39.568762],[-119.473919,39.569054],[-119.47349,39.569457],[-119.473121,39.569861],[-119.472829,39.570278],[-119.472588,39.570688],[-119.4724,39.571105],[-119.472262,39.571521],[-119.472159,39.571938],[-119.472108,39.572348],[-119.472091,39.572798],[-119.472125,39.57338],[-119.472202,39.574743],[-119.472219,39.575147],[-119.472211,39.575484],[-119.472159,39.575967],[-119.472091,39.576358],[-119.471988,39.576788],[-119.47185,39.577224],[-119.471679,39.577667],[-119.471301,39.578481],[-119.470571,39.580142],[-119.469679,39.582146],[-119.469112,39.583403],[-119.468906,39.583753],[-119.468692,39.584071],[-119.468417,39.584408],[-119.468074,39.584766],[-119.46773,39.58507],[-119.467327,39.585374],[-119.466889,39.585659],[-119.466434,39.585903],[-119.466082,39.586069],[-119.464383,39.586803],[-119.463885,39.587048],[-119.463465,39.587292],[-119.463018,39.58757],[-119.461997,39.588225],[-119.461259,39.588708],[-119.46077,39.589005],[-119.460418,39.589184],[-119.459937,39.589402],[-119.459396,39.589621],[-119.458873,39.589799],[-119.458349,39.589945],[-119.457791,39.59007],[-119.457379,39.590137],[-119.456856,39.590209],[-119.456418,39.590249],[-119.455972,39.590269],[-119.455542,39.590275],[-119.45513,39.590262],[-119.45471,39.590229],[-119.453611,39.59011],[-119.45138,39.589846],[-119.449037,39.589601],[-119.446633,39.589349],[-119.444676,39.589125],[-119.443243,39.589012],[-119.442204,39.588953],[-119.441029,39.588939],[-119.438007,39.588999],[-119.434239,39.589072],[-119.43271,39.589109],[-119.42933,39.589177],[-119.428411,39.589197],[-119.426051,39.589257],[-119.424944,39.589315],[-119.424446,39.589369],[-119.423493,39.589482],[-119.422584,39.589627],[-119.421931,39.58976],[-119.421219,39.589905],[-119.420129,39.590137],[-119.419279,39.590315],[-119.418026,39.59058],[-119.417185,39.590772],[-119.416404,39.590937],[-119.415872,39.591049],[-119.415408,39.591122],[-119.414979,39.591182],[-119.414335,39.591261],[-119.413777,39.591307],[-119.413168,39.59134],[-119.412447,39.591347],[-119.41188,39.591334],[-119.411323,39.591307],[-119.408911,39.591142],[-119.407469,39.591023],[-119.406808,39.59095],[-119.406387,39.590891],[-119.405898,39.590818],[-119.40528,39.590712],[-119.404636,39.590573],[-119.40298,39.590176],[-119.401478,39.589779],[-119.400886,39.589634],[-119.400199,39.589482],[-119.399426,39.58931],[-119.398791,39.589197],[-119.398002,39.589072],[-119.397324,39.588999],[-119.396551,39.588946],[-119.395847,39.588919],[-119.395015,39.588913],[-119.39433,39.58895],[-119.393795,39.588996],[-119.392392,39.589162],[-119.390469,39.58955],[-119.387386,39.590217],[-119.386722,39.590357],[-119.383799,39.590971],[-119.382606,39.591037],[-119.38137,39.590938],[-119.378958,39.590217],[-119.377516,39.589846],[-119.376821,39.589774],[-119.376203,39.589778],[-119.375925,39.58979],[-119.375638,39.589808],[-119.375351,39.589838],[-119.375059,39.589881],[-119.374785,39.589928],[-119.374515,39.589984],[-119.374243,39.590048],[-119.373968,39.590126],[-119.373694,39.590202],[-119.373285,39.590321],[-119.372677,39.590491],[-119.369889,39.5913],[-119.369075,39.591629],[-119.368568,39.591901],[-119.368151,39.5921],[-119.367193,39.593048],[-119.366649,39.593674],[-119.364709,39.595744],[-119.363791,39.596326],[-119.362812,39.596802],[-119.359199,39.597979],[-119.358117,39.598211],[-119.357242,39.598284],[-119.356126,39.59827],[-119.354358,39.598105],[-119.35277,39.598046],[-119.351294,39.598092],[-119.349629,39.598284],[-119.347938,39.598581],[-119.346255,39.599057],[-119.342758,39.600165],[-119.335154,39.602646],[-119.32657,39.605555],[-119.324596,39.606514],[-119.319747,39.609681],[-119.313365,39.614055],[-119.31194,39.614815],[-119.310576,39.615391],[-119.309236,39.615881],[-119.308785,39.616013],[-119.307705,39.616293],[-119.305439,39.61671],[-119.294492,39.617548],[-119.293084,39.617661],[-119.2904,39.617872],[-119.289111,39.617975],[-119.287631,39.618081],[-119.286769,39.618122],[-119.286004,39.618142],[-119.284989,39.618161],[-119.282801,39.618135],[-119.281058,39.618029],[-119.279101,39.617811],[-119.274261,39.617169],[-119.269627,39.616477],[-119.265601,39.615955],[-119.264802,39.61585],[-119.263129,39.615611],[-119.263071,39.615603],[-119.262471,39.615525],[-119.260457,39.61531],[-119.258719,39.615124],[-119.255466,39.61494],[-119.253336,39.614939],[-119.249267,39.614954],[-119.245061,39.615046],[-119.242798,39.615053],[-119.240491,39.61494],[-119.238432,39.614758],[-119.236442,39.614522],[-119.236092,39.614474],[-119.23219,39.613933],[-119.228391,39.613417],[-119.223482,39.612751],[-119.222802,39.612751],[-119.222089,39.612775],[-119.219834,39.612854],[-119.218393,39.613033],[-119.217928,39.613111],[-119.216848,39.613329],[-119.214644,39.613826],[-119.2139,39.614104],[-119.212488,39.614796],[-119.211372,39.615371],[-119.209888,39.616277],[-119.207982,39.617652],[-119.204806,39.620072],[-119.19639,39.626322],[-119.193091,39.628813],[-119.189669,39.631496],[-119.188636,39.632277],[-119.187292,39.633148],[-119.186699,39.633603],[-119.1863,39.633944],[-119.185973,39.634213],[-119.185707,39.634413],[-119.185189,39.634801],[-119.184078,39.635515],[-119.183091,39.636195],[-119.181918,39.637069],[-119.180946,39.637782],[-119.180027,39.638489],[-119.179206,39.639158],[-119.175435,39.642269],[-119.170852,39.646218],[-119.166699,39.649622],[-119.164644,39.651335],[-119.157668,39.657165],[-119.154141,39.659571],[-119.150347,39.662095],[-119.143664,39.666641],[-119.142177,39.66764],[-119.139071,39.669821],[-119.13367,39.673432],[-119.130079,39.675986],[-119.121774,39.681557],[-119.112847,39.68774],[-119.111268,39.689021],[-119.109989,39.690217],[-119.108496,39.691696],[-119.107286,39.69309],[-119.102814,39.698274],[-119.098325,39.703511],[-119.096377,39.705637],[-119.089391,39.71211],[-119.065855,39.733695],[-119.064808,39.734639],[-119.063375,39.736052],[-119.062373,39.737164],[-119.060505,39.739364],[-119.059985,39.739949],[-119.055446,39.745247],[-119.05145,39.749912],[-119.047041,39.755117],[-119.043931,39.758985],[-119.038123,39.766882],[-119.02645,39.78276],[-119.023695,39.786598],[-119.02173,39.789223],[-119.020736,39.790707],[-119.02064,39.790829],[-119.019035,39.792798],[-119.017026,39.795113],[-119.0141,39.798208],[-119.013118,39.799495],[-119.004378,39.808776],[-119.000933,39.812369],[-118.999817,39.813635],[-118.997809,39.815652],[-118.996238,39.816997],[-118.994247,39.818434],[-118.992547,39.819522],[-118.990213,39.82084],[-118.98186,39.824916],[-118.96612,39.832556],[-118.96503,39.833048],[-118.936862,39.846607],[-118.934784,39.84766],[-118.933152,39.848369],[-118.928127,39.850883],[-118.928076,39.850908],[-118.910907,39.859129],[-118.897521,39.865539],[-118.89221,39.868082],[-118.887813,39.870254],[-118.886418,39.870976],[-118.88513,39.871681],[-118.881508,39.874032],[-118.877963,39.876325],[-118.875002,39.878169],[-118.869509,39.88166],[-118.865604,39.884143],[-118.862127,39.886382],[-118.858325,39.888845],[-118.850686,39.893764],[-118.839296,39.901074],[-118.826782,39.909106],[-118.822551,39.911779],[-118.821355,39.912633],[-118.821198,39.912729],[-118.81965,39.913695],[-118.818208,39.914505],[-118.816534,39.915321],[-118.813939,39.916477],[-118.811677,39.917357],[-118.804411,39.920143],[-118.799924,39.922007],[-118.79037,39.92589],[-118.778565,39.930497],[-118.767717,39.934735],[-118.752571,39.940674],[-118.748953,39.942138],[-118.748559,39.942292],[-118.744546,39.943839],[-118.726839,39.950852],[-118.720464,39.953341],[-118.715057,39.955467],[-118.710568,39.957263],[-118.709074,39.957868],[-118.707907,39.958493],[-118.706688,39.959236],[-118.705272,39.960289],[-118.703559,39.961976],[-118.700773,39.965356],[-118.700409,39.965797],[-118.698387,39.968291],[-118.697109,39.97003],[-118.696663,39.970533],[-118.693095,39.975064],[-118.691798,39.976604],[-118.688933,39.980006],[-118.685342,39.984758],[-118.6842,39.986185],[-118.683514,39.987257],[-118.682973,39.988395],[-118.682243,39.990558],[-118.681205,39.994767],[-118.680197,39.998519],[-118.680148,39.998719],[-118.679845,39.999985],[-118.67889,40.003796],[-118.678555,40.005103],[-118.677539,40.009181],[-118.677318,40.010035],[-118.677003,40.011369],[-118.675277,40.01821],[-118.674414,40.021627],[-118.67417,40.022392],[-118.67402,40.022817],[-118.673637,40.023814],[-118.673034,40.025147],[-118.672804,40.025596],[-118.672413,40.026318],[-118.671706,40.027562],[-118.671512,40.027885],[-118.668321,40.033458],[-118.666457,40.036688],[-118.6618,40.044764],[-118.657793,40.051704],[-118.657308,40.052559],[-118.656986,40.053107],[-118.656257,40.054312],[-118.65539,40.055604],[-118.654569,40.056692],[-118.654035,40.057478],[-118.65314,40.058567],[-118.652333,40.059485],[-118.651366,40.060522],[-118.651177,40.060727],[-118.650593,40.061301],[-118.649115,40.06262],[-118.647917,40.063688],[-118.647358,40.064142],[-118.646365,40.064947],[-118.64562,40.065504],[-118.645426,40.065653],[-118.63896,40.070102],[-118.636534,40.071772],[-118.634934,40.072865],[-118.63355,40.073757],[-118.632307,40.074521],[-118.631357,40.075093],[-118.62935,40.076218],[-118.627304,40.077284],[-118.626191,40.077811],[-118.62538,40.078184],[-118.623782,40.078889],[-118.622662,40.079366],[-118.619241,40.080844],[-118.61341,40.083367],[-118.603811,40.087532],[-118.602521,40.088099],[-118.599376,40.089454],[-118.586852,40.094876],[-118.585318,40.095541],[-118.581022,40.097408],[-118.574075,40.100408],[-118.561378,40.105906],[-118.557733,40.1075],[-118.556051,40.108274],[-118.555261,40.108667],[-118.553897,40.10941],[-118.551389,40.110894],[-118.547405,40.113229],[-118.546754,40.113621],[-118.541307,40.116852],[-118.538332,40.118586],[-118.533862,40.121224],[-118.529446,40.123866],[-118.528549,40.124384],[-118.523403,40.127453],[-118.521651,40.128522],[-118.517955,40.130906],[-118.517666,40.131092],[-118.515087,40.132737],[-118.514254,40.133287],[-118.511222,40.135254],[-118.510155,40.135965],[-118.508191,40.137244],[-118.50741,40.137777],[-118.506048,40.13874],[-118.505849,40.138897],[-118.505538,40.139132],[-118.504731,40.139782],[-118.50432,40.140159],[-118.503958,40.140507],[-118.503489,40.14092],[-118.502985,40.14137],[-118.501913,40.142466],[-118.501323,40.143097],[-118.500819,40.143672],[-118.500175,40.144442],[-118.49971,40.145028],[-118.499208,40.145693],[-118.498274,40.146961],[-118.49775,40.147663],[-118.49726,40.148343],[-118.495635,40.150557],[-118.492953,40.154199],[-118.492423,40.154906],[-118.491834,40.155762],[-118.490431,40.1582],[-118.490365,40.158309],[-118.48918,40.1602],[-118.487916,40.162364],[-118.487184,40.163657],[-118.486343,40.165075],[-118.486082,40.16548],[-118.485897,40.165729],[-118.485733,40.165935],[-118.485691,40.165985],[-118.485235,40.166527],[-118.484975,40.166805],[-118.4847,40.167083],[-118.48403,40.167671],[-118.483754,40.167879],[-118.483668,40.167939],[-118.483201,40.168265],[-118.482409,40.168772],[-118.481982,40.169027],[-118.481089,40.169473],[-118.480808,40.169606],[-118.479209,40.170331],[-118.478493,40.170668],[-118.477944,40.170967],[-118.477485,40.171232],[-118.476452,40.171948],[-118.475978,40.172323],[-118.475639,40.172612],[-118.475381,40.172857],[-118.475202,40.173029],[-118.474787,40.173484],[-118.474363,40.173995],[-118.47401,40.174463],[-118.47268,40.176291],[-118.472477,40.176557],[-118.472101,40.177067],[-118.47155,40.177829],[-118.471197,40.178372],[-118.470943,40.178703],[-118.470282,40.179536],[-118.47016,40.179718],[-118.469915,40.180036],[-118.469373,40.180797],[-118.468773,40.181608],[-118.467771,40.182986],[-118.467216,40.183748],[-118.466299,40.184974],[-118.466197,40.185132],[-118.465611,40.185924],[-118.465233,40.186372],[-118.465049,40.186573],[-118.465011,40.186615],[-118.464892,40.186739],[-118.464467,40.187147],[-118.464174,40.187407],[-118.464013,40.187542],[-118.463941,40.187602],[-118.463368,40.188057],[-118.463208,40.188171],[-118.462914,40.188365],[-118.462229,40.188792],[-118.461642,40.189109],[-118.46141,40.189225],[-118.46065,40.189589],[-118.460206,40.18977],[-118.45969,40.189948],[-118.459324,40.19005],[-118.458684,40.190236],[-118.456967,40.190742],[-118.456097,40.190999],[-118.454847,40.191383],[-118.449626,40.192906],[-118.448483,40.193251],[-118.448269,40.193315],[-118.448205,40.193334],[-118.448089,40.193369],[-118.44609,40.193966],[-118.440188,40.195675],[-118.438818,40.196113],[-118.438173,40.19634],[-118.437387,40.196631],[-118.436596,40.196946],[-118.434989,40.19765],[-118.434033,40.198108],[-118.432601,40.198838],[-118.431733,40.199323],[-118.431303,40.199575],[-118.429816,40.200515],[-118.429183,40.200944],[-118.42836,40.201533],[-118.427577,40.202135],[-118.426605,40.202936],[-118.425758,40.203682],[-118.425103,40.204292],[-118.424507,40.204884],[-118.423116,40.206333],[-118.422492,40.207002],[-118.420997,40.20854],[-118.413305,40.216572],[-118.412449,40.217454],[-118.406175,40.223987],[-118.405121,40.225107],[-118.404579,40.225667],[-118.40445,40.225796],[-118.403468,40.226783],[-118.397392,40.23311],[-118.395813,40.234747],[-118.394326,40.236268],[-118.392725,40.23795],[-118.391617,40.239148],[-118.390175,40.240625],[-118.389114,40.241708],[-118.386021,40.244881],[-118.383944,40.247063],[-118.381733,40.249403],[-118.38007,40.251069],[-118.37998,40.251165],[-118.377804,40.253493],[-118.377723,40.253576],[-118.376726,40.254596],[-118.376439,40.254899],[-118.376058,40.255333],[-118.375198,40.256379],[-118.374928,40.256756],[-118.373885,40.258289],[-118.373467,40.258976],[-118.372433,40.260633],[-118.371867,40.261575],[-118.371524,40.262102],[-118.366721,40.269806],[-118.365852,40.271176],[-118.365764,40.271315],[-118.363523,40.274858],[-118.359814,40.28081],[-118.359525,40.281265],[-118.359084,40.28199],[-118.358545,40.28283],[-118.358088,40.283542],[-118.356617,40.285926],[-118.355255,40.288095],[-118.354293,40.28965],[-118.353347,40.29109],[-118.352257,40.29265],[-118.351946,40.293072],[-118.351645,40.293456],[-118.351396,40.293761],[-118.35118,40.294031],[-118.350506,40.29487],[-118.350145,40.295352],[-118.348562,40.297352],[-118.340875,40.307219],[-118.335725,40.313588],[-118.334077,40.315715],[-118.332816,40.317351],[-118.33103,40.319543],[-118.327039,40.324647],[-118.324662,40.327703],[-118.322151,40.330969],[-118.319436,40.334425],[-118.319298,40.3346],[-118.317399,40.33693],[-118.31457,40.340561],[-118.314149,40.341145],[-118.313777,40.341691],[-118.313268,40.342463],[-118.312945,40.342992],[-118.312595,40.343589],[-118.312257,40.344207],[-118.311885,40.344961],[-118.311676,40.345407],[-118.311154,40.34664],[-118.311052,40.346907],[-118.31084,40.34748],[-118.310675,40.347985],[-118.310596,40.348253],[-118.310373,40.349145],[-118.309847,40.35146],[-118.309654,40.352362],[-118.309314,40.353799],[-118.308888,40.355699],[-118.308282,40.358306],[-118.307846,40.360241],[-118.307736,40.360674],[-118.307522,40.361618],[-118.307398,40.362142],[-118.305803,40.369169],[-118.30545,40.370691],[-118.305243,40.371542],[-118.305211,40.371672],[-118.304446,40.37503],[-118.30415,40.376338],[-118.303764,40.377996],[-118.303581,40.378841],[-118.303388,40.379646],[-118.3021,40.385306],[-118.301704,40.386974],[-118.301474,40.387999],[-118.300537,40.392082],[-118.298812,40.399685],[-118.296979,40.407606],[-118.29497,40.416271],[-118.292077,40.429057],[-118.291978,40.429471],[-118.291676,40.43074],[-118.290715,40.434847],[-118.289773,40.438931],[-118.289643,40.439535],[-118.289268,40.441159],[-118.28747,40.449012],[-118.286788,40.452002],[-118.286515,40.453118],[-118.286294,40.45413],[-118.286082,40.45503],[-118.285881,40.456152],[-118.28571,40.457303],[-118.285295,40.461599],[-118.284768,40.466972],[-118.284758,40.467081],[-118.284741,40.467281],[-118.284348,40.472189],[-118.283159,40.484582],[-118.280696,40.510825],[-118.277365,40.546052],[-118.276485,40.555216],[-118.276249,40.556788],[-118.275928,40.558157],[-118.275522,40.559505],[-118.275051,40.560759],[-118.274494,40.562083],[-118.273957,40.563133],[-118.273106,40.5646],[-118.272123,40.566188],[-118.266641,40.575093],[-118.262547,40.58173],[-118.256603,40.591381],[-118.254408,40.594949],[-118.254225,40.595249],[-118.251907,40.598976],[-118.250924,40.600575],[-118.250178,40.601514],[-118.249543,40.60244],[-118.248607,40.603515],[-118.247981,40.604258],[-118.247028,40.605151],[-118.246084,40.606024],[-118.244486,40.607364],[-118.243336,40.608275],[-118.242855,40.608621],[-118.242048,40.609248],[-118.241747,40.60948],[-118.239779,40.610936],[-118.239089,40.61147],[-118.238726,40.611738],[-118.238379,40.612013],[-118.238148,40.612185],[-118.237156,40.612951],[-118.236519,40.613415],[-118.235934,40.613848],[-118.234261,40.615139],[-118.233394,40.615779],[-118.232661,40.616366],[-118.232267,40.616656],[-118.22935,40.618867],[-118.228835,40.61928],[-118.2281,40.619816],[-118.225564,40.621726],[-118.224952,40.622196],[-118.22342,40.623348],[-118.222456,40.624063],[-118.222022,40.624412],[-118.221655,40.624681],[-118.221073,40.625133],[-118.220082,40.625872],[-118.218288,40.627196],[-118.217746,40.627613],[-118.21723,40.627994],[-118.217105,40.628083],[-118.216656,40.628403],[-118.216056,40.62885],[-118.215715,40.629117],[-118.212671,40.631422],[-118.211557,40.632214],[-118.21067,40.632779],[-118.209195,40.633676],[-118.208832,40.633878],[-118.207451,40.634592],[-118.206233,40.635197],[-118.205122,40.635701],[-118.201666,40.63722],[-118.20089,40.637579],[-118.199094,40.638383],[-118.198455,40.638657],[-118.195536,40.639952],[-118.194947,40.640207],[-118.194563,40.640383],[-118.194366,40.640469],[-118.193772,40.640723],[-118.193218,40.640979],[-118.192884,40.641122],[-118.191384,40.641803],[-118.189309,40.642713],[-118.188524,40.643068],[-118.187598,40.643467],[-118.184679,40.644775],[-118.178888,40.647342],[-118.177827,40.647792],[-118.176183,40.648407],[-118.175549,40.648632],[-118.174483,40.648976],[-118.173646,40.649229],[-118.172599,40.649519],[-118.17145,40.649852],[-118.169897,40.650284],[-118.169276,40.65047],[-118.168034,40.650818],[-118.166796,40.651169],[-118.165304,40.651615],[-118.163473,40.652135],[-118.157014,40.653935],[-118.151953,40.655308],[-118.146105,40.656967],[-118.145753,40.657065],[-118.13968,40.658752],[-118.137448,40.659332],[-118.121209,40.663915],[-118.114676,40.665791],[-118.106175,40.668201],[-118.092985,40.671853],[-118.085781,40.673891],[-118.07977,40.675471],[-118.076577,40.676363],[-118.073327,40.677256],[-118.070895,40.677977],[-118.069788,40.678368],[-118.069011,40.678714],[-118.068679,40.67886],[-118.068045,40.679103],[-118.066981,40.679624],[-118.066123,40.680073],[-118.064921,40.680737],[-118.064028,40.681297],[-118.062715,40.682266],[-118.061986,40.682852],[-118.060853,40.683855],[-118.059926,40.684766],[-118.059016,40.685716],[-118.058381,40.686556],[-118.057557,40.687727],[-118.053421,40.694985],[-118.053217,40.69533],[-118.050776,40.699552],[-118.050584,40.699906],[-118.049486,40.701682],[-118.045832,40.708154],[-118.041352,40.715798],[-118.036571,40.724073],[-118.031679,40.732593],[-118.027662,40.739539],[-118.023259,40.747232],[-118.019182,40.75428],[-118.014504,40.762414],[-118.009637,40.770813],[-118.005586,40.777813],[-118.001956,40.784176],[-118.001667,40.784687],[-117.999939,40.787791],[-117.999753,40.788104],[-117.99817,40.790745],[-117.996523,40.793514],[-117.993458,40.798887],[-117.988995,40.806573],[-117.984918,40.813648],[-117.981356,40.819819],[-117.977708,40.826171],[-117.976678,40.828003],[-117.975992,40.829159],[-117.975288,40.830211],[-117.974619,40.831217],[-117.973142,40.83312],[-117.966894,40.840478],[-117.961512,40.846789],[-117.955135,40.854307],[-117.952792,40.857134],[-117.950697,40.859641],[-117.949229,40.861365],[-117.948197,40.862576],[-117.946732,40.864327],[-117.944823,40.866567],[-117.944194,40.867311],[-117.943712,40.867901],[-117.943393,40.868268],[-117.942823,40.868944],[-117.94165,40.870314],[-117.940969,40.871125],[-117.940516,40.871647],[-117.939817,40.872405],[-117.939531,40.872696],[-117.939126,40.873095],[-117.93884,40.873372],[-117.938369,40.873818],[-117.937297,40.874754],[-117.936827,40.875136],[-117.936596,40.875309],[-117.936355,40.875496],[-117.9361,40.875701],[-117.935877,40.875865],[-117.935452,40.876161],[-117.935265,40.876298],[-117.934858,40.876585],[-117.934559,40.876785],[-117.933901,40.877214],[-117.933628,40.877378],[-117.933329,40.877565],[-117.933028,40.877739],[-117.93246,40.878077],[-117.93213,40.878264],[-117.931335,40.878699],[-117.930886,40.878932],[-117.929532,40.879596],[-117.928831,40.879912],[-117.928378,40.88011],[-117.927718,40.880412],[-117.9264,40.880977],[-117.925939,40.881188],[-117.925489,40.88138],[-117.924893,40.881647],[-117.923203,40.882394],[-117.921056,40.883348],[-117.919065,40.884215],[-117.916794,40.885229],[-117.914705,40.886151],[-117.914244,40.886353],[-117.91384,40.886536],[-117.910912,40.88782],[-117.910176,40.88815],[-117.908512,40.88888],[-117.908168,40.88904],[-117.905972,40.890008],[-117.905072,40.890414],[-117.894728,40.894946],[-117.886568,40.898568],[-117.861306,40.909754],[-117.858805,40.910754],[-117.85151,40.913146],[-117.817445,40.924106],[-117.817015,40.924246],[-117.809574,40.926659],[-117.807851,40.927221],[-117.807241,40.927441],[-117.806337,40.92779],[-117.805807,40.928005],[-117.80451,40.928568],[-117.803504,40.929048],[-117.800439,40.930602],[-117.798009,40.931836],[-117.796496,40.932606],[-117.793397,40.934172],[-117.787814,40.937003],[-117.783246,40.939335],[-117.780987,40.940482],[-117.780466,40.940741],[-117.779607,40.941151],[-117.779211,40.941332],[-117.77789,40.941859],[-117.777467,40.94201],[-117.777191,40.942116],[-117.776555,40.942308],[-117.77528,40.942674],[-117.76634,40.944834],[-117.765502,40.945038],[-117.764585,40.94528],[-117.764272,40.945368],[-117.763555,40.945584],[-117.762943,40.945786],[-117.762184,40.946066],[-117.761479,40.946346],[-117.760974,40.946565],[-117.760519,40.946775],[-117.759658,40.947195],[-117.759521,40.947268],[-117.75868,40.947742],[-117.758465,40.94787],[-117.757999,40.948163],[-117.757849,40.948257],[-117.757397,40.948557],[-117.757191,40.948698],[-117.756385,40.949284],[-117.756162,40.949457],[-117.755531,40.949979],[-117.755232,40.950247],[-117.75498,40.950483],[-117.754651,40.950804],[-117.754371,40.951095],[-117.754221,40.951253],[-117.754165,40.951316],[-117.753657,40.951892],[-117.753459,40.952132],[-117.753089,40.952612],[-117.752672,40.953205],[-117.752465,40.953517],[-117.752327,40.953734],[-117.752165,40.954001],[-117.75178,40.954688],[-117.751649,40.954954],[-117.750549,40.957286],[-117.749248,40.960054],[-117.749059,40.960432],[-117.746896,40.965053],[-117.74667,40.965528],[-117.745129,40.96883],[-117.74492,40.96925],[-117.7447,40.969644],[-117.74446,40.970028],[-117.744258,40.970327],[-117.743917,40.970779],[-117.743776,40.970956],[-117.743469,40.971318],[-117.74341,40.971381],[-117.743119,40.97169],[-117.742797,40.972003],[-117.742598,40.972188],[-117.742401,40.972361],[-117.741964,40.972724],[-117.74161,40.972992],[-117.741363,40.973165],[-117.740967,40.973433],[-117.740091,40.974028],[-117.737459,40.975724],[-117.736432,40.976358],[-117.73595,40.976673],[-117.734782,40.977436],[-117.734075,40.977896],[-117.733692,40.978128],[-117.733049,40.978497],[-117.732532,40.97877],[-117.732183,40.978944],[-117.731511,40.979263],[-117.731163,40.979414],[-117.730691,40.979611],[-117.730117,40.979831],[-117.72945,40.980069],[-117.728875,40.980262],[-117.728534,40.980368],[-117.72744,40.980684],[-117.726754,40.980838],[-117.726124,40.980982],[-117.725546,40.981103],[-117.725411,40.981126],[-117.723554,40.981484],[-117.721511,40.981898],[-117.720079,40.982172],[-117.7017,40.985763],[-117.687717,40.988491],[-117.685329,40.989028],[-117.683967,40.989399],[-117.680894,40.990404],[-117.638933,41.007118],[-117.636212,41.008189],[-117.626177,41.012185],[-117.623522,41.01324],[-117.620576,41.014422],[-117.604334,41.0209],[-117.593593,41.025171],[-117.592444,41.025557],[-117.591143,41.025805],[-117.589708,41.025921],[-117.588239,41.025856],[-117.587012,41.025669],[-117.586338,41.025501],[-117.585321,41.025164],[-117.584669,41.024884],[-117.583566,41.024277],[-117.582719,41.02365],[-117.581308,41.022266],[-117.578646,41.019615],[-117.578463,41.019433],[-117.576758,41.017739],[-117.57567,41.016619],[-117.554947,40.995966],[-117.546051,40.98709],[-117.544871,40.986001],[-117.543595,40.984935],[-117.49603,40.950346],[-117.493374,40.948439],[-117.492521,40.947907],[-117.491328,40.94725],[-117.490153,40.946701],[-117.488803,40.94617],[-117.485765,40.945188],[-117.44486,40.932129],[-117.431568,40.92781],[-117.429837,40.927321],[-117.428992,40.927162],[-117.427812,40.927022],[-117.426522,40.926987],[-117.425525,40.92704],[-117.424052,40.927243],[-117.423051,40.92749],[-117.418218,40.92903],[-117.416823,40.929378],[-117.415864,40.929485],[-117.414629,40.929485],[-117.41337,40.929309],[-117.412666,40.929145],[-117.411623,40.928779],[-117.410784,40.928354],[-117.40081,40.922282],[-117.399433,40.921531],[-117.398115,40.921071],[-117.396899,40.920814],[-117.395558,40.920656],[-117.394329,40.920629],[-117.392304,40.920888],[-117.38713,40.92168],[-117.382835,40.922325],[-117.381186,40.922439],[-117.379929,40.92242],[-117.378813,40.92232],[-117.37791,40.922206],[-117.376539,40.921954],[-117.374924,40.921527],[-117.374147,40.921245],[-117.363397,40.916758],[-117.361714,40.916245],[-117.359742,40.915882],[-117.357994,40.915734],[-117.356231,40.915753],[-117.355409,40.915814],[-117.348174,40.916715],[-117.346933,40.916813],[-117.344756,40.916788],[-117.343203,40.916608],[-117.342215,40.916426],[-117.340422,40.915945],[-117.339371,40.915565],[-117.3234,40.909116],[-117.321889,40.908502],[-117.316254,40.906226],[-117.309003,40.90267],[-117.307258,40.901764],[-117.301402,40.898888],[-117.298367,40.897345],[-117.298001,40.897163],[-117.29725,40.896789],[-117.291958,40.894197],[-117.25299,40.874851],[-117.207616,40.852312],[-117.20606,40.851494],[-117.203662,40.850035],[-117.201886,40.848786],[-117.194104,40.84273],[-117.1912,40.840411],[-117.190827,40.840122],[-117.190764,40.840072],[-117.190288,40.839704],[-117.186768,40.836945],[-117.151977,40.809834],[-117.133019,40.794984],[-117.129095,40.791909],[-117.128789,40.791667],[-117.127678,40.790865],[-117.124924,40.78866],[-117.122658,40.786912],[-117.115924,40.78161],[-117.11127,40.777967],[-117.103237,40.771707],[-117.092073,40.762957],[-117.06907,40.745012],[-117.059168,40.737242],[-117.055361,40.734173],[-117.055206,40.734052],[-117.052355,40.731794],[-117.03477,40.718048],[-117.018223,40.705074],[-117.017855,40.704804],[-116.986522,40.680327],[-116.962814,40.661768],[-116.961835,40.660889],[-116.960859,40.659918],[-116.959915,40.658974],[-116.959114,40.658056],[-116.958542,40.657313],[-116.957597,40.656011],[-116.955838,40.653211],[-116.955365,40.652338],[-116.948267,40.639168],[-116.947744,40.638272],[-116.947185,40.637455],[-116.946225,40.636311],[-116.94551,40.635589],[-116.944122,40.634455],[-116.942234,40.633152],[-116.941756,40.632893],[-116.941013,40.632527],[-116.939101,40.631719],[-116.918379,40.623867],[-116.909361,40.620443],[-116.902141,40.617712],[-116.90023,40.617003],[-116.899341,40.616694],[-116.898425,40.616406],[-116.896697,40.615898],[-116.894898,40.615433],[-116.891465,40.614749],[-116.889586,40.614484],[-116.887685,40.614274],[-116.885793,40.614121],[-116.883826,40.614012],[-116.881701,40.613903],[-116.879604,40.613766],[-116.836748,40.611295],[-116.834274,40.611183],[-116.822629,40.610513],[-116.820718,40.610428],[-116.818766,40.610432],[-116.815119,40.610513],[-116.812458,40.610774],[-116.809401,40.611281],[-116.805463,40.612142],[-116.802029,40.613152],[-116.799369,40.614097],[-116.794948,40.616084],[-116.792073,40.61768],[-116.789799,40.619277],[-116.786923,40.621589],[-116.783984,40.624523],[-116.774827,40.63579],[-116.772083,40.639139],[-116.76956,40.642166],[-116.768272,40.643749],[-116.766667,40.64567],[-116.765225,40.647135],[-116.76338,40.648861],[-116.761543,40.650378],[-116.759603,40.651844],[-116.757698,40.653068],[-116.755209,40.654481],[-116.753363,40.655464],[-116.751046,40.656519],[-116.747999,40.657769],[-116.739279,40.661241],[-116.735381,40.662813],[-116.735,40.662968],[-116.731977,40.664155],[-116.717143,40.6701],[-116.715186,40.670751],[-116.712306,40.671622],[-116.711041,40.671922],[-116.70979,40.672174],[-116.707353,40.672574],[-116.706011,40.672733],[-116.704715,40.672833],[-116.702261,40.672969],[-116.696715,40.672952],[-116.683051,40.6729],[-116.663756,40.672808],[-116.647294,40.672698],[-116.644822,40.672763],[-116.642848,40.672913],[-116.639809,40.673284],[-116.63708,40.673772],[-116.634033,40.674455],[-116.631329,40.675191],[-116.622763,40.677625],[-116.595755,40.685276],[-116.563398,40.694488],[-116.562167,40.694836],[-116.560905,40.695172],[-116.560135,40.695338],[-116.557237,40.695944],[-116.556768,40.696039],[-116.55035,40.697278],[-116.538225,40.699671],[-116.536729,40.699936],[-116.536275,40.699994],[-116.535809,40.700048],[-116.535246,40.700101],[-116.53444,40.700153],[-116.534095,40.70017],[-116.533218,40.700185],[-116.53257,40.700182],[-116.532268,40.700167],[-116.531458,40.700118],[-116.530726,40.700059],[-116.530254,40.700002],[-116.516881,40.698285],[-116.516125,40.698182],[-116.513642,40.697847],[-116.512933,40.69774],[-116.511153,40.697381],[-116.50992,40.697132],[-116.509111,40.696958],[-116.507782,40.696648],[-116.507039,40.696461],[-116.506369,40.696283],[-116.505874,40.696147],[-116.505602,40.696063],[-116.505244,40.695938],[-116.505108,40.695896],[-116.503936,40.695531],[-116.502536,40.695055],[-116.501528,40.694686],[-116.499369,40.693798],[-116.497994,40.69318],[-116.497367,40.692882],[-116.496222,40.692316],[-116.493937,40.691039],[-116.468758,40.675752],[-116.46798,40.675286],[-116.46721,40.67484],[-116.466432,40.67441],[-116.465634,40.67399],[-116.46433,40.673349],[-116.446858,40.664703],[-116.445975,40.664294],[-116.445142,40.663941],[-116.444301,40.663615],[-116.443553,40.663354],[-116.441955,40.662884],[-116.441056,40.662657],[-116.440464,40.662522],[-116.440048,40.662435],[-116.439238,40.662293],[-116.438606,40.662191],[-116.437692,40.662066],[-116.435826,40.66187],[-116.412754,40.659563],[-116.411502,40.659419],[-116.410864,40.659328],[-116.410221,40.659228],[-116.40967,40.659135],[-116.409254,40.659062],[-116.408537,40.65893],[-116.407892,40.658793],[-116.406574,40.658496],[-116.405829,40.658308],[-116.40513,40.658123],[-116.404415,40.657913],[-116.403996,40.657785],[-116.403032,40.657473],[-116.402525,40.6573],[-116.372811,40.646816],[-116.372493,40.646705],[-116.371996,40.646546],[-116.371111,40.64625],[-116.367078,40.645037],[-116.363701,40.644009],[-116.362901,40.643779],[-116.361369,40.643311],[-116.360679,40.643087],[-116.359929,40.642853],[-116.359262,40.642651],[-116.358636,40.64245],[-116.35818,40.642312],[-116.357013,40.641954],[-116.356247,40.641711],[-116.354836,40.641293],[-116.354076,40.641059],[-116.352807,40.640683],[-116.352195,40.64049],[-116.351556,40.640297],[-116.35081,40.640055],[-116.348527,40.639352],[-116.347782,40.639128],[-116.347015,40.638894],[-116.346525,40.638738],[-116.344701,40.638191],[-116.343959,40.637993],[-116.343639,40.637915],[-116.343174,40.637827],[-116.342529,40.637728],[-116.342273,40.637695],[-116.341436,40.637628],[-116.340789,40.637592],[-116.340202,40.637576],[-116.339966,40.637574],[-116.33952,40.637585],[-116.338791,40.637626],[-116.33829,40.637668],[-116.337983,40.637702],[-116.337687,40.637741],[-116.337325,40.637798],[-116.336626,40.637942],[-116.336189,40.638044],[-116.335656,40.638185],[-116.335173,40.638335],[-116.334589,40.638534],[-116.33403,40.638747],[-116.333526,40.638965],[-116.333245,40.639103],[-116.332387,40.639499],[-116.331859,40.639735],[-116.33081,40.640193],[-116.329722,40.640664],[-116.329578,40.640728],[-116.328973,40.640997],[-116.328235,40.641349],[-116.327449,40.641714],[-116.326653,40.642065],[-116.325833,40.642438],[-116.325123,40.642768],[-116.324379,40.643096],[-116.323629,40.643421],[-116.322258,40.643962],[-116.321232,40.644312],[-116.320958,40.644392],[-116.320227,40.64459],[-116.319359,40.644801],[-116.319108,40.644854],[-116.31868,40.644937],[-116.31832,40.644993],[-116.317554,40.645137],[-116.317419,40.645157],[-116.317238,40.645185],[-116.316911,40.645228],[-116.315942,40.645335],[-116.314772,40.645423],[-116.314012,40.645499],[-116.313632,40.645542],[-116.313221,40.645594],[-116.312711,40.645681],[-116.311767,40.645873],[-116.31091,40.646071],[-116.310636,40.646146],[-116.30963,40.646442],[-116.309421,40.646508],[-116.309188,40.646588],[-116.308952,40.646676],[-116.308878,40.646705],[-116.308327,40.64692],[-116.307858,40.647116],[-116.304901,40.648408],[-116.303182,40.649164],[-116.302849,40.649306],[-116.302519,40.649435],[-116.30226,40.649528],[-116.30171,40.649714],[-116.301042,40.649894],[-116.300616,40.649995],[-116.29985,40.650139],[-116.299466,40.650196],[-116.299011,40.650247],[-116.298549,40.65028],[-116.298348,40.650288],[-116.298183,40.6503],[-116.298016,40.650305],[-116.297888,40.650308],[-116.296635,40.650321],[-116.295604,40.65033],[-116.294744,40.650379],[-116.293845,40.650441],[-116.293136,40.650571],[-116.292213,40.650768],[-116.274781,40.655359],[-116.266836,40.657389],[-116.265385,40.65779],[-116.264645,40.657979],[-116.264289,40.658062],[-116.263804,40.658167],[-116.263492,40.658228],[-116.262775,40.658354],[-116.262168,40.65847],[-116.261735,40.658537],[-116.260961,40.658613],[-116.260622,40.658644],[-116.260545,40.658651],[-116.259748,40.658709],[-116.258752,40.658746],[-116.258177,40.658744],[-116.257088,40.65872],[-116.255307,40.658665],[-116.254795,40.658645],[-116.254173,40.658639],[-116.253681,40.658657],[-116.25328,40.658676],[-116.252883,40.658708],[-116.252544,40.658741],[-116.251585,40.658882],[-116.251272,40.658935],[-116.250993,40.658995],[-116.250576,40.659091],[-116.249311,40.659441],[-116.248422,40.659655],[-116.246187,40.660229],[-116.242502,40.661167],[-116.241162,40.6615],[-116.239828,40.661857],[-116.239247,40.662021],[-116.238649,40.662203],[-116.237307,40.662669],[-116.236745,40.662896],[-116.235927,40.66326],[-116.235259,40.663601],[-116.234441,40.664031],[-116.234006,40.664271],[-116.233243,40.664708],[-116.232795,40.66493],[-116.231888,40.665411],[-116.230842,40.665973],[-116.229988,40.666443],[-116.227871,40.667623],[-116.226853,40.668197],[-116.224748,40.669398],[-116.22364,40.669995],[-116.222255,40.670665],[-116.220979,40.671295],[-116.218662,40.672452],[-116.217487,40.673046],[-116.213734,40.674922],[-116.212527,40.675551],[-116.211264,40.67618],[-116.210008,40.676828],[-116.208694,40.677476],[-116.207369,40.678116],[-116.20603,40.678773],[-116.204714,40.679445],[-116.203447,40.680085],[-116.202175,40.680705],[-116.201477,40.681008],[-116.200615,40.681325],[-116.200304,40.681435],[-116.199942,40.681547],[-116.199409,40.681689],[-116.198549,40.681917],[-116.197074,40.682306],[-116.194421,40.682975],[-116.193184,40.683259],[-116.190436,40.683908],[-116.189596,40.684105],[-116.188857,40.684278],[-116.188036,40.684495],[-116.187282,40.684707],[-116.186587,40.684927],[-116.185974,40.685149],[-116.185014,40.685554],[-116.184453,40.685796],[-116.183656,40.68621],[-116.18313,40.68649],[-116.182613,40.686793],[-116.182117,40.687134],[-116.181566,40.687516],[-116.181363,40.687657],[-116.180953,40.687933],[-116.180678,40.688134],[-116.179987,40.688723],[-116.179679,40.689031],[-116.179159,40.689565],[-116.179004,40.689733],[-116.178571,40.690202],[-116.178485,40.690315],[-116.178133,40.690779],[-116.177936,40.691028],[-116.177748,40.691294],[-116.177566,40.691562],[-116.17725,40.692076],[-116.177035,40.692458],[-116.17667,40.693136],[-116.176283,40.693837],[-116.175835,40.6946],[-116.175406,40.695361],[-116.174973,40.696143],[-116.174104,40.697658],[-116.173527,40.698445],[-116.17319,40.698879],[-116.172694,40.699489],[-116.172347,40.699886],[-116.17183,40.700455],[-116.171225,40.701037],[-116.170605,40.701569],[-116.169871,40.702117],[-116.169179,40.702619],[-116.168724,40.702933],[-116.168013,40.703382],[-116.166014,40.704483],[-116.157724,40.709072],[-116.145127,40.716007],[-116.144421,40.716368],[-116.143771,40.716662],[-116.142909,40.717022],[-116.142157,40.717287],[-116.14195,40.71736],[-116.141246,40.717597],[-116.140705,40.71775],[-116.139636,40.718003],[-116.139319,40.718069],[-116.138603,40.718188],[-116.138336,40.718232],[-116.138192,40.718257],[-116.137494,40.71839],[-116.136843,40.718467],[-116.135953,40.718527],[-116.134892,40.718562],[-116.133851,40.718547],[-116.133209,40.718534],[-116.123595,40.71836],[-116.122195,40.718377],[-116.120678,40.718476],[-116.118966,40.71866],[-116.117565,40.718902],[-116.116915,40.71903],[-116.116631,40.719094],[-116.11575,40.719299],[-116.115207,40.71944],[-116.114528,40.719631],[-116.11405,40.719776],[-116.112647,40.720232],[-116.112047,40.720428],[-116.11138,40.720642],[-116.109654,40.721174],[-116.103774,40.723011],[-116.102997,40.723222],[-116.102613,40.723314],[-116.102441,40.723358],[-116.100389,40.723844],[-116.099226,40.72405],[-116.097884,40.724246],[-116.097116,40.724345],[-116.095786,40.724485],[-116.094548,40.724579],[-116.094073,40.724603],[-116.092315,40.724674],[-116.08883,40.724678],[-116.077982,40.724726],[-116.077505,40.72473],[-116.077033,40.724731],[-116.073302,40.724768],[-116.071531,40.724832],[-116.069917,40.724981],[-116.068302,40.725197],[-116.04092,40.728677],[-116.039935,40.728762],[-116.039126,40.72881],[-116.03838,40.728824],[-116.037882,40.728811],[-116.037376,40.728798],[-116.036137,40.728709],[-116.035793,40.72868],[-116.035052,40.72859],[-116.034111,40.72843],[-116.033084,40.728218],[-116.032483,40.728066],[-116.031878,40.727897],[-116.030122,40.727369],[-116.018921,40.723962],[-116.018326,40.723749],[-116.01808,40.72362],[-116.017438,40.723339],[-116.016294,40.722806],[-116.01211,40.720538],[-116.011827,40.720389],[-116.010749,40.71981],[-116.00738,40.718032],[-116.006078,40.717366],[-116.005273,40.716966],[-116.004875,40.716784],[-116.003938,40.716406],[-116.003439,40.716228],[-116.002532,40.715937],[-116.001455,40.715655],[-116.00069,40.715485],[-115.999938,40.715343],[-115.999028,40.715207],[-115.995303,40.714773],[-115.994105,40.714634],[-115.99043,40.714206],[-115.989061,40.714047],[-115.985121,40.713589],[-115.98483,40.713568],[-115.984548,40.713561],[-115.984025,40.713579],[-115.983454,40.713618],[-115.983178,40.713651],[-115.982606,40.71375],[-115.981965,40.713911],[-115.981681,40.713989],[-115.981338,40.714107],[-115.980799,40.714325],[-115.980402,40.714517],[-115.980004,40.714753],[-115.97969,40.714965],[-115.974614,40.718787],[-115.971501,40.721139],[-115.971004,40.721472],[-115.97016,40.72197],[-115.969743,40.7222],[-115.969301,40.722407],[-115.966626,40.723601],[-115.965887,40.723946],[-115.961941,40.725718],[-115.960846,40.726226],[-115.960009,40.726663],[-115.959636,40.726875],[-115.959101,40.727208],[-115.958432,40.727685],[-115.957839,40.728153],[-115.957435,40.728508],[-115.955385,40.730599],[-115.954184,40.731895],[-115.953554,40.732543],[-115.952487,40.733695],[-115.952069,40.734165],[-115.951501,40.734753],[-115.951013,40.73528],[-115.950564,40.735803],[-115.950305,40.736137],[-115.949698,40.736986],[-115.949477,40.737337],[-115.94893,40.738291],[-115.943547,40.748421],[-115.94292,40.749506],[-115.942464,40.750222],[-115.941664,40.751404],[-115.941203,40.752058],[-115.940716,40.752687],[-115.939842,40.753669],[-115.938858,40.754732],[-115.937497,40.756048],[-115.93654,40.756905],[-115.935977,40.757372],[-115.934597,40.758448],[-115.933107,40.759523],[-115.932516,40.75991],[-115.931749,40.760385],[-115.930723,40.760985],[-115.92941,40.761688],[-115.924629,40.764196],[-115.915837,40.768697],[-115.911953,40.770651],[-115.911052,40.771099],[-115.910054,40.77157],[-115.90916,40.771973],[-115.908425,40.772282],[-115.907125,40.772786],[-115.906235,40.773098],[-115.90494,40.773513],[-115.875014,40.782474],[-115.873353,40.783054],[-115.872675,40.783302],[-115.871527,40.783739],[-115.871358,40.783803],[-115.87086,40.784006],[-115.868407,40.785079],[-115.865457,40.786397],[-115.852479,40.792138],[-115.851351,40.79266],[-115.850503,40.793074],[-115.848749,40.793986],[-115.831102,40.803743],[-115.830126,40.804323],[-115.828071,40.805728],[-115.826726,40.806708],[-115.826272,40.80708],[-115.82581,40.807473],[-115.824681,40.808493],[-115.824323,40.808855],[-115.824033,40.809148],[-115.82318,40.810012],[-115.822762,40.81048],[-115.822369,40.810934],[-115.820935,40.812665],[-115.820518,40.813148],[-115.820128,40.813559],[-115.819509,40.814218],[-115.818706,40.814996],[-115.818344,40.815297],[-115.81819,40.815424],[-115.817984,40.815603],[-115.817579,40.815958],[-115.816631,40.816788],[-115.816374,40.81699],[-115.8153,40.817736],[-115.814709,40.818137],[-115.814299,40.818456],[-115.813725,40.818838],[-115.812971,40.819285],[-115.811846,40.819985],[-115.811197,40.820374],[-115.809432,40.82146],[-115.808755,40.821907],[-115.807482,40.822684],[-115.806017,40.823612],[-115.804846,40.824342],[-115.803805,40.825016],[-115.80282,40.825702],[-115.802146,40.826224],[-115.800826,40.827321],[-115.800057,40.82802],[-115.799905,40.828164],[-115.799386,40.828654],[-115.798941,40.829099],[-115.798212,40.829827],[-115.7959,40.832203],[-115.795395,40.83271],[-115.794986,40.833075],[-115.79489,40.833153],[-115.794713,40.833301],[-115.794092,40.833757],[-115.793788,40.833965],[-115.793355,40.834228],[-115.793052,40.834393],[-115.792722,40.83456],[-115.79234,40.834728],[-115.792038,40.834864],[-115.791499,40.835066],[-115.79086,40.835274],[-115.790169,40.83546],[-115.789639,40.835586],[-115.789318,40.83565],[-115.78382,40.83677],[-115.782654,40.836967],[-115.782034,40.837124],[-115.781386,40.837312],[-115.781093,40.837406],[-115.780628,40.837586],[-115.780256,40.837745],[-115.779813,40.837952],[-115.779142,40.838311],[-115.778456,40.838722],[-115.775598,40.840871],[-115.775145,40.841215],[-115.773679,40.842305],[-115.773269,40.842594],[-115.772601,40.843021],[-115.772086,40.843325],[-115.771306,40.843749],[-115.771164,40.843821],[-115.770654,40.844077],[-115.770368,40.844197],[-115.769452,40.844583],[-115.768825,40.844824],[-115.768315,40.844992],[-115.767791,40.845154],[-115.766934,40.845403],[-115.766412,40.845523],[-115.761963,40.846591],[-115.761286,40.846746],[-115.759029,40.84726],[-115.757351,40.847688],[-115.756237,40.847998],[-115.754568,40.848576],[-115.753254,40.8491],[-115.752057,40.849612],[-115.750513,40.850352],[-115.749875,40.850696],[-115.749034,40.851186],[-115.748423,40.851567],[-115.747444,40.852217],[-115.746941,40.852564],[-115.746431,40.852931],[-115.745328,40.853804],[-115.744756,40.854302],[-115.743783,40.855239],[-115.742773,40.856123],[-115.739059,40.859683],[-115.733857,40.864542],[-115.733592,40.86479],[-115.718097,40.879259],[-115.717815,40.879535],[-115.716611,40.88078],[-115.71606,40.881511],[-115.715448,40.88243],[-115.715054,40.883141],[-115.714659,40.883971],[-115.714386,40.884681],[-115.714137,40.885469],[-115.713372,40.88843],[-115.71307,40.889356],[-115.712951,40.889698],[-115.712648,40.89048],[-115.712349,40.891166],[-115.712141,40.89159],[-115.71188,40.892084],[-115.711379,40.892932],[-115.710851,40.893756],[-115.709686,40.895331],[-115.709509,40.895533],[-115.707569,40.897546],[-115.7057,40.899512],[-115.705266,40.899983],[-115.704331,40.900961],[-115.703509,40.901875],[-115.703129,40.902277],[-115.698368,40.907458],[-115.697649,40.908106],[-115.695132,40.91085],[-115.691794,40.914424],[-115.690013,40.916316],[-115.688793,40.9175],[-115.688578,40.917707],[-115.687958,40.918276],[-115.687031,40.919089],[-115.685978,40.919937],[-115.684823,40.920789],[-115.684039,40.921324],[-115.683265,40.921872],[-115.669452,40.931136],[-115.668442,40.931815],[-115.666669,40.932999],[-115.665819,40.933511],[-115.665528,40.933681],[-115.664294,40.93437],[-115.663493,40.934786],[-115.662299,40.935355],[-115.660575,40.936107],[-115.650983,40.940261],[-115.640355,40.944889],[-115.63315,40.948026],[-115.632178,40.948398],[-115.631449,40.948641],[-115.630745,40.948825],[-115.630037,40.949022],[-115.62957,40.949138],[-115.62865,40.949322],[-115.627511,40.949503],[-115.626957,40.949566],[-115.625952,40.949645],[-115.624857,40.949677],[-115.624392,40.949676],[-115.599335,40.949463],[-115.594349,40.949421],[-115.59378,40.949412],[-115.591655,40.949382],[-115.589283,40.94937],[-115.572935,40.949213],[-115.562193,40.949125],[-115.556801,40.949136],[-115.55161,40.949145],[-115.551194,40.949146],[-115.545632,40.949155],[-115.54492,40.949154],[-115.544798,40.949154],[-115.534138,40.949179],[-115.533698,40.949179],[-115.529656,40.949192],[-115.529251,40.949194],[-115.527291,40.9492],[-115.525638,40.949225],[-115.524835,40.94927],[-115.523439,40.949334],[-115.522724,40.949397],[-115.521333,40.949569],[-115.52015,40.949751],[-115.482403,40.955822],[-115.470737,40.957691],[-115.466395,40.9584],[-115.46603,40.958468],[-115.464564,40.958765],[-115.462644,40.959241],[-115.462024,40.959405],[-115.461344,40.959597],[-115.46058,40.959841],[-115.459585,40.960185],[-115.458555,40.960569],[-115.45722,40.961082],[-115.456634,40.961324],[-115.455768,40.961721],[-115.454725,40.962252],[-115.454024,40.9626],[-115.453064,40.963103],[-115.451454,40.964083],[-115.450797,40.964525],[-115.449919,40.965141],[-115.448978,40.965839],[-115.448593,40.966131],[-115.447923,40.966682],[-115.446849,40.967631],[-115.44597,40.968476],[-115.44513,40.969349],[-115.444186,40.970412],[-115.443874,40.970877],[-115.443229,40.971688],[-115.4428,40.972269],[-115.434216,40.984928],[-115.423881,41.000062],[-115.423469,41.000638],[-115.42283,41.001477],[-115.422295,41.002138],[-115.421963,41.002521],[-115.420607,41.003964],[-115.420335,41.004234],[-115.420269,41.0043],[-115.418305,41.006018],[-115.417558,41.006598],[-115.416752,41.007176],[-115.395557,41.023236],[-115.393969,41.024293],[-115.39314,41.024805],[-115.391872,41.025568],[-115.390519,41.026261],[-115.386522,41.028201],[-115.382512,41.030119],[-115.38223,41.030254],[-115.37804,41.032267],[-115.298662,41.069778],[-115.28902,41.074245],[-115.272794,41.081777],[-115.272439,41.081939],[-115.268162,41.083891],[-115.267222,41.084306],[-115.266504,41.084587],[-115.265926,41.08479],[-115.265335,41.084977],[-115.264566,41.085188],[-115.263276,41.085512],[-115.26285,41.085608],[-115.262411,41.085696],[-115.261857,41.085778],[-115.261235,41.08586],[-115.26045,41.085937],[-115.259657,41.085992],[-115.259105,41.086014],[-115.258173,41.086015],[-115.257838,41.086016],[-115.24122,41.085894],[-115.240875,41.085891],[-115.231833,41.08582],[-115.228735,41.085783],[-115.192557,41.085475],[-115.192154,41.085478],[-115.190537,41.085517],[-115.189059,41.085592],[-115.187802,41.085704],[-115.186796,41.085811],[-115.185066,41.08605],[-115.11602,41.097513],[-115.107805,41.098879],[-115.105012,41.09925],[-115.091548,41.100798],[-115.089991,41.100998],[-115.088377,41.101278],[-115.087766,41.101385],[-115.085839,41.101807],[-115.052043,41.109648],[-115.05148,41.109785],[-115.050033,41.110098],[-115.049542,41.110185],[-115.049157,41.110254],[-115.0487,41.110327],[-115.046872,41.110572],[-115.045564,41.110719],[-115.044834,41.11078],[-115.044053,41.110835],[-115.043037,41.110886],[-115.041852,41.110923],[-115.040875,41.110928],[-115.040176,41.110917],[-115.039235,41.110879],[-115.03871,41.110858],[-115.037583,41.110775],[-115.036344,41.110665],[-115.035629,41.110579],[-115.034429,41.110421],[-115.032523,41.110148],[-115.022904,41.108617],[-115.016459,41.107634],[-115.014938,41.107423],[-115.01441,41.107362],[-115.014007,41.107327],[-115.010926,41.107052],[-114.985203,41.105062],[-114.984496,41.104993],[-114.979641,41.104623],[-114.97912,41.104585],[-114.978476,41.104538],[-114.974567,41.104189],[-114.97383,41.104067],[-114.971952,41.103741],[-114.970118,41.103275],[-114.969064,41.102982],[-114.968533,41.102829],[-114.967974,41.102652],[-114.962332,41.100854],[-114.958317,41.099579],[-114.957723,41.09939],[-114.955678,41.09876],[-114.955079,41.098611],[-114.954501,41.098492],[-114.952372,41.09815],[-114.951681,41.098075],[-114.950815,41.098015],[-114.940375,41.097578],[-114.93933,41.097593],[-114.938601,41.097635],[-114.937511,41.097737],[-114.935836,41.097966],[-114.902836,41.10259],[-114.872073,41.106904],[-114.864018,41.108022],[-114.836143,41.11186],[-114.834654,41.112026],[-114.833259,41.112123],[-114.831885,41.112185],[-114.831168,41.112201],[-114.809382,41.112465],[-114.803538,41.112521],[-114.803123,41.112521],[-114.79779,41.112593],[-114.783738,41.112738],[-114.783228,41.112728],[-114.781878,41.11268],[-114.781287,41.112645],[-114.780047,41.112551],[-114.779624,41.112511],[-114.778418,41.112353],[-114.777585,41.112213],[-114.776828,41.112071],[-114.775973,41.111893],[-114.77509,41.111689],[-114.774103,41.111432],[-114.773329,41.111217],[-114.772789,41.111056],[-114.772004,41.110802],[-114.715946,41.091919],[-114.710508,41.090084],[-114.710055,41.089931],[-114.704536,41.088101],[-114.665828,41.075007],[-114.664587,41.07462],[-114.663805,41.074394],[-114.662751,41.074106],[-114.6616,41.073834],[-114.660624,41.073629],[-114.659556,41.073431],[-114.648524,41.071629],[-114.646904,41.071421],[-114.646308,41.071363],[-114.644473,41.071217],[-114.643655,41.071178],[-114.642134,41.07114],[-114.640899,41.071148],[-114.639368,41.071173],[-114.638378,41.07121],[-114.624492,41.071854],[-114.623552,41.071889],[-114.623231,41.07189],[-114.622307,41.071847],[-114.621497,41.071773],[-114.620709,41.071658],[-114.620257,41.071559],[-114.619613,41.071391],[-114.618796,41.071139],[-114.618547,41.071046],[-114.618098,41.070864],[-114.617374,41.070516],[-114.614713,41.069119],[-114.614209,41.06888],[-114.613708,41.068657],[-114.613334,41.068487],[-114.613,41.068317],[-114.612388,41.068015],[-114.611844,41.067724],[-114.610013,41.066779],[-114.609672,41.06663],[-114.609377,41.066512],[-114.608998,41.066389],[-114.608689,41.066314],[-114.608528,41.066278],[-114.608286,41.066224],[-114.608026,41.066178],[-114.607813,41.06615],[-114.607568,41.066132],[-114.606708,41.066091],[-114.606211,41.066085],[-114.605775,41.0661],[-114.605377,41.066144],[-114.604946,41.066211],[-114.604515,41.066293],[-114.603406,41.066595],[-114.602765,41.066865],[-114.602232,41.067143],[-114.60173,41.067439],[-114.6014,41.067675],[-114.601099,41.067907],[-114.600708,41.068273],[-114.599374,41.0698],[-114.598626,41.07067],[-114.598181,41.071173],[-114.597572,41.071886],[-114.597324,41.072135],[-114.597061,41.072358],[-114.596695,41.072636],[-114.59639,41.072845],[-114.596107,41.07301],[-114.595973,41.073087],[-114.595564,41.073288],[-114.59531,41.073403],[-114.594916,41.073553],[-114.594531,41.073686],[-114.594165,41.073781],[-114.593727,41.073881],[-114.593305,41.073952],[-114.593021,41.073989],[-114.592806,41.074005],[-114.59249,41.074022],[-114.591831,41.074056],[-114.591641,41.074065],[-114.591319,41.074095],[-114.590957,41.074145],[-114.590601,41.074211],[-114.590032,41.074343],[-114.589533,41.07449],[-114.589053,41.074676],[-114.588769,41.074802],[-114.588399,41.074983],[-114.58815,41.075128],[-114.587981,41.075226],[-114.587344,41.075608],[-114.586797,41.075908],[-114.586578,41.076017],[-114.58619,41.076181],[-114.585837,41.076314],[-114.585592,41.076402],[-114.585279,41.076502],[-114.584968,41.076589],[-114.584529,41.076687],[-114.579371,41.077706],[-114.578147,41.077876],[-114.577458,41.077944],[-114.57683,41.077982],[-114.576436,41.078007],[-114.575272,41.078037],[-114.57446,41.078042],[-114.574068,41.078034],[-114.573635,41.078011],[-114.572175,41.077917],[-114.571432,41.077834],[-114.570811,41.077759],[-114.569888,41.077607],[-114.569131,41.077464],[-114.568001,41.077205],[-114.567081,41.076943],[-114.566387,41.076717],[-114.565766,41.0765],[-114.565222,41.076299],[-114.564804,41.076127],[-114.56439,41.075965],[-114.564006,41.0758],[-114.562686,41.075205],[-114.561618,41.07471],[-114.560746,41.074366],[-114.560362,41.074213],[-114.558327,41.073534],[-114.557593,41.073337],[-114.557042,41.073208],[-114.556649,41.073125],[-114.555813,41.072964],[-114.554972,41.072819],[-114.553833,41.072661],[-114.553127,41.072581],[-114.552068,41.072441],[-114.551578,41.072379],[-114.55108,41.072315],[-114.550709,41.072272],[-114.549939,41.072171],[-114.549287,41.072077],[-114.548656,41.071968],[-114.548392,41.071914],[-114.547717,41.071759],[-114.547205,41.071626],[-114.546516,41.071415],[-114.546052,41.071254],[-114.545863,41.071179],[-114.545379,41.070997],[-114.544765,41.070729],[-114.543929,41.070317],[-114.54354,41.070108],[-114.543093,41.069839],[-114.542701,41.069594],[-114.542167,41.069214],[-114.541722,41.068881],[-114.541316,41.06853],[-114.540188,41.067555],[-114.539686,41.067107],[-114.539072,41.066602],[-114.538643,41.066285],[-114.538134,41.065944],[-114.537791,41.065734],[-114.537271,41.065434],[-114.536739,41.065165],[-114.536127,41.064878],[-114.535526,41.064623],[-114.535185,41.064492],[-114.534744,41.06433],[-114.534336,41.064194],[-114.533694,41.064008],[-114.533075,41.063847],[-114.531202,41.063417],[-114.528149,41.0627],[-114.527772,41.062601],[-114.527394,41.062486],[-114.526586,41.062207],[-114.525767,41.061881],[-114.525142,41.061606],[-114.524875,41.06147],[-114.524285,41.06117],[-114.523721,41.060883],[-114.523222,41.060584],[-114.522813,41.060324],[-114.522078,41.059831],[-114.521657,41.05952],[-114.52102,41.059028],[-114.520325,41.058436],[-114.5202,41.058314],[-114.519909,41.058022],[-114.519522,41.057594],[-114.519112,41.057169],[-114.51385,41.051587],[-114.512986,41.050703],[-114.504429,41.041622],[-114.502165,41.039235],[-114.500875,41.037883],[-114.500362,41.037345],[-114.499906,41.036905],[-114.49914,41.036202],[-114.498572,41.035712],[-114.498023,41.035256],[-114.49735,41.034739],[-114.496911,41.034412],[-114.496285,41.033962],[-114.493473,41.032046],[-114.489905,41.029693],[-114.489482,41.029396],[-114.485588,41.026716],[-114.483274,41.025167],[-114.458822,41.008666],[-114.450012,41.002715],[-114.444129,40.998764],[-114.443625,40.998423],[-114.420751,40.982946],[-114.40448,40.971948],[-114.386846,40.960004],[-114.37226,40.950116],[-114.371079,40.949291],[-114.364254,40.944799],[-114.363551,40.94438],[-114.362715,40.943933],[-114.35966,40.942263],[-114.328085,40.925382],[-114.327414,40.924978],[-114.326826,40.924608],[-114.326295,40.924254],[-114.325776,40.923865],[-114.325267,40.923442],[-114.324661,40.922917],[-114.323868,40.922101],[-114.323187,40.921311],[-114.320566,40.917656],[-114.320101,40.917056],[-114.318861,40.915454],[-114.318598,40.915122],[-114.318371,40.914868],[-114.317833,40.914345],[-114.317365,40.913927],[-114.316744,40.913414],[-114.315936,40.912847],[-114.315446,40.912531],[-114.314784,40.912157],[-114.295377,40.902493],[-114.294764,40.902204],[-114.294142,40.901924],[-114.293897,40.901828],[-114.293403,40.901647],[-114.29321,40.90159],[-114.292552,40.90141],[-114.291964,40.901271],[-114.291404,40.901164],[-114.290788,40.901074],[-114.290177,40.901006],[-114.289827,40.900985],[-114.289148,40.900965],[-114.288369,40.901001],[-114.285373,40.901194],[-114.284607,40.901194],[-114.284351,40.901189],[-114.283726,40.901168],[-114.283172,40.90113],[-114.282757,40.901085],[-114.28193,40.900953],[-114.281292,40.900814],[-114.280445,40.900584],[-114.274298,40.898678],[-114.273588,40.898436],[-114.272556,40.898064],[-114.271532,40.897678],[-114.269937,40.897036],[-114.268916,40.896597],[-114.268311,40.896322],[-114.267322,40.895849],[-114.266845,40.895632],[-114.266217,40.895327],[-114.26504,40.89472],[-114.263879,40.894095],[-114.262666,40.893379],[-114.261782,40.892844],[-114.260738,40.892181],[-114.259913,40.891627],[-114.25873,40.890798],[-114.257797,40.890108],[-114.25664,40.889206],[-114.255482,40.888212],[-114.255174,40.887964],[-114.254772,40.887619],[-114.254351,40.887234],[-114.25357,40.886492],[-114.253402,40.886326],[-114.252041,40.884984],[-114.251381,40.884309],[-114.251053,40.883975],[-114.250823,40.883731],[-114.250108,40.883029],[-114.247433,40.880329],[-114.24467,40.877562],[-114.241256,40.874119],[-114.237896,40.870739],[-114.236978,40.86983],[-114.236201,40.869027],[-114.234526,40.867347],[-114.232387,40.865213],[-114.231408,40.864223],[-114.226315,40.859133],[-114.222971,40.855798],[-114.2224,40.855215],[-114.215448,40.848218],[-114.210088,40.842758],[-114.209744,40.842413],[-114.205548,40.838216],[-114.195299,40.827863],[-114.193784,40.826339],[-114.191299,40.823806],[-114.190403,40.822913],[-114.18834,40.820875],[-114.186523,40.819039],[-114.184428,40.816916],[-114.183562,40.816052],[-114.182543,40.815004],[-114.180723,40.813181],[-114.179862,40.812317],[-114.179201,40.811676],[-114.178387,40.810851],[-114.176195,40.808656],[-114.173746,40.806183],[-114.173456,40.805904],[-114.17306,40.805484],[-114.171282,40.803691],[-114.170347,40.802757],[-114.168233,40.800629],[-114.167509,40.799898],[-114.166757,40.799155],[-114.164551,40.796925],[-114.163665,40.796024],[-114.162601,40.794941],[-114.161084,40.79344],[-114.15997,40.792287],[-114.159382,40.791704],[-114.158679,40.790985],[-114.157248,40.789562],[-114.156173,40.788459],[-114.154027,40.786317],[-114.1531,40.785368],[-114.149976,40.782244],[-114.149283,40.781528],[-114.148566,40.780803],[-114.148168,40.780416],[-114.147086,40.779316],[-114.143606,40.77581],[-114.141896,40.774117],[-114.141079,40.773407],[-114.139998,40.772503],[-114.138352,40.771211],[-114.137295,40.770416],[-114.134271,40.768065],[-114.133162,40.767198],[-114.130656,40.765253],[-114.130095,40.764826],[-114.127869,40.763105],[-114.126543,40.762061],[-114.125972,40.761623],[-114.125287,40.761083],[-114.123821,40.759957],[-114.119005,40.756216],[-114.115951,40.753847],[-114.114165,40.752458],[-114.113797,40.752172],[-114.110433,40.749567],[-114.109163,40.748715],[-114.108548,40.748334],[-114.107898,40.747917],[-114.107533,40.747703],[-114.106729,40.747256],[-114.10605,40.746925],[-114.105005,40.746472],[-114.10311,40.745749],[-114.102076,40.745441],[-114.100885,40.745109],[-114.099921,40.744882],[-114.098982,40.744687],[-114.097656,40.744457],[-114.096887,40.744351],[-114.095789,40.744241],[-114.094517,40.744145],[-114.093346,40.744095],[-114.092596,40.744095],[-114.090301,40.744145],[-114.086986,40.744244],[-114.08474,40.744291],[-114.084633,40.744294],[-114.082548,40.74435],[-114.081262,40.744385],[-114.078857,40.744453],[-114.078507,40.744462],[-114.078129,40.744473],[-114.077552,40.744473],[-114.077206,40.744466],[-114.076512,40.744451],[-114.075626,40.744402],[-114.075549,40.744398],[-114.074675,40.74432],[-114.073635,40.744202],[-114.072916,40.74409],[-114.072396,40.743991],[-114.071929,40.743903],[-114.070272,40.743506],[-114.069748,40.743359],[-114.06917,40.743173],[-114.069051,40.743135],[-114.067646,40.7427],[-114.067247,40.742577],[-114.06676,40.742426],[-114.066623,40.742382],[-114.06514,40.741912],[-114.064948,40.741851],[-114.064811,40.741809],[-114.064096,40.741587],[-114.06286,40.741205],[-114.062029,40.740952],[-114.061877,40.7409],[-114.061773,40.740865],[-114.061006,40.740624],[-114.05996,40.740303],[-114.058109,40.739722],[-114.057488,40.739541],[-114.056373,40.739205],[-114.055694,40.73901],[-114.055138,40.738867],[-114.053986,40.738586],[-114.053624,40.738509],[-114.052877,40.738368],[-114.052503,40.738298],[-114.052073,40.738232],[-114.051567,40.738163],[-114.050846,40.738065],[-114.050131,40.737989],[-114.049677,40.737951],[-114.049538,40.73794],[-114.048656,40.737877],[-114.047762,40.737838],[-114.046451,40.737828],[-114.044895,40.737889],[-114.044358,40.737921],[-114.044176,40.737938],[-114.043484,40.738],[-114.043323,40.738014],[-114.042745,40.738081],[-114.040849,40.738398],[-114.039707,40.738625],[-114.038574,40.738918],[-114.037774,40.739155],[-114.037347,40.739282],[-114.0346,40.740232],[-114.021953,40.744737],[-114.018739,40.745649],[-114.017777,40.745844],[-114.016078,40.746175],[-114.013041,40.746589],[-114.010731,40.746904],[-114.008585,40.747034],[-114.006954,40.747066],[-114.005135,40.747066],[-114.003109,40.746962],[-114.001255,40.746845],[-113.998877,40.746559],[-113.996414,40.746143],[-113.990603,40.745076],[-113.983428,40.743802],[-113.977133,40.742836],[-113.970845,40.742052],[-113.967772,40.741737],[-113.962149,40.741253],[-113.953695,40.740717],[-113.937652,40.740151],[-113.908006,40.739541],[-113.875838,40.73888],[-113.86016,40.738593],[-113.859251,40.738559],[-113.854764,40.738455],[-113.852359,40.738408],[-113.844183,40.738228],[-113.822568,40.737936],[-113.821426,40.737907],[-113.789006,40.73708],[-113.77317,40.7369],[-113.750834,40.736332],[-113.709501,40.735548],[-113.631927,40.733889],[-113.622451,40.733688],[-113.610138,40.733381],[-113.594402,40.733014],[-113.541925,40.731792],[-113.520129,40.731329],[-113.500825,40.730851],[-113.499183,40.730817],[-113.484233,40.73048],[-113.466014,40.730168],[-113.446954,40.729714],[-113.403807,40.728657],[-113.388495,40.728283],[-113.375821,40.727973],[-113.312747,40.727377],[-113.303881,40.727294],[-113.286655,40.726789],[-113.275005,40.72663],[-113.269182,40.726568],[-113.266268,40.72653],[-113.26523,40.726517],[-113.263524,40.726466],[-113.259767,40.726465],[-113.257849,40.726443],[-113.253854,40.726412],[-113.251433,40.726369],[-113.25055,40.726378],[-113.225838,40.726071],[-113.201125,40.725785],[-113.194531,40.725691],[-113.18792,40.725618],[-113.172138,40.725419],[-113.164224,40.725325],[-113.156298,40.725233],[-113.149548,40.725145],[-113.142774,40.725097],[-113.140726,40.725204],[-113.138658,40.725377],[-113.137415,40.72552],[-113.136164,40.72569],[-113.134406,40.725998],[-113.132682,40.726351],[-113.13095,40.72677],[-113.129237,40.727237],[-113.125815,40.728206],[-113.122174,40.729185],[-113.120362,40.729682],[-113.118551,40.73018],[-113.117666,40.730428],[-113.115441,40.730995],[-113.112179,40.731905],[-113.108791,40.732873],[-113.099069,40.735548],[-113.091782,40.737548],[-113.084464,40.739476],[-113.077978,40.741336],[-113.074705,40.742252],[-113.071471,40.74313],[-113.063312,40.74538],[-113.055131,40.747614],[-113.051556,40.748616],[-113.047334,40.749711],[-113.025302,40.755813],[-113.024452,40.756065],[-113.020764,40.757052],[-113.017108,40.758094],[-113.014491,40.758756],[-113.012715,40.759223],[-113.010157,40.759898],[-113.002244,40.762205],[-113.000812,40.762501],[-112.99977,40.762728],[-112.996852,40.763612],[-112.993922,40.764413],[-112.991488,40.765169],[-112.989808,40.765792],[-112.985655,40.767616],[-112.983588,40.768725],[-112.981752,40.769843],[-112.978822,40.7719],[-112.975119,40.774816],[-112.96422,40.783415],[-112.961314,40.785646],[-112.9607,40.786124],[-112.956452,40.789494],[-112.952201,40.792821],[-112.942596,40.800379],[-112.937793,40.804159],[-112.932976,40.8079],[-112.931147,40.809155],[-112.929661,40.810061],[-112.928124,40.810904],[-112.925252,40.812303],[-112.922346,40.813568],[-112.921066,40.814122],[-112.915975,40.816289],[-112.911693,40.818133],[-112.909547,40.819062],[-112.907376,40.81996],[-112.90591,40.82061],[-112.904432,40.821234],[-112.903525,40.82158],[-112.902611,40.821871],[-112.90129,40.822201],[-112.899411,40.822547],[-112.899134,40.822581],[-112.898619,40.822632],[-112.898365,40.822652],[-112.897954,40.822692],[-112.897548,40.822701],[-112.896372,40.822701],[-112.895921,40.822697],[-112.894726,40.82261],[-112.893162,40.822435],[-112.892055,40.822227],[-112.890768,40.821909],[-112.889051,40.821324],[-112.887841,40.820785],[-112.88031,40.816721],[-112.875889,40.814281],[-112.869716,40.811001],[-112.852882,40.801745],[-112.830847,40.789717],[-112.827631,40.787963],[-112.815522,40.781279],[-112.79112,40.76801],[-112.784183,40.764162],[-112.781622,40.762755],[-112.781305,40.76258],[-112.777531,40.760442],[-112.774973,40.759259],[-112.772231,40.758293],[-112.769867,40.75762],[-112.766691,40.756996],[-112.76224,40.756566],[-112.75591,40.755924],[-112.748898,40.755234],[-112.739577,40.754292],[-112.722256,40.752556],[-112.717021,40.752029],[-112.705511,40.750911],[-112.6894,40.749272],[-112.686225,40.74896],[-112.665205,40.74686],[-112.65972,40.7463],[-112.653166,40.745662],[-112.65259,40.745603],[-112.646863,40.745091],[-112.644691,40.744922],[-112.642665,40.744792],[-112.638093,40.744374],[-112.636743,40.744239],[-112.635679,40.744005],[-112.63319,40.743277],[-112.626143,40.740825],[-112.616693,40.737957],[-112.58485,40.728683],[-112.559264,40.721248],[-112.555994,40.720233],[-112.55408,40.719569],[-112.551985,40.718717],[-112.547265,40.716687],[-112.536441,40.712101],[-112.531601,40.710019],[-112.530131,40.709405],[-112.529498,40.709141],[-112.528717,40.708776],[-112.526296,40.707813],[-112.522597,40.706649],[-112.520159,40.706063],[-112.517619,40.705556],[-112.516228,40.705334],[-112.500916,40.702706],[-112.49302,40.701339],[-112.490951,40.700916],[-112.489106,40.700454],[-112.486797,40.699791],[-112.484909,40.69914],[-112.467991,40.692665],[-112.457039,40.688441],[-112.452671,40.686788],[-112.450954,40.686189],[-112.449564,40.685773],[-112.446414,40.684979],[-112.442806,40.684227],[-112.440684,40.683859],[-112.439875,40.683706],[-112.417352,40.679423],[-112.415442,40.679024],[-112.413167,40.678438],[-112.397954,40.674028],[-112.3764,40.667681],[-112.368138,40.665418],[-112.365059,40.66471],[-112.361948,40.664108],[-112.357699,40.663367],[-112.353697,40.662863],[-112.348419,40.662366],[-112.343698,40.662163],[-112.337218,40.662196],[-112.332723,40.662391],[-112.329633,40.662635],[-112.325599,40.662969],[-112.321844,40.66349],[-112.318775,40.664035],[-112.315578,40.66467],[-112.312381,40.66541],[-112.309484,40.666134],[-112.305278,40.667347],[-112.302768,40.668169],[-112.300761,40.668877],[-112.297661,40.670057],[-112.292972,40.672051],[-112.288262,40.674345],[-112.285667,40.67575],[-112.280216,40.679065],[-112.275094,40.682679],[-112.270211,40.686812],[-112.267374,40.689328],[-112.264251,40.692549],[-112.261741,40.695677],[-112.2609,40.696702],[-112.259547,40.69861],[-112.258683,40.699868],[-112.257806,40.701192],[-112.256382,40.703368],[-112.255464,40.704759],[-112.255014,40.705381],[-112.25444,40.705995],[-112.253973,40.706442],[-112.253436,40.706881],[-112.252734,40.707361],[-112.250459,40.708683],[-112.244913,40.711933],[-112.24114,40.714228],[-112.237025,40.716565],[-112.236978,40.716593],[-112.231227,40.720031],[-112.227936,40.721946],[-112.227247,40.722341],[-112.226634,40.722673],[-112.226162,40.722879],[-112.225267,40.723229],[-112.224727,40.723445],[-112.22305,40.724135],[-112.221426,40.724771],[-112.220957,40.72498],[-112.220649,40.725117],[-112.219549,40.725548],[-112.212267,40.728415],[-112.207909,40.730206],[-112.203347,40.732484],[-112.201557,40.733402],[-112.198039,40.735166],[-112.192531,40.738122],[-112.188381,40.740843],[-112.187154,40.741743],[-112.18305,40.745075],[-112.182476,40.745547],[-112.178957,40.74851],[-112.178135,40.749216],[-112.168196,40.757462],[-112.166072,40.75925],[-112.165208,40.759872],[-112.164001,40.760733],[-112.16267,40.761753],[-112.159656,40.764207],[-112.157167,40.766283],[-112.155788,40.767441],[-112.154656,40.768343],[-112.154259,40.768635],[-112.153631,40.769034],[-112.152965,40.769384],[-112.152258,40.76968],[-112.151502,40.769956],[-112.150654,40.770208],[-112.149817,40.770391],[-112.149045,40.7705],[-112.148262,40.770577],[-112.147382,40.770626],[-112.139063,40.770675],[-112.128957,40.770667],[-112.074948,40.770833],[-112.074813,40.770833],[-112.071293,40.770849],[-112.054154,40.770853],[-112.039472,40.770939],[-112.038871,40.770939],[-112.03444,40.770929],[-112.029248,40.770925],[-112.025183,40.770928],[-112.020079,40.770939],[-112.017167,40.770946],[-112.015386,40.770922],[-112.014487,40.7709],[-112.013696,40.770859],[-112.012792,40.770796],[-112.011808,40.770705],[-112.011081,40.770623],[-112.01055,40.770552],[-112.009222,40.77037],[-112.008232,40.770203],[-112.007537,40.770071],[-112.006314,40.769809],[-112.005614,40.769644],[-112.004397,40.769327],[-112.003329,40.76904],[-112.002345,40.768718],[-112.001725,40.768505],[-112.000703,40.768119],[-111.999552,40.767696],[-111.998133,40.767091],[-111.995569,40.766037],[-111.995156,40.765874],[-111.994695,40.765722],[-111.994019,40.765517],[-111.993501,40.765364],[-111.992823,40.765183],[-111.992064,40.765007],[-111.991029,40.764802],[-111.98991,40.764629],[-111.989465,40.764578],[-111.98885,40.764521],[-111.988271,40.76448],[-111.987485,40.764432],[-111.986104,40.764407],[-111.982918,40.764399],[-111.975022,40.764392],[-111.970524,40.764412],[-111.968456,40.764412],[-111.966006,40.764546],[-111.965265,40.764574],[-111.962594,40.764711],[-111.958699,40.764918],[-111.956373,40.765042],[-111.945195,40.765764],[-111.941109,40.766028],[-111.939633,40.766099],[-111.938586,40.766119],[-111.937453,40.766047],[-111.936251,40.765904],[-111.935144,40.765735],[-111.934242,40.765589],[-111.932799,40.765357],[-111.931952,40.76522],[-111.929719,40.76486],[-111.929211,40.764779],[-111.929016,40.764747],[-111.928338,40.76465],[-111.927745,40.764578],[-111.927059,40.764539],[-111.926432,40.764528],[-111.925965,40.764524],[-111.924289,40.764501],[-111.922229,40.764482],[-111.920142,40.764473],[-111.919274,40.76446],[-111.918223,40.764467],[-111.917903,40.764443],[-111.917502,40.764376],[-111.917202,40.764291],[-111.916859,40.764155],[-111.91655,40.763999],[-111.916418,40.763916],[-111.915937,40.763513],[-111.915628,40.763097],[-111.9155,40.762772],[-111.915448,40.762577],[-111.915354,40.761907],[-111.915139,40.760068],[-111.914924,40.759476],[-111.914744,40.759027],[-111.914487,40.758501],[-111.914066,40.757948],[-111.913525,40.757409],[-111.913208,40.757032],[-111.912796,40.756511],[-111.912428,40.755887],[-111.912015,40.755068],[-111.911259,40.753389],[-111.911072,40.752389],[-111.910982,40.751976],[-111.910867,40.751596],[-111.910465,40.750679],[-111.910022,40.750053],[-111.90937,40.749325],[-111.908562,40.748656],[-111.907965,40.748169],[-111.907084,40.747463],[-111.906237,40.746789],[-111.906025,40.746628],[-111.905473,40.746106],[-111.905121,40.745703],[-111.904798,40.745204],[-111.904532,40.744651],[-111.904331,40.744019],[-111.904247,40.743484],[-111.90422,40.742757],[-111.90428,40.741845],[-111.904324,40.741312],[-111.904537,40.738966],[-111.904789,40.736171],[-111.90483,40.734905],[-111.90482,40.733727],[-111.904802,40.733343],[-111.904574,40.7257],[-111.904565,40.72516],[-111.904788,40.723905],[-111.905003,40.72263],[-111.905089,40.722207],[-111.905363,40.72103],[-111.905398,40.720828],[-111.905432,40.720548],[-111.905423,40.720288],[-111.905355,40.719976],[-111.90526,40.719716],[-111.905149,40.719442],[-111.904969,40.719143],[-111.904805,40.718948],[-111.904522,40.718681],[-111.904316,40.718512],[-111.90405,40.718336],[-111.903784,40.718187],[-111.903484,40.718063],[-111.903115,40.717959],[-111.902711,40.717875],[-111.902248,40.717816],[-111.901819,40.717809],[-111.900008,40.717907],[-111.899321,40.717959],[-111.897279,40.718142],[-111.89663,40.718157],[-111.896378,40.71816],[-111.895574,40.718167],[-111.89441,40.718171],[-111.893293,40.718174],[-111.891595,40.718179],[-111.890632,40.718174],[-111.888702,40.71816],[-111.887842,40.71817],[-111.883471,40.718146],[-111.88294,40.718143],[-111.882286,40.718152],[-111.877185,40.718163],[-111.876531,40.71817],[-111.876157,40.718168],[-111.875246,40.718187],[-111.874698,40.718238],[-111.874244,40.718271],[-111.873712,40.718314],[-111.872733,40.718424],[-111.871682,40.718569],[-111.870831,40.718725],[-111.869138,40.719016],[-111.868036,40.719148],[-111.867215,40.719229],[-111.865939,40.719312],[-111.865764,40.719323],[-111.865079,40.719333],[-111.862468,40.71943],[-111.859599,40.719495],[-111.857722,40.719557],[-111.856995,40.71957],[-111.854162,40.719563],[-111.852711,40.719554],[-111.85097,40.719563],[-111.849247,40.719552],[-111.848823,40.71955],[-111.847378,40.719492],[-111.846101,40.719382],[-111.844899,40.719202],[-111.843025,40.718846],[-111.841708,40.71856],[-111.8392,40.717975],[-111.837523,40.717588],[-111.83625,40.717328],[-111.835173,40.717007],[-111.834186,40.716581],[-111.83358,40.716272],[-111.832468,40.715749],[-111.831325,40.71534],[-111.830298,40.715054],[-111.828876,40.714658],[-111.828233,40.714485],[-111.8262,40.713919],[-111.822637,40.712938],[-111.822218,40.712825],[-111.821755,40.712699],[-111.821086,40.712561],[-111.820528,40.712478],[-111.81999,40.712462],[-111.819449,40.712475],[-111.819041,40.712528],[-111.818685,40.712605],[-111.818418,40.712694],[-111.818086,40.712811],[-111.817682,40.713032],[-111.817082,40.713417],[-111.816063,40.714006],[-111.815797,40.714149],[-111.815385,40.714337],[-111.815161,40.714415],[-111.814724,40.714513],[-111.814312,40.714572],[-111.813745,40.714604],[-111.808784,40.714383],[-111.808175,40.714344],[-111.807402,40.714233],[-111.806603,40.714047],[-111.805857,40.713849],[-111.804826,40.713444],[-111.803898,40.713004],[-111.803023,40.712645],[-111.802206,40.712352],[-111.800557,40.711802],[-111.798969,40.711282],[-111.798275,40.711082],[-111.79793,40.711012],[-111.797565,40.710965],[-111.797137,40.71093],[-111.796617,40.710961],[-111.796204,40.71104],[-111.795846,40.711128],[-111.794809,40.711413],[-111.794084,40.71161],[-111.793743,40.711694],[-111.793361,40.711758],[-111.792933,40.711796],[-111.792585,40.71182],[-111.792332,40.711818],[-111.791406,40.711829],[-111.790888,40.711851],[-111.790369,40.711921],[-111.789946,40.711991],[-111.78937,40.712156],[-111.788383,40.712619],[-111.787155,40.713293],[-111.785833,40.714071],[-111.785234,40.714563],[-111.784836,40.714923],[-111.784514,40.715305],[-111.784279,40.715751],[-111.784112,40.716214],[-111.783622,40.717555],[-111.783293,40.718095],[-111.783041,40.718335],[-111.782055,40.718975],[-111.781703,40.719122],[-111.779297,40.719843],[-111.778704,40.720064],[-111.778129,40.720346],[-111.776664,40.72118],[-111.776319,40.721465],[-111.775868,40.721815],[-111.775158,40.722258],[-111.774272,40.722934],[-111.772097,40.724643],[-111.771225,40.725011],[-111.769986,40.725374],[-111.769025,40.725713],[-111.768314,40.726115],[-111.767755,40.726589],[-111.767131,40.727167],[-111.766466,40.727772],[-111.765786,40.728166],[-111.765137,40.728414],[-111.764502,40.728591],[-111.763652,40.728815],[-111.763008,40.72901],[-111.762282,40.729233],[-111.761171,40.729797],[-111.760512,40.73015],[-111.760085,40.730428],[-111.759104,40.731194],[-111.75874,40.73143],[-111.758526,40.731532],[-111.757403,40.731922],[-111.75679,40.732046],[-111.755885,40.732163],[-111.754139,40.732448],[-111.752606,40.732895],[-111.751904,40.733012],[-111.751119,40.733057],[-111.750288,40.733113],[-111.749898,40.733192],[-111.748602,40.733579],[-111.748354,40.733684],[-111.748031,40.733909],[-111.747749,40.734157],[-111.747438,40.734473],[-111.747081,40.734935],[-111.74678,40.735258],[-111.746408,40.735585],[-111.745657,40.736159],[-111.744519,40.736858],[-111.743914,40.73726],[-111.743456,40.737767],[-111.743065,40.738353],[-111.742744,40.739027],[-111.742547,40.739717],[-111.742153,40.740366],[-111.741518,40.741005],[-111.740962,40.741441],[-111.740105,40.741797],[-111.739309,40.741982],[-111.738772,40.742075],[-111.737734,40.742161],[-111.733658,40.742513],[-111.73292,40.742702],[-111.732182,40.742982],[-111.731804,40.743214],[-111.730123,40.744354],[-111.72919,40.744841],[-111.727437,40.745666],[-111.721784,40.748271],[-111.721023,40.748713],[-111.720423,40.749244],[-111.719193,40.750421],[-111.718399,40.751016],[-111.717678,40.751367],[-111.716768,40.751656],[-111.715974,40.751751],[-111.715172,40.751769],[-111.71455,40.751724],[-111.714099,40.751629],[-111.713543,40.751459],[-111.712923,40.751201],[-111.712378,40.750868],[-111.710494,40.749516],[-111.70974,40.749116],[-111.70889,40.748813],[-111.707977,40.74862],[-111.706988,40.748527],[-111.706157,40.748509],[-111.704354,40.748737],[-111.703254,40.748884],[-111.702282,40.748884],[-111.701217,40.748796],[-111.700292,40.748603],[-111.699321,40.748263],[-111.698372,40.747678],[-111.69695,40.746659],[-111.696049,40.74608],[-111.695206,40.745671],[-111.692813,40.744786],[-111.691689,40.744275],[-111.690114,40.743542],[-111.68927,40.743202],[-111.688402,40.742946],[-111.687584,40.742742],[-111.686648,40.742589],[-111.685736,40.742503],[-111.684936,40.742461],[-111.684076,40.742469],[-111.683267,40.74252],[-111.682654,40.742571],[-111.68147,40.742699],[-111.680729,40.742725],[-111.679835,40.742682],[-111.678966,40.742529],[-111.677544,40.742035],[-111.676812,40.741618],[-111.676233,40.741226],[-111.674811,40.740136],[-111.674019,40.73971],[-111.673329,40.739395],[-111.672893,40.739257],[-111.672442,40.739136],[-111.671583,40.738969],[-111.670416,40.73891],[-111.669539,40.738961],[-111.668833,40.739097],[-111.668228,40.739267],[-111.66747,40.739531],[-111.666198,40.74012],[-111.661288,40.742333],[-111.660342,40.742725],[-111.659312,40.743091],[-111.658554,40.743321],[-111.657575,40.743551],[-111.656629,40.743713],[-111.655889,40.743823],[-111.6545,40.743985],[-111.653427,40.744079],[-111.652542,40.744198],[-111.651665,40.744343],[-111.650779,40.744581],[-111.649996,40.744888],[-111.647977,40.74563],[-111.646632,40.74608],[-111.644673,40.746565],[-111.643473,40.746736],[-111.637375,40.747758],[-111.635706,40.74826],[-111.634718,40.74872],[-111.63379,40.749214],[-111.631525,40.7505],[-111.630258,40.751124],[-111.62865,40.751845],[-111.626128,40.752749],[-111.625505,40.752911],[-111.624639,40.753141],[-111.623345,40.753437],[-111.622233,40.75362],[-111.621285,40.753703],[-111.620435,40.753745],[-111.619398,40.753745],[-111.618558,40.753708],[-111.617558,40.753548],[-111.616775,40.753392],[-111.616096,40.7532],[-111.615215,40.752941],[-111.614801,40.752802],[-111.614235,40.752566],[-111.611171,40.751137],[-111.610275,40.750738],[-111.609279,40.750417],[-111.608346,40.750158],[-111.606993,40.749898],[-111.605827,40.749795],[-111.604355,40.749758],[-111.602618,40.749867],[-111.601432,40.750012],[-111.600175,40.750263],[-111.599075,40.750597],[-111.597812,40.751033],[-111.589244,40.754476],[-111.58801,40.754937],[-111.587191,40.755227],[-111.586222,40.755502],[-111.585053,40.755761],[-111.583401,40.755997],[-111.58179,40.756036],[-111.580287,40.756005],[-111.579141,40.755906],[-111.577415,40.75559],[-111.576103,40.755269],[-111.574766,40.754797],[-111.573505,40.754245],[-111.572324,40.753638],[-111.571738,40.753278],[-111.570782,40.752639],[-111.569972,40.751949],[-111.569209,40.75122],[-111.567914,40.749833],[-111.566085,40.74788],[-111.553264,40.734379],[-111.54962,40.730543],[-111.548633,40.72969],[-111.547619,40.729086],[-111.546915,40.728684],[-111.543814,40.727227],[-111.543342,40.727023],[-111.540869,40.72585],[-111.539619,40.725394],[-111.538658,40.725108],[-111.536932,40.724666],[-111.526207,40.72207],[-111.525886,40.721992],[-111.524684,40.721706],[-111.524101,40.721615],[-111.523328,40.721524],[-111.522599,40.721472],[-111.521981,40.721446],[-111.52132,40.721472],[-111.520753,40.721517],[-111.520101,40.721583],[-111.519509,40.721687],[-111.518934,40.721804],[-111.518281,40.721973],[-111.517689,40.722155],[-111.51708,40.722383],[-111.516556,40.72261],[-111.511956,40.724745],[-111.505656,40.727723],[-111.497847,40.731328],[-111.497383,40.731542],[-111.492679,40.733716],[-111.481409,40.738916],[-111.479544,40.739766],[-111.478368,40.740352],[-111.476874,40.741125],[-111.474961,40.742227],[-111.474259,40.742723],[-111.472159,40.744024],[-111.471557,40.744688],[-111.471072,40.745372],[-111.470703,40.746172],[-111.470557,40.747355],[-111.470806,40.748831],[-111.470687,40.749948],[-111.470265,40.751243],[-111.469982,40.752011],[-111.46963,40.753071],[-111.46957,40.753513],[-111.469587,40.753922],[-111.469862,40.754663],[-111.47072,40.755756],[-111.471287,40.756458],[-111.471501,40.757154],[-111.471536,40.757719],[-111.471338,40.758545],[-111.471064,40.759111],[-111.470875,40.75978],[-111.47078,40.761477],[-111.470497,40.764181],[-111.470214,40.76476],[-111.46981,40.765222],[-111.469476,40.765618],[-111.469132,40.765904],[-111.468832,40.766216],[-111.468334,40.767035],[-111.468248,40.767867],[-111.468411,40.768615],[-111.469158,40.769772],[-111.469441,40.770311],[-111.469519,40.770662],[-111.469561,40.771117],[-111.469407,40.771871],[-111.469101,40.772575],[-111.468454,40.774062],[-111.468285,40.774877],[-111.468044,40.776063],[-111.467726,40.776556],[-111.467267,40.776996],[-111.466171,40.77765],[-111.464875,40.777955],[-111.463116,40.778449],[-111.461631,40.77906],[-111.460395,40.779944],[-111.459572,40.780741],[-111.45887,40.781875],[-111.458452,40.782777],[-111.458076,40.783418],[-111.457529,40.783898],[-111.456842,40.784345],[-111.455374,40.785195],[-111.454189,40.785995],[-111.453698,40.786475],[-111.453331,40.787034],[-111.4532,40.787458],[-111.453107,40.787797],[-111.453006,40.788506],[-111.452816,40.789497],[-111.452009,40.790498],[-111.451227,40.790963],[-111.450828,40.791185],[-111.450419,40.791453],[-111.449889,40.791876],[-111.449464,40.792488],[-111.449202,40.79313],[-111.449077,40.793982],[-111.448845,40.794581],[-111.448048,40.795652],[-111.447124,40.796849],[-111.446607,40.797381],[-111.445199,40.798775],[-111.443301,40.800376],[-111.43974,40.803308],[-111.439245,40.803666],[-111.438488,40.803948],[-111.432879,40.805713],[-111.430675,40.806294],[-111.428632,40.806731],[-111.42634,40.807104],[-111.423115,40.807534],[-111.415558,40.808555],[-111.414543,40.808639],[-111.413353,40.808622],[-111.412033,40.808499],[-111.41058,40.808329],[-111.409665,40.808284],[-111.408716,40.808315],[-111.407924,40.808426],[-111.407332,40.808515],[-111.406628,40.808697],[-111.405901,40.808959],[-111.405104,40.809318],[-111.404465,40.809682],[-111.403867,40.810095],[-111.403302,40.810511],[-111.402988,40.810778],[-111.401135,40.812957],[-111.400924,40.813241],[-111.399048,40.81593],[-111.398908,40.816132],[-111.396146,40.819715],[-111.394862,40.821445],[-111.393882,40.822971],[-111.392874,40.824755],[-111.391965,40.826725],[-111.391631,40.827488],[-111.387275,40.841372],[-111.387105,40.842237],[-111.38707,40.84312],[-111.387093,40.843723],[-111.387205,40.84437],[-111.387457,40.845231],[-111.387668,40.845803],[-111.388166,40.846756],[-111.388612,40.847586],[-111.389004,40.848415],[-111.389204,40.849182],[-111.389257,40.850012],[-111.389192,40.850916],[-111.38904,40.85148],[-111.388799,40.852087],[-111.387885,40.85387],[-111.387398,40.855014],[-111.38714,40.856016],[-111.386988,40.857089],[-111.386958,40.85806],[-111.387046,40.859253],[-111.387874,40.863223],[-111.388109,40.864215],[-111.389171,40.869015],[-111.390231,40.873988],[-111.390283,40.8742],[-111.390651,40.875796],[-111.39115,40.878155],[-111.392507,40.884287],[-111.393168,40.88726],[-111.39376,40.890078],[-111.394412,40.893417],[-111.395352,40.89813],[-111.395671,40.899485],[-111.395964,40.900503],[-111.396498,40.902076],[-111.397252,40.903897],[-111.398286,40.905966],[-111.399089,40.907566],[-111.400028,40.909208],[-111.401587,40.911526],[-111.403291,40.913747],[-111.404601,40.915354],[-111.407145,40.917911],[-111.407456,40.918237],[-111.407737,40.918518],[-111.408404,40.919272],[-111.409023,40.920077],[-111.409635,40.920937],[-111.410124,40.921839],[-111.410455,40.922625],[-111.410767,40.92393],[-111.41089,40.924804],[-111.410862,40.926054],[-111.410775,40.926647],[-111.41062,40.92735],[-111.409539,40.931003],[-111.408595,40.934236],[-111.408412,40.935053],[-111.408371,40.93578],[-111.408453,40.936587],[-111.408759,40.93729],[-111.409206,40.938055],[-111.410807,40.939868],[-111.411546,40.94087],[-111.412098,40.941806],[-111.412627,40.943046],[-111.412885,40.943741],[-111.413043,40.944227],[-111.413332,40.944904],[-111.414004,40.945904],[-111.415025,40.946791],[-111.417144,40.947996],[-111.418364,40.948689],[-111.420181,40.950071],[-111.421031,40.950823],[-111.421934,40.952028],[-111.422667,40.953189],[-111.424028,40.956109],[-111.424445,40.956921],[-111.424899,40.957664],[-111.425349,40.958206],[-111.425937,40.958763],[-111.426625,40.959238],[-111.430847,40.961705],[-111.432555,40.962879],[-111.433522,40.963562],[-111.43641,40.965321],[-111.437461,40.966032],[-111.438136,40.966737],[-111.438519,40.967348],[-111.438895,40.96812],[-111.438944,40.968386],[-111.438966,40.968631],[-111.438979,40.968906],[-111.43897,40.969159],[-111.438939,40.969424],[-111.438841,40.969807],[-111.438722,40.970137],[-111.43856,40.970457],[-111.438362,40.970745],[-111.438133,40.971006],[-111.437942,40.971207],[-111.437602,40.971483],[-111.436944,40.971908],[-111.435215,40.972881],[-111.434276,40.973431],[-111.431805,40.974828],[-111.431438,40.975023],[-111.428071,40.976945],[-111.427518,40.977257],[-111.425666,40.978301],[-111.41874,40.982247],[-111.416752,40.983228],[-111.41523,40.983905],[-111.413422,40.98466],[-111.41155,40.985409],[-111.410146,40.986008],[-111.408747,40.986692],[-111.407379,40.987416],[-111.406103,40.988164],[-111.403372,40.989879],[-111.400977,40.991748],[-111.40014,40.992424],[-111.39703,40.99539],[-111.395989,40.996256],[-111.393873,40.997915],[-111.391926,40.999226],[-111.387505,41.002095],[-111.385373,41.003677],[-111.379384,41.00839],[-111.378057,41.009306],[-111.377176,41.009708],[-111.376125,41.009998],[-111.373333,41.01057],[-111.372006,41.010957],[-111.371027,41.011402],[-111.370044,41.012032],[-111.36928,41.012743],[-111.368875,41.013284],[-111.368471,41.01393],[-111.368133,41.014897],[-111.367415,41.016567],[-111.366908,41.01732],[-111.366196,41.01807],[-111.365161,41.018886],[-111.364064,41.019551],[-111.362876,41.020111],[-111.358792,41.021836],[-111.352987,41.024093],[-111.337632,41.029883],[-111.336474,41.03042],[-111.3355,41.030988],[-111.334558,41.031661],[-111.333815,41.032333],[-111.332831,41.033377],[-111.332739,41.033524],[-111.331484,41.035483],[-111.330848,41.036225],[-111.329769,41.03716],[-111.327851,41.038603],[-111.326114,41.039654],[-111.324284,41.040603],[-111.322745,41.041293],[-111.320364,41.042156],[-111.316174,41.043536],[-111.314567,41.044038],[-111.312971,41.044402],[-111.309878,41.044983],[-111.307648,41.045414],[-111.306285,41.045775],[-111.304778,41.046347],[-111.303202,41.047147],[-111.301638,41.048143],[-111.300208,41.049115],[-111.299121,41.049947],[-111.298357,41.050601],[-111.292862,41.056106],[-111.291765,41.057156],[-111.290683,41.058054],[-111.289857,41.058622],[-111.285199,41.061629],[-111.282178,41.06366],[-111.280795,41.064369],[-111.279194,41.064953],[-111.277374,41.065502],[-111.275955,41.065835],[-111.271265,41.066635],[-111.27009,41.066929],[-111.269201,41.067246],[-111.268198,41.067744],[-111.26623,41.068946],[-111.264106,41.070229],[-111.261091,41.071977],[-111.257431,41.073917],[-111.254286,41.075548],[-111.249716,41.077923],[-111.247392,41.079067],[-111.245666,41.079984],[-111.243763,41.081203],[-111.240087,41.083793],[-111.239282,41.084263],[-111.238424,41.084628],[-111.237488,41.084969],[-111.234816,41.085631],[-111.233324,41.086054],[-111.232315,41.086454],[-111.231312,41.086991],[-111.22682,41.089753],[-111.224693,41.091215],[-111.223534,41.092155],[-111.221541,41.093991],[-111.21891,41.096405],[-111.217364,41.09771],[-111.215038,41.099379],[-111.213344,41.100616],[-111.21211,41.101742],[-111.210542,41.103478],[-111.208528,41.10555],[-111.206581,41.107336],[-111.204582,41.108898],[-111.20227,41.1105],[-111.200903,41.111452],[-111.198733,41.113271],[-111.197177,41.114707],[-111.195589,41.116172],[-111.19388,41.117515],[-111.192528,41.118456],[-111.190432,41.119716],[-111.189109,41.120382],[-111.186761,41.121373],[-111.185876,41.121682],[-111.184709,41.122089],[-111.182651,41.122593],[-111.180288,41.123108],[-111.177426,41.123427],[-111.174565,41.123578],[-111.172759,41.123702],[-111.171132,41.124071],[-111.169668,41.124631],[-111.162392,41.128113],[-111.160326,41.129244],[-111.159323,41.129938],[-111.158245,41.130889],[-111.157316,41.131824],[-111.156625,41.132765],[-111.153309,41.13814],[-111.152338,41.139752],[-111.14958,41.144251],[-111.147939,41.146876],[-111.146417,41.149337],[-111.145413,41.151063],[-111.144971,41.151959],[-111.14441,41.153194],[-111.144286,41.153463],[-111.143772,41.154712],[-111.143482,41.155486],[-111.143087,41.156417],[-111.14255,41.157373],[-111.142046,41.15819],[-111.141475,41.15896],[-111.139601,41.161233],[-111.138379,41.162709],[-111.137627,41.16388],[-111.137256,41.164657],[-111.136914,41.165688],[-111.13669,41.166669],[-111.136077,41.170227],[-111.135602,41.172127],[-111.135248,41.173215],[-111.134105,41.176014],[-111.13255,41.179721],[-111.131152,41.183053],[-111.130653,41.183939],[-111.130038,41.184642],[-111.129577,41.185138],[-111.129197,41.185424],[-111.128519,41.185941],[-111.12833,41.18607],[-111.127515,41.186496],[-111.125706,41.187322],[-111.122176,41.188742],[-111.120147,41.189773],[-111.118587,41.191025],[-111.114858,41.194746],[-111.114297,41.195288],[-111.114124,41.195446],[-111.113488,41.196077],[-111.110999,41.198267],[-111.109577,41.199462],[-111.1082,41.200643],[-111.10796,41.200853],[-111.107171,41.201553],[-111.105669,41.202715],[-111.09687,41.210404],[-111.095846,41.211973],[-111.090614,41.222592],[-111.089697,41.224003],[-111.088463,41.225467],[-111.08552,41.228647],[-111.084214,41.230058],[-111.072911,41.242046],[-111.070184,41.244715],[-111.069716,41.245113],[-111.068108,41.246304],[-111.065555,41.247738],[-111.063343,41.24862],[-111.060472,41.249277],[-111.058784,41.24957],[-111.058025,41.249621],[-111.05596,41.249683],[-111.054475,41.249619],[-111.052423,41.249357],[-111.050424,41.248914],[-111.046553,41.24758],[-111.045949,41.247366],[-111.043848,41.246748],[-111.041255,41.246385],[-111.038759,41.246241],[-111.033528,41.246291],[-111.025165,41.24637],[-111.023935,41.246381],[-111.020165,41.246628],[-111.018037,41.247017],[-111.015657,41.247439],[-111.012541,41.248276],[-111.010594,41.249016],[-111.007185,41.25055],[-111.000492,41.253719],[-110.999901,41.254008],[-110.995602,41.256037],[-110.992521,41.257433],[-110.989572,41.258825],[-110.988125,41.259551],[-110.986068,41.260508],[-110.985511,41.260766],[-110.983812,41.261508],[-110.982715,41.261885],[-110.981548,41.262131],[-110.980978,41.262225],[-110.979726,41.262195],[-110.978904,41.262068],[-110.978127,41.261888],[-110.977715,41.261766],[-110.977267,41.261606],[-110.976761,41.261412],[-110.975961,41.260928],[-110.97559,41.260691],[-110.974987,41.260296],[-110.973135,41.259239],[-110.971346,41.25853],[-110.970436,41.258324],[-110.968829,41.258143],[-110.967445,41.258113],[-110.967086,41.258115],[-110.964042,41.258376],[-110.961856,41.258601],[-110.959793,41.25897],[-110.957772,41.259702],[-110.95651,41.260352],[-110.955401,41.26109],[-110.954671,41.261767],[-110.954149,41.262364],[-110.953006,41.263839],[-110.952516,41.264432],[-110.951924,41.265148],[-110.950873,41.266013],[-110.950054,41.266461],[-110.949124,41.266834],[-110.948134,41.267052],[-110.946377,41.267288],[-110.945896,41.267342],[-110.945155,41.267426],[-110.944473,41.267488],[-110.944004,41.267548],[-110.942937,41.267596],[-110.941345,41.267738],[-110.940473,41.267829],[-110.938952,41.267859],[-110.938301,41.267879],[-110.93762,41.267891],[-110.936762,41.267873],[-110.935628,41.267847],[-110.934051,41.267755],[-110.932171,41.267543],[-110.931212,41.26743],[-110.928892,41.267215],[-110.926782,41.267005],[-110.921269,41.266322],[-110.915037,41.265203],[-110.907089,41.263714],[-110.901718,41.262712],[-110.900011,41.262441],[-110.899669,41.262394],[-110.898363,41.262244],[-110.897019,41.262122],[-110.895289,41.26201],[-110.89366,41.261955],[-110.892311,41.261936],[-110.89073,41.26197],[-110.887888,41.262119],[-110.885885,41.262328],[-110.882527,41.262833],[-110.878439,41.263756],[-110.875519,41.264607],[-110.872669,41.265684],[-110.870598,41.266623],[-110.862284,41.270959],[-110.861591,41.271322],[-110.859717,41.271974],[-110.857968,41.272387],[-110.857654,41.272432],[-110.855901,41.272485],[-110.854801,41.272423],[-110.85346,41.272232],[-110.852946,41.272099],[-110.851914,41.271833],[-110.841906,41.268099],[-110.839932,41.267672],[-110.837993,41.267481],[-110.83564,41.267535],[-110.833063,41.267939],[-110.831126,41.268475],[-110.829834,41.268984],[-110.823004,41.272111],[-110.8227,41.272222],[-110.821087,41.272669],[-110.819586,41.272973],[-110.818111,41.273144],[-110.816534,41.273187],[-110.810432,41.272734],[-110.80861,41.27281],[-110.807455,41.272978],[-110.805774,41.27344],[-110.804487,41.273942],[-110.803814,41.27428],[-110.80335,41.274545],[-110.801247,41.276028],[-110.801061,41.276165],[-110.798573,41.278055],[-110.782681,41.290177],[-110.782523,41.290305],[-110.778362,41.293465],[-110.77718,41.29416],[-110.776957,41.294276],[-110.775243,41.295165],[-110.762084,41.301629],[-110.760944,41.302086],[-110.756983,41.303217],[-110.756712,41.303294],[-110.750593,41.305042],[-110.738043,41.30858],[-110.737461,41.308681],[-110.736446,41.308811],[-110.73572,41.308826],[-110.735333,41.308834],[-110.734875,41.30882],[-110.733467,41.308638],[-110.732019,41.308285],[-110.731491,41.308124],[-110.730923,41.30795],[-110.729512,41.307518],[-110.728295,41.307136],[-110.727789,41.306977],[-110.722564,41.305323],[-110.705672,41.300052],[-110.700236,41.29834],[-110.699185,41.297909],[-110.69578,41.296059],[-110.694232,41.295314],[-110.692573,41.29484],[-110.690935,41.294645],[-110.689366,41.294683],[-110.687793,41.294947],[-110.686636,41.295282],[-110.685411,41.295851],[-110.684256,41.296481],[-110.68215,41.297631],[-110.680026,41.298579],[-110.678762,41.298907],[-110.67753,41.299076],[-110.675775,41.29919],[-110.673586,41.299143],[-110.667257,41.299023],[-110.647438,41.298729],[-110.640552,41.298597],[-110.635943,41.298523],[-110.634767,41.298511],[-110.634064,41.298509],[-110.631549,41.29847],[-110.628815,41.298406],[-110.628528,41.298399],[-110.626025,41.29834],[-110.625739,41.298336],[-110.60671,41.29803],[-110.603445,41.297961],[-110.603177,41.297953],[-110.602024,41.297929],[-110.572809,41.297436],[-110.562656,41.297288],[-110.55991,41.297241],[-110.5582,41.297275],[-110.556522,41.297394],[-110.55492,41.297604],[-110.553899,41.297796],[-110.551954,41.298251],[-110.549314,41.299091],[-110.544575,41.300678],[-110.541421,41.301727],[-110.535457,41.303711],[-110.522833,41.307869],[-110.521589,41.308282],[-110.518974,41.309132],[-110.511833,41.311496],[-110.509773,41.312167],[-110.508339,41.312617],[-110.507969,41.312738],[-110.50614,41.313371],[-110.50608,41.313389],[-110.504752,41.313809],[-110.500718,41.315137],[-110.490484,41.318499],[-110.473904,41.323984],[-110.467816,41.325878],[-110.464525,41.326654],[-110.46291,41.326955],[-110.461342,41.327193],[-110.454553,41.32807],[-110.454079,41.328132],[-110.450477,41.32861],[-110.450341,41.328633],[-110.449614,41.328726],[-110.449047,41.328796],[-110.448594,41.328853],[-110.448134,41.3289],[-110.446924,41.329053],[-110.441702,41.329696],[-110.440822,41.329804],[-110.437254,41.330298],[-110.432613,41.330923],[-110.429349,41.331413],[-110.428483,41.331543],[-110.425215,41.332171],[-110.422038,41.332852],[-110.4192,41.333571],[-110.416619,41.334291],[-110.414156,41.335088],[-110.410915,41.336205],[-110.4052,41.33847],[-110.403664,41.339172],[-110.398337,41.341615],[-110.389825,41.345538],[-110.389585,41.345647],[-110.379477,41.35031],[-110.375499,41.352157],[-110.372496,41.3533],[-110.3707,41.353817],[-110.367828,41.354333],[-110.365219,41.354523],[-110.36312,41.354526],[-110.357744,41.354577],[-110.354283,41.354587],[-110.347922,41.354671],[-110.346655,41.35474],[-110.34536,41.35488],[-110.344062,41.355065],[-110.342847,41.355273],[-110.341546,41.355542],[-110.34019,41.355869],[-110.338085,41.356517],[-110.337531,41.356688],[-110.332492,41.358274],[-110.33191,41.358466],[-110.321416,41.361837],[-110.3197,41.362294],[-110.318216,41.362652],[-110.307527,41.364966],[-110.305985,41.365295],[-110.305483,41.365387],[-110.304411,41.365636],[-110.300228,41.366553],[-110.299707,41.366668],[-110.296235,41.367418],[-110.295417,41.367563],[-110.294158,41.367772],[-110.292862,41.367945],[-110.263327,41.37129],[-110.26081,41.371637],[-110.258176,41.372064],[-110.250649,41.3733],[-110.248407,41.373697],[-110.246251,41.37411],[-110.245636,41.374242],[-110.242977,41.374891],[-110.241301,41.375379],[-110.239875,41.375867],[-110.238468,41.376379],[-110.236133,41.377345],[-110.234992,41.377874],[-110.233864,41.378431],[-110.226651,41.382203],[-110.225041,41.382905],[-110.223807,41.383413],[-110.222514,41.383905],[-110.221455,41.384276],[-110.219733,41.384819],[-110.218017,41.385296],[-110.217089,41.385516],[-110.216657,41.385624],[-110.201129,41.388746],[-110.2005,41.388873],[-110.192247,41.390514],[-110.191069,41.390751],[-110.189753,41.391048],[-110.187883,41.391507],[-110.186505,41.391916],[-110.18489,41.392429],[-110.184447,41.392584],[-110.18248,41.393336],[-110.180922,41.39398],[-110.178837,41.39496],[-110.170371,41.399326],[-110.162172,41.403546],[-110.158058,41.405645],[-110.157516,41.405902],[-110.156806,41.406205],[-110.156246,41.406417],[-110.155339,41.406749],[-110.154483,41.407021],[-110.153774,41.407227],[-110.153155,41.407382],[-110.152242,41.407595],[-110.150989,41.407829],[-110.147396,41.408544],[-110.145381,41.408945],[-110.14345,41.409357],[-110.142397,41.409638],[-110.141408,41.409946],[-110.140741,41.410177],[-110.140093,41.410428],[-110.139269,41.410776],[-110.138468,41.411148],[-110.137147,41.411839],[-110.135967,41.412595],[-110.134872,41.413401],[-110.133858,41.414252],[-110.133104,41.414979],[-110.132394,41.415752],[-110.131924,41.416338],[-110.131487,41.416966],[-110.131062,41.417543],[-110.130696,41.418148],[-110.1294,41.420523],[-110.128538,41.422012],[-110.128007,41.422825],[-110.127504,41.423494],[-110.126939,41.42417],[-110.126345,41.424814],[-110.125696,41.425405],[-110.124898,41.426106],[-110.124044,41.426765],[-110.123294,41.427289],[-110.122583,41.427721],[-110.12187,41.428123],[-110.12105,41.428555],[-110.120224,41.428941],[-110.119365,41.429306],[-110.118582,41.429594],[-110.112742,41.431613],[-110.108626,41.433047],[-110.108346,41.433148],[-110.103944,41.434674],[-110.103062,41.434963],[-110.101662,41.435448],[-110.100317,41.435955],[-110.099088,41.436454],[-110.097926,41.436965],[-110.096891,41.43745],[-110.095497,41.438149],[-110.087465,41.442667],[-110.085028,41.44404],[-110.074453,41.449995],[-110.063904,41.455916],[-110.054807,41.461059],[-110.054471,41.461247],[-110.048664,41.464491],[-110.046744,41.465583],[-110.043639,41.467341],[-110.041926,41.468356],[-110.040022,41.469656],[-110.038917,41.470472],[-110.037562,41.471578],[-110.036948,41.472099],[-110.03364,41.475178],[-110.030563,41.478042],[-110.025844,41.482465],[-110.024778,41.483454],[-110.024637,41.483585],[-110.020173,41.487761],[-110.01914,41.488689],[-110.018397,41.489304],[-110.017862,41.489752],[-110.015813,41.491421],[-110.012947,41.493768],[-110.012013,41.494549],[-110.009422,41.49666],[-110.00859,41.497262],[-110.007743,41.497852],[-110.006702,41.498541],[-110.005772,41.49912],[-110.005068,41.499542],[-110.004267,41.499981],[-110.003295,41.500502],[-110.000209,41.502023],[-109.990428,41.506908],[-109.988413,41.507911],[-109.985771,41.509218],[-109.985451,41.509372],[-109.980579,41.511788],[-109.978308,41.512926],[-109.957545,41.523271],[-109.95203,41.52598],[-109.941869,41.531039],[-109.936215,41.533834],[-109.921722,41.541021],[-109.920362,41.541673],[-109.919082,41.542222],[-109.917968,41.542631],[-109.917158,41.542897],[-109.916279,41.543158],[-109.915457,41.543371],[-109.914632,41.543558],[-109.913647,41.543747],[-109.912324,41.543963],[-109.911376,41.544084],[-109.910581,41.544162],[-109.909677,41.544229],[-109.908768,41.544253],[-109.907928,41.544273],[-109.906964,41.544259],[-109.905825,41.5442],[-109.904704,41.544096],[-109.903699,41.543992],[-109.902931,41.543874],[-109.901915,41.543703],[-109.900743,41.543473],[-109.899084,41.543162],[-109.895993,41.542551],[-109.893625,41.542125],[-109.892171,41.541914],[-109.891134,41.541776],[-109.890093,41.541661],[-109.888819,41.54155],[-109.887281,41.541448],[-109.885625,41.541391],[-109.884168,41.541383],[-109.882261,41.541426],[-109.875718,41.541622],[-109.870318,41.541762],[-109.867246,41.541851],[-109.865201,41.541912],[-109.857639,41.542128],[-109.857137,41.542141],[-109.84924,41.54235],[-109.84711,41.542419],[-109.836251,41.542729],[-109.835106,41.542739],[-109.833531,41.542745],[-109.829095,41.542731],[-109.821354,41.54271],[-109.820522,41.542703],[-109.81432,41.542677],[-109.805916,41.542661],[-109.799879,41.542641],[-109.793531,41.542623],[-109.793138,41.542621],[-109.786016,41.542605],[-109.759921,41.54251],[-109.750626,41.542478],[-109.712954,41.542333],[-109.69623,41.542261],[-109.695849,41.542263],[-109.693984,41.542259],[-109.693268,41.542256],[-109.692932,41.542255],[-109.682737,41.542216],[-109.679086,41.542201],[-109.676897,41.542228],[-109.67551,41.542282],[-109.674514,41.542325],[-109.653906,41.54336],[-109.653494,41.543384],[-109.616089,41.545282],[-109.614678,41.545363],[-109.613309,41.545479],[-109.612544,41.545587],[-109.611521,41.545746],[-109.610502,41.545965],[-109.609448,41.54622],[-109.607783,41.546753],[-109.607044,41.547005],[-109.606339,41.547295],[-109.605538,41.547635],[-109.604747,41.548021],[-109.603824,41.548514],[-109.602901,41.549022],[-109.601967,41.549545],[-109.601177,41.549994],[-109.5981,41.551773],[-109.597421,41.552159],[-109.594294,41.5539],[-109.593233,41.554407],[-109.592076,41.554879],[-109.591221,41.555182],[-109.590517,41.555408],[-109.58961,41.555671],[-109.588699,41.555887],[-109.587646,41.5561],[-109.58657,41.556285],[-109.584393,41.556595],[-109.581832,41.556968],[-109.576627,41.557735],[-109.571833,41.55847],[-109.570957,41.558643],[-109.569954,41.558867],[-109.568986,41.55914],[-109.567943,41.559472],[-109.564145,41.560888],[-109.561381,41.562006],[-109.559276,41.562826],[-109.557736,41.563409],[-109.556289,41.563819],[-109.555294,41.564024],[-109.554439,41.564167],[-109.553461,41.564299],[-109.552617,41.564366],[-109.5518,41.564397],[-109.550992,41.564384],[-109.549488,41.564288],[-109.548548,41.564179],[-109.547736,41.564037],[-109.546834,41.563851],[-109.545922,41.563607],[-109.544949,41.563282],[-109.541892,41.5621],[-109.541581,41.561986],[-109.54048,41.561636],[-109.539355,41.561328],[-109.538415,41.561106],[-109.53744,41.560908],[-109.536184,41.560722],[-109.529561,41.559933],[-109.528284,41.559783],[-109.526905,41.55963],[-109.526257,41.559521],[-109.525554,41.559373],[-109.524857,41.559217],[-109.524156,41.559036],[-109.523458,41.558804],[-109.52279,41.558562],[-109.522092,41.558261],[-109.518447,41.556607],[-109.51773,41.556302],[-109.51698,41.556025],[-109.51642,41.555841],[-109.515845,41.555684],[-109.515135,41.555505],[-109.514612,41.555385],[-109.51348,41.55519],[-109.50967,41.554836],[-109.509349,41.554806],[-109.505854,41.554456],[-109.499764,41.553874],[-109.498875,41.553756],[-109.497722,41.553551],[-109.496602,41.553288],[-109.495543,41.553022],[-109.494518,41.55271],[-109.493302,41.552256],[-109.492168,41.55176],[-109.491102,41.551249],[-109.490462,41.5509],[-109.489521,41.550317],[-109.487452,41.549054],[-109.485247,41.547729],[-109.483181,41.546433],[-109.482456,41.545998],[-109.481769,41.545509],[-109.481465,41.545237],[-109.481185,41.544946],[-109.480897,41.544603],[-109.480412,41.543872],[-109.479429,41.542203],[-109.47909,41.541697],[-109.478646,41.541167],[-109.478244,41.540765],[-109.477877,41.540483],[-109.477317,41.540114],[-109.476497,41.539717],[-109.47489,41.539059],[-109.474706,41.538964],[-109.474405,41.538843],[-109.473193,41.538338],[-109.471206,41.537502],[-109.46973,41.53673],[-109.469055,41.536378],[-109.468595,41.536087],[-109.468008,41.535732],[-109.464631,41.533743],[-109.461792,41.532448],[-109.459398,41.531343],[-109.459117,41.531192],[-109.458342,41.530799],[-109.457347,41.530218],[-109.452183,41.526849],[-109.449918,41.525382],[-109.449533,41.525151],[-109.449241,41.524972],[-109.448882,41.524771],[-109.448453,41.524565],[-109.447991,41.524358],[-109.44733,41.524109],[-109.446881,41.52398],[-109.446096,41.523788],[-109.445418,41.523631],[-109.445008,41.523567],[-109.444472,41.523498],[-109.443971,41.523459],[-109.443561,41.523435],[-109.442975,41.52342],[-109.442181,41.523437],[-109.441194,41.523513],[-109.440096,41.523703],[-109.439216,41.523922],[-109.438367,41.524199],[-109.437049,41.524709],[-109.433555,41.52616],[-109.432695,41.526491],[-109.432055,41.526722],[-109.431252,41.526974],[-109.430631,41.527144],[-109.429924,41.52733],[-109.429275,41.527476],[-109.428661,41.527583],[-109.427709,41.527724],[-109.427002,41.527797],[-109.426092,41.527841],[-109.425314,41.527864],[-109.42439,41.527856],[-109.423384,41.52781],[-109.421888,41.527655],[-109.414022,41.526772],[-109.412707,41.526706],[-109.411453,41.526699],[-109.410186,41.526727],[-109.40921,41.52679],[-109.408203,41.526883],[-109.399754,41.528164],[-109.398785,41.528361],[-109.397914,41.528577],[-109.396772,41.528929],[-109.395635,41.529392],[-109.394874,41.529755],[-109.391551,41.531601],[-109.390561,41.53206],[-109.389957,41.532272],[-109.389236,41.532496],[-109.388388,41.532688],[-109.387489,41.532844],[-109.386614,41.532925],[-109.38586,41.532952],[-109.385207,41.532936],[-109.384249,41.532891],[-109.382201,41.532641],[-109.380035,41.532333],[-109.379086,41.532202],[-109.377787,41.532082],[-109.376564,41.532067],[-109.37558,41.532128],[-109.374822,41.532236],[-109.374056,41.532373],[-109.373238,41.532581],[-109.372461,41.532844],[-109.367037,41.534993],[-109.34604,41.543372],[-109.345782,41.543477],[-109.342809,41.54462],[-109.341175,41.54517],[-109.337468,41.546312],[-109.332985,41.547738],[-109.331703,41.548157],[-109.33043,41.548598],[-109.328905,41.549214],[-109.327388,41.549883],[-109.320638,41.552845],[-109.316462,41.554665],[-109.313337,41.556026],[-109.310844,41.557108],[-109.308365,41.558186],[-109.305824,41.559321],[-109.303383,41.560385],[-109.290488,41.566004],[-109.288644,41.566797],[-109.287373,41.567264],[-109.277224,41.571104],[-109.26976,41.573849],[-109.263649,41.57611],[-109.260324,41.57737],[-109.259222,41.577769],[-109.257333,41.578567],[-109.256324,41.579132],[-109.255647,41.579532],[-109.25459,41.580199],[-109.252913,41.581494],[-109.252426,41.581942],[-109.251415,41.583034],[-109.250353,41.584391],[-109.244989,41.592662],[-109.24378,41.594331],[-109.243328,41.594801],[-109.242184,41.595704],[-109.241449,41.596443],[-109.240988,41.597057],[-109.240514,41.597871],[-109.240261,41.598513],[-109.239864,41.600304],[-109.239111,41.601761],[-109.238568,41.602573],[-109.23815,41.603189],[-109.23771,41.603717],[-109.237118,41.60426],[-109.236451,41.60475],[-109.235877,41.605083],[-109.235234,41.605396],[-109.233555,41.606039],[-109.232634,41.606401],[-109.231469,41.606859],[-109.229799,41.607492],[-109.229105,41.607773],[-109.228791,41.607889],[-109.227035,41.608556],[-109.225946,41.608966],[-109.225212,41.60926],[-109.224535,41.609522],[-109.223833,41.609722],[-109.223661,41.609765],[-109.222721,41.609959],[-109.221884,41.610088],[-109.221014,41.610174],[-109.219875,41.6102],[-109.218859,41.610153],[-109.21804,41.61007],[-109.217093,41.609901],[-109.216225,41.609694],[-109.215478,41.609458],[-109.214735,41.609194],[-109.213988,41.608893],[-109.21139,41.607507],[-109.211143,41.607384],[-109.205769,41.604563],[-109.204854,41.604051],[-109.203822,41.603354],[-109.203349,41.602954],[-109.202685,41.602336],[-109.202147,41.60169],[-109.201775,41.601169],[-109.201455,41.600591],[-109.201103,41.599905],[-109.200724,41.59899],[-109.200581,41.598649],[-109.200036,41.597464],[-109.199661,41.59679],[-109.199312,41.596255],[-109.198844,41.595682],[-109.198354,41.595135],[-109.197617,41.594502],[-109.197105,41.594111],[-109.196284,41.593577],[-109.195489,41.593148],[-109.194679,41.5928],[-109.193862,41.592486],[-109.192868,41.592207],[-109.191502,41.591928],[-109.190856,41.591816],[-109.190075,41.591765],[-109.189285,41.591751],[-109.188206,41.591773],[-109.187208,41.591865],[-109.186678,41.59193],[-109.18589,41.592091],[-109.185065,41.592314],[-109.184253,41.592569],[-109.183597,41.592836],[-109.178404,41.595112],[-109.177773,41.595327],[-109.177107,41.595508],[-109.176153,41.595696],[-109.175404,41.595802],[-109.174658,41.595865],[-109.173699,41.595891],[-109.163467,41.596184],[-109.162491,41.596266],[-109.161711,41.596373],[-109.160922,41.596525],[-109.159793,41.596786],[-109.158694,41.597116],[-109.157563,41.597555],[-109.156631,41.598001],[-109.15576,41.598484],[-109.155045,41.598959],[-109.154323,41.599492],[-109.153578,41.600129],[-109.152698,41.600875],[-109.150121,41.60313],[-109.149098,41.603882],[-109.148014,41.604605],[-109.14704,41.605183],[-109.145954,41.605715],[-109.144784,41.606248],[-109.144048,41.606535],[-109.142412,41.607139],[-109.133542,41.610467],[-109.131718,41.611151],[-109.127486,41.612725],[-109.127099,41.612863],[-109.12107,41.615117],[-109.110136,41.619205],[-109.101319,41.622506],[-109.095196,41.624801],[-109.084994,41.628594],[-109.083873,41.628943],[-109.082743,41.629251],[-109.081255,41.629555],[-109.07966,41.629818],[-109.076687,41.630322],[-109.055648,41.633801],[-109.052262,41.634363],[-109.047695,41.635125],[-109.045609,41.635499],[-109.0444,41.635783],[-109.043214,41.636107],[-109.042074,41.636486],[-109.040595,41.637077],[-109.000385,41.654236],[-108.995736,41.656213],[-108.995527,41.656302],[-108.974756,41.66515],[-108.973427,41.665704],[-108.97273,41.665976],[-108.971672,41.666326],[-108.970694,41.666615],[-108.969708,41.666854],[-108.968918,41.667031],[-108.967832,41.667211],[-108.965949,41.667475],[-108.964098,41.667737],[-108.957937,41.66855],[-108.956334,41.66876],[-108.955403,41.668868],[-108.954379,41.668973],[-108.953151,41.66905],[-108.951905,41.66911],[-108.950878,41.66913],[-108.940025,41.66925],[-108.93838,41.669301],[-108.937406,41.669375],[-108.935991,41.669538],[-108.934085,41.669813],[-108.930348,41.670794],[-108.929932,41.670939],[-108.929171,41.67122],[-108.927922,41.671714],[-108.927249,41.67201],[-108.926599,41.672324],[-108.926007,41.67263],[-108.925413,41.672959],[-108.925062,41.673196],[-108.924604,41.673533],[-108.924176,41.673898],[-108.923823,41.674269],[-108.923494,41.674678],[-108.923241,41.675016],[-108.923,41.67542],[-108.922816,41.675762],[-108.922642,41.676197],[-108.922258,41.677156],[-108.921899,41.678137],[-108.921208,41.68001],[-108.921003,41.680461],[-108.920764,41.680932],[-108.92045,41.681492],[-108.920027,41.682128],[-108.919595,41.68268],[-108.919231,41.683138],[-108.918732,41.683667],[-108.918262,41.684128],[-108.917632,41.684672],[-108.916958,41.685206],[-108.916321,41.68565],[-108.915651,41.686061],[-108.91471,41.686583],[-108.913903,41.686961],[-108.912985,41.68735],[-108.903993,41.690842],[-108.903779,41.690924],[-108.903264,41.691092],[-108.902708,41.69126],[-108.901798,41.691504],[-108.9012,41.691625],[-108.900598,41.691737],[-108.899631,41.691887],[-108.89879,41.691979],[-108.897604,41.692038],[-108.89682,41.69205],[-108.896024,41.692034],[-108.89537,41.692001],[-108.894626,41.69194],[-108.885741,41.690808],[-108.88462,41.690714],[-108.884058,41.690703],[-108.883443,41.690714],[-108.882868,41.690755],[-108.882176,41.690832],[-108.881232,41.690985],[-108.88035,41.691175],[-108.872295,41.693025],[-108.8711,41.693278],[-108.869942,41.693462],[-108.869129,41.693546],[-108.868303,41.693602],[-108.867252,41.693639],[-108.866457,41.69363],[-108.865898,41.693608],[-108.865342,41.693572],[-108.864657,41.69351],[-108.863883,41.693406],[-108.863145,41.693278],[-108.86224,41.693091],[-108.843218,41.688716],[-108.842994,41.688662],[-108.842087,41.688475],[-108.84119,41.688317],[-108.839985,41.68813],[-108.838746,41.688003],[-108.837662,41.687958],[-108.83675,41.68793],[-108.835694,41.687947],[-108.834594,41.68799],[-108.819397,41.688588],[-108.818605,41.688584],[-108.817786,41.688519],[-108.817037,41.688418],[-108.81634,41.688263],[-108.815795,41.688096],[-108.815161,41.687881],[-108.814578,41.687644],[-108.812523,41.686696],[-108.806856,41.684059],[-108.805251,41.683354],[-108.804493,41.683077],[-108.803834,41.682858],[-108.803188,41.682672],[-108.802281,41.682435],[-108.801297,41.682247],[-108.787411,41.679367],[-108.782703,41.678393],[-108.782424,41.678327],[-108.777819,41.677381],[-108.775063,41.676817],[-108.773599,41.676566],[-108.77229,41.67638],[-108.771011,41.676225],[-108.769934,41.676112],[-108.768992,41.676035],[-108.767983,41.675975],[-108.75498,41.675026],[-108.748866,41.674571],[-108.746199,41.674387],[-108.744874,41.674262],[-108.743528,41.674072],[-108.742231,41.67383],[-108.740934,41.673505],[-108.73958,41.673098],[-108.738561,41.672734],[-108.737561,41.672315],[-108.736454,41.671803],[-108.735334,41.671171],[-108.731822,41.668881],[-108.721638,41.662188],[-108.714866,41.657707],[-108.711073,41.65518],[-108.710801,41.655012],[-108.708771,41.653825],[-108.707747,41.653248],[-108.706673,41.652692],[-108.705033,41.651933],[-108.703322,41.651208],[-108.702149,41.650751],[-108.700403,41.650153],[-108.698964,41.649692],[-108.697461,41.649261],[-108.696101,41.64892],[-108.694666,41.648613],[-108.69306,41.648294],[-108.691785,41.648082],[-108.690832,41.647943],[-108.689734,41.64782],[-108.68851,41.647698],[-108.687352,41.647603],[-108.686545,41.647552],[-108.685759,41.647529],[-108.682897,41.647439],[-108.676537,41.647277],[-108.676224,41.647266],[-108.670601,41.647102],[-108.660142,41.646805],[-108.652971,41.646647],[-108.651714,41.646646],[-108.650403,41.646692],[-108.649492,41.646725],[-108.648516,41.646793],[-108.645342,41.647078],[-108.641023,41.647494],[-108.630687,41.648425],[-108.627501,41.648713],[-108.627159,41.648738],[-108.623751,41.649061],[-108.620879,41.649339],[-108.618455,41.649541],[-108.61671,41.649603],[-108.615473,41.649619],[-108.613973,41.6496],[-108.61258,41.649539],[-108.611383,41.649449],[-108.61048,41.649377],[-108.609342,41.649256],[-108.608129,41.649088],[-108.599503,41.647998],[-108.587803,41.646512],[-108.580034,41.64553],[-108.578609,41.645378],[-108.576645,41.645251],[-108.576285,41.645236],[-108.572443,41.645019],[-108.534937,41.642769],[-108.526379,41.642254],[-108.517235,41.641705],[-108.516924,41.641686],[-108.486659,41.639854],[-108.48633,41.639836],[-108.48454,41.639737],[-108.48337,41.639647],[-108.46982,41.63884],[-108.462726,41.638404],[-108.462538,41.638389],[-108.414682,41.635495],[-108.410533,41.635319],[-108.410171,41.635304],[-108.408501,41.635213],[-108.406104,41.635095],[-108.399516,41.634627],[-108.396895,41.634417],[-108.390875,41.634011],[-108.382155,41.633476],[-108.378821,41.633274],[-108.378483,41.633254],[-108.375339,41.633057],[-108.357158,41.631965],[-108.355715,41.631874],[-108.354172,41.631794],[-108.350102,41.631652],[-108.349223,41.631624],[-108.348004,41.631575],[-108.347721,41.631564],[-108.330798,41.630987],[-108.313889,41.630391],[-108.306317,41.630128],[-108.292112,41.629628],[-108.290018,41.62957],[-108.288853,41.629575],[-108.287801,41.62964],[-108.286466,41.629792],[-108.285262,41.62997],[-108.268648,41.632547],[-108.265785,41.633007],[-108.261891,41.633598],[-108.261599,41.63364],[-108.257218,41.634315],[-108.240703,41.636859],[-108.237419,41.637356],[-108.235853,41.637565],[-108.234208,41.637729],[-108.228232,41.638331],[-108.220885,41.639066],[-108.206821,41.640481],[-108.189243,41.642269],[-108.183178,41.642892],[-108.18108,41.643102],[-108.159053,41.645311],[-108.157164,41.64554],[-108.156291,41.645665],[-108.155118,41.645857],[-108.154,41.646071],[-108.134261,41.650264],[-108.128395,41.651493],[-108.128036,41.651571],[-108.123866,41.652458],[-108.121121,41.653042],[-108.11745,41.653707],[-108.115747,41.653963],[-108.10638,41.655251],[-108.099478,41.656182],[-108.068334,41.660387],[-108.06078,41.661411],[-108.038741,41.664389],[-108.037672,41.664533],[-108.031928,41.665297],[-108.03138,41.665379],[-108.025674,41.666158],[-107.999715,41.669617],[-107.99941,41.669662],[-107.991188,41.670784],[-107.989612,41.671024],[-107.988525,41.671258],[-107.987273,41.671608],[-107.986356,41.671879],[-107.980611,41.674351],[-107.980309,41.674493],[-107.975234,41.676793],[-107.972782,41.677927],[-107.972497,41.678061],[-107.970132,41.679151],[-107.959133,41.684182],[-107.951699,41.687577],[-107.950492,41.688117],[-107.94969,41.688467],[-107.948679,41.688841],[-107.947597,41.68919],[-107.944747,41.690032],[-107.934474,41.693097],[-107.909472,41.700537],[-107.90277,41.702524],[-107.901576,41.702856],[-107.900314,41.703181],[-107.899046,41.70348],[-107.897398,41.703841],[-107.896234,41.704054],[-107.894613,41.704335],[-107.893098,41.704549],[-107.892067,41.704682],[-107.890399,41.704853],[-107.888748,41.704999],[-107.886592,41.705106],[-107.877218,41.705416],[-107.875615,41.705469],[-107.868572,41.705692],[-107.86752,41.705696],[-107.866484,41.705677],[-107.865407,41.705635],[-107.863821,41.705516],[-107.862325,41.705349],[-107.860911,41.705134],[-107.849885,41.703141],[-107.84965,41.703093],[-107.848117,41.702827],[-107.847003,41.702683],[-107.845885,41.702579],[-107.844995,41.702532],[-107.844245,41.702515],[-107.843493,41.702519],[-107.842703,41.702544],[-107.841871,41.702595],[-107.841085,41.702665],[-107.840285,41.702754],[-107.83914,41.702933],[-107.838196,41.703117],[-107.835448,41.70374],[-107.832448,41.704428],[-107.829759,41.705042],[-107.82654,41.705781],[-107.80846,41.709911],[-107.79184,41.713705],[-107.787196,41.714771],[-107.784563,41.715381],[-107.782908,41.715755],[-107.78256,41.715837],[-107.778274,41.716812],[-107.760437,41.720874],[-107.750565,41.723125],[-107.733825,41.72694],[-107.728643,41.728108],[-107.728231,41.728194],[-107.72271,41.729489],[-107.712684,41.731765],[-107.703392,41.733876],[-107.695824,41.735596],[-107.685772,41.737878],[-107.679888,41.73922],[-107.675608,41.740187],[-107.673839,41.740587],[-107.672534,41.740826],[-107.671045,41.741082],[-107.669897,41.741238],[-107.668859,41.741367],[-107.667413,41.741508],[-107.666192,41.741596],[-107.642186,41.743303],[-107.630669,41.744119],[-107.618561,41.744971],[-107.618183,41.745],[-107.584641,41.747363],[-107.582937,41.747531],[-107.580831,41.747779],[-107.578737,41.74807],[-107.577114,41.748349],[-107.575459,41.748652],[-107.573624,41.749037],[-107.566604,41.750587],[-107.564263,41.7511],[-107.559309,41.752185],[-107.558928,41.752269],[-107.55452,41.753246],[-107.525827,41.759539],[-107.525526,41.759607],[-107.515455,41.761818],[-107.505353,41.764023],[-107.491365,41.767161],[-107.469552,41.772053],[-107.466356,41.772763],[-107.466036,41.772834],[-107.461916,41.773762],[-107.454888,41.77533],[-107.435841,41.779603],[-107.417538,41.78369],[-107.413587,41.784547],[-107.413081,41.784634],[-107.412695,41.784702],[-107.410503,41.785052],[-107.410173,41.785103],[-107.409067,41.785259],[-107.408038,41.785385],[-107.404161,41.785822],[-107.388664,41.787535],[-107.387155,41.787668],[-107.386075,41.787716],[-107.385002,41.787761],[-107.383798,41.787785],[-107.382568,41.787778],[-107.381382,41.787744],[-107.380171,41.787683],[-107.379168,41.787612],[-107.378339,41.787539],[-107.37741,41.787449],[-107.375609,41.787222],[-107.374894,41.787114],[-107.373594,41.786887],[-107.372178,41.786616],[-107.371821,41.786536],[-107.370378,41.786202],[-107.368962,41.785835],[-107.363832,41.784375],[-107.34035,41.777709],[-107.338871,41.777321],[-107.337367,41.776973],[-107.336065,41.776707],[-107.334724,41.776465],[-107.333295,41.776245],[-107.332178,41.776093],[-107.330689,41.775941],[-107.329447,41.775837],[-107.328476,41.775759],[-107.327215,41.7757],[-107.326911,41.775697],[-107.325503,41.775673],[-107.324075,41.775679],[-107.323086,41.77571],[-107.322065,41.775755],[-107.320267,41.775867],[-107.318263,41.776025],[-107.311225,41.776561],[-107.310903,41.776585],[-107.304046,41.777118],[-107.301531,41.77731],[-107.29049,41.778154],[-107.288388,41.778315],[-107.285724,41.778527],[-107.28421,41.778661],[-107.282647,41.77886],[-107.282181,41.778928],[-107.275347,41.780263],[-107.275212,41.780292],[-107.266898,41.781793],[-107.265473,41.782038],[-107.264688,41.782127],[-107.26405,41.782172],[-107.263403,41.782185],[-107.262831,41.782179],[-107.262185,41.782153],[-107.261576,41.7821],[-107.260963,41.782018],[-107.259719,41.781785],[-107.259143,41.781636],[-107.258481,41.781429],[-107.257175,41.780962],[-107.256499,41.780708],[-107.253066,41.779496],[-107.252151,41.779216],[-107.251229,41.778975],[-107.250761,41.778848],[-107.249924,41.778663],[-107.24908,41.778511],[-107.248562,41.778424],[-107.247801,41.778335],[-107.247222,41.778271],[-107.246672,41.778231],[-107.245979,41.778207],[-107.233542,41.777801],[-107.231707,41.77774],[-107.229977,41.7777],[-107.229379,41.777697],[-107.228769,41.777711],[-107.228184,41.777735],[-107.227602,41.777779],[-107.226846,41.777846],[-107.226076,41.777935],[-107.225418,41.778036],[-107.224627,41.77818],[-107.223457,41.778406],[-107.222631,41.778617],[-107.221741,41.778872],[-107.220958,41.779122],[-107.2202,41.779393],[-107.219289,41.779747],[-107.218503,41.780108],[-107.217116,41.780796],[-107.20669,41.786097],[-107.206481,41.786213],[-107.204427,41.787249],[-107.203742,41.787607],[-107.202346,41.788293],[-107.201899,41.788512],[-107.201424,41.788715],[-107.200682,41.788932],[-107.200066,41.78909],[-107.199449,41.789206],[-107.199063,41.789263],[-107.198561,41.789325],[-107.198008,41.789336],[-107.197359,41.789325],[-107.196637,41.789268],[-107.195593,41.789128],[-107.188835,41.787704],[-107.176773,41.785139],[-107.174391,41.784721],[-107.172279,41.784438],[-107.170269,41.78424],[-107.153605,41.783029],[-107.143647,41.78232],[-107.136502,41.781767],[-107.131925,41.781447],[-107.130867,41.781362],[-107.129854,41.781247],[-107.128898,41.781061],[-107.128057,41.780824],[-107.127415,41.780572],[-107.127147,41.780469],[-107.126526,41.780144],[-107.125822,41.779715],[-107.125118,41.779217],[-107.124539,41.778824],[-107.12312,41.777856],[-107.121962,41.777065],[-107.119801,41.775573],[-107.119145,41.775149],[-107.118463,41.77478],[-107.117853,41.77449],[-107.117083,41.774216],[-107.116208,41.773971],[-107.115503,41.773838],[-107.114819,41.773756],[-107.114148,41.7737],[-107.113356,41.773677],[-107.105029,41.773612],[-107.103904,41.773577],[-107.102886,41.773528],[-107.101129,41.773418],[-107.098532,41.773147],[-107.089622,41.771738],[-107.088752,41.771646],[-107.087716,41.771591],[-107.086697,41.771577],[-107.085231,41.771681],[-107.083898,41.771879],[-107.079045,41.772902],[-107.07815,41.773064],[-107.07723,41.773183],[-107.076383,41.773257],[-107.075436,41.773319],[-107.0743,41.773346],[-107.073256,41.773299],[-107.071957,41.77323],[-107.070679,41.773083],[-107.069529,41.7729],[-107.063956,41.77195],[-107.017629,41.763888],[-106.966836,41.755036],[-106.961685,41.75415],[-106.961323,41.754083],[-106.958812,41.753595],[-106.957096,41.753188],[-106.956125,41.752915],[-106.9493,41.751118],[-106.948237,41.75083],[-106.943305,41.749523],[-106.943006,41.749437],[-106.932327,41.746588],[-106.929837,41.745948],[-106.927926,41.745502],[-106.926594,41.745228],[-106.925219,41.745001],[-106.923908,41.744807],[-106.922583,41.744637],[-106.920837,41.744486],[-106.919176,41.744379],[-106.875992,41.742812],[-106.849581,41.741853],[-106.848106,41.741799],[-106.843386,41.741616],[-106.842975,41.741609],[-106.838025,41.741438],[-106.830519,41.741173],[-106.829916,41.741153],[-106.826013,41.740993],[-106.8243,41.741006],[-106.821174,41.741112],[-106.806563,41.741643],[-106.805569,41.74167],[-106.779519,41.742609],[-106.774126,41.742799],[-106.773634,41.742813],[-106.771318,41.742888],[-106.770585,41.742869],[-106.769761,41.742811],[-106.768991,41.74272],[-106.767977,41.742534],[-106.767389,41.742394],[-106.765962,41.741973],[-106.747397,41.736691],[-106.74509,41.736092],[-106.743176,41.735745],[-106.703537,41.730554],[-106.702623,41.730463],[-106.70174,41.730407],[-106.700615,41.730376],[-106.699723,41.730374],[-106.698199,41.730398],[-106.682672,41.730773],[-106.665336,41.731192],[-106.665057,41.731197],[-106.65782,41.731365],[-106.656541,41.731441],[-106.655528,41.731517],[-106.654888,41.731604],[-106.653817,41.731765],[-106.65286,41.731951],[-106.651642,41.732239],[-106.627343,41.73862],[-106.627087,41.738686],[-106.626085,41.738901],[-106.625131,41.739058],[-106.624102,41.739219],[-106.623094,41.739327],[-106.622373,41.739369],[-106.621648,41.739411],[-106.620897,41.73942],[-106.619781,41.739407],[-106.618773,41.739353],[-106.617608,41.739242],[-106.616574,41.7391],[-106.61571,41.738958],[-106.614893,41.738786],[-106.607596,41.737136],[-106.605843,41.736751],[-106.604844,41.736533],[-106.603835,41.736358],[-106.602539,41.736185],[-106.601478,41.736098],[-106.600392,41.736041],[-106.599364,41.736024],[-106.598326,41.736052],[-106.596943,41.736148],[-106.595552,41.736321],[-106.594031,41.736562],[-106.569458,41.740737],[-106.567264,41.741124],[-106.566419,41.74133],[-106.541542,41.7475],[-106.53903,41.748091],[-106.537985,41.748276],[-106.536728,41.748451],[-106.530297,41.749407],[-106.528476,41.749745],[-106.527625,41.749936],[-106.526615,41.750232],[-106.52566,41.750539],[-106.524468,41.750993],[-106.523312,41.751501],[-106.519866,41.753138],[-106.51917,41.753418],[-106.518329,41.753689],[-106.517702,41.753839],[-106.517073,41.753941],[-106.516398,41.754024],[-106.515789,41.754064],[-106.515096,41.754097],[-106.514191,41.753991],[-106.51365,41.753886],[-106.513107,41.753787],[-106.512303,41.753559],[-106.5115,41.753281],[-106.510576,41.752826],[-106.507938,41.751445],[-106.50773,41.751342],[-106.501413,41.747948],[-106.498515,41.746357],[-106.497701,41.745817],[-106.496933,41.745232],[-106.496053,41.744482],[-106.495335,41.743748],[-106.4948,41.743113],[-106.494336,41.742483],[-106.493991,41.741936],[-106.493168,41.740483],[-106.492476,41.739274],[-106.492063,41.738681],[-106.491601,41.738089],[-106.491189,41.737604],[-106.490695,41.737096],[-106.490261,41.736672],[-106.489831,41.7363],[-106.488895,41.735573],[-106.488261,41.735136],[-106.487565,41.734691],[-106.486937,41.734345],[-106.486119,41.733947],[-106.485251,41.733568],[-106.481883,41.732258],[-106.471553,41.72841],[-106.466041,41.726273],[-106.460763,41.724277],[-106.453567,41.721546],[-106.451878,41.720872],[-106.44857,41.719452],[-106.446236,41.718345],[-106.44377,41.717082],[-106.441907,41.716075],[-106.44008,41.715013],[-106.436213,41.712615],[-106.431076,41.709124],[-106.430286,41.708623],[-106.429447,41.708155],[-106.428214,41.707569],[-106.426949,41.707073],[-106.425469,41.70663],[-106.424492,41.706381],[-106.42352,41.706191],[-106.422557,41.706035],[-106.421724,41.705938],[-106.420707,41.70588],[-106.409104,41.705433],[-106.408012,41.705349],[-106.407169,41.70525],[-106.406108,41.705073],[-106.405364,41.704916],[-106.404275,41.704633],[-106.403155,41.704267],[-106.402497,41.704033],[-106.392945,41.700604],[-106.392319,41.700347],[-106.391464,41.699956],[-106.390763,41.699604],[-106.389858,41.699107],[-106.389034,41.698579],[-106.388229,41.698014],[-106.387181,41.697136],[-106.386453,41.696411],[-106.385813,41.695649],[-106.385364,41.694957],[-106.384363,41.693243],[-106.384056,41.692697],[-106.383162,41.691191],[-106.381636,41.688503],[-106.380591,41.686868],[-106.378645,41.684026],[-106.376957,41.68175],[-106.376439,41.680924],[-106.376085,41.680293],[-106.375697,41.679548],[-106.375322,41.678603],[-106.374511,41.675626],[-106.374374,41.675045],[-106.374191,41.67448],[-106.37386,41.673624],[-106.373463,41.672862],[-106.373093,41.672257],[-106.372409,41.671274],[-106.37161,41.670309],[-106.370839,41.669588],[-106.370192,41.669019],[-106.369475,41.668488],[-106.368666,41.667919],[-106.368047,41.667562],[-106.367294,41.667151],[-106.366793,41.666915],[-106.358493,41.662911],[-106.344959,41.656369],[-106.34458,41.656188],[-106.340552,41.654237],[-106.322872,41.645711],[-106.321346,41.644988],[-106.320294,41.644534],[-106.319158,41.644151],[-106.318293,41.643884],[-106.31767,41.643712],[-106.317086,41.643577],[-106.315829,41.64332],[-106.314072,41.643023],[-106.305227,41.641517],[-106.295778,41.639879],[-106.29501,41.639707],[-106.294282,41.639507],[-106.293135,41.639125],[-106.292522,41.638901],[-106.291953,41.638646],[-106.291323,41.638356],[-106.290723,41.638047],[-106.29009,41.637685],[-106.28936,41.637234],[-106.284501,41.634123],[-106.284028,41.633829],[-106.279178,41.630707],[-106.278674,41.630412],[-106.277579,41.629822],[-106.276446,41.629292],[-106.275168,41.628757],[-106.274339,41.628468],[-106.27349,41.628204],[-106.272441,41.62791],[-106.271366,41.627667],[-106.259745,41.625416],[-106.251854,41.623875],[-106.248033,41.62312],[-106.246767,41.62283],[-106.245852,41.622551],[-106.244603,41.622135],[-106.243332,41.621615],[-106.242354,41.62115],[-106.241349,41.620589],[-106.239811,41.619606],[-106.239058,41.618994],[-106.23827,41.618312],[-106.237667,41.617732],[-106.237122,41.617127],[-106.232324,41.611213],[-106.232069,41.610898],[-106.2293,41.60755],[-106.224819,41.60208],[-106.224217,41.601317],[-106.223565,41.600623],[-106.222902,41.600052],[-106.222239,41.599631],[-106.221436,41.599123],[-106.220682,41.598777],[-106.220124,41.598533],[-106.219532,41.598324],[-106.218694,41.598074],[-106.21796,41.597907],[-106.217054,41.597761],[-106.216059,41.597661],[-106.215153,41.597633],[-106.210123,41.597648],[-106.209446,41.597647],[-106.20932,41.597643],[-106.202918,41.597635],[-106.201985,41.597607],[-106.201139,41.597483],[-106.200298,41.597335],[-106.199418,41.597104],[-106.198389,41.596752],[-106.197864,41.596518],[-106.197117,41.596187],[-106.196681,41.595973],[-106.192688,41.594166],[-106.186459,41.591204],[-106.186043,41.591018],[-106.184252,41.5902],[-106.181837,41.588997],[-106.176661,41.586038],[-106.156184,41.57411],[-106.155915,41.57396],[-106.145594,41.567945],[-106.144618,41.567405],[-106.143587,41.566886],[-106.142469,41.566392],[-106.14152,41.566037],[-106.140614,41.565724],[-106.139991,41.565525],[-106.139357,41.565361],[-106.138368,41.565122],[-106.137213,41.564895],[-106.135985,41.564704],[-106.134689,41.564519],[-106.114899,41.561812],[-106.113567,41.561582],[-106.112827,41.561447],[-106.112073,41.561271],[-106.110919,41.560936],[-106.109838,41.560591],[-106.108859,41.56022],[-106.107905,41.559825],[-106.107601,41.559685],[-106.106589,41.559176],[-106.097632,41.554356],[-106.095362,41.553134],[-106.094196,41.552503],[-106.093521,41.552077],[-106.093055,41.551754],[-106.09229,41.551203],[-106.091575,41.550653],[-106.090674,41.549858],[-106.086893,41.54616],[-106.085242,41.544559],[-106.083563,41.542953],[-106.083235,41.542639],[-106.079948,41.53936],[-106.076819,41.536239],[-106.072533,41.531901],[-106.071676,41.53103],[-106.070372,41.529656],[-106.069515,41.528808],[-106.068892,41.528281],[-106.068064,41.527682],[-106.067164,41.52714],[-106.066398,41.526735],[-106.065468,41.526302],[-106.064426,41.525915],[-106.062414,41.525183],[-106.061356,41.524769],[-106.060713,41.52445],[-106.060145,41.52413],[-106.059638,41.523785],[-106.059176,41.523446],[-106.058748,41.523084],[-106.058217,41.522577],[-106.057802,41.522098],[-106.057393,41.52152],[-106.056988,41.520882],[-106.056689,41.520249],[-106.056455,41.519564],[-106.056252,41.518844],[-106.054941,41.513666],[-106.05485,41.513261],[-106.053343,41.50745],[-106.053121,41.506755],[-106.052754,41.50583],[-106.052115,41.504552],[-106.051105,41.502729],[-106.049801,41.500389],[-106.049286,41.49962],[-106.048887,41.499077],[-106.048482,41.498585],[-106.047684,41.497718],[-106.047082,41.497143],[-106.046396,41.496535],[-106.045734,41.495968],[-106.045058,41.495474],[-106.044328,41.49498],[-106.043431,41.49446],[-106.039025,41.491857],[-106.025571,41.484648],[-106.02513,41.484419],[-106.005761,41.474137],[-106.004185,41.473304],[-106.004019,41.473219],[-105.990972,41.466252],[-105.98499,41.463087],[-105.983909,41.462467],[-105.983138,41.461926],[-105.982051,41.461049],[-105.981571,41.460589],[-105.978988,41.457986],[-105.973516,41.452378],[-105.97332,41.452174],[-105.968265,41.447109],[-105.967808,41.446696],[-105.967316,41.446303],[-105.966604,41.445792],[-105.965931,41.445374],[-105.965323,41.445064],[-105.964691,41.444743],[-105.963922,41.444413],[-105.963091,41.444105],[-105.962063,41.44377],[-105.961042,41.443537],[-105.954696,41.442142],[-105.952792,41.441761],[-105.949941,41.441329],[-105.944029,41.440453],[-105.943549,41.440386],[-105.936979,41.439418],[-105.917943,41.436604],[-105.909474,41.435366],[-105.895182,41.433243],[-105.894178,41.433051],[-105.893379,41.432863],[-105.892607,41.432657],[-105.89181,41.432423],[-105.891028,41.432166],[-105.890176,41.431831],[-105.887282,41.430678],[-105.873559,41.424989],[-105.860518,41.41962],[-105.853968,41.416908],[-105.848697,41.414734],[-105.842812,41.412304],[-105.840418,41.411287],[-105.839616,41.410878],[-105.838864,41.410456],[-105.838016,41.409944],[-105.837162,41.409361],[-105.836549,41.408907],[-105.835994,41.408451],[-105.835446,41.407968],[-105.834863,41.407386],[-105.834515,41.407022],[-105.834098,41.40656],[-105.832315,41.404443],[-105.829531,41.401149],[-105.827857,41.399144],[-105.824541,41.395241],[-105.824144,41.394779],[-105.823568,41.394081],[-105.821207,41.391254],[-105.816794,41.386022],[-105.815742,41.384755],[-105.815253,41.384195],[-105.814842,41.383735],[-105.814224,41.383098],[-105.813698,41.382608],[-105.81314,41.382125],[-105.812551,41.381658],[-105.811685,41.381045],[-105.811076,41.380635],[-105.810455,41.380263],[-105.809572,41.379779],[-105.778735,41.364292],[-105.77768,41.363782],[-105.776834,41.363406],[-105.776011,41.363088],[-105.775264,41.36283],[-105.774469,41.362566],[-105.773591,41.362327],[-105.772547,41.362054],[-105.752341,41.356653],[-105.748233,41.355546],[-105.746483,41.355093],[-105.7454,41.35482],[-105.744369,41.354628],[-105.742472,41.354341],[-105.741911,41.354254],[-105.707415,41.349317],[-105.705882,41.349114],[-105.705339,41.349057],[-105.704742,41.349021],[-105.704102,41.34901],[-105.703528,41.34903],[-105.702964,41.349068],[-105.702494,41.349107],[-105.702043,41.349179],[-105.701324,41.349295],[-105.700725,41.349438],[-105.698636,41.349957],[-105.697881,41.350138],[-105.697139,41.350292],[-105.696433,41.350394],[-105.695702,41.350449],[-105.694728,41.35047],[-105.667011,41.350539],[-105.661268,41.350554],[-105.652463,41.350576],[-105.645295,41.350572],[-105.644461,41.350562],[-105.643727,41.350517],[-105.642989,41.350434],[-105.642371,41.350349],[-105.641709,41.350223],[-105.641081,41.350089],[-105.640475,41.349939],[-105.639841,41.349749],[-105.639076,41.349483],[-105.63814,41.3491],[-105.637133,41.348644],[-105.634072,41.347264],[-105.633669,41.347071],[-105.621802,41.341685],[-105.620724,41.341179],[-105.620147,41.34088],[-105.619598,41.340562],[-105.61908,41.340215],[-105.618633,41.339851],[-105.618188,41.339413],[-105.617859,41.33904],[-105.61749,41.338507],[-105.617259,41.338123],[-105.61709,41.337783],[-105.616934,41.337344],[-105.616796,41.336879],[-105.616716,41.336457],[-105.616661,41.336039],[-105.616579,41.335146],[-105.616366,41.332668],[-105.616268,41.331689],[-105.615967,41.328032],[-105.6156,41.323649],[-105.615489,41.322592],[-105.615305,41.320528],[-105.615092,41.317972],[-105.615052,41.317465],[-105.614713,41.313525],[-105.614521,41.311444],[-105.614371,41.30933],[-105.614316,41.308735],[-105.614242,41.307992],[-105.614084,41.306131],[-105.614041,41.305812],[-105.613945,41.305457],[-105.613865,41.305022],[-105.613789,41.304826],[-105.613518,41.304281],[-105.613266,41.303895],[-105.612913,41.303481],[-105.612545,41.303104],[-105.612106,41.302721],[-105.611597,41.302363],[-105.611064,41.30206],[-105.610524,41.301792],[-105.609932,41.301561],[-105.608674,41.301214],[-105.607899,41.301006],[-105.601213,41.29922],[-105.598739,41.298536],[-105.597312,41.298154],[-105.597189,41.298124],[-105.595001,41.29753],[-105.59429,41.297344],[-105.589262,41.295984],[-105.58802,41.295648],[-105.581038,41.293784],[-105.576846,41.292658],[-105.575648,41.292376],[-105.574318,41.292106],[-105.57318,41.29189],[-105.571749,41.291665],[-105.570073,41.291446],[-105.56848,41.291289],[-105.567288,41.291203],[-105.566583,41.291164],[-105.565672,41.291125],[-105.564672,41.291106],[-105.556675,41.291089],[-105.545801,41.291084],[-105.537899,41.291073],[-105.53054,41.291069],[-105.529835,41.291038],[-105.529298,41.291004],[-105.52877,41.290944],[-105.528146,41.290791],[-105.527435,41.290569],[-105.527084,41.290435],[-105.526679,41.290247],[-105.526287,41.290042],[-105.525879,41.289791],[-105.525546,41.289548],[-105.52519,41.289262],[-105.524788,41.288907],[-105.524412,41.288492],[-105.523111,41.287134],[-105.52138,41.285308],[-105.519093,41.282893],[-105.515845,41.279477],[-105.515096,41.27869],[-105.514624,41.27822],[-105.513705,41.277411],[-105.513113,41.276936],[-105.512579,41.276547],[-105.51241,41.276425],[-105.511868,41.276062],[-105.511306,41.275715],[-105.510672,41.27534],[-105.510024,41.27499],[-105.508507,41.274254],[-105.506819,41.273474],[-105.506183,41.273182],[-105.505528,41.272912],[-105.504916,41.272712],[-105.504367,41.272545],[-105.503756,41.272386],[-105.503127,41.272237],[-105.502265,41.272088],[-105.501432,41.271981],[-105.500545,41.271894],[-105.499692,41.271865],[-105.496859,41.271778],[-105.491961,41.271618],[-105.491318,41.271627],[-105.490653,41.271657],[-105.490052,41.271702],[-105.486641,41.272169],[-105.486071,41.272236],[-105.485478,41.272268],[-105.48493,41.272262],[-105.484358,41.272222],[-105.483761,41.272115],[-105.483297,41.271999],[-105.482796,41.271849],[-105.482325,41.271668],[-105.481901,41.271458],[-105.481247,41.271031],[-105.480705,41.270624],[-105.477099,41.267543],[-105.476482,41.267026],[-105.476054,41.266719],[-105.475704,41.26651],[-105.475326,41.266316],[-105.474776,41.266082],[-105.474375,41.265935],[-105.473939,41.26582],[-105.473497,41.265713],[-105.472991,41.265633],[-105.472346,41.265578],[-105.47,41.265504],[-105.469583,41.26547],[-105.469051,41.265431],[-105.468603,41.265352],[-105.46814,41.26525],[-105.467694,41.265128],[-105.467229,41.26497],[-105.466795,41.26478],[-105.466046,41.264386],[-105.464152,41.2632],[-105.463723,41.262963],[-105.463223,41.262719],[-105.462604,41.262492],[-105.461882,41.262264],[-105.460045,41.261782],[-105.459055,41.26145],[-105.458077,41.26107],[-105.457095,41.260591],[-105.456352,41.260167],[-105.448408,41.255247],[-105.447816,41.254828],[-105.447354,41.254446],[-105.446936,41.254047],[-105.446399,41.253481],[-105.445895,41.252841],[-105.445422,41.252093],[-105.444078,41.249951],[-105.44061,41.24441],[-105.438773,41.241371],[-105.43851,41.240875],[-105.438264,41.240363],[-105.438012,41.239741],[-105.437775,41.239067],[-105.43763,41.238522],[-105.437164,41.235929],[-105.436895,41.234761],[-105.436841,41.23416],[-105.436835,41.23358],[-105.436894,41.233155],[-105.437,41.232635],[-105.437155,41.232156],[-105.437366,41.231691],[-105.437613,41.231261],[-105.438494,41.229752],[-105.438724,41.229213],[-105.438875,41.228737],[-105.438998,41.228236],[-105.439063,41.227703],[-105.439073,41.227201],[-105.439014,41.2266],[-105.438902,41.226112],[-105.438344,41.223778],[-105.438267,41.223254],[-105.438216,41.222678],[-105.438234,41.222234],[-105.438291,41.221781],[-105.438403,41.221184],[-105.438585,41.220597],[-105.439085,41.219072],[-105.441182,41.212887],[-105.441396,41.212199],[-105.441509,41.211585],[-105.44153,41.211185],[-105.44154,41.210805],[-105.441481,41.21029],[-105.441399,41.20989],[-105.441299,41.209522],[-105.441142,41.209119],[-105.441008,41.208783],[-105.440832,41.20846],[-105.44008,41.207255],[-105.439336,41.206075],[-105.438873,41.205454],[-105.438134,41.204606],[-105.437199,41.203618],[-105.432839,41.198931],[-105.42681,41.192451],[-105.426582,41.192204],[-105.424823,41.190296],[-105.424411,41.189737],[-105.423914,41.189012],[-105.423461,41.18824],[-105.423117,41.187477],[-105.42286,41.186828],[-105.422713,41.186306],[-105.421985,41.183078],[-105.421787,41.182307],[-105.421533,41.181602],[-105.421318,41.18106],[-105.421092,41.18054],[-105.420839,41.180029],[-105.420446,41.179311],[-105.420093,41.178776],[-105.416558,41.173887],[-105.412337,41.168019],[-105.410643,41.165669],[-105.408205,41.16243],[-105.407383,41.161473],[-105.406424,41.160456],[-105.40475,41.15886],[-105.403541,41.157782],[-105.403321,41.157604],[-105.402161,41.15673],[-105.400786,41.155761],[-105.399626,41.154982],[-105.399303,41.154774],[-105.39815,41.154089],[-105.397165,41.153533],[-105.395415,41.152625],[-105.389016,41.149328],[-105.386883,41.148218],[-105.385619,41.147586],[-105.384654,41.147161],[-105.383961,41.146898],[-105.383516,41.146727],[-105.383034,41.146571],[-105.382292,41.146336],[-105.38158,41.146128],[-105.375543,41.144377],[-105.370845,41.143019],[-105.363437,41.140884],[-105.361145,41.140208],[-105.359575,41.139771],[-105.358301,41.139394],[-105.357156,41.139017],[-105.356408,41.138734],[-105.355752,41.138462],[-105.354899,41.138069],[-105.354023,41.137638],[-105.353309,41.13722],[-105.352633,41.136815],[-105.351129,41.135857],[-105.349557,41.134856],[-105.344692,41.131789],[-105.340533,41.129167],[-105.33948,41.128559],[-105.338396,41.128009],[-105.3375,41.127613],[-105.336575,41.127247],[-105.335574,41.126899],[-105.334536,41.126588],[-105.333259,41.126284],[-105.331944,41.126019],[-105.33062,41.125836],[-105.328962,41.125695],[-105.313197,41.125409],[-105.309996,41.12533],[-105.308756,41.125259],[-105.307929,41.125197],[-105.306124,41.124982],[-105.305382,41.124887],[-105.304894,41.124822],[-105.30173,41.124427],[-105.299004,41.124075],[-105.296896,41.123792],[-105.296032,41.123634],[-105.295222,41.123468],[-105.294621,41.123343],[-105.294037,41.123202],[-105.293044,41.122943],[-105.292299,41.122721],[-105.291252,41.122369],[-105.290453,41.122078],[-105.289804,41.121816],[-105.289128,41.121545],[-105.288447,41.121238],[-105.2871,41.120587],[-105.284263,41.119128],[-105.278965,41.116414],[-105.274979,41.11441],[-105.272846,41.113341],[-105.272024,41.112991],[-105.271457,41.112763],[-105.270826,41.112546],[-105.269704,41.11219],[-105.267135,41.111445],[-105.263339,41.110327],[-105.250571,41.106607],[-105.246689,41.105637],[-105.245319,41.105359],[-105.244501,41.10522],[-105.243384,41.105048],[-105.242186,41.104904],[-105.240639,41.104765],[-105.239697,41.104719],[-105.23875,41.104696],[-105.236868,41.104693],[-105.233779,41.104673],[-105.230557,41.104665],[-105.230226,41.104668],[-105.229038,41.104662],[-105.227914,41.104624],[-105.227292,41.104577],[-105.226116,41.104468],[-105.2249,41.104294],[-105.223793,41.10408],[-105.222878,41.103871],[-105.221607,41.103506],[-105.220428,41.103096],[-105.219372,41.102682],[-105.212773,41.099704],[-105.210914,41.098849],[-105.209416,41.098133],[-105.207876,41.097343],[-105.207344,41.097055],[-105.205595,41.096267],[-105.204877,41.096009],[-105.204144,41.095774],[-105.202753,41.095444],[-105.20191,41.095292],[-105.200645,41.095154],[-105.199684,41.095103],[-105.198663,41.095101],[-105.1979,41.095135],[-105.197145,41.095194],[-105.196337,41.095304],[-105.19243,41.095847],[-105.190686,41.096021],[-105.189673,41.096101],[-105.187008,41.09623],[-105.182163,41.096419],[-105.179712,41.096538],[-105.17841,41.096622],[-105.177097,41.096705],[-105.17354,41.096994],[-105.171906,41.097153],[-105.171481,41.097182],[-105.169017,41.097387],[-105.16809,41.097462],[-105.164956,41.097728],[-105.163976,41.097831],[-105.162985,41.097975],[-105.161316,41.098253],[-105.158023,41.098928],[-105.157343,41.099075],[-105.155177,41.099477],[-105.154408,41.099601],[-105.153612,41.099699],[-105.152755,41.099769],[-105.15201,41.099821],[-105.151256,41.099835],[-105.150128,41.099826],[-105.14928,41.099795],[-105.148461,41.09973],[-105.146351,41.099512],[-105.142661,41.099089],[-105.138977,41.098694],[-105.13558,41.09851],[-105.132189,41.098549],[-105.125498,41.098697],[-105.124034,41.098693],[-105.122573,41.09866],[-105.120862,41.098591],[-105.119719,41.098528],[-105.118886,41.098468],[-105.117553,41.09836],[-105.116173,41.098218],[-105.115818,41.098175],[-105.114559,41.098024],[-105.111894,41.097643],[-105.10941,41.097286],[-105.108248,41.097182],[-105.107092,41.097121],[-105.106261,41.097114],[-105.105109,41.097139],[-105.104231,41.097203],[-105.103347,41.097295],[-105.101291,41.097636],[-105.099227,41.098151],[-105.098349,41.098379],[-105.096633,41.098763],[-105.095885,41.098903],[-105.095125,41.099021],[-105.094442,41.099097],[-105.09378,41.099159],[-105.090277,41.099388],[-105.087245,41.099573],[-105.083605,41.099801],[-105.082508,41.099842],[-105.081553,41.099863],[-105.080476,41.099855],[-105.067355,41.099738],[-105.066417,41.099752],[-105.065584,41.099797],[-105.064642,41.099873],[-105.063684,41.099994],[-105.061843,41.100271],[-105.061441,41.100334],[-105.060157,41.100534],[-105.058039,41.100853],[-105.056634,41.10107],[-105.049179,41.102189],[-105.044664,41.102856],[-105.043626,41.102969],[-105.042613,41.103037],[-105.041037,41.103097],[-105.035246,41.103201],[-105.034301,41.103192],[-105.033383,41.103128],[-105.032422,41.103035],[-105.031447,41.102903],[-105.021213,41.101211],[-105.01999,41.101032],[-105.018859,41.100921],[-105.017854,41.100869],[-105.016552,41.100862],[-105.015246,41.10091],[-105.014321,41.100972],[-105.013391,41.101086],[-105.012604,41.101194],[-105.011816,41.101328],[-105.010921,41.101514],[-105.010097,41.101707],[-105.009276,41.101938],[-105.004791,41.103185],[-105.000691,41.104347],[-104.993958,41.106242],[-104.992862,41.10654],[-104.991527,41.106844],[-104.990459,41.107027],[-104.98933,41.107172],[-104.98798,41.107337],[-104.986061,41.107565],[-104.983404,41.107895],[-104.978938,41.108453],[-104.976282,41.108758],[-104.974092,41.109029],[-104.972203,41.109249],[-104.969744,41.109549],[-104.968492,41.109671],[-104.967236,41.10976],[-104.96304,41.110034],[-104.96162,41.110136],[-104.960369,41.110224],[-104.959585,41.11027],[-104.959072,41.110292],[-104.956592,41.110469],[-104.95629,41.110483],[-104.954423,41.11061],[-104.952514,41.110791],[-104.948152,41.111243],[-104.939982,41.1121],[-104.935587,41.112565],[-104.933382,41.112794],[-104.932911,41.112841],[-104.929041,41.113238],[-104.925455,41.113618],[-104.922947,41.113891],[-104.921566,41.114066],[-104.920152,41.114292],[-104.913172,41.115448],[-104.909143,41.116104],[-104.907211,41.116314],[-104.905307,41.116376],[-104.903169,41.116415],[-104.90069,41.116365],[-104.897414,41.116395],[-104.886769,41.116495],[-104.886164,41.116501],[-104.874978,41.116553],[-104.87111,41.116539],[-104.868083,41.116571],[-104.867154,41.116562],[-104.866208,41.116487],[-104.864822,41.11624],[-104.863448,41.115832],[-104.86191,41.115205],[-104.860871,41.114773],[-104.859649,41.11426],[-104.85833,41.113724],[-104.857321,41.113382],[-104.856195,41.113107],[-104.855413,41.113065],[-104.854637,41.113069],[-104.853865,41.113117],[-104.853011,41.113252],[-104.851392,41.113621],[-104.85032,41.113855],[-104.847136,41.114578],[-104.84563,41.114909],[-104.84493,41.115063],[-104.843881,41.115292],[-104.843467,41.115382],[-104.841609,41.115785],[-104.840626,41.115957],[-104.839636,41.116088],[-104.838776,41.116179],[-104.837844,41.11622],[-104.824996,41.11624],[-104.823923,41.116264],[-104.822865,41.116325],[-104.821718,41.116448],[-104.812252,41.117823],[-104.809796,41.118186],[-104.809341,41.118253],[-104.80529,41.118831],[-104.804525,41.118946],[-104.800961,41.119478],[-104.800269,41.119554],[-104.793689,41.120538],[-104.793109,41.120625],[-104.781253,41.122356],[-104.775218,41.123237],[-104.773869,41.123433],[-104.7723,41.12364],[-104.770679,41.123791],[-104.770147,41.123824],[-104.768268,41.123949],[-104.759777,41.124103],[-104.752575,41.124228],[-104.748225,41.124304],[-104.747215,41.124319],[-104.74173,41.124399],[-104.740583,41.124424],[-104.739653,41.124454],[-104.738929,41.124497],[-104.737597,41.124583],[-104.736668,41.124671],[-104.735837,41.124758],[-104.735101,41.124847],[-104.734471,41.124932],[-104.733866,41.125016],[-104.733228,41.125118],[-104.73249,41.125243],[-104.731705,41.125389],[-104.730888,41.125557],[-104.730124,41.12572],[-104.729321,41.125903],[-104.728757,41.126046],[-104.728208,41.126192],[-104.727588,41.126364],[-104.727172,41.126485],[-104.726516,41.126677],[-104.725849,41.12688],[-104.725305,41.127062],[-104.724644,41.127295],[-104.72396,41.12753],[-104.721342,41.128454],[-104.711486,41.131943],[-104.710633,41.132256],[-104.709788,41.132555],[-104.709128,41.132796],[-104.7085,41.133037],[-104.7079,41.133277],[-104.707365,41.133509],[-104.706697,41.133815],[-104.705977,41.13417],[-104.704509,41.134917],[-104.704073,41.135133],[-104.698047,41.138248],[-104.694158,41.140259],[-104.690912,41.141925],[-104.687091,41.143886],[-104.682179,41.146423],[-104.676329,41.149437],[-104.674801,41.150221],[-104.673682,41.150786],[-104.672861,41.151191],[-104.672037,41.151566],[-104.671226,41.151931],[-104.67048,41.152262],[-104.669393,41.15272],[-104.668144,41.153213],[-104.666927,41.153679],[-104.665663,41.154124],[-104.664552,41.154495],[-104.663392,41.154857],[-104.662048,41.155269],[-104.660557,41.155678],[-104.659421,41.155979],[-104.658271,41.15625],[-104.657131,41.156517],[-104.656045,41.156749],[-104.654792,41.156983],[-104.653412,41.157228],[-104.65245,41.157391],[-104.651484,41.157537],[-104.65067,41.157647],[-104.649605,41.157781],[-104.648587,41.157896],[-104.646245,41.158116],[-104.645401,41.158182],[-104.644301,41.158246],[-104.643437,41.158287],[-104.64214,41.158331],[-104.6409,41.158357],[-104.639701,41.158354],[-104.625738,41.158255],[-104.617135,41.158178],[-104.585713,41.158069],[-104.563872,41.158007],[-104.56057,41.158004],[-104.560211,41.158003],[-104.528412,41.158006],[-104.526326,41.15799],[-104.52541,41.157965],[-104.524369,41.157945],[-104.522765,41.157907],[-104.522279,41.157895],[-104.51618,41.157794],[-104.510633,41.157677],[-104.50598,41.157583],[-104.484142,41.157126],[-104.465119,41.15674],[-104.464701,41.156732],[-104.447215,41.156351],[-104.445782,41.156323],[-104.4443,41.156324],[-104.442225,41.156369],[-104.439107,41.156501],[-104.424948,41.157171],[-104.419456,41.15742],[-104.416815,41.157514],[-104.413362,41.157514],[-104.407745,41.15749],[-104.407288,41.157488],[-104.379749,41.157399],[-104.357802,41.157329],[-104.356357,41.157334],[-104.349644,41.157348],[-104.349195,41.157354],[-104.346774,41.157366],[-104.345461,41.1574],[-104.344015,41.157483],[-104.342836,41.157566],[-104.340844,41.157785],[-104.338769,41.158056],[-104.336626,41.158337],[-104.335273,41.158486],[-104.334265,41.158562],[-104.332991,41.158644],[-104.331592,41.158712],[-104.293401,41.158642],[-104.274414,41.15862],[-104.260546,41.158622],[-104.254001,41.158599],[-104.253594,41.158605],[-104.248078,41.158601],[-104.235353,41.15857],[-104.233534,41.15857],[-104.232176,41.158511],[-104.231161,41.158441],[-104.23024,41.158388],[-104.229398,41.158305],[-104.228046,41.158146],[-104.226813,41.157975],[-104.224093,41.157504],[-104.222867,41.157241],[-104.202577,41.152078],[-104.200962,41.151683],[-104.198738,41.151178],[-104.196798,41.150772],[-104.195473,41.150505],[-104.192619,41.149951],[-104.1889,41.149326],[-104.186716,41.149014],[-104.184121,41.148668],[-104.181902,41.148397],[-104.178469,41.148042],[-104.175602,41.147824],[-104.173139,41.147662],[-104.170626,41.147538],[-104.168327,41.147471],[-104.166122,41.147403],[-104.164083,41.147392],[-104.162018,41.147395],[-104.159014,41.147437],[-104.158678,41.147448],[-104.156538,41.147535],[-104.154555,41.147628],[-104.123284,41.14951],[-104.121882,41.149645],[-104.121032,41.14976],[-104.120202,41.149894],[-104.11912,41.150104],[-104.117547,41.150467],[-104.116239,41.150868],[-104.114845,41.151397],[-104.113981,41.151752],[-104.11313,41.152156],[-104.112144,41.152672],[-104.109711,41.154058],[-104.104426,41.1571],[-104.095569,41.162141],[-104.092772,41.163742],[-104.09156,41.164427],[-104.090795,41.164876],[-104.090087,41.165334],[-104.089123,41.166017],[-104.088263,41.166672],[-104.087512,41.167366],[-104.087281,41.167597],[-104.087029,41.167846],[-104.086593,41.168326],[-104.082719,41.172623],[-104.082129,41.173249],[-104.081697,41.173634],[-104.081194,41.174014],[-104.080575,41.174404],[-104.080107,41.174661],[-104.079353,41.175004],[-104.078866,41.175184],[-104.078302,41.175348],[-104.077689,41.175485],[-104.076938,41.175607],[-104.076056,41.175675],[-104.075483,41.175681],[-104.074878,41.175679],[-104.073728,41.175589],[-104.069393,41.175125],[-104.068219,41.175014],[-104.066707,41.174842],[-104.06573,41.17475],[-104.065078,41.174725],[-104.064409,41.174754],[-104.063676,41.174834],[-104.06296,41.17495],[-104.062458,41.175055],[-104.06191,41.175216],[-104.061377,41.175389],[-104.060784,41.175642],[-104.060197,41.175928],[-104.059799,41.176164],[-104.059332,41.176484],[-104.056719,41.178589],[-104.056252,41.178958],[-104.055695,41.179333],[-104.055201,41.179641],[-104.054719,41.179945],[-104.054157,41.180253],[-104.05336,41.180652],[-104.052758,41.180923],[-104.052222,41.181132],[-104.051722,41.181317],[-104.051204,41.181497],[-104.050671,41.181664],[-104.050339,41.181755],[-104.04936,41.181994],[-104.048783,41.182115],[-104.044964,41.182814],[-104.041396,41.183471],[-104.038194,41.184063],[-104.033097,41.185008],[-104.024023,41.186683],[-104.017806,41.187774],[-104.01187,41.188793],[-104.005721,41.189862],[-103.996326,41.191493],[-103.995252,41.19166],[-103.993197,41.191911],[-103.991302,41.192104],[-103.989702,41.192233],[-103.988252,41.192334],[-103.986666,41.192402],[-103.984712,41.192448],[-103.983187,41.192453],[-103.966087,41.19223],[-103.954714,41.19208],[-103.954209,41.192069],[-103.937504,41.191886],[-103.931333,41.191848],[-103.930884,41.191845],[-103.912509,41.1917],[-103.904558,41.191741],[-103.899269,41.191777],[-103.89565,41.191801],[-103.891785,41.191826],[-103.886691,41.191859],[-103.885142,41.191857],[-103.883931,41.191836],[-103.88307,41.191809],[-103.881932,41.19175],[-103.880494,41.191664],[-103.879214,41.191577],[-103.87829,41.191506],[-103.875177,41.191263],[-103.873804,41.191157],[-103.872873,41.191089],[-103.867502,41.190676],[-103.864905,41.190543],[-103.863351,41.190504],[-103.861962,41.190478],[-103.860568,41.190483],[-103.859888,41.190491],[-103.859098,41.190513],[-103.858572,41.190537],[-103.857285,41.190587],[-103.855909,41.190673],[-103.854378,41.190788],[-103.850679,41.191137],[-103.845812,41.191597],[-103.844312,41.191725],[-103.842961,41.19182],[-103.841916,41.191876],[-103.840369,41.191922],[-103.838331,41.191963],[-103.827143,41.191881],[-103.820117,41.191808],[-103.812496,41.191762],[-103.805109,41.1917],[-103.798291,41.191655],[-103.796403,41.191657],[-103.779485,41.191883],[-103.778119,41.191913],[-103.777355,41.191938],[-103.776419,41.191991],[-103.775036,41.192075],[-103.773954,41.19215],[-103.772226,41.192296],[-103.770971,41.192431],[-103.769714,41.192598],[-103.768467,41.192776],[-103.767252,41.192964],[-103.766115,41.193165],[-103.764561,41.193457],[-103.763679,41.193637],[-103.76186,41.194045],[-103.759625,41.194598],[-103.750011,41.197206],[-103.747516,41.197853],[-103.720589,41.205122],[-103.70774,41.208577],[-103.701384,41.210301],[-103.696694,41.21155],[-103.694832,41.212048],[-103.693574,41.212362],[-103.692343,41.212639],[-103.691025,41.212936],[-103.690297,41.213078],[-103.689194,41.213285],[-103.68746,41.21357],[-103.685919,41.213808],[-103.684678,41.213978],[-103.683571,41.214096],[-103.681636,41.214314],[-103.672322,41.215306],[-103.669824,41.215592],[-103.668175,41.215751],[-103.663616,41.216244],[-103.662927,41.216319],[-103.656455,41.217008],[-103.644037,41.218357],[-103.632204,41.219627],[-103.629638,41.219898],[-103.625866,41.220287],[-103.625444,41.22033],[-103.621398,41.220783],[-103.619619,41.220978],[-103.618348,41.221093],[-103.617138,41.22117],[-103.614816,41.221298],[-103.613579,41.221336],[-103.612754,41.221342],[-103.611368,41.221367],[-103.609803,41.221364],[-103.600625,41.221338],[-103.596208,41.221331],[-103.591817,41.221312],[-103.58711,41.221286],[-103.586648,41.221292],[-103.566885,41.221208],[-103.563353,41.221195],[-103.547373,41.22112],[-103.541275,41.221103],[-103.529344,41.221043],[-103.515818,41.220961],[-103.500159,41.220871],[-103.496677,41.220847],[-103.489611,41.220822],[-103.485323,41.220894],[-103.480134,41.221008],[-103.477824,41.221091],[-103.475619,41.221169],[-103.473956,41.22124],[-103.458714,41.222056],[-103.45764,41.222101],[-103.456099,41.222139],[-103.454638,41.22215],[-103.443295,41.222117],[-103.437644,41.22209],[-103.395839,41.221978],[-103.391105,41.221966],[-103.390015,41.221946],[-103.389002,41.221916],[-103.387683,41.22185],[-103.386328,41.221749],[-103.384826,41.22163],[-103.383475,41.22147],[-103.381931,41.221274],[-103.381137,41.221153],[-103.379969,41.220958],[-103.379192,41.220819],[-103.378486,41.220677],[-103.377091,41.220385],[-103.376385,41.220226],[-103.376115,41.22016],[-103.374179,41.219683],[-103.372646,41.219231],[-103.370785,41.218643],[-103.368695,41.217909],[-103.36157,41.215092],[-103.359717,41.214427],[-103.35796,41.213846],[-103.35598,41.213235],[-103.354292,41.212778],[-103.352143,41.212225],[-103.349608,41.211667],[-103.348796,41.211502],[-103.333755,41.208285],[-103.331235,41.20776],[-103.329201,41.207311],[-103.32676,41.206837],[-103.324643,41.2065],[-103.323674,41.206353],[-103.322787,41.206231],[-103.320038,41.20592],[-103.317603,41.205722],[-103.317066,41.205684],[-103.314964,41.205525],[-103.314477,41.20548],[-103.313918,41.205425],[-103.313463,41.205371],[-103.313067,41.205315],[-103.31267,41.20526],[-103.312351,41.205206],[-103.31207,41.205158],[-103.311777,41.205102],[-103.311505,41.205043],[-103.311122,41.20496],[-103.310534,41.204826],[-103.3079,41.204196],[-103.305681,41.203665],[-103.304652,41.203407],[-103.302577,41.202917],[-103.301559,41.202687],[-103.300518,41.202487],[-103.299286,41.202284],[-103.29847,41.202183],[-103.296983,41.202012],[-103.295735,41.201902],[-103.295094,41.201868],[-103.293936,41.201825],[-103.292667,41.201811],[-103.284404,41.201716],[-103.281839,41.201679],[-103.280447,41.201654],[-103.275882,41.201427],[-103.273846,41.20132],[-103.269416,41.201095],[-103.26745,41.201014],[-103.262338,41.200752],[-103.259804,41.20057],[-103.257902,41.200374],[-103.256261,41.200217],[-103.253447,41.199947],[-103.251585,41.199754],[-103.247887,41.199398],[-103.245416,41.199198],[-103.243802,41.199108],[-103.241825,41.199058],[-103.229388,41.198864],[-103.227396,41.198811],[-103.225794,41.198798],[-103.221585,41.198708],[-103.215943,41.198621],[-103.213988,41.198558],[-103.212536,41.198473],[-103.211539,41.198403],[-103.210441,41.198312],[-103.208577,41.198124],[-103.205672,41.197808],[-103.203398,41.197571],[-103.197269,41.196909],[-103.19468,41.196643],[-103.19161,41.196304],[-103.190294,41.196175],[-103.188483,41.195982],[-103.187503,41.195872],[-103.185644,41.195684],[-103.182256,41.19531],[-103.177714,41.194823],[-103.174491,41.19448],[-103.173729,41.194394],[-103.17263,41.194271],[-103.170058,41.19389],[-103.168265,41.193564],[-103.166459,41.193201],[-103.164641,41.192787],[-103.163178,41.192427],[-103.160649,41.191724],[-103.15863,41.191096],[-103.15766,41.190789],[-103.155991,41.19018],[-103.15472,41.189705],[-103.153266,41.189112],[-103.151521,41.188369],[-103.149089,41.187305],[-103.146126,41.185984],[-103.14362,41.184906],[-103.142634,41.184473],[-103.139793,41.18323],[-103.137858,41.182399],[-103.136699,41.18187],[-103.13345,41.180463],[-103.130676,41.179263],[-103.129016,41.178521],[-103.12606,41.177228],[-103.121685,41.175311],[-103.118075,41.173707],[-103.117214,41.173299],[-103.115535,41.172473],[-103.114523,41.171943],[-103.112915,41.171052],[-103.111946,41.170477],[-103.109136,41.16874],[-103.108775,41.168507],[-103.104498,41.165848],[-103.095982,41.16054],[-103.093944,41.159271],[-103.091915,41.158007],[-103.089369,41.156409],[-103.08867,41.156007],[-103.086839,41.154965],[-103.083574,41.153155],[-103.081116,41.151785],[-103.077633,41.149814],[-103.075631,41.148728],[-103.069175,41.145133],[-103.062505,41.14142],[-103.057752,41.138766],[-103.05081,41.13491],[-103.050373,41.134678],[-103.043631,41.131246],[-103.042884,41.130855],[-103.041346,41.130098],[-103.040061,41.129458],[-103.038412,41.128658],[-103.03734,41.128172],[-103.036012,41.127649],[-103.035187,41.127332],[-103.03391,41.126877],[-103.032697,41.126468],[-103.031433,41.12607],[-103.030526,41.12582],[-103.028317,41.125263],[-103.027369,41.125017],[-103.026715,41.124839],[-103.025069,41.12442],[-103.024541,41.124269],[-103.023994,41.124117],[-103.023446,41.12395],[-103.022675,41.123674],[-103.022286,41.123525],[-103.022027,41.123416],[-103.021412,41.123135],[-103.020592,41.122714],[-103.020236,41.122509],[-103.019902,41.122303],[-103.019458,41.122011],[-103.018823,41.121563],[-103.017792,41.120787],[-103.017134,41.120312],[-103.016332,41.119728],[-103.015204,41.118908],[-103.013986,41.118021],[-103.013101,41.117424],[-103.012666,41.117138],[-103.012197,41.116851],[-103.011507,41.116445],[-103.01087,41.116118],[-103.009936,41.115681],[-103.009286,41.115388],[-103.008267,41.114996],[-103.007474,41.114717],[-103.006948,41.114555],[-103.005886,41.114268],[-103.005447,41.114159],[-103.003915,41.113856],[-103.003485,41.113782],[-103.002652,41.113666],[-103.002281,41.113624],[-103.001341,41.113538],[-103.000744,41.113501],[-102.999999,41.113466],[-102.996818,41.113414],[-102.992937,41.113375],[-102.98063,41.113218],[-102.974195,41.113141],[-102.9732,41.113129],[-102.955482,41.112918],[-102.953112,41.112868],[-102.949669,41.112837],[-102.948649,41.112823],[-102.942839,41.112755],[-102.929792,41.112691],[-102.927385,41.112685],[-102.926306,41.112688],[-102.924859,41.112708],[-102.923877,41.112731],[-102.922691,41.112775],[-102.921976,41.112801],[-102.919941,41.112942],[-102.918039,41.113117],[-102.914986,41.113423],[-102.909207,41.114008],[-102.904089,41.114524],[-102.901342,41.114793],[-102.898107,41.115115],[-102.897362,41.115177],[-102.896499,41.115227],[-102.895575,41.115286],[-102.893663,41.115369],[-102.891517,41.115398],[-102.890313,41.115398],[-102.888546,41.115369],[-102.886854,41.115299],[-102.884932,41.115175],[-102.882074,41.114967],[-102.87656,41.114586],[-102.874695,41.114458],[-102.869359,41.114081],[-102.862949,41.11364],[-102.859684,41.113413],[-102.855771,41.113136],[-102.85382,41.113014],[-102.852624,41.11295],[-102.851297,41.112908],[-102.84994,41.112888],[-102.843994,41.112873],[-102.840078,41.11286],[-102.832251,41.112844],[-102.8159,41.112811],[-102.769657,41.112911],[-102.757146,41.11293],[-102.717091,41.113046],[-102.665777,41.113233],[-102.637051,41.113496],[-102.629949,41.113532],[-102.629552,41.113534],[-102.62459,41.113587],[-102.623831,41.113591],[-102.614008,41.113675],[-102.611722,41.113689],[-102.610568,41.113674],[-102.608513,41.113626],[-102.598489,41.113342],[-102.591672,41.113158],[-102.586256,41.113018],[-102.581928,41.112889],[-102.579665,41.112838],[-102.577978,41.112787],[-102.576954,41.112734],[-102.575737,41.112655],[-102.573506,41.112483],[-102.572783,41.112411],[-102.572071,41.112334],[-102.571104,41.112219],[-102.570075,41.112085],[-102.569067,41.111939],[-102.56808,41.111781],[-102.566387,41.111484],[-102.565683,41.111353],[-102.564987,41.111211],[-102.564138,41.11103],[-102.563021,41.110779],[-102.561889,41.110505],[-102.560856,41.110245],[-102.560229,41.11008],[-102.559068,41.109752],[-102.55738,41.109249],[-102.556731,41.109042],[-102.555864,41.108753],[-102.554812,41.108389],[-102.553671,41.107966],[-102.552562,41.10754],[-102.551368,41.107063],[-102.550187,41.106565],[-102.548581,41.10584],[-102.545723,41.104522],[-102.543689,41.103585],[-102.542067,41.102823],[-102.535597,41.099873],[-102.532939,41.098666],[-102.52947,41.097058],[-102.526892,41.095892],[-102.526106,41.095519],[-102.521429,41.093388],[-102.520075,41.092794],[-102.518488,41.092126],[-102.517771,41.091828],[-102.517089,41.09158],[-102.515764,41.091101],[-102.515403,41.090974],[-102.51467,41.090734],[-102.513738,41.090429],[-102.513077,41.09023],[-102.512261,41.089977],[-102.511047,41.089633],[-102.50972,41.089256],[-102.507683,41.088751],[-102.506302,41.088435],[-102.504824,41.088129],[-102.502609,41.087674],[-102.498277,41.086752],[-102.495437,41.086144],[-102.489793,41.084947],[-102.48505,41.083926],[-102.483877,41.083638],[-102.482453,41.083268],[-102.480953,41.08287],[-102.480337,41.082697],[-102.478977,41.082248],[-102.477656,41.081819],[-102.476154,41.081281],[-102.473913,41.080432],[-102.472234,41.079727],[-102.470912,41.079143],[-102.469853,41.078643],[-102.469085,41.078278],[-102.468276,41.077864],[-102.466845,41.077112],[-102.466051,41.07668],[-102.465189,41.076186],[-102.464189,41.075596],[-102.463146,41.074957],[-102.462357,41.074455],[-102.457569,41.071444],[-102.455508,41.070143],[-102.45387,41.069113],[-102.452413,41.068191],[-102.447684,41.065207],[-102.445908,41.064103],[-102.44497,41.063541],[-102.444249,41.063128],[-102.443566,41.062745],[-102.443131,41.062507],[-102.442424,41.062138],[-102.441879,41.061861],[-102.440944,41.061404],[-102.439949,41.060941],[-102.438953,41.060501],[-102.438324,41.060237],[-102.437628,41.059952],[-102.437065,41.059723],[-102.436333,41.059445],[-102.43564,41.059191],[-102.434995,41.058953],[-102.434223,41.0587],[-102.433144,41.058346],[-102.43223,41.058069],[-102.431253,41.057782],[-102.43041,41.057549],[-102.429933,41.057426],[-102.4291,41.057221],[-102.428175,41.057],[-102.42703,41.056756],[-102.425977,41.056544],[-102.424928,41.056348],[-102.424003,41.056188],[-102.423067,41.056043],[-102.416781,41.055189],[-102.415361,41.054999],[-102.413196,41.054705],[-102.41028,41.054307],[-102.405877,41.053719],[-102.399919,41.052911],[-102.393699,41.052065],[-102.391882,41.051807],[-102.386023,41.051043],[-102.383266,41.050645],[-102.381237,41.050413],[-102.379147,41.050232],[-102.378167,41.05016],[-102.376876,41.050076],[-102.375,41.049982],[-102.35427,41.048826],[-102.335689,41.047783],[-102.327736,41.047338],[-102.312318,41.046476],[-102.303247,41.045953],[-102.297869,41.045656],[-102.292398,41.045334],[-102.286079,41.044991],[-102.278363,41.044542],[-102.267292,41.043924],[-102.264009,41.043727],[-102.262803,41.043649],[-102.261585,41.043551],[-102.260115,41.043403],[-102.25977,41.043366],[-102.258337,41.043203],[-102.257015,41.043011],[-102.250828,41.042018],[-102.246635,41.041339],[-102.242022,41.040613],[-102.231061,41.038804],[-102.225605,41.037919],[-102.218574,41.036788],[-102.216078,41.036374],[-102.213614,41.035983],[-102.211133,41.035581],[-102.207557,41.034984],[-102.201033,41.03394],[-102.191114,41.032328],[-102.187147,41.031679],[-102.184058,41.031168],[-102.182002,41.030839],[-102.180233,41.030558],[-102.174085,41.02955],[-102.167907,41.028534],[-102.164221,41.027944],[-102.161698,41.027556],[-102.160665,41.027366],[-102.159473,41.027171],[-102.155887,41.026583],[-102.155037,41.026464],[-102.154681,41.026414],[-102.154099,41.026377],[-102.153575,41.026369],[-102.152981,41.026379],[-102.152425,41.026434],[-102.151811,41.026521],[-102.151195,41.026654],[-102.150533,41.026851],[-102.149974,41.027066],[-102.149367,41.027362],[-102.148952,41.027618],[-102.148571,41.027874],[-102.148182,41.028192],[-102.147859,41.028493],[-102.147549,41.028838],[-102.145993,41.030964],[-102.14583,41.031202],[-102.145568,41.031501],[-102.145309,41.031749],[-102.144929,41.032099],[-102.144622,41.032328],[-102.144274,41.032557],[-102.143708,41.032877],[-102.142687,41.033423],[-102.141519,41.034014],[-102.140631,41.034393],[-102.139736,41.034745],[-102.138668,41.035137],[-102.138064,41.035331],[-102.137304,41.03557],[-102.136481,41.035806],[-102.135277,41.036116],[-102.134447,41.036318],[-102.133694,41.036469],[-102.132843,41.036622],[-102.132125,41.036741],[-102.131394,41.036853],[-102.130381,41.037002],[-102.128213,41.037308],[-102.127196,41.037446],[-102.125,41.037761],[-102.110491,41.03987],[-102.095134,41.042108],[-102.092987,41.042474],[-102.09147,41.042768],[-102.08996,41.043094],[-102.088899,41.043332],[-102.087379,41.043716],[-102.084732,41.044463],[-102.078964,41.046213],[-102.078052,41.04649],[-102.076747,41.046887],[-102.075797,41.047179],[-102.073773,41.047786],[-102.070303,41.048836],[-102.06643,41.050017],[-102.059187,41.052241],[-102.055475,41.053373],[-102.047388,41.055816],[-102.037192,41.058912],[-102.036327,41.059165],[-102.035769,41.059331],[-102.035091,41.059514],[-102.034444,41.059689],[-102.03351,41.059929],[-102.032035,41.060292],[-102.031282,41.060462],[-102.030518,41.060631],[-102.029787,41.060787],[-102.029311,41.060881],[-102.028624,41.061005],[-102.027581,41.061181],[-102.02657,41.061358],[-102.025476,41.06153],[-102.024883,41.061608],[-102.024352,41.061677],[-102.023408,41.061803],[-102.022838,41.061863],[-102.021948,41.061957],[-102.021139,41.062027],[-102.020435,41.062077],[-102.019415,41.062153],[-102.018397,41.062214],[-102.017469,41.062251],[-102.01625,41.062301],[-102.014987,41.06233],[-102.01381,41.062353],[-102.006112,41.062336],[-101.999909,41.062336],[-101.998907,41.062348],[-101.997928,41.062345],[-101.996715,41.06238],[-101.995868,41.062429],[-101.994527,41.062488],[-101.993652,41.062542],[-101.992999,41.062591],[-101.992348,41.062647],[-101.991721,41.062711],[-101.991098,41.062766],[-101.989694,41.06292],[-101.987823,41.06316],[-101.986972,41.063287],[-101.986443,41.063377],[-101.986162,41.063419],[-101.984844,41.063644],[-101.983898,41.063827],[-101.982364,41.064139],[-101.981776,41.064266],[-101.981332,41.064369],[-101.980884,41.06446],[-101.980349,41.064591],[-101.97955,41.064771],[-101.979089,41.064871],[-101.977455,41.065242],[-101.976122,41.065532],[-101.975053,41.065773],[-101.970137,41.066876],[-101.963557,41.068359],[-101.952847,41.07077],[-101.940553,41.073518],[-101.927144,41.076519],[-101.925599,41.076809],[-101.924141,41.077064],[-101.922702,41.077285],[-101.921721,41.077408],[-101.921249,41.077463],[-101.920412,41.077558],[-101.919715,41.07764],[-101.918478,41.077754],[-101.918029,41.077791],[-101.917452,41.077842],[-101.91695,41.077872],[-101.916278,41.077921],[-101.915389,41.077975],[-101.914692,41.078005],[-101.913246,41.078061],[-101.910507,41.078148],[-101.898784,41.078557],[-101.896742,41.078638],[-101.893521,41.078772],[-101.891669,41.078881],[-101.891088,41.07893],[-101.889882,41.079047],[-101.889064,41.079127],[-101.888421,41.079203],[-101.887934,41.079266],[-101.886957,41.079388],[-101.885653,41.079583],[-101.88476,41.079728],[-101.882897,41.080061],[-101.880129,41.08063],[-101.877382,41.081293],[-101.871812,41.082651],[-101.866553,41.083924],[-101.86189,41.085061],[-101.850329,41.087881],[-101.837531,41.090997],[-101.834658,41.091687],[-101.832687,41.092186],[-101.831012,41.092596],[-101.829247,41.092991],[-101.828256,41.093195],[-101.827062,41.093431],[-101.82633,41.093556],[-101.825376,41.093709],[-101.824303,41.093882],[-101.823224,41.094029],[-101.822331,41.09416],[-101.821679,41.094228],[-101.821075,41.094298],[-101.819938,41.094421],[-101.819276,41.094471],[-101.817309,41.094665],[-101.816172,41.094767],[-101.811337,41.095217],[-101.807087,41.095616],[-101.806291,41.095696],[-101.805364,41.095794],[-101.804931,41.095851],[-101.803927,41.095978],[-101.802836,41.096121],[-101.801339,41.096359],[-101.790481,41.098138],[-101.789871,41.09824],[-101.78339,41.099315],[-101.782345,41.099518],[-101.781113,41.09977],[-101.779557,41.100117],[-101.778599,41.100354],[-101.777794,41.10056],[-101.776606,41.100881],[-101.775653,41.101158],[-101.775064,41.101327],[-101.774605,41.101471],[-101.773835,41.1017],[-101.773176,41.101922],[-101.772257,41.102229],[-101.771389,41.102527],[-101.765028,41.104913],[-101.76137,41.10628],[-101.758845,41.10723],[-101.753394,41.109277],[-101.751803,41.109877],[-101.750488,41.110363],[-101.748176,41.11116],[-101.747263,41.111465],[-101.746119,41.111801],[-101.745021,41.112124],[-101.742687,41.11275],[-101.741227,41.11308],[-101.739672,41.113422],[-101.738724,41.11361],[-101.737588,41.113819],[-101.736403,41.114025],[-101.735174,41.114211],[-101.73441,41.114313],[-101.733394,41.114455],[-101.7328,41.114517],[-101.732083,41.1146],[-101.731506,41.114663],[-101.730745,41.114732],[-101.730169,41.114784],[-101.729815,41.11481],[-101.729181,41.114857],[-101.728276,41.114915],[-101.726957,41.114983],[-101.725816,41.115022],[-101.724936,41.115044],[-101.722924,41.115057],[-101.721751,41.11504],[-101.709534,41.11494],[-101.708323,41.114943],[-101.7072,41.114954],[-101.706478,41.114992],[-101.705483,41.115058],[-101.70453,41.115134],[-101.703564,41.115248],[-101.70271,41.115362],[-101.70205,41.115472],[-101.701348,41.11559],[-101.700817,41.11569],[-101.700179,41.115813],[-101.699483,41.115962],[-101.698695,41.116157],[-101.69795,41.116357],[-101.697126,41.116594],[-101.695887,41.116974],[-101.693845,41.117602],[-101.69272,41.117941],[-101.69195,41.118172],[-101.691391,41.118342],[-101.690544,41.118577],[-101.689426,41.118862],[-101.688603,41.119059],[-101.68751,41.119298],[-101.686439,41.119502],[-101.68599,41.119583],[-101.685429,41.119685],[-101.684428,41.119827],[-101.683518,41.119948],[-101.68286,41.120038],[-101.681815,41.120149],[-101.681258,41.120196],[-101.680573,41.120258],[-101.679921,41.120298],[-101.679304,41.120337],[-101.678697,41.120356],[-101.677892,41.120381],[-101.677306,41.120391],[-101.676693,41.120396],[-101.676115,41.120396],[-101.663421,41.120405],[-101.653052,41.120404],[-101.626262,41.1204],[-101.624493,41.120407],[-101.622482,41.120375],[-101.621442,41.120345],[-101.620346,41.120298],[-101.619022,41.120213],[-101.618128,41.120148],[-101.617199,41.120073],[-101.616355,41.119992],[-101.615125,41.119869],[-101.608893,41.119274],[-101.599279,41.118358],[-101.597773,41.11823],[-101.59685,41.118162],[-101.595716,41.118098],[-101.594033,41.118026],[-101.592587,41.118002],[-101.583271,41.117907],[-101.570855,41.117777],[-101.55206,41.117591],[-101.55097,41.117572],[-101.549695,41.117539],[-101.548224,41.117477],[-101.546871,41.117399],[-101.545391,41.117283],[-101.544174,41.117164],[-101.542936,41.117028],[-101.541904,41.116902],[-101.540586,41.116715],[-101.539664,41.116583],[-101.538585,41.116395],[-101.536543,41.116017],[-101.534428,41.11556],[-101.532415,41.115119],[-101.529131,41.114394],[-101.519616,41.112316],[-101.503024,41.108673],[-101.489326,41.105663],[-101.487885,41.105334],[-101.486426,41.105024],[-101.485097,41.104745],[-101.484152,41.104567],[-101.482596,41.104319],[-101.481486,41.104164],[-101.480831,41.104087],[-101.479577,41.103954],[-101.478656,41.103869],[-101.477553,41.103789],[-101.47649,41.103744],[-101.474801,41.103694],[-101.473216,41.103698],[-101.472085,41.103725],[-101.471342,41.103755],[-101.470059,41.103822],[-101.469325,41.103872],[-101.468133,41.103983],[-101.466794,41.104135],[-101.465297,41.104344],[-101.464266,41.104509],[-101.463156,41.104706],[-101.462118,41.104906],[-101.461151,41.105128],[-101.460397,41.105304],[-101.458073,41.105867],[-101.457192,41.106076],[-101.454858,41.106645],[-101.452592,41.107184],[-101.451252,41.107478],[-101.449825,41.107762],[-101.448705,41.107963],[-101.447477,41.108171],[-101.445844,41.108415],[-101.443884,41.108662],[-101.442545,41.108797],[-101.441635,41.108878],[-101.440401,41.108971],[-101.439436,41.109039],[-101.438309,41.109092],[-101.436684,41.109146],[-101.43555,41.109161],[-101.434319,41.109166],[-101.433558,41.109157],[-101.432556,41.10914],[-101.431404,41.109101],[-101.430133,41.10905],[-101.42731,41.108919],[-101.424057,41.108764],[-101.420837,41.108624],[-101.419148,41.108551],[-101.417184,41.108454],[-101.415317,41.108373],[-101.412995,41.108262],[-101.41027,41.108134],[-101.408746,41.108073],[-101.407194,41.108008],[-101.405295,41.107909],[-101.403619,41.107837],[-101.399635,41.107662],[-101.39639,41.10751],[-101.394525,41.107432],[-101.393635,41.107409],[-101.39173,41.107384],[-101.389987,41.107424],[-101.388888,41.107457],[-101.387426,41.10753],[-101.386831,41.107571],[-101.385398,41.107658],[-101.384135,41.10777],[-101.381615,41.108048],[-101.379489,41.108292],[-101.376888,41.108581],[-101.374192,41.108887],[-101.363621,41.110075],[-101.362106,41.110264],[-101.351121,41.111492],[-101.346378,41.112026],[-101.337144,41.113064],[-101.335505,41.113245],[-101.334399,41.113364],[-101.333409,41.113451],[-101.332609,41.113522],[-101.331342,41.113597],[-101.329947,41.113678],[-101.328772,41.113735],[-101.327111,41.113828],[-101.323128,41.114057],[-101.321214,41.114163],[-101.31928,41.114258],[-101.307273,41.114902],[-101.297241,41.115433],[-101.290126,41.115819],[-101.288581,41.115889],[-101.282163,41.116238],[-101.277529,41.116487],[-101.273634,41.116697],[-101.270049,41.116867],[-101.268007,41.116993],[-101.266599,41.1171],[-101.265252,41.117223],[-101.263963,41.117366],[-101.262844,41.117513],[-101.261944,41.117644],[-101.260514,41.117881],[-101.259242,41.118119],[-101.258003,41.118383],[-101.256202,41.118785],[-101.254569,41.119208],[-101.253172,41.119617],[-101.252262,41.119894],[-101.251368,41.120187],[-101.250817,41.12038],[-101.249704,41.120774],[-101.248698,41.121148],[-101.247716,41.121521],[-101.245313,41.122581],[-101.244419,41.122998],[-101.242788,41.123816],[-101.236942,41.12682],[-101.229822,41.130481],[-101.228524,41.131138],[-101.227429,41.131661],[-101.226582,41.132054],[-101.22508,41.132715],[-101.223037,41.133554],[-101.22132,41.134196],[-101.219497,41.134822],[-101.21743,41.135475],[-101.216012,41.135879],[-101.214361,41.136311],[-101.211831,41.136922],[-101.210325,41.137234],[-101.208803,41.137528],[-101.207575,41.137734],[-101.206737,41.137862],[-101.204816,41.138126],[-101.203482,41.138286],[-101.201484,41.138487],[-101.200731,41.138548],[-101.199431,41.138638],[-101.197921,41.138709],[-101.196442,41.138765],[-101.187081,41.138752],[-101.183474,41.138756],[-101.176333,41.138736],[-101.173636,41.138716],[-101.16579,41.138627],[-101.158477,41.13852],[-101.151087,41.138435],[-101.147483,41.138386],[-101.143303,41.138334],[-101.139723,41.138257],[-101.137288,41.13828],[-101.136141,41.138291],[-101.134467,41.138354],[-101.133009,41.138426],[-101.12703,41.138674],[-101.126538,41.138695],[-101.124658,41.138773],[-101.121629,41.138888],[-101.107677,41.139494],[-101.101778,41.139708],[-101.096899,41.139865],[-101.092383,41.140109],[-101.088956,41.140271],[-101.085874,41.140415],[-101.083793,41.140448],[-101.08142,41.140428],[-101.079517,41.140367],[-101.074128,41.140152],[-101.07194,41.140067],[-101.069744,41.139966],[-101.067666,41.139872],[-101.060943,41.139585],[-101.033828,41.138428],[-101.009278,41.13738],[-100.995785,41.136785],[-100.972853,41.135797],[-100.963056,41.135391],[-100.961009,41.135293],[-100.955354,41.135049],[-100.951756,41.134887],[-100.950131,41.134791],[-100.949306,41.134731],[-100.948013,41.134614],[-100.946713,41.134473],[-100.945236,41.134287],[-100.944062,41.134119],[-100.942445,41.133872],[-100.941477,41.1337],[-100.939004,41.133215],[-100.925909,41.130209],[-100.913486,41.127362],[-100.905924,41.125622],[-100.899995,41.12426],[-100.892745,41.122597],[-100.8911,41.122222],[-100.88998,41.121984],[-100.888904,41.121773],[-100.886435,41.121342],[-100.885113,41.121145],[-100.883768,41.120973],[-100.881359,41.120697],[-100.873878,41.119823],[-100.864367,41.118712],[-100.842739,41.116198],[-100.839601,41.115837],[-100.837697,41.115557],[-100.83455,41.115096],[-100.831596,41.114653],[-100.820221,41.112979],[-100.818689,41.112794],[-100.816692,41.112591],[-100.81493,41.112458],[-100.813055,41.112349],[-100.811755,41.112314],[-100.810587,41.112279],[-100.809549,41.11228],[-100.800577,41.112298],[-100.792669,41.112307],[-100.791548,41.112328],[-100.790415,41.112359],[-100.788685,41.112419],[-100.787561,41.11247],[-100.78487,41.112583],[-100.782474,41.112671],[-100.778689,41.112816],[-100.777439,41.112831],[-100.776793,41.112823],[-100.776587,41.112821],[-100.775868,41.112807],[-100.775038,41.112765],[-100.774191,41.112698],[-100.772561,41.112513],[-100.771136,41.11232],[-100.77002,41.112154],[-100.769067,41.111999],[-100.76895,41.111982],[-100.768418,41.111904],[-100.767344,41.111733],[-100.766495,41.111609],[-100.7653,41.111417],[-100.760799,41.110727],[-100.75694,41.110122],[-100.754458,41.10972],[-100.753737,41.109607],[-100.745477,41.108347],[-100.73727,41.107077],[-100.731389,41.106089],[-100.729737,41.105809],[-100.724763,41.104972],[-100.719424,41.10408],[-100.712864,41.102971],[-100.705328,41.101719],[-100.699862,41.100798],[-100.696743,41.10027],[-100.689998,41.099128],[-100.686661,41.098575],[-100.683158,41.097977],[-100.677268,41.096981],[-100.67618,41.096812],[-100.668062,41.095429],[-100.665274,41.094949],[-100.664124,41.094735],[-100.662956,41.094496],[-100.661972,41.09427],[-100.660634,41.09396],[-100.658636,41.093429],[-100.657238,41.093026],[-100.656141,41.092701],[-100.654954,41.092316],[-100.653505,41.091825],[-100.651698,41.091157],[-100.65032,41.090609],[-100.644503,41.088197],[-100.641916,41.087125],[-100.641108,41.086799],[-100.640286,41.086494],[-100.639673,41.086284],[-100.639075,41.0861],[-100.638547,41.085951],[-100.63785,41.085772],[-100.636544,41.085494],[-100.635303,41.085289],[-100.634594,41.085202],[-100.63397,41.085144],[-100.633317,41.085094],[-100.63257,41.085053],[-100.631201,41.085017],[-100.622387,41.084782],[-100.621687,41.084755],[-100.620838,41.084711],[-100.620146,41.084657],[-100.619384,41.084565],[-100.618055,41.084361],[-100.617474,41.084258],[-100.616829,41.084119],[-100.61564,41.083809],[-100.614435,41.083436],[-100.614,41.08329],[-100.612758,41.082799],[-100.612283,41.082602],[-100.611886,41.082422],[-100.611469,41.082205],[-100.611117,41.082036],[-100.610417,41.081652],[-100.609785,41.081275],[-100.609208,41.080912],[-100.606029,41.078784],[-100.605317,41.078336],[-100.604222,41.07765],[-100.602041,41.076416],[-100.600909,41.075804],[-100.599624,41.07515],[-100.597695,41.074239],[-100.596818,41.073847],[-100.596006,41.073505],[-100.595496,41.073278],[-100.592943,41.072279],[-100.590887,41.071547],[-100.582891,41.068761],[-100.575506,41.066186],[-100.570543,41.064432],[-100.565169,41.062565],[-100.561286,41.061202],[-100.559831,41.060672],[-100.554614,41.0586],[-100.550503,41.056945],[-100.549273,41.056486],[-100.547479,41.055826],[-100.546269,41.055422],[-100.54542,41.055154],[-100.542971,41.054427],[-100.542005,41.054175],[-100.540257,41.053732],[-100.538496,41.053342],[-100.535083,41.052697],[-100.532742,41.052337],[-100.532198,41.052287],[-100.52989,41.051984],[-100.526405,41.051543],[-100.524593,41.051314],[-100.522667,41.051069],[-100.519806,41.050707],[-100.514905,41.050097],[-100.51397,41.049977],[-100.512946,41.049824],[-100.511595,41.049597],[-100.509196,41.049129],[-100.506928,41.04862],[-100.505009,41.048135],[-100.502792,41.047498],[-100.500885,41.046895],[-100.498468,41.046054],[-100.496732,41.045376],[-100.495492,41.044872],[-100.490522,41.042619],[-100.480425,41.038001],[-100.478331,41.037067],[-100.475863,41.036074],[-100.474468,41.035562],[-100.472476,41.034875],[-100.471011,41.034411],[-100.469346,41.033911],[-100.461012,41.031357],[-100.460225,41.031127],[-100.458553,41.030603],[-100.457656,41.03033],[-100.456651,41.030023],[-100.453296,41.029008],[-100.450321,41.028105],[-100.438254,41.024412],[-100.422228,41.019531],[-100.420372,41.01894],[-100.418498,41.018293],[-100.417166,41.017808],[-100.414833,41.016897],[-100.413225,41.016262],[-100.402949,41.012382],[-100.396126,41.009776],[-100.387971,41.006655],[-100.383148,41.004807],[-100.380631,41.003846],[-100.377243,41.002537],[-100.371172,41.000237],[-100.367041,40.998668],[-100.364294,40.997626],[-100.363585,40.997401],[-100.362546,40.997106],[-100.361932,40.996946],[-100.36097,40.996724],[-100.359763,40.996505],[-100.358857,40.996389],[-100.352932,40.995591],[-100.347006,40.994813],[-100.34179,40.99413],[-100.337998,40.993619],[-100.335915,40.993349],[-100.334615,40.993155],[-100.333752,40.993018],[-100.332838,40.992862],[-100.329131,40.992151],[-100.323236,40.990991],[-100.321483,40.990663],[-100.313727,40.989151],[-100.312427,40.988891],[-100.310853,40.988537],[-100.309962,40.988293],[-100.308897,40.987953],[-100.308275,40.98771],[-100.307768,40.987504],[-100.30695,40.98715],[-100.305743,40.986545],[-100.305215,40.986264],[-100.304618,40.985906],[-100.303762,40.985364],[-100.303275,40.985016],[-100.302292,40.984293],[-100.301978,40.984021],[-100.301481,40.983563],[-100.300991,40.983074],[-100.30059,40.982651],[-100.299944,40.981909],[-100.296906,40.978335],[-100.295637,40.976856],[-100.295322,40.976506],[-100.29466,40.975769],[-100.293812,40.974888],[-100.29316,40.974229],[-100.291846,40.973005],[-100.289499,40.970991],[-100.288556,40.97021],[-100.287734,40.96959],[-100.285987,40.968339],[-100.283706,40.966829],[-100.282072,40.965827],[-100.280501,40.964944],[-100.279782,40.964546],[-100.277557,40.963409],[-100.276378,40.962845],[-100.274315,40.961936],[-100.272122,40.96105],[-100.271305,40.960749],[-100.270303,40.960388],[-100.26789,40.959477],[-100.263043,40.957693],[-100.257981,40.955785],[-100.254947,40.954658],[-100.250632,40.953034],[-100.249588,40.952614],[-100.248225,40.952034],[-100.245804,40.951025],[-100.242814,40.949794],[-100.240454,40.948805],[-100.230037,40.944437],[-100.227883,40.943528],[-100.224358,40.942054],[-100.196597,40.930448],[-100.190738,40.927998],[-100.189598,40.927486],[-100.188923,40.927166],[-100.188408,40.926912],[-100.187192,40.92627],[-100.18634,40.925776],[-100.185619,40.925328],[-100.185032,40.924944],[-100.183622,40.923935],[-100.181651,40.922388],[-100.180726,40.921666],[-100.178838,40.920183],[-100.178182,40.919705],[-100.17757,40.919276],[-100.177013,40.9189],[-100.176341,40.918487],[-100.17586,40.918195],[-100.175309,40.917878],[-100.174404,40.917391],[-100.173524,40.916945],[-100.172935,40.916665],[-100.172224,40.916369],[-100.171348,40.915977],[-100.163683,40.913076],[-100.160733,40.911959],[-100.156312,40.910281],[-100.146037,40.906398],[-100.144451,40.905768],[-100.124222,40.897499],[-100.118152,40.895023],[-100.11538,40.893874],[-100.10947,40.891459],[-100.105979,40.890037],[-100.102526,40.88862],[-100.102059,40.88842],[-100.101009,40.888],[-100.100291,40.887733],[-100.099825,40.887571],[-100.099076,40.887333],[-100.098199,40.887068],[-100.097512,40.88687],[-100.096869,40.886705],[-100.095289,40.88634],[-100.094003,40.886102],[-100.092913,40.885881],[-100.091606,40.885627],[-100.089967,40.88532],[-100.088274,40.884999],[-100.087087,40.884769],[-100.085487,40.8844],[-100.085034,40.884288],[-100.083778,40.883929],[-100.082895,40.883655],[-100.082263,40.883438],[-100.081084,40.883019],[-100.079617,40.882481],[-100.077008,40.88151],[-100.072754,40.879956],[-100.070281,40.879034],[-100.067908,40.878163],[-100.064137,40.87678],[-100.059805,40.875194],[-100.057737,40.874439],[-100.052784,40.872616],[-100.046776,40.870414],[-100.0402,40.867993],[-100.03636,40.866592],[-100.034772,40.866003],[-100.033764,40.865597],[-100.03186,40.864784],[-100.017224,40.858249],[-100.01258,40.856191],[-100.006699,40.85357],[-100.005911,40.853193],[-100.003824,40.852196],[-99.998852,40.849793],[-99.997182,40.84897],[-99.995835,40.848316],[-99.993881,40.847384],[-99.991377,40.846145],[-99.990643,40.845804],[-99.989922,40.845445],[-99.989567,40.845279],[-99.988839,40.844924],[-99.985726,40.843432],[-99.981721,40.841489],[-99.981152,40.841213],[-99.978718,40.840035],[-99.97751,40.839492],[-99.976267,40.838968],[-99.975282,40.838569],[-99.974461,40.838246],[-99.972699,40.837589],[-99.970894,40.836965],[-99.964331,40.834657],[-99.957843,40.832363],[-99.946869,40.828503],[-99.938272,40.825462],[-99.932896,40.823392],[-99.927225,40.821218],[-99.919998,40.81846],[-99.918104,40.817701],[-99.917218,40.817346],[-99.916729,40.817151],[-99.915931,40.816846],[-99.914363,40.816223],[-99.913106,40.815741],[-99.911994,40.815287],[-99.911153,40.814956],[-99.910277,40.814625],[-99.907905,40.813679],[-99.904745,40.812442],[-99.903218,40.811826],[-99.901703,40.81119],[-99.901005,40.810868],[-99.900394,40.810601],[-99.899267,40.810074],[-99.897845,40.809375],[-99.89537,40.808077],[-99.894235,40.807487],[-99.888873,40.804686],[-99.885317,40.802783],[-99.883377,40.801716],[-99.880725,40.800161],[-99.877623,40.798348],[-99.873161,40.795718],[-99.868915,40.793209],[-99.863583,40.7901],[-99.85704,40.786505],[-99.854076,40.784931],[-99.849594,40.78249],[-99.844596,40.779793],[-99.840989,40.777824],[-99.837349,40.775848],[-99.834073,40.774065],[-99.832731,40.773354],[-99.831891,40.772926],[-99.831014,40.772498],[-99.830402,40.772213],[-99.829661,40.77184],[-99.828907,40.77149],[-99.827282,40.770812],[-99.817771,40.766893],[-99.808322,40.763006],[-99.799408,40.759338],[-99.790888,40.755834],[-99.781586,40.752003],[-99.780969,40.751758],[-99.779846,40.751319],[-99.778965,40.751],[-99.777484,40.750486],[-99.775411,40.749825],[-99.774418,40.749532],[-99.773554,40.749288],[-99.772229,40.748936],[-99.770952,40.74862],[-99.768304,40.748016],[-99.765722,40.747409],[-99.763402,40.746885],[-99.757741,40.745575],[-99.752711,40.74442],[-99.746406,40.742982],[-99.743992,40.742435],[-99.739223,40.741336],[-99.737305,40.740884],[-99.735747,40.740525],[-99.733923,40.740117],[-99.729112,40.739],[-99.727508,40.738591],[-99.725704,40.738076],[-99.724768,40.737792],[-99.723287,40.737311],[-99.722874,40.73717],[-99.721862,40.736824],[-99.720964,40.736499],[-99.718673,40.735598],[-99.717941,40.735293],[-99.716653,40.734733],[-99.715378,40.734147],[-99.713375,40.733147],[-99.71231,40.732581],[-99.712081,40.732459],[-99.710586,40.731632],[-99.705286,40.72844],[-99.704314,40.727845],[-99.703285,40.727228],[-99.702686,40.726869],[-99.701909,40.726395],[-99.697776,40.723905],[-99.696548,40.723153],[-99.693442,40.721283],[-99.691049,40.719834],[-99.687948,40.717932],[-99.684185,40.715661],[-99.682714,40.714805],[-99.681919,40.714361],[-99.680734,40.713733],[-99.679721,40.713222],[-99.67835,40.712558],[-99.676164,40.711581],[-99.675077,40.711137],[-99.674543,40.710919],[-99.673127,40.710376],[-99.6721,40.709997],[-99.671269,40.709708],[-99.669864,40.70924],[-99.668662,40.708869],[-99.66777,40.708607],[-99.666679,40.708306],[-99.665336,40.707956],[-99.66414,40.707635],[-99.663078,40.707395],[-99.661541,40.707069],[-99.65981,40.706745],[-99.658842,40.706554],[-99.654585,40.705741],[-99.650155,40.704898],[-99.635888,40.702178],[-99.629366,40.700937],[-99.627048,40.7005],[-99.625327,40.700207],[-99.624338,40.700062],[-99.622506,40.699809],[-99.62023,40.699576],[-99.615591,40.699211],[-99.613575,40.699053],[-99.612918,40.69901],[-99.610321,40.698808],[-99.606404,40.698504],[-99.605591,40.698436],[-99.60402,40.69832],[-99.602488,40.698173],[-99.600333,40.697927],[-99.59859,40.697688],[-99.598199,40.697629],[-99.597607,40.697539],[-99.596149,40.697277],[-99.594656,40.696991],[-99.588538,40.695703],[-99.58653,40.69531],[-99.585716,40.695144],[-99.584617,40.694902],[-99.580534,40.694061],[-99.578966,40.693724],[-99.577623,40.693446],[-99.575066,40.692907],[-99.56964,40.691779],[-99.56735,40.691354],[-99.566181,40.691166],[-99.56526,40.691031],[-99.563307,40.690778],[-99.562399,40.690674],[-99.561322,40.690571],[-99.55937,40.69041],[-99.557447,40.690301],[-99.556215,40.690255],[-99.554149,40.690224],[-99.552883,40.690235],[-99.550927,40.690281],[-99.549677,40.690338],[-99.549052,40.690367],[-99.547361,40.690485],[-99.534729,40.691453],[-99.529959,40.69182],[-99.517184,40.692805],[-99.516594,40.692844],[-99.512444,40.693166],[-99.510347,40.69332],[-99.509197,40.693376],[-99.507504,40.69344],[-99.506394,40.69345],[-99.504613,40.693443],[-99.496178,40.693371],[-99.483678,40.693227],[-99.476589,40.693157],[-99.474623,40.693152],[-99.473302,40.693183],[-99.472734,40.693206],[-99.471103,40.69329],[-99.469404,40.6934],[-99.466257,40.69362],[-99.44913,40.694751],[-99.447443,40.694884],[-99.444524,40.694977],[-99.44312,40.694988],[-99.44145,40.69495],[-99.44013,40.694914],[-99.438091,40.694813],[-99.436939,40.69473],[-99.434835,40.694544],[-99.428086,40.693878],[-99.427531,40.693821],[-99.421302,40.693178],[-99.416731,40.692717],[-99.413948,40.692441],[-99.412847,40.692317],[-99.412517,40.692291],[-99.410267,40.692013],[-99.405277,40.691447],[-99.403309,40.691215],[-99.402433,40.691105],[-99.400018,40.690827],[-99.398027,40.690637],[-99.396022,40.690476],[-99.39215,40.6903],[-99.389768,40.690163],[-99.386175,40.690077],[-99.382128,40.689964],[-99.380061,40.689942],[-99.377871,40.689979],[-99.372716,40.690168],[-99.370227,40.690262],[-99.359288,40.690654],[-99.357697,40.690681],[-99.352347,40.690794],[-99.351999,40.690798],[-99.35048,40.690807],[-99.348642,40.690786],[-99.346773,40.690721],[-99.345575,40.690645],[-99.34461,40.690581],[-99.343523,40.690493],[-99.342658,40.6904],[-99.341448,40.690277],[-99.33963,40.690039],[-99.33795,40.689783],[-99.336298,40.689505],[-99.334135,40.689077],[-99.333792,40.689001],[-99.33291,40.688804],[-99.331465,40.688456],[-99.330537,40.688226],[-99.329445,40.687927],[-99.32211,40.685899],[-99.319854,40.685342],[-99.317567,40.684857],[-99.315252,40.684441],[-99.312983,40.684072],[-99.312714,40.684035],[-99.309807,40.683664],[-99.30342,40.682823],[-99.29315,40.681465],[-99.292316,40.681348],[-99.290985,40.681156],[-99.288667,40.680824],[-99.286787,40.680466],[-99.285049,40.680101],[-99.283878,40.679834],[-99.28327,40.679682],[-99.282638,40.679524],[-99.280832,40.679054],[-99.279758,40.678792],[-99.278015,40.678391],[-99.276461,40.678069],[-99.275371,40.677878],[-99.273758,40.677607],[-99.27261,40.67744],[-99.27044,40.677165],[-99.26927,40.677016],[-99.265867,40.676707],[-99.261054,40.676247],[-99.255354,40.675685],[-99.250516,40.675237],[-99.238322,40.67406],[-99.224936,40.672767],[-99.221558,40.67243],[-99.220094,40.672303],[-99.218043,40.672194],[-99.215565,40.672116],[-99.213855,40.672111],[-99.210591,40.672169],[-99.198573,40.672379],[-99.189096,40.67251],[-99.181828,40.672617],[-99.180299,40.672596],[-99.179435,40.672556],[-99.178503,40.67253],[-99.177181,40.672464],[-99.175328,40.67232],[-99.165244,40.671468],[-99.161335,40.671145],[-99.156023,40.670671],[-99.153496,40.670495],[-99.151079,40.670253],[-99.150349,40.670205],[-99.149319,40.670124],[-99.147989,40.670061],[-99.146392,40.670014],[-99.145362,40.669998],[-99.143603,40.670001],[-99.141621,40.670036],[-99.13897,40.670065],[-99.125054,40.670218],[-99.109165,40.670266],[-99.10717,40.670265],[-99.106872,40.670265],[-99.105627,40.670248],[-99.104392,40.670213],[-99.103748,40.670184],[-99.100519,40.669998],[-99.091343,40.669417],[-99.089884,40.669325],[-99.088066,40.669234],[-99.086195,40.669172],[-99.084193,40.669174],[-99.083004,40.669194],[-99.080922,40.66928],[-99.078502,40.669382],[-99.074149,40.66955],[-99.072525,40.669611],[-99.071493,40.669644],[-99.070074,40.669659],[-99.065831,40.669662],[-99.050011,40.669685],[-99.046018,40.669692],[-99.03738,40.669721],[-99.031889,40.669739],[-99.02784,40.669753],[-99.025848,40.66975],[-99.024511,40.669747],[-99.019748,40.669732],[-99.019172,40.669743],[-99.018608,40.669771],[-99.018117,40.669805],[-99.017443,40.669878],[-99.016587,40.669998],[-99.015922,40.67012],[-99.015434,40.670222],[-99.014817,40.670371],[-99.014263,40.670527],[-99.013645,40.670717],[-99.013015,40.67094],[-99.012365,40.671193],[-99.008456,40.67294],[-99.005241,40.674374],[-99.002937,40.675394],[-99.002471,40.675592],[-99.000928,40.676227],[-98.999794,40.676663],[-98.99877,40.677039],[-98.99777,40.677396],[-98.995211,40.678221],[-98.993228,40.678791],[-98.992628,40.678954],[-98.992435,40.679006],[-98.992027,40.679118],[-98.990639,40.679448],[-98.98937,40.679725],[-98.98879,40.679851],[-98.988301,40.679956],[-98.987169,40.680166],[-98.985639,40.680431],[-98.983837,40.680717],[-98.982786,40.680866],[-98.982393,40.68091],[-98.981205,40.681037],[-98.980032,40.681162],[-98.979237,40.681247],[-98.976081,40.681551],[-98.970851,40.682076],[-98.969626,40.682218],[-98.968134,40.682417],[-98.966675,40.682638],[-98.965183,40.682896],[-98.964139,40.683091],[-98.961912,40.683562],[-98.960997,40.683776],[-98.960163,40.683986],[-98.958665,40.684382],[-98.956863,40.684897],[-98.956141,40.68512],[-98.951452,40.68657],[-98.948189,40.687583],[-98.947821,40.687688],[-98.945322,40.688472],[-98.942756,40.689259],[-98.94114,40.689694],[-98.940062,40.689944],[-98.938813,40.69019],[-98.937983,40.690335],[-98.937349,40.69043],[-98.936435,40.690551],[-98.935679,40.690629],[-98.934615,40.690721],[-98.933284,40.690798],[-98.93248,40.690821],[-98.931459,40.690825],[-98.929983,40.690792],[-98.929391,40.690768],[-98.928593,40.690717],[-98.925588,40.690448],[-98.922202,40.690128],[-98.921368,40.690072],[-98.919995,40.69003],[-98.919673,40.690026],[-98.91927,40.69002],[-98.918218,40.690029],[-98.916603,40.690096],[-98.91589,40.690147],[-98.914523,40.69028],[-98.910029,40.690862],[-98.906697,40.691311],[-98.899198,40.692271],[-98.897457,40.692523],[-98.895672,40.692744],[-98.893742,40.692935],[-98.889897,40.693212],[-98.887307,40.693374],[-98.885348,40.693506],[-98.883969,40.693587],[-98.877305,40.694041],[-98.875956,40.694154],[-98.873972,40.694391],[-98.872218,40.694624],[-98.87067,40.694871],[-98.868879,40.695191],[-98.866229,40.695745],[-98.864778,40.696093],[-98.863985,40.696308],[-98.862793,40.696615],[-98.860639,40.697248],[-98.857493,40.698224],[-98.856925,40.698412],[-98.854637,40.699115],[-98.852675,40.699726],[-98.851085,40.700222],[-98.847827,40.701241],[-98.847435,40.701355],[-98.844493,40.702281],[-98.841224,40.703321],[-98.835827,40.704975],[-98.834635,40.705349],[-98.829332,40.706993],[-98.82601,40.708036],[-98.820886,40.709627],[-98.818926,40.710208],[-98.817032,40.710729],[-98.815109,40.7112],[-98.812641,40.711727],[-98.811231,40.71201],[-98.807878,40.712718],[-98.804091,40.713514],[-98.789666,40.716523],[-98.788225,40.716829],[-98.784878,40.717517],[-98.778938,40.718759],[-98.775413,40.719496],[-98.773477,40.719916],[-98.768117,40.721039],[-98.766823,40.721297],[-98.76473,40.721669],[-98.7635,40.721857],[-98.761207,40.72216],[-98.76005,40.72229],[-98.758471,40.72244],[-98.757489,40.722511],[-98.756369,40.722586],[-98.755373,40.722632],[-98.753946,40.722685],[-98.752341,40.722714],[-98.750632,40.722706],[-98.746226,40.722641],[-98.744526,40.722622],[-98.741179,40.722592],[-98.740114,40.722568],[-98.736599,40.72255],[-98.733266,40.72251],[-98.727635,40.722462],[-98.727355,40.722457],[-98.726599,40.722427],[-98.723273,40.722258],[-98.722414,40.722218],[-98.721535,40.722146],[-98.713616,40.721692],[-98.711155,40.72155],[-98.709269,40.721474],[-98.707827,40.721445],[-98.70638,40.721445],[-98.704925,40.721468],[-98.703791,40.721507],[-98.702188,40.721584],[-98.700553,40.721698],[-98.699016,40.721828],[-98.697001,40.722056],[-98.69586,40.722204],[-98.688901,40.723315],[-98.681537,40.724513],[-98.67715,40.725233],[-98.676195,40.725407],[-98.675057,40.725632],[-98.673934,40.725872],[-98.672838,40.726124],[-98.671741,40.726387],[-98.670757,40.726646],[-98.669687,40.726939],[-98.668104,40.727406],[-98.666985,40.727752],[-98.665773,40.728157],[-98.664589,40.728572],[-98.662486,40.729363],[-98.655459,40.732028],[-98.640492,40.737712],[-98.638121,40.738604],[-98.63411,40.740138],[-98.632808,40.740672],[-98.63177,40.741122],[-98.630143,40.741858],[-98.629031,40.742393],[-98.626629,40.743629],[-98.625494,40.744278],[-98.624086,40.745111],[-98.622959,40.745817],[-98.621872,40.746524],[-98.621026,40.74709],[-98.619255,40.748371],[-98.61577,40.75093],[-98.614659,40.751694],[-98.614028,40.752116],[-98.61325,40.752621],[-98.612413,40.753154],[-98.611233,40.753851],[-98.610218,40.754442],[-98.609015,40.755099],[-98.6078,40.755715],[-98.606893,40.756178],[-98.605998,40.75661],[-98.603846,40.757566],[-98.602749,40.758026],[-98.601387,40.75856],[-98.600225,40.759],[-98.598928,40.759457],[-98.597959,40.759779],[-98.596705,40.760173],[-98.595302,40.76059],[-98.59309,40.761222],[-98.587363,40.762891],[-98.583321,40.764046],[-98.575586,40.766262],[-98.567215,40.768665],[-98.564379,40.769517],[-98.561588,40.770386],[-98.558955,40.771324],[-98.556502,40.772295],[-98.553037,40.773863],[-98.538904,40.780339],[-98.524951,40.786678],[-98.512506,40.792422],[-98.511365,40.792929],[-98.510263,40.793394],[-98.507735,40.794379],[-98.506817,40.794711],[-98.505605,40.795129],[-98.504009,40.79564],[-98.502662,40.796032],[-98.501556,40.796346],[-98.498588,40.797134],[-98.489648,40.799518],[-98.481383,40.801705],[-98.475292,40.803324],[-98.469816,40.804771],[-98.457369,40.8081],[-98.448898,40.810349],[-98.444327,40.811551],[-98.442741,40.811982],[-98.441335,40.812388],[-98.43225,40.815262],[-98.42477,40.817615],[-98.413352,40.821258],[-98.409725,40.822406],[-98.408491,40.82274],[-98.406781,40.823114],[-98.405726,40.823248],[-98.404667,40.823345],[-98.403861,40.823378],[-98.40297,40.82337],[-98.402127,40.823342],[-98.401065,40.823251],[-98.400053,40.823108],[-98.398898,40.822905],[-98.397993,40.822676],[-98.397415,40.822513],[-98.396181,40.822093],[-98.393983,40.821263],[-98.393403,40.821044],[-98.391751,40.820409],[-98.39107,40.820182],[-98.390278,40.819955],[-98.3894,40.819767],[-98.388776,40.81964],[-98.387932,40.819505],[-98.387264,40.819417],[-98.386489,40.819354],[-98.385985,40.819323],[-98.385089,40.819295],[-98.384369,40.819298],[-98.383623,40.819332],[-98.382866,40.819384],[-98.38214,40.819469],[-98.381576,40.819544],[-98.379438,40.819898],[-98.376726,40.820335],[-98.371989,40.821136],[-98.368998,40.821633],[-98.368231,40.821756],[-98.357597,40.82352],[-98.351086,40.824613],[-98.349716,40.824826],[-98.349091,40.824933],[-98.347355,40.825228],[-98.34636,40.825369],[-98.345513,40.825461],[-98.343375,40.825632],[-98.341227,40.825631],[-98.339705,40.82559],[-98.338356,40.82553],[-98.336829,40.825402],[-98.33543,40.825203],[-98.332852,40.824744],[-98.331717,40.824491],[-98.329947,40.824105],[-98.322038,40.822406],[-98.320533,40.822141],[-98.317832,40.821732],[-98.315244,40.821425],[-98.312566,40.821221],[-98.309731,40.821068],[-98.305455,40.821034],[-98.29283,40.821017],[-98.283986,40.821017],[-98.282017,40.820975],[-98.278812,40.820974],[-98.278114,40.820975],[-98.276515,40.820978],[-98.273247,40.820977],[-98.270683,40.820981],[-98.269668,40.820983],[-98.26006,40.821002],[-98.257927,40.82101],[-98.256941,40.821006],[-98.252133,40.821005],[-98.247176,40.821017],[-98.245036,40.821003],[-98.243851,40.820995],[-98.240486,40.82098],[-98.235402,40.820958],[-98.233129,40.820948],[-98.227682,40.820912],[-98.2256,40.820939],[-98.22521,40.820945],[-98.222452,40.82103],[-98.219785,40.821134],[-98.217966,40.821211],[-98.216169,40.821282],[-98.213305,40.821395],[-98.208566,40.821594],[-98.206556,40.821666],[-98.206378,40.821672],[-98.203912,40.821778],[-98.201983,40.821843],[-98.1992,40.821893],[-98.192912,40.821926],[-98.189978,40.821942],[-98.187551,40.821942],[-98.18555,40.821947],[-98.182744,40.821955],[-98.178363,40.821977],[-98.176956,40.821984],[-98.172002,40.821995],[-98.168587,40.822009],[-98.162339,40.822036],[-98.160372,40.822044],[-98.155012,40.822056],[-98.149554,40.82207],[-98.144445,40.822044],[-98.138989,40.822003],[-98.136388,40.821978],[-98.133362,40.821949],[-98.130802,40.821939],[-98.128355,40.821929],[-98.125,40.821926],[-98.120655,40.821914],[-98.117619,40.821923],[-98.101533,40.821886],[-98.100615,40.821886],[-98.093515,40.82189],[-98.087374,40.821872],[-98.085561,40.821867],[-98.081187,40.821858],[-98.078782,40.821881],[-98.077145,40.821867],[-98.074299,40.821856],[-98.07312,40.821852],[-98.069509,40.821839],[-98.0625,40.82184],[-98.054488,40.82183],[-98.054335,40.821831],[-98.051494,40.821841],[-98.050447,40.821836],[-98.048007,40.821826],[-98.042667,40.821816],[-98.040479,40.821817],[-98.035172,40.821806],[-98.032055,40.821818],[-98.030311,40.821814],[-98.028746,40.821821],[-98.026454,40.821819],[-98.024011,40.821829],[-98.023415,40.821832],[-98.019658,40.821831],[-98.017216,40.821838],[-98.016174,40.821841],[-98.013318,40.82185],[-98.011083,40.821869],[-98.010479,40.821874],[-98.006919,40.821871],[-98.004016,40.821895],[-98.002659,40.821901],[-98.001506,40.821906],[-98.000839,40.821909],[-98,40.821903],[-97.996477,40.821938],[-97.995401,40.82194],[-97.992431,40.821949],[-97.991909,40.821947],[-97.988354,40.821971],[-97.98762,40.821974],[-97.980227,40.822007],[-97.97313,40.822025],[-97.968963,40.822015],[-97.965033,40.822022],[-97.960947,40.822012],[-97.959334,40.822016],[-97.956855,40.822021],[-97.952779,40.822003],[-97.94996,40.822009],[-97.948667,40.822012],[-97.944612,40.82199],[-97.943148,40.821973],[-97.942081,40.821937],[-97.941357,40.821907],[-97.940296,40.821867],[-97.939673,40.82184],[-97.939295,40.821827],[-97.938655,40.821788],[-97.935712,40.82161],[-97.932985,40.821386],[-97.930068,40.821154],[-97.928484,40.821017],[-97.925768,40.820764],[-97.92335,40.820628],[-97.92242,40.820558],[-97.921765,40.820535],[-97.921373,40.820531],[-97.920348,40.820519],[-97.919161,40.820517],[-97.918253,40.820504],[-97.912604,40.820678],[-97.910147,40.820773],[-97.909409,40.820793],[-97.90871,40.820812],[-97.906489,40.820887],[-97.904783,40.820936],[-97.903661,40.820978],[-97.902885,40.820995],[-97.902549,40.820996],[-97.902221,40.821003],[-97.901738,40.821014],[-97.901082,40.821004],[-97.896727,40.821012],[-97.896483,40.821012],[-97.892476,40.820978],[-97.888342,40.820952],[-97.884422,40.820957],[-97.881191,40.820994],[-97.879101,40.820989],[-97.87712,40.820973],[-97.875,40.82094],[-97.874801,40.820931],[-97.870246,40.820935],[-97.866395,40.820906],[-97.862874,40.820907],[-97.859305,40.820921],[-97.855581,40.820912],[-97.849768,40.820941],[-97.849599,40.820942],[-97.840644,40.820969],[-97.83937,40.820955],[-97.83301,40.820988],[-97.825364,40.821012],[-97.816753,40.821015],[-97.815976,40.821021],[-97.813995,40.821013],[-97.812765,40.821013],[-97.810176,40.821014],[-97.809418,40.821014],[-97.80881,40.821014],[-97.807187,40.821013],[-97.805886,40.821013],[-97.803078,40.821012],[-97.801353,40.821023],[-97.79882,40.821005],[-97.793952,40.821011],[-97.788809,40.821005],[-97.787822,40.821014],[-97.783758,40.82109],[-97.780508,40.821171],[-97.777155,40.821244],[-97.776025,40.821275],[-97.774993,40.821288],[-97.773321,40.821331],[-97.770716,40.821381],[-97.768644,40.821413],[-97.767969,40.821431],[-97.766024,40.821483],[-97.758056,40.821651],[-97.757213,40.821666],[-97.755814,40.821691],[-97.754071,40.82174],[-97.751384,40.821776],[-97.748949,40.821791],[-97.748688,40.821791],[-97.744126,40.821735],[-97.74152,40.821693],[-97.739653,40.821673],[-97.738363,40.821645],[-97.735499,40.821614],[-97.717411,40.821367],[-97.713347,40.82132],[-97.710736,40.821297],[-97.704524,40.82127],[-97.70073,40.821265],[-97.698776,40.82126],[-97.690159,40.821243],[-97.687666,40.821242],[-97.685171,40.821213],[-97.681599,40.821195],[-97.679187,40.821191],[-97.677421,40.821178],[-97.674635,40.821176],[-97.672771,40.821165],[-97.659412,40.821129],[-97.650557,40.82112],[-97.645813,40.821106],[-97.641447,40.821129],[-97.6395,40.821107],[-97.637406,40.821115],[-97.634745,40.821122],[-97.630344,40.821123],[-97.627786,40.821123],[-97.614519,40.821098],[-97.61259,40.821105],[-97.605387,40.821098],[-97.603182,40.821093],[-97.60105,40.821092],[-97.59945,40.821086],[-97.598131,40.821087],[-97.596528,40.821116],[-97.596156,40.82113],[-97.593457,40.821228],[-97.591581,40.821291],[-97.583251,40.821591],[-97.579996,40.82171],[-97.578567,40.821765],[-97.576943,40.82182],[-97.574207,40.821919],[-97.572578,40.821957],[-97.569805,40.821954],[-97.565157,40.821949],[-97.562226,40.821937],[-97.55886,40.821937],[-97.553613,40.821931],[-97.540564,40.8219],[-97.538398,40.821894],[-97.533808,40.821891],[-97.527015,40.821873],[-97.518355,40.821852],[-97.502566,40.821822],[-97.498985,40.821823],[-97.493032,40.821818],[-97.491376,40.821818],[-97.488519,40.821814],[-97.48572,40.821815],[-97.476842,40.82182],[-97.46951,40.821815],[-97.465289,40.821812],[-97.461529,40.821814],[-97.458364,40.821812],[-97.454747,40.821811],[-97.451149,40.821807],[-97.445904,40.821803],[-97.445123,40.821793],[-97.444111,40.82178],[-97.442104,40.821744],[-97.437665,40.821647],[-97.43699,40.821634],[-97.435598,40.821609],[-97.433165,40.821563],[-97.429226,40.821483],[-97.425649,40.821404],[-97.423565,40.821361],[-97.417593,40.821235],[-97.415519,40.8212],[-97.413161,40.821151],[-97.409417,40.821068],[-97.408244,40.821057],[-97.40686,40.82106],[-97.406295,40.821065],[-97.392695,40.821179],[-97.388399,40.821219],[-97.384928,40.821244],[-97.379135,40.821293],[-97.376628,40.821309],[-97.369054,40.821374],[-97.365191,40.82138],[-97.361579,40.821388],[-97.358357,40.821388],[-97.355818,40.821388],[-97.354786,40.821391],[-97.352945,40.821401],[-97.350777,40.821403],[-97.347572,40.821406],[-97.34335,40.82141],[-97.340548,40.821409],[-97.336376,40.821419],[-97.335532,40.821423],[-97.332904,40.821424],[-97.330143,40.821427],[-97.328432,40.821448],[-97.324,40.821505],[-97.316045,40.821609],[-97.312221,40.821657],[-97.308216,40.82171],[-97.304795,40.821755],[-97.301171,40.821798],[-97.297396,40.821846],[-97.293542,40.821891],[-97.29052,40.821936],[-97.286289,40.821986],[-97.280447,40.82206],[-97.276564,40.82211],[-97.272524,40.822157],[-97.268483,40.82221],[-97.26458,40.822253],[-97.260539,40.822305],[-97.256686,40.822349],[-97.254373,40.822383],[-97.253199,40.822386],[-97.247384,40.822377],[-97.245021,40.822377],[-97.240017,40.822368],[-97.233876,40.822356],[-97.225432,40.82234],[-97.22159,40.822334],[-97.216492,40.822325],[-97.210452,40.822313],[-97.200902,40.822298],[-97.194947,40.822285],[-97.190842,40.822278],[-97.186844,40.822267],[-97.174243,40.822238],[-97.167043,40.822222],[-97.149414,40.822183],[-97.144184,40.82217],[-97.139722,40.822158],[-97.136325,40.822144],[-97.13606,40.822142],[-97.133367,40.822121],[-97.129184,40.822099],[-97.127921,40.822087],[-97.115953,40.822067],[-97.114811,40.822057],[-97.111879,40.822055],[-97.111411,40.822065],[-97.111022,40.822074],[-97.10797,40.822049],[-97.10694,40.822049],[-97.104709,40.82205],[-97.103623,40.822032],[-97.103223,40.822029],[-97.100571,40.822011],[-97.100436,40.822011],[-97.096709,40.822015],[-97.092907,40.821993],[-97.084562,40.821963],[-97.083969,40.821963],[-97.082037,40.821963],[-97.081361,40.821955],[-97.077536,40.821913],[-97.076107,40.821911],[-97.073978,40.821908],[-97.073446,40.821903],[-97.073012,40.8219],[-97.072707,40.821899],[-97.06974,40.821891],[-97.067239,40.821912],[-97.065911,40.821904],[-97.063429,40.821862],[-97.062682,40.821862],[-97.058903,40.821864],[-97.058505,40.821845],[-97.05775,40.821809],[-97.056256,40.821737],[-97.055515,40.821702],[-97.052016,40.821572],[-97.049589,40.821479],[-97.047402,40.821387],[-97.045726,40.821276],[-97.043891,40.821193],[-97.043121,40.821151],[-97.042762,40.821132],[-97.039529,40.821045],[-97.036899,40.820933],[-97.034612,40.820827],[-97.032768,40.820808],[-97.032355,40.82081],[-97.031187,40.820814],[-97.029462,40.820826],[-97.027442,40.820817],[-97.026732,40.820825],[-97.025157,40.820844],[-97.024191,40.820836],[-97.024022,40.820836],[-97.023125,40.820838],[-97.021984,40.82084],[-97.019964,40.82083],[-97.017592,40.820835],[-97.013474,40.820852],[-97.008807,40.820855],[-97.007338,40.820863],[-97.005957,40.820871],[-97.00459,40.820878],[-97.002859,40.820897],[-97.000285,40.820925],[-96.998792,40.820937],[-96.995891,40.820961],[-96.990422,40.820995],[-96.986281,40.821044],[-96.984128,40.82106],[-96.980185,40.821112],[-96.97588,40.821141],[-96.975089,40.821152],[-96.968163,40.821219],[-96.96775,40.821219],[-96.966902,40.821235],[-96.964533,40.821258],[-96.959425,40.821352],[-96.955206,40.821414],[-96.953218,40.821451],[-96.951152,40.821489],[-96.948416,40.821548],[-96.945269,40.821612],[-96.944455,40.82162],[-96.944136,40.821622],[-96.940925,40.821671],[-96.939502,40.821663],[-96.93816,40.821631],[-96.93672,40.821576],[-96.934784,40.821467],[-96.93084,40.821263],[-96.928817,40.821154],[-96.927838,40.821111],[-96.925014,40.820965],[-96.921177,40.820753],[-96.918483,40.820611],[-96.917445,40.820559],[-96.916277,40.820523],[-96.914143,40.820496],[-96.910473,40.820449],[-96.9064,40.820413],[-96.892322,40.82027],[-96.879292,40.820141],[-96.873222,40.82009],[-96.87188,40.820106],[-96.870937,40.820133],[-96.869605,40.820192],[-96.868585,40.820245],[-96.866996,40.820357],[-96.865786,40.820464],[-96.864556,40.820595],[-96.863251,40.82075],[-96.862291,40.820862],[-96.860548,40.821097],[-96.859318,40.821238],[-96.857799,40.821399],[-96.855827,40.821562],[-96.85387,40.821673],[-96.852076,40.821738],[-96.85101,40.821759],[-96.84978,40.821752],[-96.838912,40.821739],[-96.837822,40.821737],[-96.834801,40.821722],[-96.829636,40.821725],[-96.828065,40.821693],[-96.827063,40.821666],[-96.825955,40.821621],[-96.824665,40.821554],[-96.823617,40.821472],[-96.822629,40.821387],[-96.821293,40.821251],[-96.818952,40.820993],[-96.815482,40.820582],[-96.805567,40.819471],[-96.801984,40.819029],[-96.797863,40.818516],[-96.793974,40.818036],[-96.788038,40.817291],[-96.787159,40.817179],[-96.78556,40.816987],[-96.783825,40.816774],[-96.782793,40.816646],[-96.781455,40.816514],[-96.779863,40.816385],[-96.777676,40.816202],[-96.776539,40.816114],[-96.773018,40.815833],[-96.770879,40.815671],[-96.769503,40.815559],[-96.768745,40.815497],[-96.768284,40.815469],[-96.768014,40.815454],[-96.767354,40.815433],[-96.766653,40.815427],[-96.765973,40.815434],[-96.765663,40.815448],[-96.764886,40.815483],[-96.764509,40.81551],[-96.763997,40.815552],[-96.763401,40.815616],[-96.762742,40.81573],[-96.761745,40.815907],[-96.759956,40.816244],[-96.759356,40.816365],[-96.758829,40.816484],[-96.758507,40.816569],[-96.75811,40.816695],[-96.757686,40.816848],[-96.757271,40.817024],[-96.756831,40.817226],[-96.756471,40.817404],[-96.756412,40.817437],[-96.756259,40.817529],[-96.756093,40.817632],[-96.756044,40.817665],[-96.755795,40.817829],[-96.755472,40.818065],[-96.755148,40.818318],[-96.754894,40.818534],[-96.754659,40.818765],[-96.754459,40.818977],[-96.754253,40.819213],[-96.754017,40.819523],[-96.753738,40.819913],[-96.752619,40.82159],[-96.745908,40.831388],[-96.745482,40.832034],[-96.744639,40.833192],[-96.744191,40.833827],[-96.743742,40.834429],[-96.743262,40.835041],[-96.742807,40.835593],[-96.742307,40.836171],[-96.74179,40.836741],[-96.741273,40.837286],[-96.739866,40.838691],[-96.73886,40.839694],[-96.737061,40.841498],[-96.735441,40.843117],[-96.734152,40.844419],[-96.733204,40.845361],[-96.732368,40.846199],[-96.730096,40.848467],[-96.728612,40.84995],[-96.726824,40.851692],[-96.720781,40.857725],[-96.72071,40.857801],[-96.720558,40.857964],[-96.720136,40.858406],[-96.719552,40.858988],[-96.71895,40.85956],[-96.718662,40.859825],[-96.718603,40.859877],[-96.718088,40.860336],[-96.71751,40.86083],[-96.716912,40.861318],[-96.716642,40.861532],[-96.716438,40.861691],[-96.715912,40.86209],[-96.715713,40.86224],[-96.714861,40.862849],[-96.714189,40.863306],[-96.713598,40.863692],[-96.712924,40.864115],[-96.712353,40.86446],[-96.711817,40.86477],[-96.711464,40.864974],[-96.710721,40.86538],[-96.710003,40.865756],[-96.709048,40.866257],[-96.707985,40.866825],[-96.706102,40.867811],[-96.703797,40.869031],[-96.700283,40.870881],[-96.699513,40.871293],[-96.698789,40.871716],[-96.698434,40.871936],[-96.698037,40.872192],[-96.69771,40.872415],[-96.697201,40.872783],[-96.696733,40.873139],[-96.696319,40.873481],[-96.69595,40.873796],[-96.692178,40.877345],[-96.691349,40.878122],[-96.689493,40.879888],[-96.688878,40.880469],[-96.688063,40.881268],[-96.687328,40.881958],[-96.686615,40.882623],[-96.685234,40.883893],[-96.684752,40.88431],[-96.684209,40.884742],[-96.683828,40.88503],[-96.683508,40.88526],[-96.683051,40.885568],[-96.682288,40.886048],[-96.681057,40.886808],[-96.679943,40.8875],[-96.679017,40.888064],[-96.678612,40.888321],[-96.677842,40.88881],[-96.676711,40.889532],[-96.676007,40.889976],[-96.674169,40.891154],[-96.667672,40.895391],[-96.667307,40.895602],[-96.666954,40.895783],[-96.666618,40.895937],[-96.666272,40.896079],[-96.665917,40.896208],[-96.665555,40.896324],[-96.665186,40.896426],[-96.664842,40.896508],[-96.66443,40.89659],[-96.664013,40.896655],[-96.663624,40.8967],[-96.663233,40.896731],[-96.652066,40.896687],[-96.644296,40.896713],[-96.642784,40.896708],[-96.629966,40.896727],[-96.62848,40.89675],[-96.625103,40.89679],[-96.621702,40.896823],[-96.614895,40.896851],[-96.602302,40.896868],[-96.600817,40.896863],[-96.598269,40.896748],[-96.597128,40.896741],[-96.595872,40.896752],[-96.594845,40.896775],[-96.593704,40.896815],[-96.587286,40.897144],[-96.587067,40.897151],[-96.57617,40.897494],[-96.575509,40.89751],[-96.574979,40.897491],[-96.574542,40.897469],[-96.574109,40.897431],[-96.573715,40.897385],[-96.573323,40.897336],[-96.572879,40.897262],[-96.572581,40.897206],[-96.572266,40.897141],[-96.571828,40.897039],[-96.571449,40.89694],[-96.570981,40.896806],[-96.570334,40.8966],[-96.569854,40.896418],[-96.568806,40.895992],[-96.567317,40.89542],[-96.567111,40.895336],[-96.566481,40.895091],[-96.565689,40.894819],[-96.565174,40.894655],[-96.564479,40.89446],[-96.563764,40.894242],[-96.563232,40.894068],[-96.562959,40.893982],[-96.562679,40.893906],[-96.562425,40.893843],[-96.562171,40.893786],[-96.561873,40.893733],[-96.561599,40.893691],[-96.561146,40.893641],[-96.560883,40.893624],[-96.560563,40.893613],[-96.560292,40.893611],[-96.560007,40.893619],[-96.55975,40.893633],[-96.559468,40.893656],[-96.558987,40.893715],[-96.558677,40.893765],[-96.558412,40.893815],[-96.558199,40.893861],[-96.557842,40.893967],[-96.557576,40.894051],[-96.554561,40.895052],[-96.553441,40.895428],[-96.55242,40.895763],[-96.545455,40.898087],[-96.539978,40.899909],[-96.538843,40.900284],[-96.53775,40.900633],[-96.537033,40.900844],[-96.535584,40.901259],[-96.534411,40.90157],[-96.533426,40.901814],[-96.531374,40.902286],[-96.530301,40.902504],[-96.529468,40.902665],[-96.528558,40.902831],[-96.528085,40.902904],[-96.520889,40.904152],[-96.520158,40.904283],[-96.502098,40.907456],[-96.492379,40.909081],[-96.491548,40.909253],[-96.490728,40.909446],[-96.489919,40.90966],[-96.489119,40.909896],[-96.488331,40.910152],[-96.487555,40.91043],[-96.486792,40.910728],[-96.480306,40.913768],[-96.479612,40.914092],[-96.469269,40.918816],[-96.468581,40.919123],[-96.463359,40.921491],[-96.462359,40.921975],[-96.455781,40.924977],[-96.451819,40.926769],[-96.449299,40.927934],[-96.448922,40.928108],[-96.442626,40.930999],[-96.440382,40.932002],[-96.439183,40.932626],[-96.438087,40.933308],[-96.436926,40.934136],[-96.435701,40.93511],[-96.429239,40.940664],[-96.425576,40.943849],[-96.421136,40.947701],[-96.420862,40.947939],[-96.41976,40.948895],[-96.413389,40.954409],[-96.409584,40.957681],[-96.408526,40.958577],[-96.407585,40.959357],[-96.406502,40.960106],[-96.405405,40.960866],[-96.404193,40.961665],[-96.402258,40.962824],[-96.393385,40.968307],[-96.392242,40.968988],[-96.389232,40.970877],[-96.386511,40.972601],[-96.384782,40.973649],[-96.383635,40.974422],[-96.38219,40.975464],[-96.380772,40.976593],[-96.376296,40.979962],[-96.372273,40.983019],[-96.371589,40.983594],[-96.371022,40.984032],[-96.368984,40.98557],[-96.368326,40.986086],[-96.367333,40.986826],[-96.366404,40.987478],[-96.365231,40.98817],[-96.363816,40.988876],[-96.363397,40.989068],[-96.362551,40.989431],[-96.361684,40.989757],[-96.359285,40.990555],[-96.35165,40.993047],[-96.340597,40.996707],[-96.329609,41.000279],[-96.326665,41.001257],[-96.323009,41.002455],[-96.319498,41.003589],[-96.317911,41.004114],[-96.316246,41.004766],[-96.31488,41.005389],[-96.3135,41.006158],[-96.312056,41.007112],[-96.310711,41.008166],[-96.309709,41.009146],[-96.308986,41.010032],[-96.308148,41.011112],[-96.307387,41.01225],[-96.305859,41.014731],[-96.304345,41.017207],[-96.303737,41.018317],[-96.303094,41.019386],[-96.301758,41.021229],[-96.300711,41.022422],[-96.299971,41.023217],[-96.299619,41.023596],[-96.298034,41.025271],[-96.294611,41.028889],[-96.294402,41.029087],[-96.293172,41.030461],[-96.292715,41.031008],[-96.292362,41.031483],[-96.292171,41.031788],[-96.29207,41.031952],[-96.29197,41.032173],[-96.291747,41.032649],[-96.29148,41.03324],[-96.29136,41.033765],[-96.291303,41.034315],[-96.291282,41.03468],[-96.291276,41.035192],[-96.29131,41.035768],[-96.291407,41.036329],[-96.292776,41.040578],[-96.292851,41.040815],[-96.294455,41.045754],[-96.294983,41.047285],[-96.295254,41.048131],[-96.295899,41.050061],[-96.296119,41.050843],[-96.296289,41.05169],[-96.296377,41.052409],[-96.296427,41.053231],[-96.296413,41.054178],[-96.29635,41.054906],[-96.29627,41.055522],[-96.29616,41.056065],[-96.296013,41.056696],[-96.295789,41.057445],[-96.295544,41.058114],[-96.295207,41.05888],[-96.294666,41.059923],[-96.294374,41.060398],[-96.293935,41.061033],[-96.293582,41.061503],[-96.289902,41.065956],[-96.289699,41.066202],[-96.288576,41.067585],[-96.288021,41.068242],[-96.287773,41.06856],[-96.286458,41.070125],[-96.286282,41.070334],[-96.285964,41.070735],[-96.285679,41.071058],[-96.285305,41.071539],[-96.283209,41.074059],[-96.283146,41.074135],[-96.283104,41.074185],[-96.282718,41.074786],[-96.281732,41.07597],[-96.280677,41.077272],[-96.279552,41.078634],[-96.279099,41.079142],[-96.278705,41.079579],[-96.278056,41.080242],[-96.277501,41.080785],[-96.276974,41.081276],[-96.276343,41.081838],[-96.27577,41.082309],[-96.275356,41.082641],[-96.27484,41.083049],[-96.274471,41.083326],[-96.274129,41.083573],[-96.273684,41.083885],[-96.273233,41.08419],[-96.272752,41.084507],[-96.272242,41.084835],[-96.271794,41.085102],[-96.271118,41.085504],[-96.270508,41.085836],[-96.269922,41.086149],[-96.269022,41.086611],[-96.267956,41.087137],[-96.265774,41.088226],[-96.264092,41.089064],[-96.262076,41.090065],[-96.261108,41.090554],[-96.259629,41.091299],[-96.258667,41.091783],[-96.256891,41.092679],[-96.255353,41.093444],[-96.254199,41.094028],[-96.252869,41.094692],[-96.251762,41.09524],[-96.250602,41.095815],[-96.249408,41.0964],[-96.248719,41.096739],[-96.248181,41.097003],[-96.246152,41.098008],[-96.244122,41.099009],[-96.243169,41.099485],[-96.242041,41.100046],[-96.240974,41.100571],[-96.238486,41.101819],[-96.235867,41.103113],[-96.23389,41.104099],[-96.232125,41.10498],[-96.231586,41.105265],[-96.231006,41.105601],[-96.230442,41.105945],[-96.230017,41.106218],[-96.229607,41.106502],[-96.229261,41.106756],[-96.227402,41.108224],[-96.225383,41.109823],[-96.224422,41.110585],[-96.224187,41.110771],[-96.222863,41.111817],[-96.220736,41.113501],[-96.218932,41.114927],[-96.217525,41.11604],[-96.216321,41.116994],[-96.214938,41.118077],[-96.214698,41.118253],[-96.214363,41.118481],[-96.21403,41.118685],[-96.213686,41.118883],[-96.213345,41.119059],[-96.213049,41.1192],[-96.212696,41.119351],[-96.212339,41.119496],[-96.211966,41.119634],[-96.21156,41.119785],[-96.211243,41.1199],[-96.21058,41.120145],[-96.207708,41.121187],[-96.205556,41.121967],[-96.201451,41.123458],[-96.19834,41.124586],[-96.196978,41.125085],[-96.195037,41.125788],[-96.191604,41.127031],[-96.189305,41.127868],[-96.188396,41.128192],[-96.180887,41.130936],[-96.180088,41.131224],[-96.177684,41.132106],[-96.175242,41.132997],[-96.173868,41.133498],[-96.173329,41.1337],[-96.172757,41.133926],[-96.172206,41.134167],[-96.171424,41.134531],[-96.170892,41.134807],[-96.170352,41.1351],[-96.169824,41.135412],[-96.169036,41.135904],[-96.168431,41.13632],[-96.168009,41.136631],[-96.167626,41.136932],[-96.167173,41.137312],[-96.166747,41.137677],[-96.166507,41.137907],[-96.166205,41.138195],[-96.165788,41.138619],[-96.165492,41.138943],[-96.16502,41.139477],[-96.164548,41.140027],[-96.164093,41.140558],[-96.163292,41.141474],[-96.161482,41.14359],[-96.160985,41.144152],[-96.16035,41.144874],[-96.159695,41.145618],[-96.158759,41.146665],[-96.158045,41.147472],[-96.157621,41.147953],[-96.156702,41.149026],[-96.156057,41.149751],[-96.154872,41.151035],[-96.154577,41.151318],[-96.15433,41.151546],[-96.153955,41.151887],[-96.153475,41.152289],[-96.153118,41.152584],[-96.152775,41.152841],[-96.152378,41.153129],[-96.151759,41.153544],[-96.150456,41.154376],[-96.148863,41.155386],[-96.147978,41.155959],[-96.146549,41.15686],[-96.146147,41.157122],[-96.144479,41.158202],[-96.143379,41.158903],[-96.142148,41.159686],[-96.138556,41.161974],[-96.136736,41.163134],[-96.135048,41.164185],[-96.134525,41.164552],[-96.133888,41.164988],[-96.133308,41.165427],[-96.132725,41.165889],[-96.132299,41.166248],[-96.130977,41.167389],[-96.129929,41.168309],[-96.129067,41.169059],[-96.128513,41.169551],[-96.128134,41.169879],[-96.127116,41.170768],[-96.126232,41.171539],[-96.124448,41.173095],[-96.123348,41.174053],[-96.121339,41.175804],[-96.119562,41.177329],[-96.118335,41.178366],[-96.117215,41.179281],[-96.115467,41.180592],[-96.115077,41.180869],[-96.114229,41.181431],[-96.113049,41.182241],[-96.112633,41.182535],[-96.112132,41.182889],[-96.111079,41.183634],[-96.110357,41.184086],[-96.109599,41.184621],[-96.109044,41.185013],[-96.108703,41.185254],[-96.106048,41.18713],[-96.105459,41.187499],[-96.105098,41.187742],[-96.104735,41.187962],[-96.102524,41.189559],[-96.101198,41.190475],[-96.098377,41.192401],[-96.098117,41.192617],[-96.097797,41.192929],[-96.097438,41.19328],[-96.09708,41.193696],[-96.096772,41.194107],[-96.09644,41.194624],[-96.096264,41.194919],[-96.095958,41.195545],[-96.095755,41.196115],[-96.095584,41.196841],[-96.094978,41.200452],[-96.094528,41.202754],[-96.094382,41.203452],[-96.094223,41.204177],[-96.094057,41.205072],[-96.093708,41.20673],[-96.093595,41.207228],[-96.093472,41.207644],[-96.09328,41.208163],[-96.093056,41.208671],[-96.092806,41.209156],[-96.091083,41.212602],[-96.090973,41.212865],[-96.090898,41.213096],[-96.090828,41.213371],[-96.090757,41.213793],[-96.09072,41.214201],[-96.090724,41.214516],[-96.090777,41.214996],[-96.090812,41.215532],[-96.090935,41.216239],[-96.091072,41.217709],[-96.091094,41.21811],[-96.091167,41.218861],[-96.091208,41.219362],[-96.091202,41.219723],[-96.091176,41.220009],[-96.091121,41.220306],[-96.091027,41.220603],[-96.090929,41.220879],[-96.090781,41.221182],[-96.090612,41.221508],[-96.090458,41.221736],[-96.090274,41.221976],[-96.090112,41.222179],[-96.089859,41.222442],[-96.089594,41.22267],[-96.08929,41.222913],[-96.088892,41.223181],[-96.088473,41.223416],[-96.08806,41.223616],[-96.087622,41.223779],[-96.087093,41.22394],[-96.086735,41.224029],[-96.086411,41.224097],[-96.086041,41.224155],[-96.085797,41.224185],[-96.085448,41.224217],[-96.085215,41.224236],[-96.084918,41.224244],[-96.084544,41.224234],[-96.08413,41.224204],[-96.083682,41.224153],[-96.081765,41.223885],[-96.078408,41.223339],[-96.072988,41.222545],[-96.072342,41.222457],[-96.071798,41.222384],[-96.071181,41.222326],[-96.07071,41.222287],[-96.070156,41.222249],[-96.069733,41.222227],[-96.069377,41.222212],[-96.068952,41.222202],[-96.068608,41.222201],[-96.065045,41.222201],[-96.061959,41.222205],[-96.057146,41.222209],[-96.053676,41.222212],[-96.052814,41.22221],[-96.05221,41.222221],[-96.051855,41.222233],[-96.051508,41.222251],[-96.051173,41.222282],[-96.050851,41.222315],[-96.050454,41.222397],[-96.050164,41.222461],[-96.049861,41.222533],[-96.04953,41.222618],[-96.048683,41.222845],[-96.048068,41.22301],[-96.047687,41.223113],[-96.047366,41.223202],[-96.046645,41.223394],[-96.046106,41.223527],[-96.045722,41.223614],[-96.04546,41.223668],[-96.045176,41.223718],[-96.044912,41.223755],[-96.044631,41.223787],[-96.044298,41.223803],[-96.044008,41.223807],[-96.043619,41.223812],[-96.042695,41.223807],[-96.041403,41.223803],[-96.040061,41.223781],[-96.038781,41.223773],[-96.037555,41.223763],[-96.035171,41.223759],[-96.033033,41.223752],[-96.031958,41.223748],[-96.030419,41.223743],[-96.029018,41.223735],[-96.026324,41.223723],[-96.025175,41.223715],[-96.024447,41.223714],[-96.023336,41.223706],[-96.021393,41.223696],[-96.020125,41.223673],[-96.0188,41.223664],[-96.018334,41.223662],[-96.015665,41.22365],[-96.0137,41.223643],[-96.012051,41.223641],[-96.010443,41.223636],[-96.008612,41.223626],[-96.006985,41.223617],[-96.006089,41.223612],[-96.005099,41.223608],[-96.004109,41.2236],[-96.003433,41.223592],[-96.002896,41.223581],[-96.002536,41.223568],[-96.001898,41.223536],[-96.001441,41.223508],[-96.001047,41.223476],[-96.00063,41.223434],[-96.000039,41.223363],[-95.99939,41.223282],[-95.998524,41.223171],[-95.997734,41.223072],[-95.997201,41.223002],[-95.996556,41.222917],[-95.995221,41.222744],[-95.994496,41.222654],[-95.994051,41.222606],[-95.9936,41.222567],[-95.993017,41.22253],[-95.992385,41.222496],[-95.99192,41.222484],[-95.991484,41.222477],[-95.990723,41.222474],[-95.989729,41.222471],[-95.989199,41.222464],[-95.986853,41.222467],[-95.984823,41.222469],[-95.984283,41.222475],[-95.983867,41.22249],[-95.98355,41.222513],[-95.98326,41.222546],[-95.982944,41.22259],[-95.982644,41.222645],[-95.982378,41.222698],[-95.981971,41.222798],[-95.981579,41.222906],[-95.98122,41.223015],[-95.980428,41.223253],[-95.979669,41.223477],[-95.978634,41.223788],[-95.978036,41.223964],[-95.977653,41.224065],[-95.977258,41.224165],[-95.976839,41.224264],[-95.976471,41.224345],[-95.976313,41.224377],[-95.975379,41.224552],[-95.974629,41.224675],[-95.973139,41.224898],[-95.972156,41.225067],[-95.970575,41.225324],[-95.96944,41.225513],[-95.966649,41.22598],[-95.963328,41.226541],[-95.962914,41.226618],[-95.962489,41.226699],[-95.962064,41.22678],[-95.961834,41.226818],[-95.958913,41.227307],[-95.958376,41.227384],[-95.9581,41.227413],[-95.95785,41.227431],[-95.95744,41.227443],[-95.956534,41.2274],[-95.955968,41.227307],[-95.955781,41.227267],[-95.955639,41.227236],[-95.955096,41.227069],[-95.954868,41.226993],[-95.953666,41.226577],[-95.953281,41.226449],[-95.952715,41.226262],[-95.952403,41.226182],[-95.952199,41.226133],[-95.951868,41.226071],[-95.951578,41.226034],[-95.951375,41.226009],[-95.95114,41.225984],[-95.950786,41.225974],[-95.950455,41.225969],[-95.950157,41.22596],[-95.947038,41.226061],[-95.945465,41.226094],[-95.945141,41.226107],[-95.943526,41.226169],[-95.943159,41.226189],[-95.942872,41.226226],[-95.942561,41.226269],[-95.941839,41.226411],[-95.94156,41.226483],[-95.941258,41.226574],[-95.940947,41.226678],[-95.940707,41.226767],[-95.939936,41.227054],[-95.939176,41.227338],[-95.937564,41.227957],[-95.937132,41.228108],[-95.936772,41.228255],[-95.936673,41.228297],[-95.93599,41.22859],[-95.934653,41.22913],[-95.934345,41.22925],[-95.934063,41.229351],[-95.933778,41.229442],[-95.93349,41.229521],[-95.933311,41.229558],[-95.9331,41.2296],[-95.932558,41.229728],[-95.932266,41.229775],[-95.93197,41.229813],[-95.931788,41.229832],[-95.927322,41.23025],[-95.926246,41.230402],[-95.925468,41.230504],[-95.924606,41.230607],[-95.924126,41.230649],[-95.92341,41.230727],[-95.922768,41.230772],[-95.921386,41.230884],[-95.916353,41.231279],[-95.910851,41.231656],[-95.90844,41.231802],[-95.907102,41.23188],[-95.905604,41.231977],[-95.904826,41.23202],[-95.904111,41.232059],[-95.903187,41.232111],[-95.903077,41.232116],[-95.901882,41.232168],[-95.898639,41.232382],[-95.895837,41.232563],[-95.895099,41.232596],[-95.894782,41.232603],[-95.894006,41.23261],[-95.891516,41.232568],[-95.890911,41.23254],[-95.889273,41.232481],[-95.88752,41.232423],[-95.88615,41.232383],[-95.885118,41.232338],[-95.882868,41.232281],[-95.881225,41.232227],[-95.879786,41.232181],[-95.879022,41.232167],[-95.877557,41.232155],[-95.876308,41.232146],[-95.874732,41.232141],[-95.873028,41.232123],[-95.871935,41.232123],[-95.870187,41.232112],[-95.865399,41.232087],[-95.864468,41.232082],[-95.859708,41.23207],[-95.858071,41.232046],[-95.852935,41.232017],[-95.85188,41.232014],[-95.85017,41.231998],[-95.849075,41.231982],[-95.848346,41.231969],[-95.847922,41.231961],[-95.847596,41.231946],[-95.847358,41.231924],[-95.84712,41.231905],[-95.846801,41.23186],[-95.846512,41.231807],[-95.846226,41.231748],[-95.845962,41.231684],[-95.845636,41.231601],[-95.845318,41.231499],[-95.845052,41.231405],[-95.844823,41.231316],[-95.8446,41.23122],[-95.84436,41.231105],[-95.844142,41.230988],[-95.84395,41.230884],[-95.843738,41.230757],[-95.842595,41.23005],[-95.842188,41.229789],[-95.84199,41.229685],[-95.841903,41.229639],[-95.841759,41.22957],[-95.84147,41.229444],[-95.841295,41.229375],[-95.841125,41.229315],[-95.840852,41.229227],[-95.840582,41.229152],[-95.840024,41.229029],[-95.839869,41.229002],[-95.839477,41.228951],[-95.839236,41.228924],[-95.83915,41.228915],[-95.838707,41.228904],[-95.838552,41.228904],[-95.838302,41.22891],[-95.838117,41.228919],[-95.837765,41.228949],[-95.837391,41.228991],[-95.83676,41.229126],[-95.836497,41.229196],[-95.836314,41.229252],[-95.835941,41.229403],[-95.835409,41.229669],[-95.83502,41.229844],[-95.834844,41.229919],[-95.833427,41.230657],[-95.832885,41.230949],[-95.832195,41.231301],[-95.831737,41.231514],[-95.830448,41.232166],[-95.829976,41.232414],[-95.829235,41.232787],[-95.828899,41.232979],[-95.828556,41.2332],[-95.828101,41.233539],[-95.827866,41.233743],[-95.827632,41.23397],[-95.827404,41.234219],[-95.827158,41.234522],[-95.82705,41.234673],[-95.8269,41.234903],[-95.826745,41.235201],[-95.826587,41.235518],[-95.82642,41.235911],[-95.826062,41.236806],[-95.825624,41.237846],[-95.825417,41.238337],[-95.825013,41.239333],[-95.824899,41.239568],[-95.824485,41.240572],[-95.8243,41.240987],[-95.824205,41.241175],[-95.824098,41.241363],[-95.824023,41.241491],[-95.823926,41.241638],[-95.823755,41.241877],[-95.823647,41.24201],[-95.82355,41.24212],[-95.823442,41.242234],[-95.823102,41.242572],[-95.822893,41.242746],[-95.822672,41.242918],[-95.822386,41.243108],[-95.82222,41.243216],[-95.822031,41.24333],[-95.821836,41.243438],[-95.821545,41.243586],[-95.821401,41.243655],[-95.820978,41.243837],[-95.820637,41.243966],[-95.820316,41.244081],[-95.820033,41.244174],[-95.818871,41.244599],[-95.818028,41.244941],[-95.817506,41.245156],[-95.817279,41.245257],[-95.817121,41.245333],[-95.816924,41.245434],[-95.816707,41.245554],[-95.816535,41.245657],[-95.816321,41.245792],[-95.816153,41.245907],[-95.815899,41.246097],[-95.815631,41.246314],[-95.815352,41.246558],[-95.814434,41.247362],[-95.813255,41.248394],[-95.812829,41.248773],[-95.812549,41.249039],[-95.81225,41.249344],[-95.811837,41.249807],[-95.811106,41.250721],[-95.809164,41.253141],[-95.808776,41.253627],[-95.808649,41.253795],[-95.803455,41.260237],[-95.80309,41.260694],[-95.802707,41.261192],[-95.801238,41.262992],[-95.800604,41.263767],[-95.800358,41.264049],[-95.799938,41.264503],[-95.79965,41.264796],[-95.799375,41.265061],[-95.799113,41.265302],[-95.798509,41.265829],[-95.798189,41.266091],[-95.797816,41.266377],[-95.797512,41.266603],[-95.793973,41.269157],[-95.791714,41.27079],[-95.791444,41.270992],[-95.791058,41.27129],[-95.790797,41.2715],[-95.790322,41.271907],[-95.790129,41.272083],[-95.789884,41.272315],[-95.789414,41.272778],[-95.789209,41.272992],[-95.788845,41.273387],[-95.788537,41.273749],[-95.788042,41.27438],[-95.787845,41.27465],[-95.787741,41.2748],[-95.787354,41.275382],[-95.786958,41.276006],[-95.78627,41.277033],[-95.785633,41.2781],[-95.784609,41.279728],[-95.784166,41.280417],[-95.782731,41.282693],[-95.782578,41.282934],[-95.782112,41.283615],[-95.781992,41.28379],[-95.780651,41.285984],[-95.778535,41.289332],[-95.77828,41.289734],[-95.775553,41.294049],[-95.772179,41.299383],[-95.771863,41.299862],[-95.771659,41.300153],[-95.771304,41.300625],[-95.771059,41.300931],[-95.77099,41.301012],[-95.768086,41.304415],[-95.764996,41.308024],[-95.762951,41.310411],[-95.761991,41.311531],[-95.760689,41.313048],[-95.760319,41.313459],[-95.75984,41.31396],[-95.759778,41.314025],[-95.759322,41.31447],[-95.756675,41.317015],[-95.755439,41.318201],[-95.755019,41.318606],[-95.75369,41.319883],[-95.745833,41.32743],[-95.745316,41.327925],[-95.744674,41.328527],[-95.743944,41.329176],[-95.740331,41.332284],[-95.740135,41.332453],[-95.739851,41.332697],[-95.73979,41.332755],[-95.735863,41.336122],[-95.735292,41.336609],[-95.731638,41.339756],[-95.731137,41.340166],[-95.730735,41.340467],[-95.730317,41.340755],[-95.729884,41.34103],[-95.729516,41.341246],[-95.729053,41.341497],[-95.728816,41.341617],[-95.728333,41.341846],[-95.728087,41.341955],[-95.727548,41.342176],[-95.72703,41.342367],[-95.726896,41.342412],[-95.726502,41.342542],[-95.725965,41.342701],[-95.725689,41.342775],[-95.725401,41.342845],[-95.724821,41.342971],[-95.724235,41.34308],[-95.721263,41.343568],[-95.711113,41.345235],[-95.710622,41.34533],[-95.710136,41.345438],[-95.709656,41.345559],[-95.709182,41.345693],[-95.708714,41.345841],[-95.708254,41.346],[-95.707802,41.346173],[-95.707358,41.346357],[-95.707273,41.346395],[-95.706924,41.346554],[-95.706534,41.346744],[-95.706117,41.346963],[-95.705711,41.347193],[-95.705316,41.347434],[-95.704933,41.347686],[-95.704562,41.347948],[-95.704204,41.34822],[-95.70386,41.348501],[-95.703421,41.348891],[-95.702402,41.349868],[-95.701758,41.350489],[-95.700436,41.351806],[-95.693104,41.35898],[-95.68934,41.362662],[-95.6874,41.364557],[-95.681659,41.370168],[-95.681398,41.370423],[-95.680137,41.37165],[-95.679767,41.372017],[-95.679151,41.372615],[-95.678782,41.372982],[-95.678479,41.373276],[-95.677275,41.374471],[-95.676125,41.375611],[-95.673917,41.377756],[-95.673198,41.378418],[-95.671411,41.380179],[-95.671134,41.380455],[-95.671063,41.380527],[-95.670734,41.380886],[-95.670192,41.381493],[-95.669804,41.381989],[-95.669631,41.382332],[-95.66947,41.382653],[-95.669307,41.382983],[-95.669187,41.383304],[-95.669081,41.383598],[-95.668887,41.384063],[-95.668764,41.384333],[-95.668622,41.384676],[-95.668527,41.385005],[-95.668447,41.385457],[-95.668334,41.386183],[-95.668156,41.387961],[-95.667957,41.389023],[-95.667836,41.390081],[-95.667772,41.390584],[-95.667738,41.391004],[-95.667704,41.391391],[-95.667653,41.391858],[-95.667584,41.392313],[-95.667516,41.392598],[-95.667429,41.392869],[-95.667284,41.393217],[-95.667111,41.39355],[-95.666936,41.393897],[-95.666739,41.394237],[-95.666522,41.39457],[-95.666305,41.394857],[-95.665998,41.395235],[-95.665672,41.395602],[-95.665326,41.39596],[-95.664962,41.396307],[-95.663619,41.397645],[-95.662696,41.398564],[-95.656914,41.404327],[-95.656133,41.405098],[-95.654795,41.406408],[-95.650774,41.410406],[-95.650053,41.411121],[-95.649134,41.412069],[-95.648353,41.412852],[-95.646437,41.414724],[-95.645376,41.415744],[-95.643922,41.417109],[-95.642991,41.417955],[-95.641382,41.419417],[-95.639513,41.421119],[-95.637849,41.422629],[-95.633053,41.426983],[-95.62875,41.430892],[-95.628443,41.43117],[-95.6258,41.433618],[-95.625419,41.433948],[-95.625022,41.434266],[-95.624817,41.43442],[-95.624394,41.434719],[-95.624,41.434979],[-95.623566,41.435242],[-95.623118,41.435492],[-95.622691,41.435709],[-95.62242,41.435839],[-95.61744,41.438086],[-95.61713,41.438229],[-95.616817,41.438382],[-95.615225,41.439117],[-95.615013,41.439207],[-95.614674,41.439377],[-95.614434,41.439485],[-95.614115,41.439638],[-95.613182,41.440058],[-95.61218,41.440508],[-95.609254,41.441887],[-95.607963,41.442471],[-95.60761,41.442654],[-95.606994,41.443025],[-95.606716,41.443229],[-95.606154,41.443676],[-95.605729,41.444084],[-95.605407,41.444432],[-95.605148,41.444749],[-95.604887,41.445076],[-95.604763,41.445245],[-95.604268,41.446064],[-95.603366,41.447932],[-95.603126,41.448432],[-95.601567,41.451702],[-95.601018,41.452828],[-95.600389,41.454144],[-95.600129,41.454683],[-95.598694,41.457659],[-95.597838,41.45946],[-95.597555,41.460047],[-95.597205,41.460772],[-95.596403,41.46242],[-95.596101,41.463072],[-95.595704,41.463901],[-95.594673,41.466044],[-95.593411,41.468682],[-95.593181,41.469164],[-95.592732,41.470088],[-95.592289,41.471013],[-95.591821,41.472006],[-95.590417,41.47493],[-95.590296,41.47517],[-95.589665,41.476486],[-95.58929,41.477312],[-95.589194,41.477541],[-95.589021,41.478001],[-95.588874,41.478438],[-95.588805,41.478668],[-95.588669,41.479176],[-95.588453,41.480161],[-95.588281,41.480995],[-95.587735,41.483543],[-95.587561,41.484391],[-95.587337,41.485402],[-95.587141,41.486359],[-95.586863,41.487656],[-95.586372,41.489952],[-95.586255,41.490394],[-95.586086,41.490928],[-95.585986,41.491199],[-95.585841,41.491563],[-95.585713,41.491859],[-95.585657,41.491987],[-95.585381,41.492647],[-95.585313,41.49281],[-95.585215,41.493027],[-95.585053,41.493386],[-95.584931,41.493685],[-95.584835,41.493898],[-95.584674,41.494216],[-95.584568,41.494396],[-95.584398,41.494646],[-95.584305,41.494768],[-95.584086,41.495018],[-95.583868,41.495242],[-95.583632,41.495455],[-95.583474,41.495584],[-95.583342,41.495681],[-95.58323,41.495765],[-95.582971,41.495933],[-95.582516,41.496193],[-95.581693,41.496647],[-95.581242,41.496891],[-95.580932,41.497073],[-95.580802,41.497143],[-95.579802,41.497682],[-95.579611,41.497778],[-95.579417,41.49787],[-95.578951,41.498082],[-95.578581,41.498236],[-95.578431,41.498294],[-95.578238,41.498362],[-95.57791,41.49846],[-95.577642,41.498529],[-95.577323,41.498597],[-95.576785,41.498671],[-95.576182,41.498725],[-95.57367,41.498725],[-95.571635,41.4987],[-95.567733,41.498558],[-95.567101,41.498531],[-95.561669,41.498334],[-95.560763,41.498296],[-95.559238,41.498239],[-95.556192,41.498125],[-95.555298,41.498098],[-95.552792,41.497999],[-95.551247,41.497946],[-95.549051,41.497863],[-95.548481,41.497855],[-95.548015,41.497858],[-95.547416,41.497873],[-95.546992,41.49789],[-95.546427,41.497921],[-95.546219,41.497937],[-95.546112,41.497946],[-95.545881,41.497964],[-95.543781,41.498179],[-95.543069,41.498247],[-95.542105,41.498349],[-95.540389,41.498523],[-95.536567,41.498918],[-95.533815,41.499204],[-95.531534,41.499435],[-95.530789,41.499505],[-95.529481,41.499646],[-95.529014,41.499695],[-95.528164,41.499783],[-95.527611,41.499833],[-95.526712,41.49993],[-95.52619,41.499977],[-95.525827,41.500009],[-95.524906,41.500083],[-95.523943,41.500151],[-95.522951,41.500193],[-95.521882,41.500224],[-95.521011,41.500231],[-95.519994,41.500221],[-95.519103,41.500202],[-95.518199,41.500165],[-95.517327,41.500119],[-95.516021,41.500051],[-95.51484,41.499985],[-95.512216,41.499854],[-95.511025,41.499787],[-95.504369,41.499439],[-95.502948,41.499359],[-95.501186,41.499267],[-95.500022,41.499212],[-95.499176,41.499166],[-95.498011,41.499104],[-95.495193,41.498959],[-95.494025,41.49891],[-95.492857,41.498874],[-95.491766,41.49885],[-95.489881,41.498836],[-95.489456,41.498839],[-95.489005,41.498842],[-95.485942,41.498897],[-95.484926,41.498909],[-95.480083,41.498986],[-95.478737,41.499013],[-95.47729,41.499022],[-95.476114,41.499015],[-95.473068,41.498981],[-95.471944,41.498959],[-95.47032,41.498932],[-95.465352,41.498849],[-95.460441,41.498781],[-95.460263,41.498778],[-95.459453,41.498764],[-95.458435,41.498746],[-95.457045,41.498729],[-95.456179,41.498717],[-95.454412,41.498693],[-95.451215,41.498639],[-95.451092,41.498638],[-95.448403,41.498599],[-95.44565,41.498545],[-95.445052,41.498529],[-95.443909,41.498498],[-95.442828,41.498475],[-95.441967,41.498448],[-95.434413,41.498248],[-95.433635,41.498234],[-95.41138,41.497654],[-95.409195,41.497609],[-95.407041,41.497591],[-95.404971,41.497586],[-95.403119,41.497581],[-95.40104,41.497579],[-95.399449,41.49757],[-95.39739,41.497566],[-95.395648,41.497558],[-95.394329,41.49756],[-95.392463,41.497554],[-95.39099,41.497553],[-95.390444,41.497553],[-95.385629,41.497541],[-95.383532,41.497544],[-95.381672,41.497537],[-95.377462,41.497546],[-95.375904,41.497541],[-95.370498,41.497539],[-95.366957,41.497533],[-95.363822,41.497528],[-95.36223,41.497531],[-95.352603,41.497524],[-95.352033,41.497519],[-95.351413,41.497522],[-95.350902,41.497519],[-95.349739,41.497515],[-95.346313,41.497516],[-95.345741,41.497515],[-95.34496,41.49751],[-95.34445,41.497509],[-95.342703,41.49751],[-95.340379,41.497519],[-95.338154,41.49751],[-95.336673,41.497502],[-95.336401,41.497501],[-95.336271,41.4975],[-95.334075,41.4975],[-95.332649,41.497494],[-95.331809,41.497503],[-95.329078,41.497595],[-95.32844,41.4976],[-95.325964,41.497659],[-95.32403,41.497716],[-95.32031,41.497795],[-95.31806,41.497857],[-95.314906,41.497928],[-95.313132,41.497973],[-95.312854,41.497979],[-95.312648,41.497983],[-95.309172,41.498063],[-95.307895,41.498098],[-95.307202,41.498118],[-95.304839,41.498162],[-95.302412,41.498227],[-95.301525,41.498258],[-95.300936,41.498274],[-95.300523,41.498279],[-95.299753,41.498295],[-95.299358,41.498312],[-95.297687,41.49834],[-95.296886,41.498359],[-95.296278,41.49838],[-95.295757,41.498382],[-95.295095,41.498409],[-95.29451,41.498418],[-95.293876,41.49844],[-95.29303,41.498454],[-95.292716,41.498456],[-95.291894,41.498476],[-95.291397,41.498493],[-95.290042,41.498516],[-95.289264,41.49853],[-95.288124,41.49856],[-95.287374,41.498581],[-95.286036,41.498597],[-95.285627,41.498596],[-95.285006,41.498587],[-95.284007,41.498562],[-95.283086,41.498518],[-95.282033,41.49846],[-95.281631,41.498434],[-95.281216,41.498418],[-95.279991,41.498348],[-95.278495,41.498269],[-95.278081,41.498247],[-95.277481,41.498208],[-95.277103,41.498192],[-95.276492,41.498156],[-95.275655,41.498116],[-95.272113,41.497913],[-95.270483,41.497824],[-95.269543,41.497773],[-95.265861,41.497569],[-95.263181,41.497425],[-95.260419,41.497356],[-95.25507,41.497328],[-95.252595,41.49732],[-95.251074,41.497315],[-95.249218,41.497306],[-95.244727,41.497296],[-95.241778,41.497275],[-95.239705,41.497273],[-95.231703,41.497237],[-95.228017,41.497222],[-95.22647,41.497221],[-95.225012,41.497208],[-95.222196,41.497194],[-95.222086,41.497193],[-95.22202,41.497193],[-95.221209,41.497185],[-95.218059,41.497175],[-95.217075,41.497165],[-95.216548,41.497164],[-95.215792,41.497153],[-95.212357,41.49715],[-95.212098,41.497149],[-95.207384,41.497127],[-95.204376,41.497117],[-95.202961,41.497136],[-95.198215,41.497272],[-95.193189,41.497422],[-95.191973,41.49746],[-95.191174,41.497481],[-95.190815,41.497491],[-95.189398,41.497536],[-95.179347,41.49783],[-95.17647,41.497894],[-95.17441,41.497925],[-95.173873,41.497933],[-95.172239,41.497954],[-95.171669,41.497966],[-95.169094,41.498003],[-95.168259,41.498011],[-95.167593,41.498022],[-95.166131,41.498039],[-95.163448,41.498083],[-95.162496,41.498094],[-95.161538,41.498111],[-95.160722,41.498116],[-95.155536,41.498191],[-95.154011,41.498212],[-95.14986,41.498218],[-95.149022,41.498239],[-95.147941,41.498235],[-95.146986,41.498264],[-95.144953,41.498312],[-95.143082,41.498346],[-95.141552,41.49839],[-95.140866,41.498401],[-95.139311,41.498427],[-95.137952,41.498429],[-95.136767,41.498453],[-95.134352,41.498458],[-95.132943,41.498446],[-95.131314,41.498349],[-95.129918,41.498239],[-95.127416,41.49799],[-95.123516,41.497557],[-95.122618,41.497471],[-95.119583,41.497168],[-95.118764,41.497082],[-95.118535,41.497058],[-95.116621,41.496904],[-95.115929,41.496848],[-95.114548,41.496826],[-95.113296,41.496873],[-95.112469,41.496931],[-95.111815,41.496977],[-95.111016,41.497048],[-95.109867,41.49717],[-95.107843,41.497324],[-95.103922,41.497676],[-95.101902,41.497861],[-95.10011,41.498064],[-95.09965,41.4981],[-95.099112,41.498155],[-95.098364,41.498214],[-95.097994,41.498218],[-95.097401,41.498196],[-95.09698,41.498195],[-95.09645,41.498194],[-95.092567,41.497958],[-95.091326,41.49786],[-95.088645,41.497648],[-95.084745,41.497347],[-95.082266,41.497181],[-95.080764,41.497054],[-95.080062,41.496985],[-95.079323,41.49696],[-95.079034,41.49695],[-95.075355,41.496903],[-95.072963,41.496857],[-95.07189,41.496858],[-95.069017,41.496825],[-95.067478,41.496801],[-95.065195,41.496767],[-95.064208,41.496772],[-95.063356,41.496756],[-95.062934,41.49675],[-95.061888,41.496735],[-95.061035,41.496702],[-95.060681,41.496687],[-95.059557,41.496693],[-95.056598,41.496707],[-95.05271,41.496773],[-95.048823,41.496773],[-95.044899,41.496818],[-95.041006,41.496881],[-95.040741,41.496883],[-95.037083,41.496916],[-95.033188,41.496937],[-95.029252,41.496978],[-95.028754,41.49699],[-95.027543,41.497034],[-95.025091,41.497042],[-95.023593,41.497059],[-95.022684,41.49707],[-95.021436,41.497085],[-95.013567,41.497147],[-95.012829,41.497144],[-95.010643,41.497167],[-95.009606,41.497178],[-95.009262,41.497169],[-95.005901,41.497191],[-95.005837,41.497191],[-95.005288,41.49721],[-95.00307,41.497207],[-95.001891,41.497187],[-95.001798,41.497188],[-95.001447,41.497192],[-94.999908,41.497181],[-94.997427,41.497182],[-94.997288,41.497179],[-94.997141,41.497176],[-94.995262,41.497162],[-94.993955,41.497167],[-94.991385,41.497165],[-94.990779,41.497186],[-94.989697,41.49718],[-94.987809,41.497155],[-94.987597,41.497152],[-94.987273,41.497143],[-94.986409,41.497136],[-94.984357,41.497082],[-94.983909,41.497086],[-94.983198,41.497084],[-94.982569,41.497087],[-94.981276,41.497078],[-94.977913,41.497078],[-94.974737,41.497071],[-94.971799,41.497072],[-94.970921,41.497062],[-94.968638,41.497097],[-94.96829,41.497096],[-94.965217,41.497055],[-94.962122,41.497065],[-94.958999,41.497093],[-94.955732,41.497099],[-94.955344,41.497098],[-94.952613,41.497083],[-94.950376,41.497082],[-94.94967,41.497072],[-94.949289,41.497082],[-94.948221,41.497086],[-94.947033,41.497081],[-94.946475,41.497098],[-94.945903,41.4971],[-94.945486,41.497096],[-94.945005,41.497092],[-94.941524,41.49706],[-94.940226,41.49706],[-94.9375,41.497073],[-94.936248,41.49707],[-94.934943,41.497077],[-94.93433,41.49707],[-94.934065,41.497067],[-94.933025,41.497049],[-94.931719,41.497042],[-94.931033,41.497043],[-94.929936,41.497032],[-94.928501,41.49701],[-94.927938,41.496998],[-94.927514,41.496998],[-94.92648,41.497041],[-94.9261,41.497057],[-94.925476,41.497064],[-94.924899,41.497063],[-94.923573,41.497039],[-94.9223,41.497024],[-94.921137,41.496993],[-94.920446,41.497016],[-94.919796,41.49703],[-94.919164,41.497044],[-94.918617,41.49705],[-94.918068,41.497023],[-94.917232,41.497001],[-94.916918,41.496999],[-94.914082,41.497022],[-94.91311,41.49702],[-94.912835,41.497032],[-94.912163,41.497061],[-94.91116,41.497074],[-94.910971,41.497077],[-94.910352,41.497079],[-94.910138,41.49708],[-94.909114,41.497101],[-94.907792,41.497083],[-94.907311,41.497084],[-94.905962,41.49707],[-94.905419,41.497083],[-94.904647,41.49711],[-94.90147,41.497177],[-94.900874,41.497179],[-94.89831,41.497186],[-94.896667,41.49722],[-94.895161,41.497235],[-94.894427,41.497236],[-94.893817,41.497242],[-94.893402,41.497242],[-94.892831,41.497251],[-94.891957,41.497234],[-94.891571,41.497222],[-94.891161,41.497225],[-94.890752,41.497243],[-94.890655,41.497251],[-94.890443,41.497269],[-94.890176,41.497277],[-94.889443,41.497278],[-94.88825,41.497259],[-94.887312,41.497296],[-94.886497,41.497295],[-94.886088,41.497298],[-94.885662,41.497287],[-94.884943,41.497291],[-94.88399,41.497282],[-94.883133,41.49731],[-94.882489,41.497324],[-94.881918,41.497341],[-94.88055,41.497353],[-94.880122,41.497352],[-94.87932,41.497351],[-94.878472,41.497365],[-94.877753,41.497391],[-94.877263,41.497392],[-94.876744,41.497371],[-94.875433,41.497375],[-94.874996,41.497383],[-94.873334,41.49737],[-94.872657,41.497365],[-94.871955,41.497352],[-94.871198,41.497339],[-94.870428,41.497323],[-94.868932,41.497298],[-94.868374,41.497293],[-94.866506,41.497246],[-94.865968,41.497229],[-94.862011,41.497155],[-94.861642,41.497148],[-94.860338,41.497147],[-94.859338,41.497141],[-94.859072,41.49714],[-94.857367,41.497067],[-94.856115,41.497043],[-94.854227,41.496995],[-94.852945,41.496994],[-94.852748,41.496992],[-94.850598,41.496976],[-94.848524,41.49697],[-94.848058,41.496978],[-94.847022,41.496972],[-94.845601,41.496973],[-94.844105,41.496991],[-94.843106,41.496985],[-94.841936,41.496987],[-94.838685,41.496972],[-94.837895,41.496972],[-94.836324,41.496971],[-94.83599,41.496973],[-94.835198,41.496978],[-94.834695,41.496969],[-94.834213,41.496972],[-94.832216,41.496986],[-94.830593,41.496962],[-94.828062,41.496969],[-94.826225,41.496981],[-94.82436,41.496983],[-94.821516,41.496956],[-94.817244,41.49694],[-94.816162,41.496896],[-94.815787,41.496895],[-94.814326,41.496891],[-94.812755,41.496856],[-94.81251,41.496843],[-94.81164,41.496837],[-94.808838,41.496731],[-94.802913,41.496618],[-94.801879,41.496595],[-94.801586,41.496588],[-94.7982,41.496485],[-94.794348,41.496395],[-94.793689,41.496389],[-94.790473,41.496305],[-94.789215,41.496314],[-94.789048,41.496303],[-94.788458,41.496264],[-94.78528,41.496163],[-94.784754,41.496138],[-94.783257,41.496139],[-94.781424,41.496201],[-94.780293,41.496268],[-94.778022,41.496351],[-94.777637,41.496365],[-94.776402,41.49645],[-94.776167,41.496466],[-94.77434,41.496539],[-94.772373,41.496608],[-94.771361,41.496685],[-94.769774,41.49675],[-94.769593,41.496757],[-94.768085,41.496847],[-94.766783,41.496872],[-94.766017,41.496894],[-94.765059,41.496921],[-94.763794,41.496946],[-94.762767,41.496925],[-94.761434,41.496918],[-94.76076,41.496895],[-94.759202,41.496863],[-94.758811,41.496855],[-94.756876,41.496796],[-94.756352,41.496781],[-94.754017,41.496761],[-94.752433,41.496732],[-94.751892,41.496707],[-94.749996,41.496664],[-94.749052,41.496636],[-94.748067,41.496645],[-94.746149,41.496613],[-94.744623,41.496581],[-94.743585,41.496552],[-94.742311,41.49651],[-94.741067,41.496484],[-94.737558,41.496515],[-94.734686,41.496553],[-94.733858,41.49656],[-94.732105,41.496609],[-94.730232,41.496642],[-94.728373,41.49662],[-94.726864,41.496648],[-94.725696,41.496683],[-94.725152,41.496701],[-94.723942,41.496702],[-94.723213,41.496698],[-94.722542,41.496691],[-94.721275,41.496699],[-94.720787,41.496734],[-94.719574,41.496758],[-94.718574,41.496717],[-94.716768,41.496766],[-94.71497,41.496793],[-94.714751,41.496797],[-94.713439,41.496821],[-94.711387,41.496796],[-94.710306,41.496807],[-94.708746,41.496863],[-94.707805,41.49685],[-94.70656,41.496818],[-94.705266,41.496843],[-94.704074,41.496838],[-94.703007,41.496854],[-94.702627,41.496851],[-94.701815,41.496844],[-94.700473,41.496832],[-94.699708,41.496817],[-94.691165,41.496817],[-94.688891,41.496817],[-94.687468,41.49675],[-94.686057,41.496527],[-94.684499,41.496068],[-94.67928,41.49403],[-94.678045,41.493611],[-94.676643,41.49327],[-94.674968,41.493069],[-94.673337,41.493036],[-94.667446,41.493075],[-94.661494,41.493061],[-94.657789,41.493058],[-94.656024,41.493062],[-94.652552,41.493103],[-94.651328,41.493103],[-94.647274,41.493068],[-94.644946,41.49307],[-94.641512,41.49307],[-94.640292,41.49307],[-94.636122,41.493082],[-94.626696,41.493071],[-94.615493,41.493082],[-94.609954,41.493061],[-94.605861,41.493092],[-94.600267,41.493061],[-94.599261,41.493123],[-94.59809,41.493267],[-94.59696,41.493484],[-94.589312,41.494847],[-94.584255,41.495755],[-94.579914,41.496498],[-94.578825,41.496611],[-94.577585,41.496653],[-94.573672,41.496663],[-94.570888,41.496673],[-94.566355,41.496704],[-94.564261,41.496693],[-94.559672,41.496704],[-94.556563,41.496633],[-94.547656,41.496508],[-94.537155,41.496312],[-94.529508,41.496188],[-94.524664,41.496095],[-94.520246,41.496079],[-94.519705,41.496081],[-94.51648,41.496072],[-94.513991,41.496078],[-94.509582,41.496064],[-94.503262,41.496031],[-94.494495,41.496005],[-94.4849,41.495967],[-94.4741,41.495889],[-94.468606,41.495851],[-94.465919,41.495812],[-94.463197,41.495851],[-94.456003,41.495814],[-94.453121,41.495812],[-94.451157,41.495812],[-94.446743,41.495825],[-94.44208,41.495812],[-94.432434,41.495812],[-94.428231,41.495799],[-94.424752,41.495799],[-94.417379,41.495825],[-94.413279,41.495829],[-94.405639,41.495877],[-94.400155,41.495889],[-94.393937,41.495902],[-94.382964,41.495954],[-94.374352,41.495954],[-94.370821,41.495967],[-94.369554,41.49589],[-94.368253,41.495675],[-94.366985,41.495336],[-94.365722,41.494883],[-94.362157,41.493644],[-94.361094,41.493328],[-94.359959,41.4931],[-94.358843,41.492974],[-94.357678,41.492948],[-94.352942,41.492948],[-94.341959,41.49295],[-94.336465,41.492924],[-94.330298,41.492911],[-94.323236,41.492909],[-94.31372,41.49291],[-94.307269,41.492885],[-94.3,41.492873],[-94.29323,41.492898],[-94.285514,41.492911],[-94.278469,41.49295],[-94.270149,41.49295],[-94.262054,41.492963],[-94.258557,41.493002],[-94.253596,41.493002],[-94.251478,41.493015],[-94.249152,41.493066],[-94.24609,41.493165],[-94.241248,41.493333],[-94.240061,41.493373],[-94.236814,41.493463],[-94.230465,41.493703],[-94.225637,41.49385],[-94.224105,41.493936],[-94.223402,41.49403],[-94.222949,41.494108],[-94.222251,41.494274],[-94.221764,41.494407],[-94.221289,41.494557],[-94.22034,41.494932],[-94.219767,41.495196],[-94.219229,41.495474],[-94.218845,41.495716],[-94.218255,41.496101],[-94.217385,41.496759],[-94.215254,41.498435],[-94.212281,41.500801],[-94.21011,41.502488],[-94.208118,41.504087],[-94.206607,41.505296],[-94.202002,41.508846],[-94.199661,41.510691],[-94.196276,41.513357],[-94.193678,41.515425],[-94.193359,41.51568],[-94.192765,41.516072],[-94.191799,41.516599],[-94.191427,41.516773],[-94.190396,41.517157],[-94.189653,41.517374],[-94.188503,41.517615],[-94.186545,41.517761],[-94.186163,41.517763],[-94.185421,41.517756],[-94.180186,41.51776],[-94.177192,41.517767],[-94.173439,41.517757],[-94.171936,41.517753],[-94.169298,41.517742],[-94.168162,41.517739],[-94.167026,41.517733],[-94.165899,41.517727],[-94.163649,41.517719],[-94.155366,41.517677],[-94.154229,41.517668],[-94.152338,41.517654],[-94.150834,41.517643],[-94.144439,41.517633],[-94.1422,41.517638],[-94.141084,41.517614],[-94.140338,41.517598],[-94.138845,41.517583],[-94.137724,41.517576],[-94.136976,41.517573],[-94.13585,41.517566],[-94.129075,41.517532],[-94.12756,41.517524],[-94.127182,41.517523],[-94.123731,41.517506],[-94.123067,41.517503],[-94.122708,41.517502],[-94.121589,41.517501],[-94.119723,41.517495],[-94.118607,41.51749],[-94.117488,41.517489],[-94.116899,41.517486],[-94.115619,41.517482],[-94.111118,41.517464],[-94.102091,41.517449],[-94.100588,41.517449],[-94.099085,41.517449],[-94.094218,41.517441],[-94.093462,41.517444],[-94.091582,41.517543],[-94.090091,41.517752],[-94.089722,41.517809],[-94.088986,41.517926],[-94.086427,41.518317],[-94.08496,41.518544],[-94.083491,41.518767],[-94.08202,41.518992],[-94.081651,41.519047],[-94.081001,41.519147],[-94.079072,41.519445],[-94.072143,41.520517],[-94.071335,41.520642],[-94.06733,41.521376],[-94.066639,41.5216],[-94.064328,41.522557],[-94.063999,41.522697],[-94.061685,41.523675],[-94.06004,41.524376],[-94.058726,41.524935],[-94.05548,41.526314],[-94.054506,41.526731],[-94.050242,41.528543],[-94.046637,41.530078],[-94.039445,41.53315],[-94.033867,41.535525],[-94.032553,41.536087],[-94.031567,41.536502],[-94.027915,41.537928],[-94.025793,41.538489],[-94.022859,41.538975],[-94.01915,41.539385],[-94.018346,41.539473],[-94.013192,41.540039],[-94.012206,41.540148],[-94.008745,41.540529],[-94.005775,41.540853],[-94.003914,41.541063],[-94.000191,41.541471],[-93.999077,41.541595],[-93.991621,41.542402],[-93.990872,41.542487],[-93.98901,41.542695],[-93.988638,41.542735],[-93.986778,41.542935],[-93.986033,41.543017],[-93.985659,41.54306],[-93.985276,41.543101],[-93.983363,41.543307],[-93.98232,41.54342],[-93.980476,41.543623],[-93.978995,41.543786],[-93.977881,41.543906],[-93.976016,41.544112],[-93.973386,41.544398],[-93.971894,41.544562],[-93.970402,41.544725],[-93.968104,41.544983],[-93.966227,41.545189],[-93.962243,41.545728],[-93.960337,41.546176],[-93.95867,41.546568],[-93.957256,41.546918],[-93.955836,41.547271],[-93.954417,41.547624],[-93.954063,41.547713],[-93.952642,41.548065],[-93.951224,41.54842],[-93.949805,41.548773],[-93.948739,41.549036],[-93.947319,41.549389],[-93.946252,41.549655],[-93.945535,41.549822],[-93.940814,41.550779],[-93.939359,41.551069],[-93.934993,41.551973],[-93.931578,41.552648],[-93.928933,41.553162],[-93.92819,41.553292],[-93.927688,41.553387],[-93.926773,41.553562],[-93.926062,41.553705],[-93.92498,41.553922],[-93.92281,41.554353],[-93.918496,41.55521],[-93.917775,41.555351],[-93.914896,41.555923],[-93.912374,41.556423],[-93.909494,41.556997],[-93.90806,41.557281],[-93.905194,41.557849],[-93.89832,41.559231],[-93.895079,41.559884],[-93.890041,41.560857],[-93.886173,41.561623],[-93.883221,41.562209],[-93.882862,41.56228],[-93.878141,41.563096],[-93.875571,41.56347],[-93.874473,41.56363],[-93.873009,41.563848],[-93.871173,41.564118],[-93.870809,41.564172],[-93.868615,41.564492],[-93.866422,41.564817],[-93.864225,41.565141],[-93.86097,41.565722],[-93.860716,41.565799],[-93.859604,41.566146],[-93.858617,41.566529],[-93.858296,41.566667],[-93.857368,41.567125],[-93.856763,41.567443],[-93.855563,41.568092],[-93.854331,41.568706],[-93.85371,41.569008],[-93.850997,41.570452],[-93.848078,41.571922],[-93.846559,41.572667],[-93.841212,41.575486],[-93.837659,41.57729],[-93.832573,41.579864],[-93.827482,41.582496],[-93.82467,41.583922],[-93.821791,41.585403],[-93.818957,41.586896],[-93.818406,41.587173],[-93.81657,41.588102],[-93.814957,41.588929],[-93.811763,41.590567],[-93.811192,41.590856],[-93.810764,41.59104],[-93.81036,41.5912],[-93.809977,41.591334],[-93.809474,41.591491],[-93.808781,41.591675],[-93.808356,41.591755],[-93.807891,41.59184],[-93.80734,41.59192],[-93.806782,41.591973],[-93.806186,41.592005],[-93.80572,41.592022],[-93.804416,41.592033],[-93.802751,41.592043],[-93.801913,41.592015],[-93.798073,41.592056],[-93.797472,41.592057],[-93.790729,41.592066],[-93.78661,41.592072],[-93.78615,41.592077],[-93.784391,41.592085],[-93.779118,41.592104],[-93.778128,41.592091],[-93.777775,41.592094],[-93.776736,41.592103],[-93.775275,41.592116],[-93.768351,41.592137],[-93.763565,41.592146],[-93.760994,41.592152],[-93.759179,41.592154],[-93.753799,41.59217],[-93.752076,41.592171],[-93.751206,41.592176],[-93.746335,41.592184],[-93.745261,41.592205],[-93.74419,41.592202],[-93.743654,41.592213],[-93.743118,41.592233],[-93.742659,41.592272],[-93.742383,41.59229],[-93.738887,41.592568],[-93.73645,41.592752],[-93.735764,41.592805],[-93.734839,41.592882],[-93.733889,41.592949],[-93.732671,41.593046],[-93.731577,41.593136],[-93.730297,41.593233],[-93.729674,41.593266],[-93.728945,41.593284],[-93.728394,41.593293],[-93.727582,41.593281],[-93.727011,41.593276],[-93.724396,41.593282],[-93.722986,41.593274],[-93.72261,41.593286],[-93.721285,41.593277],[-93.718254,41.593256],[-93.715659,41.593267],[-93.714451,41.593281],[-93.713526,41.593288],[-93.712301,41.59328],[-93.711002,41.593243],[-93.710523,41.593248],[-93.709551,41.593218],[-93.708052,41.593218],[-93.707277,41.593195],[-93.706537,41.593157],[-93.703559,41.593014],[-93.699947,41.592821],[-93.699418,41.5928],[-93.699083,41.592784],[-93.698368,41.592742],[-93.69729,41.592671],[-93.694456,41.592527],[-93.692663,41.592425],[-93.690596,41.592308],[-93.688319,41.592203],[-93.687737,41.592177],[-93.683489,41.591951],[-93.68197,41.591726],[-93.679864,41.591337],[-93.679703,41.59131],[-93.679493,41.591275],[-93.678917,41.591216],[-93.678809,41.591199],[-93.677918,41.591218],[-93.675297,41.591208],[-93.67443,41.591205],[-93.673806,41.591229],[-93.673593,41.591254],[-93.673286,41.591299],[-93.672978,41.59136],[-93.672688,41.591436],[-93.672285,41.591568],[-93.671286,41.59192],[-93.670143,41.592401],[-93.66957,41.592634],[-93.66947,41.592665],[-93.668969,41.59282],[-93.668344,41.592959],[-93.667953,41.593019],[-93.667208,41.593081],[-93.666633,41.593089],[-93.665568,41.593078],[-93.664496,41.593065],[-93.663883,41.593063],[-93.659171,41.593003],[-93.657194,41.592998],[-93.655911,41.593031],[-93.654833,41.593064],[-93.654655,41.593094],[-93.654225,41.593164],[-93.653652,41.593276],[-93.652786,41.593493],[-93.652037,41.593722],[-93.650916,41.594143],[-93.65024,41.594401],[-93.648395,41.595081],[-93.648131,41.595164],[-93.647555,41.595344],[-93.646682,41.59554],[-93.645984,41.595638],[-93.645584,41.595692],[-93.644823,41.595751],[-93.643992,41.595774],[-93.642379,41.595793],[-93.642149,41.595794],[-93.641315,41.595803],[-93.636892,41.595875],[-93.635854,41.59589],[-93.634954,41.595916],[-93.634107,41.595905],[-93.631667,41.595841],[-93.63056,41.595784],[-93.629516,41.595715],[-93.627079,41.595677],[-93.625424,41.595681],[-93.624282,41.595679],[-93.622499,41.595681],[-93.620597,41.595648],[-93.61961,41.595616],[-93.619066,41.595577],[-93.618558,41.595542],[-93.617571,41.595505],[-93.617,41.595477],[-93.616309,41.595407],[-93.615431,41.59536],[-93.613822,41.595305],[-93.612621,41.595223],[-93.611982,41.595188],[-93.611671,41.595169],[-93.608549,41.59502],[-93.608467,41.595016],[-93.608356,41.595009],[-93.60645,41.5949],[-93.60592,41.59487],[-93.605501,41.594846],[-93.604431,41.594899],[-93.603759,41.594976],[-93.603026,41.595097],[-93.60263,41.59518],[-93.600742,41.595573],[-93.5987,41.595986],[-93.596637,41.596391],[-93.596573,41.596407],[-93.595959,41.596542],[-93.595251,41.596681],[-93.594329,41.596885],[-93.593794,41.597034],[-93.593242,41.597187],[-93.591468,41.597866],[-93.589814,41.598571],[-93.586158,41.600148],[-93.584715,41.600735],[-93.584204,41.600968],[-93.583185,41.601413],[-93.582271,41.60186],[-93.581959,41.602041],[-93.581661,41.602216],[-93.581539,41.602317],[-93.580959,41.602734],[-93.580699,41.602959],[-93.580446,41.603199],[-93.580214,41.603446],[-93.579866,41.603863],[-93.579736,41.604035],[-93.579479,41.604441],[-93.579225,41.604944],[-93.57909,41.605268],[-93.578911,41.605804],[-93.57885,41.606116],[-93.578808,41.606331],[-93.578773,41.606612],[-93.578746,41.606881],[-93.578726,41.608042],[-93.57871,41.60902],[-93.57872,41.609821],[-93.578686,41.610697],[-93.578627,41.611185],[-93.578138,41.613009],[-93.57746,41.614737],[-93.577263,41.615223],[-93.577149,41.615505],[-93.576884,41.616224],[-93.576694,41.61705],[-93.57641,41.618864],[-93.576345,41.619224],[-93.576144,41.620646],[-93.575934,41.621905],[-93.575839,41.622539],[-93.5756,41.624014],[-93.575183,41.626673],[-93.575014,41.627521],[-93.574926,41.628163],[-93.574911,41.628314],[-93.574872,41.628769],[-93.574883,41.629686],[-93.575046,41.631133],[-93.575095,41.632011],[-93.575392,41.634218],[-93.575518,41.635375],[-93.575547,41.636018],[-93.575572,41.636801],[-93.575577,41.636968],[-93.575573,41.638957],[-93.57557,41.643883],[-93.575569,41.644287],[-93.575566,41.644765],[-93.575534,41.645919],[-93.575422,41.646925],[-93.575374,41.647534],[-93.575271,41.648103],[-93.575178,41.648431],[-93.574993,41.648901],[-93.574805,41.649236],[-93.574614,41.649552],[-93.574177,41.650008],[-93.573369,41.650759],[-93.572768,41.651246],[-93.572088,41.651741],[-93.571498,41.652114],[-93.571078,41.652338],[-93.570823,41.652458],[-93.570592,41.652542],[-93.569992,41.652762],[-93.569536,41.652879],[-93.56925,41.652967],[-93.568704,41.653037],[-93.561289,41.654119],[-93.560216,41.654277],[-93.555303,41.655005],[-93.547333,41.656173],[-93.546281,41.656332],[-93.545463,41.656458],[-93.535073,41.657983],[-93.533736,41.65818],[-93.531068,41.658587],[-93.529458,41.658818],[-93.522409,41.659832],[-93.514495,41.661002],[-93.513623,41.661128],[-93.509662,41.661699],[-93.508987,41.661773],[-93.508234,41.66184],[-93.507495,41.66189],[-93.506755,41.661925],[-93.506057,41.661944],[-93.505434,41.66195],[-93.500904,41.661906],[-93.4999,41.661845],[-93.49657,41.661523],[-93.495702,41.661423],[-93.494753,41.661326],[-93.493599,41.661211],[-93.493515,41.661205],[-93.492936,41.661161],[-93.492109,41.661174],[-93.491287,41.661253],[-93.490493,41.66137],[-93.489337,41.661581],[-93.488895,41.661651],[-93.48773,41.661708],[-93.487277,41.661702],[-93.485574,41.66168],[-93.483983,41.661704],[-93.483601,41.66174],[-93.48352,41.661748],[-93.482388,41.661854],[-93.480605,41.662159],[-93.480245,41.662239],[-93.479313,41.662478],[-93.478533,41.662709],[-93.474793,41.66394],[-93.472552,41.66467],[-93.468859,41.665875],[-93.465977,41.666805],[-93.465034,41.667106],[-93.463878,41.667497],[-93.46092,41.668445],[-93.459219,41.668987],[-93.457069,41.669539],[-93.454009,41.670169],[-93.45247,41.670417],[-93.43885,41.672611],[-93.437103,41.672897],[-93.436413,41.673016],[-93.434993,41.673278],[-93.433378,41.6736],[-93.432509,41.67379],[-93.429569,41.674422],[-93.425816,41.67524],[-93.420117,41.67648],[-93.412751,41.678064],[-93.406407,41.679434],[-93.405231,41.679693],[-93.404396,41.679865],[-93.403936,41.679955],[-93.403381,41.680048],[-93.402926,41.680119],[-93.401831,41.680249],[-93.401321,41.680301],[-93.400916,41.680323],[-93.400001,41.680382],[-93.399326,41.680382],[-93.398176,41.680385],[-93.396677,41.680383],[-93.391253,41.68036],[-93.390053,41.680345],[-93.387108,41.68034],[-93.386916,41.680339],[-93.382008,41.680315],[-93.377901,41.680299],[-93.374842,41.680272],[-93.374,41.680267],[-93.371635,41.680264],[-93.36915,41.680251],[-93.368133,41.680249],[-93.366953,41.680267],[-93.359189,41.680476],[-93.34873,41.680728],[-93.348137,41.680741],[-93.345759,41.680827],[-93.341042,41.680937],[-93.337044,41.681041],[-93.332694,41.681142],[-93.327316,41.681275],[-93.321709,41.681409],[-93.317055,41.681534],[-93.311552,41.681667],[-93.303061,41.681863],[-93.300378,41.681941],[-93.299131,41.682058],[-93.297663,41.682285],[-93.296321,41.682591],[-93.294865,41.683013],[-93.293745,41.683392],[-93.292426,41.683788],[-93.290955,41.684195],[-93.289948,41.684454],[-93.288963,41.684657],[-93.287614,41.68488],[-93.286205,41.685031],[-93.284243,41.685187],[-93.281056,41.685431],[-93.279019,41.685613],[-93.276612,41.68582],[-93.275622,41.685945],[-93.274658,41.686108],[-93.273174,41.686408],[-93.271371,41.68679],[-93.267566,41.687587],[-93.260483,41.68907],[-93.254302,41.690362],[-93.24837,41.691651],[-93.244005,41.692567],[-93.242103,41.692949],[-93.237764,41.693861],[-93.235941,41.694288],[-93.234727,41.694539],[-93.234104,41.694668],[-93.232528,41.695005],[-93.230548,41.695417],[-93.229354,41.695666],[-93.227752,41.695985],[-93.225319,41.696507],[-93.222288,41.697151],[-93.219313,41.697773],[-93.217449,41.698158],[-93.217043,41.698242],[-93.216442,41.69837],[-93.214627,41.698757],[-93.211994,41.699309],[-93.210923,41.699478],[-93.210339,41.699554],[-93.209477,41.699635],[-93.208505,41.699688],[-93.207732,41.699697],[-93.206923,41.699683],[-93.205861,41.699614],[-93.204409,41.699443],[-93.203662,41.69931],[-93.202732,41.69911],[-93.201995,41.698934],[-93.201143,41.698672],[-93.200602,41.698477],[-93.198637,41.697719],[-93.1976,41.697317],[-93.196833,41.697035],[-93.194623,41.696189],[-93.193607,41.695792],[-93.192554,41.695381],[-93.189749,41.694296],[-93.185308,41.692603],[-93.184354,41.692223],[-93.183903,41.692043],[-93.183835,41.692016],[-93.1809,41.690883],[-93.179185,41.690223],[-93.178853,41.690096],[-93.177348,41.689508],[-93.176597,41.689219],[-93.175501,41.68879],[-93.174365,41.688352],[-93.171909,41.687404],[-93.170856,41.686992],[-93.169642,41.686559],[-93.169364,41.686472],[-93.168743,41.6863],[-93.168285,41.686171],[-93.167443,41.685963],[-93.166323,41.685732],[-93.164741,41.685497],[-93.158374,41.684655],[-93.157816,41.684565],[-93.157039,41.684415],[-93.156597,41.684348],[-93.154572,41.684115],[-93.1535,41.684018],[-93.152744,41.683971],[-93.151106,41.683901],[-93.150883,41.683891],[-93.150625,41.683876],[-93.15007,41.683817],[-93.149076,41.683693],[-93.148198,41.683619],[-93.146917,41.683525],[-93.146318,41.683491],[-93.145645,41.683409],[-93.14504,41.683358],[-93.144341,41.68332],[-93.14361,41.683246],[-93.143127,41.683203],[-93.141944,41.683082],[-93.141355,41.68303],[-93.140714,41.682973],[-93.139678,41.682904],[-93.139449,41.682891],[-93.138223,41.682822],[-93.137409,41.682755],[-93.136483,41.682679],[-93.134481,41.682471],[-93.132635,41.682304],[-93.130549,41.682172],[-93.129171,41.682036],[-93.127815,41.681947],[-93.126773,41.681863],[-93.126355,41.68183],[-93.124609,41.68167],[-93.121808,41.68146],[-93.121098,41.681437],[-93.120036,41.681391],[-93.117148,41.68129],[-93.11701,41.681287],[-93.115294,41.681247],[-93.114497,41.681229],[-93.11144,41.681141],[-93.108601,41.681071],[-93.106652,41.681],[-93.102609,41.680881],[-93.100775,41.680837],[-93.100103,41.680813],[-93.098584,41.680758],[-93.097355,41.680763],[-93.096071,41.680828],[-93.094709,41.680951],[-93.094148,41.681034],[-93.09189,41.681389],[-93.085814,41.682272],[-93.085236,41.682357],[-93.084504,41.682467],[-93.083611,41.682576],[-93.081312,41.682891],[-93.079389,41.683113],[-93.077921,41.68328],[-93.077021,41.683379],[-93.076673,41.683416],[-93.075948,41.683502],[-93.07474,41.683625],[-93.07396,41.683652],[-93.07227,41.68368],[-93.071475,41.68368],[-93.069806,41.683681],[-93.065412,41.683675],[-93.059091,41.683656],[-93.058384,41.683654],[-93.057507,41.683653],[-93.05488,41.683649],[-93.052537,41.683636],[-93.051572,41.683636],[-93.051261,41.68364],[-93.051012,41.683644],[-93.050208,41.683629],[-93.049282,41.68359],[-93.048916,41.683579],[-93.04835,41.683561],[-93.047469,41.683512],[-93.045057,41.6834],[-93.044582,41.68337],[-93.043827,41.68334],[-93.042339,41.68327],[-93.040375,41.683183],[-93.040068,41.683171],[-93.039215,41.683125],[-93.038737,41.683105],[-93.038273,41.683088],[-93.036725,41.683016],[-93.03507,41.682937],[-93.034404,41.682914],[-93.033742,41.6829],[-93.033418,41.682897],[-93.032128,41.682885],[-93.026179,41.682876],[-93.023966,41.682871],[-93.020762,41.682882],[-93.018103,41.682857],[-93.016056,41.682852],[-93.014991,41.682862],[-93.014067,41.682877],[-93.013724,41.682876],[-93.013126,41.682875],[-93.012874,41.682875],[-93.012124,41.68287],[-93.011082,41.682855],[-93.009657,41.682828],[-93.008775,41.682808],[-93.007964,41.682776],[-93.007539,41.682759],[-93.007107,41.682742],[-93.00585,41.682694],[-93.003955,41.682626],[-93.000194,41.682474],[-92.999546,41.682455],[-92.997832,41.682387],[-92.995314,41.68229],[-92.993669,41.682206],[-92.993182,41.682188],[-92.991879,41.682152],[-92.985905,41.681906],[-92.984806,41.681862],[-92.983391,41.681814],[-92.982686,41.681782],[-92.980477,41.681691],[-92.978033,41.681591],[-92.976047,41.681528],[-92.975361,41.6815],[-92.971764,41.681351],[-92.970935,41.681313],[-92.968768,41.681236],[-92.966445,41.681129],[-92.96435,41.681009],[-92.962399,41.680914],[-92.960961,41.680839],[-92.959421,41.680751],[-92.958599,41.680696],[-92.957215,41.680623],[-92.956342,41.680569],[-92.954686,41.680487],[-92.953614,41.680426],[-92.952153,41.680349],[-92.951439,41.680311],[-92.949224,41.680186],[-92.947022,41.680071],[-92.944576,41.679928],[-92.942793,41.679849],[-92.942447,41.679834],[-92.941601,41.679838],[-92.940974,41.679855],[-92.940698,41.679867],[-92.939697,41.67991],[-92.939004,41.679975],[-92.938391,41.680021],[-92.933727,41.680336],[-92.932991,41.680382],[-92.929923,41.680599],[-92.924817,41.680932],[-92.923037,41.681061],[-92.919763,41.681272],[-92.91838,41.681373],[-92.917424,41.681425],[-92.915936,41.681536],[-92.915083,41.681599],[-92.912502,41.681761],[-92.91131,41.681852],[-92.910137,41.681929],[-92.905665,41.682228],[-92.903671,41.68234],[-92.903208,41.682377],[-92.902596,41.682414],[-92.902214,41.682434],[-92.900812,41.682566],[-92.899122,41.682664],[-92.896191,41.682874],[-92.895839,41.682877],[-92.894255,41.68303],[-92.893403,41.683133],[-92.893129,41.683174],[-92.892701,41.683266],[-92.891829,41.683465],[-92.891005,41.683702],[-92.889617,41.68419],[-92.888558,41.684576],[-92.88791,41.684808],[-92.886816,41.685208],[-92.885666,41.685611],[-92.88495,41.685872],[-92.88382,41.686254],[-92.883468,41.686383],[-92.882864,41.686603],[-92.882531,41.686725],[-92.881012,41.687265],[-92.880318,41.68751],[-92.879294,41.687885],[-92.878448,41.688194],[-92.875357,41.6893],[-92.873419,41.689989],[-92.869232,41.691489],[-92.867823,41.691972],[-92.864973,41.693028],[-92.864081,41.693352],[-92.862891,41.693761],[-92.861501,41.694261],[-92.860652,41.694518],[-92.860134,41.694656],[-92.85962,41.694759],[-92.85923,41.694813],[-92.858516,41.6949],[-92.858162,41.694919],[-92.857952,41.694938],[-92.857193,41.694956],[-92.855766,41.694962],[-92.854709,41.69498],[-92.852833,41.694986],[-92.850999,41.694976],[-92.849298,41.695009],[-92.84808,41.695015],[-92.846559,41.694997],[-92.844724,41.695003],[-92.844507,41.694999],[-92.84441,41.694991],[-92.844174,41.694983],[-92.843956,41.694992],[-92.843414,41.695016],[-92.842485,41.695019],[-92.841338,41.695014],[-92.83957,41.695038],[-92.837655,41.695055],[-92.834669,41.695066],[-92.832778,41.695083],[-92.83138,41.695061],[-92.830225,41.695075],[-92.829325,41.695081],[-92.828653,41.695096],[-92.826264,41.695096],[-92.825557,41.695117],[-92.824796,41.695106],[-92.824087,41.69509],[-92.823423,41.69508],[-92.822765,41.695091],[-92.821531,41.695111],[-92.820337,41.695109],[-92.819486,41.695117],[-92.818984,41.695107],[-92.816265,41.695151],[-92.814938,41.695154],[-92.814063,41.695164],[-92.813021,41.695147],[-92.812251,41.695145],[-92.812072,41.695145],[-92.810788,41.695154],[-92.809903,41.695174],[-92.806761,41.695201],[-92.805492,41.695204],[-92.805149,41.695199],[-92.803859,41.69518],[-92.803239,41.695188],[-92.803128,41.695189],[-92.800816,41.695217],[-92.79844,41.695219],[-92.796491,41.695229],[-92.793944,41.695242],[-92.791505,41.695255],[-92.789849,41.695247],[-92.787634,41.695237],[-92.784846,41.695259],[-92.782174,41.695259],[-92.781794,41.695266],[-92.780712,41.695287],[-92.780433,41.695293],[-92.776592,41.695296],[-92.774129,41.695303],[-92.772665,41.695306],[-92.768483,41.695339],[-92.765708,41.695317],[-92.763679,41.695286],[-92.762519,41.695264],[-92.762242,41.695263],[-92.761563,41.695248],[-92.760912,41.695252],[-92.757154,41.695196],[-92.753332,41.695146],[-92.752511,41.695116],[-92.749886,41.695088],[-92.749408,41.695072],[-92.748703,41.695058],[-92.747629,41.69506],[-92.747053,41.695065],[-92.746458,41.695077],[-92.74537,41.695129],[-92.742977,41.695259],[-92.740908,41.695392],[-92.736722,41.69564],[-92.734405,41.695785],[-92.731339,41.695972],[-92.729129,41.696091],[-92.728399,41.696124],[-92.727936,41.696139],[-92.727399,41.696152],[-92.7268,41.696146],[-92.726197,41.696131],[-92.725662,41.696105],[-92.72198,41.695861],[-92.72131,41.695822],[-92.721015,41.695802],[-92.720763,41.695786],[-92.719276,41.695688],[-92.719204,41.695683],[-92.718842,41.69566],[-92.709646,41.695063],[-92.708282,41.694996],[-92.707782,41.694987],[-92.706818,41.694969],[-92.700502,41.695123],[-92.698906,41.695157],[-92.694582,41.695266],[-92.693208,41.695281],[-92.691718,41.695285],[-92.690444,41.69529],[-92.688229,41.695294],[-92.685671,41.695341],[-92.67631,41.695414],[-92.671586,41.695447],[-92.669297,41.695476],[-92.669064,41.695478],[-92.665498,41.695514],[-92.664945,41.69552],[-92.657103,41.69562],[-92.650146,41.695704],[-92.64965,41.695705],[-92.646718,41.69571],[-92.64612,41.695707],[-92.645617,41.695705],[-92.644321,41.695715],[-92.641958,41.695719],[-92.639764,41.695717],[-92.630579,41.69574],[-92.629272,41.695751],[-92.624261,41.695714],[-92.622386,41.695712],[-92.619191,41.695693],[-92.619079,41.695692],[-92.616425,41.695684],[-92.597968,41.695708],[-92.596047,41.695706],[-92.591953,41.695716],[-92.58266,41.695716],[-92.581337,41.695721],[-92.579887,41.695735],[-92.578438,41.69578],[-92.571883,41.696071],[-92.563207,41.696457],[-92.561396,41.696495],[-92.561277,41.696498],[-92.559673,41.696508],[-92.559107,41.696502],[-92.552829,41.696423],[-92.551851,41.696409],[-92.545741,41.696354],[-92.543783,41.696334],[-92.543351,41.696331],[-92.540763,41.696311],[-92.53799,41.696282],[-92.53507,41.69625],[-92.533349,41.696224],[-92.533024,41.696221],[-92.532694,41.69621],[-92.532586,41.696207],[-92.5319,41.696185],[-92.528229,41.695955],[-92.523437,41.695644],[-92.511572,41.694875],[-92.508133,41.694652],[-92.506699,41.694569],[-92.505975,41.694531],[-92.505698,41.694522],[-92.504906,41.694504],[-92.503328,41.694492],[-92.499396,41.694541],[-92.497173,41.694565],[-92.492641,41.694624],[-92.490298,41.694647],[-92.488183,41.694676],[-92.485774,41.694701],[-92.482553,41.694746],[-92.481582,41.694759],[-92.47687,41.694803],[-92.474526,41.694834],[-92.474217,41.694841],[-92.473424,41.69486],[-92.469199,41.694902],[-92.456346,41.695063],[-92.455752,41.695073],[-92.455196,41.69509],[-92.454641,41.695114],[-92.454086,41.695145],[-92.453531,41.695184],[-92.452978,41.695229],[-92.452575,41.69526],[-92.450417,41.695423],[-92.447711,41.695618],[-92.445522,41.695802],[-92.444789,41.695858],[-92.443975,41.695905],[-92.443456,41.695938],[-92.442761,41.695971],[-92.44213,41.69599],[-92.441503,41.696004],[-92.440925,41.695997],[-92.438657,41.696011],[-92.437411,41.696019],[-92.436561,41.69602],[-92.419619,41.696059],[-92.419215,41.696064],[-92.417851,41.696062],[-92.41633,41.696075],[-92.415514,41.696072],[-92.413766,41.696077],[-92.412296,41.696072],[-92.405925,41.696076],[-92.404285,41.69608],[-92.399482,41.69608],[-92.396778,41.696107],[-92.394467,41.696071],[-92.392977,41.69605],[-92.387529,41.695927],[-92.386574,41.695912],[-92.380128,41.695777],[-92.377325,41.695709],[-92.3769,41.69569],[-92.375132,41.695658],[-92.373677,41.695618],[-92.371858,41.695585],[-92.370445,41.695574],[-92.369212,41.695555],[-92.367896,41.69555],[-92.360922,41.695523],[-92.35812,41.695487],[-92.357325,41.695478],[-92.356895,41.695493],[-92.355967,41.695495],[-92.353184,41.695486],[-92.350819,41.695467],[-92.347664,41.695452],[-92.345444,41.695446],[-92.341679,41.695435],[-92.338584,41.695412],[-92.335308,41.695417],[-92.333254,41.695434],[-92.332121,41.695438],[-92.328212,41.695485],[-92.327697,41.695491],[-92.324146,41.695514],[-92.322558,41.695531],[-92.319368,41.695558],[-92.312974,41.695596],[-92.306523,41.695658],[-92.303335,41.695673],[-92.300496,41.695681],[-92.299792,41.695683],[-92.296348,41.695733],[-92.29458,41.695757],[-92.29291,41.695781],[-92.291657,41.695798],[-92.290191,41.695822],[-92.28716,41.695868],[-92.284992,41.695901],[-92.283154,41.695915],[-92.280527,41.695953],[-92.279827,41.69596],[-92.27935,41.695971],[-92.277966,41.695998],[-92.276403,41.696022],[-92.271728,41.696079],[-92.269909,41.696098],[-92.262502,41.696211],[-92.261726,41.696212],[-92.260915,41.696206],[-92.260367,41.6962],[-92.258455,41.696179],[-92.255334,41.696091],[-92.254148,41.696044],[-92.250762,41.695946],[-92.250002,41.695924],[-92.249146,41.695909],[-92.243964,41.695733],[-92.242161,41.695682],[-92.240481,41.695658],[-92.239856,41.695649],[-92.238954,41.695658],[-92.236774,41.695664],[-92.232843,41.695692],[-92.231327,41.695692],[-92.22789,41.695709],[-92.224235,41.695726],[-92.221922,41.695735],[-92.220095,41.695763],[-92.217913,41.695761],[-92.215346,41.695775],[-92.214132,41.695783],[-92.208803,41.695812],[-92.203463,41.695855],[-92.19895,41.695932],[-92.195427,41.695959],[-92.193871,41.695992],[-92.193422,41.695999],[-92.191254,41.69603],[-92.189507,41.696032],[-92.188138,41.696055],[-92.187498,41.696074],[-92.183135,41.696102],[-92.182331,41.696107],[-92.181089,41.696103],[-92.177931,41.696044],[-92.173451,41.69601],[-92.172781,41.695995],[-92.172218,41.695983],[-92.169129,41.695958],[-92.165686,41.695919],[-92.162739,41.695887],[-92.162323,41.69588],[-92.160719,41.695874],[-92.158548,41.695845],[-92.155388,41.695815],[-92.154241,41.695792],[-92.153233,41.69578],[-92.149593,41.695746],[-92.147786,41.695729],[-92.146929,41.695719],[-92.14604,41.695698],[-92.145632,41.695683],[-92.145255,41.695663],[-92.144952,41.695646],[-92.144443,41.69561],[-92.143298,41.69551],[-92.139622,41.695188],[-92.138513,41.695084],[-92.138131,41.695052],[-92.137306,41.694983],[-92.136096,41.694886],[-92.135215,41.694801],[-92.1338,41.694671],[-92.13289,41.694593],[-92.132046,41.694518],[-92.13084,41.694407],[-92.12969,41.694308],[-92.128655,41.694217],[-92.127507,41.694123],[-92.126128,41.693998],[-92.125128,41.693915],[-92.124716,41.693878],[-92.122923,41.693716],[-92.121696,41.693609],[-92.120953,41.693542],[-92.119681,41.693431],[-92.118976,41.69337],[-92.117927,41.693271],[-92.116767,41.693174],[-92.116359,41.693141],[-92.115371,41.693047],[-92.11337,41.692866],[-92.112763,41.692813],[-92.112019,41.692748],[-92.111071,41.692663],[-92.110162,41.692588],[-92.10929,41.692501],[-92.108706,41.692453],[-92.107949,41.692393],[-92.104845,41.692118],[-92.101663,41.691829],[-92.100382,41.691715],[-92.099008,41.691596],[-92.097687,41.691475],[-92.095259,41.691263],[-92.092781,41.691043],[-92.090649,41.690858],[-92.089539,41.69076],[-92.088019,41.690624],[-92.085697,41.690416],[-92.085122,41.690366],[-92.084339,41.690299],[-92.083641,41.690231],[-92.081545,41.690047],[-92.077256,41.689664],[-92.075887,41.689539],[-92.07508,41.689471],[-92.072715,41.689261],[-92.070427,41.689061],[-92.067472,41.688789],[-92.063358,41.688424],[-92.06279,41.688376],[-92.062226,41.688329],[-92.061184,41.688236],[-92.059902,41.688125],[-92.058281,41.687975],[-92.057104,41.687871],[-92.055942,41.687769],[-92.054575,41.687647],[-92.054186,41.687611],[-92.052569,41.687469],[-92.050952,41.687325],[-92.050004,41.68724],[-92.049029,41.687168],[-92.048364,41.687135],[-92.047666,41.687113],[-92.046256,41.687101],[-92.038089,41.687081],[-92.034166,41.687071],[-92.030182,41.687062],[-92.026248,41.687049],[-92.022754,41.687042],[-92.022328,41.687041],[-92.020938,41.687035],[-92.018474,41.687028],[-92.017192,41.687029],[-92.016009,41.687022],[-92.015703,41.687023],[-92.010889,41.68701],[-92.00899,41.687012],[-92.008622,41.687008],[-92.007736,41.687005],[-92.006644,41.687002],[-92.004361,41.686994],[-92.002113,41.686989],[-91.999749,41.686984],[-91.997346,41.686976],[-91.996877,41.686971],[-91.994777,41.686961],[-91.992145,41.686952],[-91.990765,41.686952],[-91.989392,41.686949],[-91.988118,41.686948],[-91.983167,41.686929],[-91.980355,41.686921],[-91.978286,41.686916],[-91.97644,41.686911],[-91.970176,41.686892],[-91.96802,41.686886],[-91.962098,41.686869],[-91.959484,41.686855],[-91.956927,41.686856],[-91.956159,41.686877],[-91.95533,41.686903],[-91.952661,41.687053],[-91.949803,41.687228],[-91.947278,41.687373],[-91.944792,41.687522],[-91.943243,41.687624],[-91.940568,41.68777],[-91.93986,41.687818],[-91.938973,41.687852],[-91.938289,41.687871],[-91.937475,41.687876],[-91.935432,41.687851],[-91.932929,41.687823],[-91.930462,41.687789],[-91.925695,41.687732],[-91.920279,41.687664],[-91.918156,41.687631],[-91.915367,41.687596],[-91.9128,41.687565],[-91.912145,41.687554],[-91.91009,41.687529],[-91.907015,41.687486],[-91.903913,41.687453],[-91.903474,41.687445],[-91.901485,41.687415],[-91.897885,41.687369],[-91.892222,41.687293],[-91.891961,41.687289],[-91.89181,41.687286],[-91.890889,41.687274],[-91.889976,41.687265],[-91.889034,41.687245],[-91.88807,41.687229],[-91.886158,41.687213],[-91.884432,41.687186],[-91.882708,41.687165],[-91.878231,41.687149],[-91.875521,41.687148],[-91.874519,41.687149],[-91.873521,41.687149],[-91.871126,41.687148],[-91.866038,41.68714],[-91.865042,41.687141],[-91.864223,41.68715],[-91.861816,41.687145],[-91.858623,41.687142],[-91.856746,41.687144],[-91.85557,41.687138],[-91.854279,41.687137],[-91.851837,41.68715],[-91.851126,41.687146],[-91.850152,41.687146],[-91.847142,41.687158],[-91.841394,41.687148],[-91.835686,41.687157],[-91.834156,41.687184],[-91.828458,41.687287],[-91.827136,41.687311],[-91.822014,41.687404],[-91.818604,41.687469],[-91.818434,41.687469],[-91.818123,41.687478],[-91.813425,41.687563],[-91.812943,41.687571],[-91.812803,41.687576],[-91.810141,41.687621],[-91.808867,41.687645],[-91.807245,41.687668],[-91.806156,41.687672],[-91.804503,41.687662],[-91.804417,41.68766],[-91.803672,41.687651],[-91.803362,41.687648],[-91.802662,41.687641],[-91.802214,41.687637],[-91.79713,41.687576],[-91.796741,41.687572],[-91.79478,41.687552],[-91.793028,41.687532],[-91.789188,41.687489],[-91.785238,41.687445],[-91.785074,41.687446],[-91.784571,41.687437],[-91.78125,41.687404],[-91.780617,41.687414],[-91.780043,41.687438],[-91.779611,41.687467],[-91.779156,41.687508],[-91.779009,41.687521],[-91.778404,41.687591],[-91.777935,41.687658],[-91.777422,41.687744],[-91.775541,41.688085],[-91.77306,41.688533],[-91.772222,41.688688],[-91.768799,41.689309],[-91.756753,41.691495],[-91.75445,41.691911],[-91.74398,41.69381],[-91.740698,41.694402],[-91.740023,41.694508],[-91.739412,41.694586],[-91.738613,41.694663],[-91.737915,41.694703],[-91.737624,41.694715],[-91.724036,41.695033],[-91.718678,41.695158],[-91.717622,41.695171],[-91.716712,41.695167],[-91.716284,41.695159],[-91.715758,41.695149],[-91.69927,41.694708],[-91.692332,41.694524],[-91.689369,41.694444],[-91.68746,41.694392],[-91.67995,41.694187],[-91.678373,41.694146],[-91.672983,41.694],[-91.672657,41.693991],[-91.667597,41.693853],[-91.665776,41.693804],[-91.662825,41.693725],[-91.662062,41.693722],[-91.661193,41.693736],[-91.659331,41.693792],[-91.659103,41.693801],[-91.65896,41.693803],[-91.652071,41.694016],[-91.647286,41.694164],[-91.646562,41.694186],[-91.64633,41.694192],[-91.645441,41.694221],[-91.644433,41.694246],[-91.643114,41.694267],[-91.642335,41.69427],[-91.641311,41.694268],[-91.63923,41.694269],[-91.638176,41.694269],[-91.637919,41.694269],[-91.635554,41.694272],[-91.632871,41.694283],[-91.632064,41.694282],[-91.630601,41.694281],[-91.629028,41.694269],[-91.627782,41.694253],[-91.627121,41.694247],[-91.625989,41.694236],[-91.62198,41.69416],[-91.621618,41.694156],[-91.618951,41.694098],[-91.61853,41.694091],[-91.616556,41.694051],[-91.613139,41.693988],[-91.60916,41.693907],[-91.608978,41.693903],[-91.608062,41.693885],[-91.604444,41.693814],[-91.603707,41.6938],[-91.602654,41.693772],[-91.601982,41.69374],[-91.601282,41.693684],[-91.600599,41.693617],[-91.599905,41.693529],[-91.599351,41.693446],[-91.598588,41.693315],[-91.598531,41.693303],[-91.597951,41.693184],[-91.597591,41.693106],[-91.596142,41.692737],[-91.594672,41.692346],[-91.592866,41.691876],[-91.587758,41.690529],[-91.584208,41.689597],[-91.582258,41.689086],[-91.581894,41.68899],[-91.58178,41.68896],[-91.581554,41.6889],[-91.581208,41.688807],[-91.580274,41.688559],[-91.579725,41.688413],[-91.574802,41.687129],[-91.573509,41.686823],[-91.572568,41.686625],[-91.571262,41.686374],[-91.571083,41.686343],[-91.569884,41.686145],[-91.56863,41.685969],[-91.566855,41.68577],[-91.565662,41.685666],[-91.565069,41.685625],[-91.564987,41.685621],[-91.564387,41.685589],[-91.563959,41.685567],[-91.563143,41.685537],[-91.562338,41.685518],[-91.559985,41.685499],[-91.558058,41.685485],[-91.556166,41.685469],[-91.552473,41.685468],[-91.549651,41.685436],[-91.54889,41.685444],[-91.54845,41.68546],[-91.547903,41.685492],[-91.54734,41.685543],[-91.54684,41.685597],[-91.546373,41.685657],[-91.540221,41.686518],[-91.539358,41.686633],[-91.536254,41.687086],[-91.535383,41.687203],[-91.534761,41.687276],[-91.534279,41.687332],[-91.533826,41.687383],[-91.533333,41.687415],[-91.531614,41.687442],[-91.525018,41.687279],[-91.523795,41.687263],[-91.522183,41.687225],[-91.521531,41.687207],[-91.521091,41.687199],[-91.51872,41.687119],[-91.51421,41.687009],[-91.510895,41.686932],[-91.508105,41.686875],[-91.506426,41.686846],[-91.502005,41.686742],[-91.50028,41.686704],[-91.498262,41.686663],[-91.496329,41.686614],[-91.493228,41.68655],[-91.491792,41.68651],[-91.489838,41.68647],[-91.489154,41.686439],[-91.488445,41.686382],[-91.487671,41.68631],[-91.486974,41.686214],[-91.486223,41.686093],[-91.485632,41.685989],[-91.485107,41.685877],[-91.484366,41.685701],[-91.483605,41.6855],[-91.482871,41.685278],[-91.482489,41.685156],[-91.481884,41.68495],[-91.47907,41.683923],[-91.477472,41.683331],[-91.475024,41.682428],[-91.470988,41.680918],[-91.463065,41.677995],[-91.4591,41.676526],[-91.456465,41.675554],[-91.453628,41.674507],[-91.451096,41.673576],[-91.448822,41.672735],[-91.448017,41.672439],[-91.443292,41.670718],[-91.442895,41.670566],[-91.441707,41.670117],[-91.440567,41.6697],[-91.439734,41.669394],[-91.439112,41.669169],[-91.43877,41.669054],[-91.438464,41.668959],[-91.438147,41.668856],[-91.437835,41.66876],[-91.437535,41.66868],[-91.43687,41.668504],[-91.436343,41.66838],[-91.4358,41.668256],[-91.435067,41.668111],[-91.434145,41.667967],[-91.43378,41.667919],[-91.433168,41.667839],[-91.432718,41.667799],[-91.431634,41.667719],[-91.430164,41.667678],[-91.429671,41.667662],[-91.425251,41.667526],[-91.424463,41.667521],[-91.421356,41.667438],[-91.420559,41.667415],[-91.416792,41.667304],[-91.416238,41.667286],[-91.410616,41.667133],[-91.40728,41.667037],[-91.397538,41.666773],[-91.395821,41.666733],[-91.394958,41.666727],[-91.394331,41.666727],[-91.393676,41.666741],[-91.393188,41.666759],[-91.392631,41.666799],[-91.391719,41.666855],[-91.391139,41.666903],[-91.390313,41.666984],[-91.385704,41.667358],[-91.380894,41.667747],[-91.380339,41.667803],[-91.379834,41.66785],[-91.379166,41.667881],[-91.378795,41.667903],[-91.378333,41.667911],[-91.377947,41.667911],[-91.377357,41.667903],[-91.376842,41.667887],[-91.376434,41.667863],[-91.375743,41.667817],[-91.375072,41.667751],[-91.374673,41.667706],[-91.374248,41.667659],[-91.373798,41.667602],[-91.373327,41.667519],[-91.372793,41.66742],[-91.372143,41.667294],[-91.368544,41.666495],[-91.366323,41.665993],[-91.364019,41.665478],[-91.363232,41.665318],[-91.359498,41.664495],[-91.35839,41.664267],[-91.357376,41.664103],[-91.356136,41.663958],[-91.355244,41.66389],[-91.35402,41.663846],[-91.352194,41.663848],[-91.351245,41.663857],[-91.350574,41.663863],[-91.348799,41.66389],[-91.347721,41.6639],[-91.345503,41.663921],[-91.344894,41.663926],[-91.342786,41.663953],[-91.340489,41.663974],[-91.337569,41.664014],[-91.337237,41.66402],[-91.336882,41.664024],[-91.335481,41.664044],[-91.334043,41.664049],[-91.329546,41.664063],[-91.32799,41.664024],[-91.326199,41.663945],[-91.323527,41.663777],[-91.312446,41.66308],[-91.310431,41.662939],[-91.309152,41.662868],[-91.308472,41.662848],[-91.30822,41.66284],[-91.30703,41.662816],[-91.306262,41.662829],[-91.304261,41.662863],[-91.303022,41.662898],[-91.302136,41.662914],[-91.296252,41.663081],[-91.291892,41.663216],[-91.290005,41.663255],[-91.288821,41.663305],[-91.288301,41.663318],[-91.287436,41.66334],[-91.285618,41.663386],[-91.284594,41.6634],[-91.28368,41.663421],[-91.283228,41.663427],[-91.282532,41.663436],[-91.281665,41.663441],[-91.279015,41.663428],[-91.277777,41.663432],[-91.275533,41.663402],[-91.261451,41.663321],[-91.257648,41.663299],[-91.255541,41.663307],[-91.254192,41.663301],[-91.252566,41.663294],[-91.250586,41.663279],[-91.250007,41.663275],[-91.248946,41.663288],[-91.248484,41.663286],[-91.245196,41.663273],[-91.244937,41.663272],[-91.242489,41.663261],[-91.241736,41.663257],[-91.240421,41.663237],[-91.239456,41.663198],[-91.238676,41.663123],[-91.238045,41.663069],[-91.237108,41.662946],[-91.226767,41.661445],[-91.224007,41.661044],[-91.222961,41.660901],[-91.212549,41.659397],[-91.205922,41.65844],[-91.204023,41.658166],[-91.201844,41.657851],[-91.197968,41.65729],[-91.197104,41.657158],[-91.196483,41.657041],[-91.195757,41.656887],[-91.195349,41.656781],[-91.194817,41.656625],[-91.194295,41.656464],[-91.193277,41.656087],[-91.191673,41.655473],[-91.190168,41.654912],[-91.188953,41.654443],[-91.1875,41.653865],[-91.184762,41.652826],[-91.183929,41.652517],[-91.182366,41.651915],[-91.181779,41.651699],[-91.180934,41.651396],[-91.179141,41.6508],[-91.178048,41.650469],[-91.167563,41.647255],[-91.167248,41.647164],[-91.166887,41.647069],[-91.165941,41.646839],[-91.165157,41.646683],[-91.164734,41.646607],[-91.163687,41.646447],[-91.163115,41.64638],[-91.16215,41.646282],[-91.161374,41.646238],[-91.156856,41.646091],[-91.155208,41.64605],[-91.153036,41.645986],[-91.150882,41.645922],[-91.146752,41.645801],[-91.135031,41.645448],[-91.134635,41.645436],[-91.133413,41.645399],[-91.133291,41.645397],[-91.132335,41.645377],[-91.131448,41.645359],[-91.124983,41.645176],[-91.115315,41.644953],[-91.114877,41.644943],[-91.114224,41.644928],[-91.113215,41.644905],[-91.109752,41.644826],[-91.108185,41.644777],[-91.107479,41.64474],[-91.106978,41.644721],[-91.106725,41.644712],[-91.104495,41.64469],[-91.096554,41.64451],[-91.093961,41.644487],[-91.091633,41.644466],[-91.090402,41.644449],[-91.088068,41.644447],[-91.081959,41.644391],[-91.080848,41.644375],[-91.080283,41.644356],[-91.079767,41.644321],[-91.0793,41.644277],[-91.075912,41.643895],[-91.075368,41.643824],[-91.074535,41.643714],[-91.073131,41.643499],[-91.072473,41.643387],[-91.070947,41.643103],[-91.066356,41.642284],[-91.065489,41.642116],[-91.064408,41.641922],[-91.063882,41.641832],[-91.063009,41.641664],[-91.060403,41.641181],[-91.058264,41.64081],[-91.056985,41.640566],[-91.055492,41.640282],[-91.053425,41.639898],[-91.051146,41.639407],[-91.049793,41.639136],[-91.04811,41.638792],[-91.046397,41.638448],[-91.044545,41.638068],[-91.042744,41.637679],[-91.04067,41.637189],[-91.039566,41.636943],[-91.03808,41.636614],[-91.034153,41.635699],[-91.031708,41.635158],[-91.030556,41.63489],[-91.028974,41.634522],[-91.026948,41.634029],[-91.026179,41.633855],[-91.025531,41.633731],[-91.024219,41.63354],[-91.023203,41.633407],[-91.022546,41.63335],[-91.021643,41.633297],[-91.020629,41.633269],[-91.010877,41.633264],[-91.004726,41.633295],[-91.000016,41.633344],[-90.996084,41.633377],[-90.985126,41.633464],[-90.980065,41.633464],[-90.953872,41.633457],[-90.951313,41.633475],[-90.950913,41.633491],[-90.949635,41.63352],[-90.947794,41.633604],[-90.936621,41.634019],[-90.932561,41.63416],[-90.930175,41.634239],[-90.929183,41.634257],[-90.92837,41.634245],[-90.926992,41.634191],[-90.926281,41.634154],[-90.923977,41.634033],[-90.923421,41.634001],[-90.922188,41.633931],[-90.915567,41.633569],[-90.91192,41.63338],[-90.906057,41.633049],[-90.905306,41.633011],[-90.904272,41.632959],[-90.902862,41.632895],[-90.901644,41.632867],[-90.900678,41.632873],[-90.883698,41.632892],[-90.874258,41.632869],[-90.864234,41.63289],[-90.861007,41.632907],[-90.855421,41.632892],[-90.852559,41.632875],[-90.8462,41.632903],[-90.839804,41.632899],[-90.838631,41.632851],[-90.837719,41.632733],[-90.83688,41.632581],[-90.836447,41.632472],[-90.835536,41.632199],[-90.835024,41.632013],[-90.819331,41.626733],[-90.811363,41.62408],[-90.810312,41.623702],[-90.798926,41.619875],[-90.798336,41.619685],[-90.797304,41.619387],[-90.796193,41.619103],[-90.795562,41.618954],[-90.793713,41.618561],[-90.786666,41.617157],[-90.779337,41.615659],[-90.77891,41.615571],[-90.775436,41.614856],[-90.773045,41.614377],[-90.768039,41.613373],[-90.762645,41.61227],[-90.758904,41.61154],[-90.758025,41.611361],[-90.752343,41.610203],[-90.747375,41.609206],[-90.740491,41.607798],[-90.73883,41.60744],[-90.737371,41.607106],[-90.736022,41.606811],[-90.735457,41.606686],[-90.734256,41.606421],[-90.733054,41.606156],[-90.724883,41.604351],[-90.72318,41.603986],[-90.722623,41.603881],[-90.721508,41.603738],[-90.720726,41.603664],[-90.720293,41.603651],[-90.719685,41.603612],[-90.71888,41.603607],[-90.713473,41.603615],[-90.713064,41.603615],[-90.707745,41.603611],[-90.700077,41.603626],[-90.697696,41.603636],[-90.694145,41.603634],[-90.687664,41.60362],[-90.686977,41.603629],[-90.686718,41.603623],[-90.685579,41.603634],[-90.684905,41.60364],[-90.683977,41.603625],[-90.683495,41.603585],[-90.682724,41.60352],[-90.681612,41.603373],[-90.679756,41.603064],[-90.678655,41.602894],[-90.676557,41.602735],[-90.675774,41.602727],[-90.675097,41.602732],[-90.67401,41.602793],[-90.673358,41.602859],[-90.672721,41.602952],[-90.671539,41.603143],[-90.670885,41.603277],[-90.670156,41.60338],[-90.669245,41.603483],[-90.668416,41.603552],[-90.66776,41.603581],[-90.667029,41.603589],[-90.666498,41.603582],[-90.665197,41.603509],[-90.664571,41.603455],[-90.661737,41.603144],[-90.659795,41.60295],[-90.657521,41.602707],[-90.656169,41.602562],[-90.655121,41.602465],[-90.651372,41.602072],[-90.646853,41.60159],[-90.646061,41.601521],[-90.641682,41.601049],[-90.637071,41.600577],[-90.634312,41.600282],[-90.633535,41.600204],[-90.632697,41.60012],[-90.631631,41.600026],[-90.630651,41.599968],[-90.629671,41.599922],[-90.628088,41.599893],[-90.626226,41.599881],[-90.625064,41.599862],[-90.623422,41.599841],[-90.621333,41.599831],[-90.618075,41.599804],[-90.612721,41.599773],[-90.598731,41.599666],[-90.596881,41.599649],[-90.594286,41.599624],[-90.593482,41.5996],[-90.592485,41.599537],[-90.591634,41.599459],[-90.590307,41.59931],[-90.588791,41.599074],[-90.587787,41.598905],[-90.585192,41.598499],[-90.583318,41.598192],[-90.582582,41.598078],[-90.579112,41.59751],[-90.577339,41.597236],[-90.574898,41.596854],[-90.571209,41.596257],[-90.569034,41.595897],[-90.565438,41.595338],[-90.563198,41.594975],[-90.562029,41.594787],[-90.561338,41.594676],[-90.559959,41.594496],[-90.558956,41.594441],[-90.558001,41.59442],[-90.556553,41.594469],[-90.5552,41.594576],[-90.553099,41.594728],[-90.551318,41.594881],[-90.543923,41.595516],[-90.5399,41.595843],[-90.538711,41.595934],[-90.538349,41.59596],[-90.537494,41.595991],[-90.531026,41.59604],[-90.5272,41.596077],[-90.52602,41.596082],[-90.525257,41.596086],[-90.522898,41.596111],[-90.521406,41.596126],[-90.51927,41.596136],[-90.516842,41.596148],[-90.508187,41.596223],[-90.506254,41.596242],[-90.499021,41.596329],[-90.494493,41.596371],[-90.493126,41.596386],[-90.487185,41.596449],[-90.483701,41.596497],[-90.482229,41.596517],[-90.477966,41.596624],[-90.473419,41.596714],[-90.467563,41.596856],[-90.459889,41.597033],[-90.459416,41.597042],[-90.458639,41.597059],[-90.45012,41.597251],[-90.448495,41.597287],[-90.447991,41.597295],[-90.447702,41.5973],[-90.445913,41.597328],[-90.443582,41.597354],[-90.442503,41.597366],[-90.441379,41.597367],[-90.437825,41.597396],[-90.435064,41.597419],[-90.434692,41.597422],[-90.434414,41.597424],[-90.433637,41.597437],[-90.431098,41.597448],[-90.430908,41.597451],[-90.430212,41.597463],[-90.429671,41.597473],[-90.428989,41.597461],[-90.424409,41.59751],[-90.421197,41.597525],[-90.419878,41.597545],[-90.411538,41.597603],[-90.410936,41.597601],[-90.409737,41.597563],[-90.4092,41.597536],[-90.40867,41.597486],[-90.405925,41.597188],[-90.404744,41.59706],[-90.401873,41.596757],[-90.40041,41.596594],[-90.400122,41.596562],[-90.397524,41.596284],[-90.396474,41.596168],[-90.395055,41.596012],[-90.388564,41.595323],[-90.383867,41.594815],[-90.379309,41.594332],[-90.377729,41.594143],[-90.377114,41.594062],[-90.376829,41.594015],[-90.376134,41.593832],[-90.375578,41.59366],[-90.374875,41.593386],[-90.374271,41.59309],[-90.373687,41.592766],[-90.373289,41.592496],[-90.372695,41.592019],[-90.372405,41.59174],[-90.372041,41.5913],[-90.371866,41.591041],[-90.371706,41.590804],[-90.371683,41.59075],[-90.371282,41.590222],[-90.371015,41.589776],[-90.37084,41.589451],[-90.37002,41.588177],[-90.368212,41.58538],[-90.367571,41.584351],[-90.367234,41.583839],[-90.36703,41.583538],[-90.366707,41.583074],[-90.366498,41.582761],[-90.366307,41.582459],[-90.36601,41.581953],[-90.365682,41.581396],[-90.365358,41.580873],[-90.364976,41.580243],[-90.364563,41.579557],[-90.364255,41.579046],[-90.363422,41.577637],[-90.362817,41.576654],[-90.362536,41.576177],[-90.362238,41.575661],[-90.362213,41.57562],[-90.362159,41.575521],[-90.362109,41.575431],[-90.362045,41.575329],[-90.361986,41.575222],[-90.361931,41.575128],[-90.36187,41.575027],[-90.361814,41.574933],[-90.361752,41.574828],[-90.361694,41.57473],[-90.361638,41.574643],[-90.361572,41.574537],[-90.36151,41.574436],[-90.361449,41.574338],[-90.361389,41.574239],[-90.361332,41.574147],[-90.361262,41.574035],[-90.361202,41.573936],[-90.361135,41.573828],[-90.361084,41.573745],[-90.36102,41.573643],[-90.360958,41.573537],[-90.360897,41.573439],[-90.360835,41.573344],[-90.360773,41.573243],[-90.36071,41.573141],[-90.360598,41.57296],[-90.360531,41.572851],[-90.360463,41.57274],[-90.360404,41.572644],[-90.36035,41.572553],[-90.36029,41.572454],[-90.360225,41.572349],[-90.360164,41.572249],[-90.3601,41.572151],[-90.360038,41.572056],[-90.359976,41.571956],[-90.359909,41.57186],[-90.359847,41.571771],[-90.359777,41.571669],[-90.359711,41.571578],[-90.359639,41.57148],[-90.359564,41.571377],[-90.359343,41.571095],[-90.359263,41.571],[-90.359195,41.570917],[-90.359125,41.570832],[-90.359041,41.57073],[-90.358957,41.570636],[-90.358869,41.570539],[-90.358708,41.570367],[-90.358629,41.570282],[-90.358547,41.570196],[-90.358468,41.570116],[-90.35837,41.570018],[-90.358293,41.569943],[-90.3582,41.569853],[-90.358113,41.569768],[-90.358036,41.569697],[-90.357934,41.569602],[-90.357852,41.569527],[-90.357762,41.569444],[-90.357677,41.569365],[-90.357587,41.569282],[-90.357484,41.569198],[-90.357385,41.569112],[-90.3573,41.569039],[-90.357205,41.568958],[-90.357106,41.568882],[-90.357005,41.568799],[-90.356916,41.568725],[-90.356817,41.568643],[-90.356709,41.568561],[-90.356618,41.568492],[-90.356532,41.568426],[-90.356416,41.568337],[-90.356319,41.568266],[-90.356232,41.568203],[-90.356132,41.56813],[-90.356015,41.568051],[-90.355916,41.567977],[-90.355804,41.567904],[-90.355672,41.567813],[-90.355482,41.567682],[-90.355364,41.567606],[-90.355254,41.567536],[-90.35515,41.567469],[-90.355037,41.567397],[-90.354926,41.567329],[-90.354816,41.567264],[-90.354683,41.567187],[-90.354567,41.567118],[-90.354465,41.567058],[-90.354344,41.566987],[-90.354233,41.566925],[-90.354115,41.566858],[-90.353998,41.566796],[-90.353868,41.566726],[-90.35375,41.566661],[-90.353638,41.566602],[-90.353523,41.566541],[-90.353403,41.566477],[-90.353293,41.566422],[-90.353154,41.566351],[-90.353042,41.566296],[-90.352928,41.566241],[-90.35279,41.566179],[-90.352668,41.56612],[-90.352538,41.566058],[-90.352404,41.565999],[-90.352287,41.565946],[-90.352148,41.565884],[-90.352021,41.565827],[-90.351916,41.565779],[-90.351779,41.565716],[-90.35156,41.565623],[-90.351408,41.565558],[-90.351274,41.565501],[-90.351154,41.565449],[-90.350921,41.565349],[-90.350797,41.565295],[-90.350648,41.565232],[-90.35051,41.565174],[-90.350385,41.56512],[-90.350257,41.56506],[-90.350136,41.565],[-90.350015,41.564943],[-90.349918,41.564896],[-90.349777,41.564828],[-90.349649,41.564766],[-90.349419,41.564647],[-90.3493,41.564585],[-90.349171,41.564514],[-90.349063,41.564454],[-90.348942,41.564387],[-90.348822,41.56432],[-90.348701,41.564251],[-90.348586,41.564186],[-90.348469,41.564114],[-90.348359,41.564045],[-90.348268,41.563989],[-90.348136,41.563907],[-90.348016,41.563832],[-90.347918,41.563769],[-90.3478,41.563695],[-90.347676,41.563615],[-90.347572,41.563543],[-90.347477,41.563473],[-90.347359,41.563388],[-90.347257,41.563314],[-90.34717,41.563249],[-90.347054,41.563161],[-90.346944,41.563077],[-90.34685,41.563007],[-90.346754,41.562927],[-90.346642,41.562841],[-90.346549,41.562763],[-90.346454,41.562683],[-90.346348,41.5626],[-90.346252,41.56252],[-90.346162,41.562444],[-90.346054,41.562354],[-90.345964,41.562271],[-90.345871,41.562187],[-90.345769,41.562094],[-90.345688,41.562017],[-90.345587,41.561923],[-90.345501,41.561839],[-90.345416,41.56176],[-90.345322,41.561667],[-90.345231,41.561574],[-90.345143,41.561483],[-90.345055,41.561392],[-90.344964,41.561298],[-90.344876,41.561208],[-90.344801,41.561122],[-90.344715,41.561024],[-90.344639,41.560935],[-90.34455,41.560841],[-90.344413,41.560668],[-90.344332,41.560569],[-90.344248,41.560464],[-90.344185,41.560388],[-90.344115,41.560291],[-90.343991,41.56012],[-90.343903,41.559997],[-90.343841,41.559913],[-90.343761,41.559804],[-90.343635,41.559613],[-90.34357,41.559518],[-90.343508,41.55942],[-90.34346,41.55934],[-90.343407,41.559255],[-90.343324,41.559119],[-90.343268,41.559022],[-90.343217,41.558933],[-90.343157,41.558824],[-90.343106,41.558726],[-90.343045,41.558627],[-90.342998,41.558523],[-90.34294,41.558411],[-90.342888,41.558311],[-90.342844,41.558217],[-90.342794,41.55811],[-90.342751,41.558018],[-90.342703,41.557913],[-90.342658,41.557814],[-90.342607,41.557698],[-90.342566,41.557604],[-90.342521,41.557496],[-90.342478,41.557387],[-90.342439,41.557283],[-90.342402,41.557178],[-90.342368,41.557082],[-90.342328,41.55697],[-90.342295,41.556864],[-90.342261,41.556757],[-90.342228,41.556658],[-90.342171,41.556468],[-90.342137,41.556332],[-90.342109,41.556221],[-90.342085,41.556131],[-90.342056,41.556015],[-90.342033,41.555906],[-90.342006,41.555791],[-90.341986,41.555686],[-90.341964,41.555574],[-90.341945,41.555475],[-90.341927,41.555381],[-90.341905,41.555262],[-90.341892,41.555164],[-90.341877,41.555053],[-90.341861,41.554936],[-90.34185,41.554829],[-90.341838,41.554714],[-90.341828,41.554612],[-90.341817,41.554495],[-90.341807,41.554379],[-90.341803,41.554287],[-90.341797,41.554178],[-90.341793,41.554074],[-90.341789,41.553951],[-90.341785,41.553844],[-90.341785,41.553739],[-90.341785,41.553626],[-90.341785,41.553516],[-90.341785,41.553407],[-90.341785,41.553301],[-90.341784,41.553193],[-90.341783,41.553084],[-90.341782,41.55298],[-90.341781,41.552881],[-90.341783,41.552755],[-90.341782,41.552641],[-90.341782,41.552554],[-90.341782,41.552435],[-90.341781,41.552344],[-90.341781,41.552226],[-90.34178,41.552101],[-90.341779,41.551996],[-90.34178,41.551892],[-90.341781,41.551789],[-90.34178,41.551683],[-90.34178,41.55157],[-90.34178,41.551454],[-90.34178,41.551346],[-90.34178,41.551246],[-90.34178,41.551119],[-90.34178,41.551025],[-90.341779,41.550912],[-90.341776,41.550796],[-90.341779,41.55069],[-90.341779,41.550583],[-90.341779,41.550465],[-90.341779,41.550362],[-90.34178,41.550262],[-90.34178,41.550152],[-90.34178,41.550039],[-90.34178,41.549937],[-90.34178,41.549814],[-90.34178,41.549704],[-90.341778,41.549614],[-90.341778,41.549507],[-90.341778,41.549405],[-90.341778,41.549278],[-90.341776,41.549168],[-90.341776,41.549063],[-90.341776,41.548953],[-90.341776,41.548845],[-90.341776,41.548732],[-90.341777,41.548624],[-90.341777,41.548523],[-90.341777,41.548409],[-90.341777,41.548295],[-90.34178,41.548189],[-90.34178,41.547865],[-90.341781,41.547763],[-90.341781,41.547674],[-90.341781,41.547532],[-90.341781,41.547431],[-90.341781,41.547319],[-90.341781,41.547203],[-90.341781,41.547102],[-90.341781,41.546984],[-90.341781,41.546874],[-90.341781,41.546773],[-90.341785,41.546675],[-90.341783,41.546548],[-90.341783,41.546444],[-90.341783,41.546257],[-90.341783,41.546123],[-90.341784,41.546035],[-90.341783,41.545914],[-90.341783,41.545781],[-90.341782,41.545667],[-90.341782,41.545563],[-90.34178,41.545456],[-90.34178,41.545348],[-90.34178,41.545229],[-90.341779,41.545117],[-90.341778,41.54501],[-90.341776,41.544894],[-90.341775,41.544794],[-90.341775,41.544677],[-90.341776,41.544581],[-90.341776,41.544468],[-90.341772,41.544352],[-90.341775,41.544242],[-90.341777,41.544141],[-90.341774,41.544033],[-90.341774,41.543916],[-90.341774,41.54382],[-90.341774,41.543692],[-90.341773,41.543591],[-90.341773,41.543475],[-90.341773,41.54337],[-90.341773,41.543268],[-90.341774,41.543158],[-90.341772,41.543036],[-90.341772,41.542931],[-90.341772,41.54282],[-90.341772,41.542702],[-90.341771,41.542578],[-90.341775,41.541174],[-90.341772,41.54106],[-90.34177,41.540956],[-90.341774,41.540846],[-90.341772,41.540735],[-90.341774,41.540624],[-90.34177,41.540288],[-90.341787,41.536321],[-90.341787,41.536263],[-90.341784,41.535724],[-90.341776,41.535185],[-90.341775,41.534013],[-90.341765,41.530502],[-90.341764,41.524581],[-90.341762,41.522608],[-90.341788,41.520028],[-90.341787,41.519535],[-90.34176,41.517665],[-90.341767,41.51702],[-90.341767,41.516505],[-90.341686,41.514287],[-90.341613,41.513163],[-90.341459,41.512372],[-90.341244,41.511441],[-90.341115,41.51101],[-90.340858,41.510335],[-90.340787,41.51013],[-90.340197,41.508503],[-90.339321,41.506369],[-90.338952,41.504749],[-90.338824,41.499568],[-90.338884,41.491597],[-90.338849,41.49087],[-90.338798,41.489475],[-90.338858,41.487716],[-90.338845,41.486528],[-90.338849,41.486421],[-90.338875,41.485528],[-90.338875,41.48518],[-90.338867,41.484569],[-90.338892,41.483817],[-90.338884,41.482276],[-90.338898,41.481476],[-90.338912,41.479339],[-90.338904,41.478809],[-90.338902,41.478292],[-90.338875,41.475599],[-90.338892,41.469779],[-90.338909,41.46354],[-90.338635,41.460639],[-90.338264,41.459149],[-90.337914,41.45777],[-90.337564,41.456708],[-90.335704,41.452489],[-90.335476,41.452065],[-90.333485,41.448166],[-90.333107,41.447394],[-90.331954,41.444924],[-90.330859,41.442652],[-90.330309,41.441073],[-90.330219,41.440752],[-90.329955,41.439936],[-90.329859,41.439691],[-90.329868,41.439308],[-90.329909,41.439061],[-90.330043,41.438817],[-90.330175,41.438653],[-90.330403,41.438496],[-90.330808,41.438381],[-90.331304,41.438393],[-90.331567,41.438486],[-90.331846,41.438645],[-90.332085,41.43896],[-90.332149,41.439169],[-90.332114,41.439455],[-90.331953,41.439742],[-90.331814,41.439881],[-90.331567,41.440028],[-90.331116,41.440143],[-90.33022,41.440218],[-90.329283,41.440214],[-90.327375,41.440181],[-90.322227,41.440107],[-90.319481,41.440049],[-90.319081,41.440045],[-90.316066,41.440024],[-90.302646,41.440093],[-90.274284,41.440137],[-90.273739,41.440137],[-90.248567,41.440232],[-90.243308,41.440294],[-90.236466,41.440415],[-90.220502,41.440669],[-90.201899,41.440718],[-90.201362,41.440718],[-90.197571,41.440723],[-90.183223,41.440664],[-90.181744,41.440632],[-90.180272,41.440536],[-90.17876,41.440366],[-90.177123,41.44009],[-90.175825,41.439796],[-90.174837,41.439494],[-90.173602,41.439074],[-90.172643,41.438725],[-90.171979,41.438433],[-90.170005,41.437422],[-90.16828,41.436457],[-90.161169,41.432325],[-90.160581,41.431982],[-90.159978,41.431654],[-90.158917,41.431045],[-90.158049,41.430531],[-90.157449,41.430191],[-90.154922,41.428712],[-90.154358,41.428375],[-90.149469,41.425564],[-90.145732,41.423374],[-90.143157,41.421907],[-90.136139,41.417961],[-90.134534,41.41723],[-90.1329,41.416639],[-90.130523,41.415921],[-90.128952,41.415599],[-90.127691,41.415458],[-90.126232,41.415355],[-90.123389,41.415291],[-90.118338,41.415188],[-90.090435,41.414621],[-90.086228,41.414535],[-90.068366,41.414105],[-90.067674,41.414086],[-90.040567,41.413516],[-90.038094,41.413385],[-90.036973,41.413269],[-90.034642,41.412941],[-90.032865,41.41267],[-90.030633,41.412246],[-90.02817,41.411653],[-90.021767,41.410044],[-90.020274,41.409671],[-90.020043,41.409617],[-90.016663,41.40879],[-90.014253,41.408209],[-90.012734,41.407823],[-90.01055,41.407271],[-90.008815,41.406813],[-90.00473,41.405828],[-90.000111,41.405137],[-89.997228,41.404862],[-89.993597,41.404772],[-89.98716,41.404933],[-89.983744,41.405094],[-89.980706,41.40519],[-89.979204,41.405223],[-89.977719,41.405332],[-89.975599,41.40557],[-89.974311,41.405828],[-89.972114,41.406446],[-89.970964,41.406896],[-89.969608,41.407424],[-89.967822,41.408358],[-89.965967,41.409573],[-89.965419,41.409967],[-89.964955,41.410375],[-89.964226,41.410942],[-89.963533,41.411477],[-89.961538,41.412929],[-89.959923,41.413846],[-89.958231,41.414667],[-89.95649,41.415334],[-89.954733,41.415837],[-89.952158,41.416352],[-89.950356,41.416558],[-89.949672,41.416623],[-89.948019,41.416669],[-89.939224,41.416533],[-89.938197,41.416473],[-89.937164,41.416339],[-89.935404,41.416037],[-89.933559,41.415586],[-89.931516,41.414943],[-89.929774,41.414235],[-89.911097,41.406124],[-89.908908,41.405332],[-89.908507,41.405225],[-89.906162,41.404669],[-89.903887,41.404154],[-89.902299,41.403819],[-89.900218,41.40332],[-89.894538,41.402021],[-89.881108,41.398952],[-89.87129,41.396707],[-89.856874,41.393441],[-89.840322,41.389698],[-89.839442,41.389487],[-89.837838,41.389153],[-89.837428,41.389072],[-89.836193,41.388854],[-89.835284,41.388723],[-89.834356,41.388586],[-89.833612,41.388487],[-89.832682,41.388373],[-89.831739,41.38827],[-89.828889,41.387959],[-89.82853,41.387919],[-89.817841,41.386873],[-89.814549,41.386537],[-89.813476,41.386432],[-89.813145,41.386399],[-89.811741,41.386256],[-89.810795,41.386185],[-89.809382,41.386094],[-89.808911,41.386069],[-89.807967,41.386026],[-89.807496,41.386008],[-89.806553,41.385981],[-89.805123,41.385962],[-89.804177,41.385962],[-89.791616,41.386066],[-89.791192,41.38607],[-89.78442,41.386148],[-89.783767,41.386155],[-89.780675,41.386194],[-89.779937,41.386201],[-89.767833,41.386326],[-89.766297,41.386362],[-89.765186,41.386394],[-89.763768,41.386448],[-89.758575,41.386673],[-89.756783,41.386753],[-89.755264,41.386821],[-89.75242,41.386941],[-89.74628,41.387213],[-89.744394,41.387293],[-89.741943,41.387399],[-89.740148,41.387476],[-89.738731,41.387534],[-89.737306,41.387571],[-89.735408,41.387563],[-89.733988,41.387527],[-89.732951,41.387475],[-89.732876,41.38747],[-89.732007,41.387412],[-89.731065,41.38734],[-89.730125,41.387255],[-89.729653,41.387205],[-89.728716,41.387095],[-89.728249,41.387036],[-89.72639,41.386758],[-89.725465,41.386603],[-89.724547,41.386432],[-89.722257,41.38598],[-89.721262,41.385795],[-89.720195,41.385647],[-89.718998,41.38554],[-89.717578,41.385471],[-89.716161,41.385499],[-89.71498,41.385543],[-89.713785,41.385648],[-89.711467,41.385988],[-89.708694,41.38642],[-89.70684,41.386671],[-89.70561,41.386802],[-89.704642,41.386888],[-89.704088,41.386923],[-89.703154,41.38698],[-89.702612,41.387012],[-89.700647,41.387042],[-89.699856,41.387063],[-89.692,41.386994],[-89.68471,41.386953],[-89.681887,41.386955],[-89.681225,41.386962],[-89.680943,41.38697],[-89.680566,41.386986],[-89.680188,41.387007],[-89.679621,41.387048],[-89.678965,41.387106],[-89.678546,41.387156],[-89.677942,41.387238],[-89.677478,41.387307],[-89.677109,41.38737],[-89.676651,41.387454],[-89.676195,41.387548],[-89.67556,41.387691],[-89.675103,41.3878],[-89.674569,41.387944],[-89.673951,41.388121],[-89.673428,41.388286],[-89.672318,41.388662],[-89.6712,41.389048],[-89.670677,41.389225],[-89.669628,41.389554],[-89.669279,41.389655],[-89.668919,41.389751],[-89.66838,41.389884],[-89.667835,41.390005],[-89.667379,41.390101],[-89.666733,41.390219],[-89.666363,41.390278],[-89.665809,41.390358],[-89.665345,41.390414],[-89.665208,41.39043],[-89.662983,41.390659],[-89.662422,41.390712],[-89.658199,41.39114],[-89.657264,41.391245],[-89.656051,41.391397],[-89.655493,41.391474],[-89.653637,41.391753],[-89.647154,41.392834],[-89.644275,41.393291],[-89.643623,41.393378],[-89.642503,41.393511],[-89.641849,41.393581],[-89.640812,41.393676],[-89.639586,41.393767],[-89.639014,41.393803],[-89.638729,41.393817],[-89.638442,41.393824],[-89.637501,41.393863],[-89.636269,41.393891],[-89.592924,41.394465],[-89.581817,41.394522],[-89.5814,41.394524],[-89.574412,41.394547],[-89.573588,41.394545],[-89.572169,41.394542],[-89.568475,41.39457],[-89.567997,41.394558],[-89.567143,41.394517],[-89.566765,41.39449],[-89.566297,41.39445],[-89.565829,41.394401],[-89.565361,41.394345],[-89.564706,41.394252],[-89.564351,41.394194],[-89.564148,41.394161],[-89.563688,41.394075],[-89.563141,41.393962],[-89.562689,41.393861],[-89.562151,41.393729],[-89.561704,41.393612],[-89.56126,41.393487],[-89.560569,41.393263],[-89.560293,41.393169],[-89.560134,41.393117],[-89.559623,41.39293],[-89.559033,41.392701],[-89.558455,41.392459],[-89.558083,41.392293],[-89.557567,41.392047],[-89.557091,41.391807],[-89.55678,41.391641],[-89.556321,41.391384],[-89.555948,41.391165],[-89.555,41.390581],[-89.55448,41.390267],[-89.553723,41.38984],[-89.553102,41.389518],[-89.55272,41.389333],[-89.552626,41.389287],[-89.552142,41.389065],[-89.551809,41.388922],[-89.55154,41.388812],[-89.551136,41.388651],[-89.550455,41.388396],[-89.549837,41.388187],[-89.549378,41.388042],[-89.548883,41.387892],[-89.5485,41.387788],[-89.548051,41.387672],[-89.547577,41.387559],[-89.547112,41.387458],[-89.546671,41.387368],[-89.546229,41.387289],[-89.545758,41.387208],[-89.545243,41.387125],[-89.544809,41.387075],[-89.544334,41.387021],[-89.543843,41.38697],[-89.543372,41.386933],[-89.542931,41.386908],[-89.542418,41.386889],[-89.541482,41.386868],[-89.534097,41.386762],[-89.533432,41.386757],[-89.532513,41.386758],[-89.531551,41.386774],[-89.530589,41.386813],[-89.53011,41.386836],[-89.529628,41.386859],[-89.5287,41.386925],[-89.527861,41.386994],[-89.526783,41.387109],[-89.526318,41.387163],[-89.524918,41.387352],[-89.523976,41.387505],[-89.523037,41.387669],[-89.522398,41.387791],[-89.52164,41.387948],[-89.521217,41.388039],[-89.520585,41.388185],[-89.520126,41.388296],[-89.519857,41.388361],[-89.518881,41.388613],[-89.518262,41.388784],[-89.517554,41.388989],[-89.51694,41.389179],[-89.516158,41.389432],[-89.515377,41.389699],[-89.514692,41.389945],[-89.514014,41.390197],[-89.512801,41.390681],[-89.510707,41.391532],[-89.508881,41.392253],[-89.50777,41.39269],[-89.506383,41.393244],[-89.505734,41.393505],[-89.505384,41.39363],[-89.504826,41.393827],[-89.503997,41.394132],[-89.503156,41.394408],[-89.502701,41.394548],[-89.50184,41.394805],[-89.500495,41.395181],[-89.500057,41.395292],[-89.499325,41.395478],[-89.499171,41.395515],[-89.498289,41.395717],[-89.497322,41.395931],[-89.496493,41.396094],[-89.4961,41.39617],[-89.49563,41.396254],[-89.495113,41.396347],[-89.494709,41.39641],[-89.493719,41.396565],[-89.492879,41.396682],[-89.491899,41.396805],[-89.491186,41.396886],[-89.490158,41.396993],[-89.486683,41.397338],[-89.474636,41.398633],[-89.469534,41.399209],[-89.465434,41.399631],[-89.464781,41.399711],[-89.464243,41.399772],[-89.460544,41.400168],[-89.459658,41.400257],[-89.458728,41.40034],[-89.457759,41.400403],[-89.456824,41.400452],[-89.455878,41.400482],[-89.454935,41.400497],[-89.453047,41.400478],[-89.451093,41.400394],[-89.450917,41.400381],[-89.449259,41.400246],[-89.447488,41.400048],[-89.445567,41.399764],[-89.443791,41.399439],[-89.441765,41.398984],[-89.441258,41.39886],[-89.438733,41.398219],[-89.43762,41.397937],[-89.436537,41.397663],[-89.435184,41.397327],[-89.434354,41.397175],[-89.432793,41.396971],[-89.430883,41.396824],[-89.429014,41.396807],[-89.427071,41.396926],[-89.425198,41.397167],[-89.423361,41.397536],[-89.419666,41.398424],[-89.417966,41.398829],[-89.416119,41.399209],[-89.415214,41.399371],[-89.414286,41.399521],[-89.413347,41.399657],[-89.412623,41.399748],[-89.411469,41.399876],[-89.409626,41.400023],[-89.407745,41.40011],[-89.405823,41.400141],[-89.405327,41.400144],[-89.400184,41.400134],[-89.388596,41.400111],[-89.384884,41.400107],[-89.381528,41.400105],[-89.380712,41.400102],[-89.378161,41.400094],[-89.376918,41.400089],[-89.374378,41.400092],[-89.373748,41.400089],[-89.371125,41.400075],[-89.369274,41.400052],[-89.367289,41.399993],[-89.365468,41.399922],[-89.361658,41.399753],[-89.360639,41.399714],[-89.359779,41.399682],[-89.358591,41.399646],[-89.356787,41.399616],[-89.356036,41.399608],[-89.354079,41.3996],[-89.352173,41.399619],[-89.351212,41.399637],[-89.349306,41.399686],[-89.348363,41.39972],[-89.346466,41.399802],[-89.343268,41.399954],[-89.342715,41.399976],[-89.342108,41.400002],[-89.340818,41.400045],[-89.339585,41.400081],[-89.338929,41.400094],[-89.337016,41.400119],[-89.331923,41.400145],[-89.330026,41.400161],[-89.327566,41.400172],[-89.320675,41.40021],[-89.320073,41.40021],[-89.319146,41.4002],[-89.318095,41.400171],[-89.317241,41.400132],[-89.316302,41.400068],[-89.315362,41.399995],[-89.314381,41.399898],[-89.313499,41.399797],[-89.312559,41.399673],[-89.311621,41.399533],[-89.310518,41.39935],[-89.309786,41.399209],[-89.308883,41.399019],[-89.308,41.398829],[-89.307148,41.398625],[-89.306202,41.398375],[-89.305287,41.398125],[-89.304214,41.397804],[-89.303346,41.397522],[-89.302648,41.397279],[-89.301721,41.396945],[-89.300878,41.396626],[-89.299366,41.39601],[-89.297381,41.395208],[-89.296582,41.394885],[-89.291956,41.393013],[-89.281274,41.388686],[-89.279621,41.388001],[-89.278468,41.387506],[-89.276156,41.386471],[-89.274593,41.38575],[-89.272996,41.384986],[-89.271398,41.384193],[-89.269594,41.383269],[-89.268279,41.382573],[-89.265152,41.38089],[-89.261637,41.378999],[-89.261346,41.378843],[-89.258329,41.377219],[-89.257924,41.376998],[-89.257349,41.376685],[-89.256868,41.376435],[-89.255313,41.375674],[-89.253667,41.374937],[-89.25208,41.374297],[-89.250346,41.373678],[-89.248499,41.373086],[-89.246701,41.37259],[-89.244877,41.372152],[-89.242995,41.371775],[-89.241156,41.371452],[-89.238664,41.371021],[-89.238016,41.370909],[-89.234912,41.370373],[-89.233987,41.370209],[-89.229375,41.369413],[-89.224767,41.368613],[-89.223676,41.36842],[-89.22297,41.368304],[-89.222192,41.368177],[-89.214523,41.366843],[-89.213431,41.366653],[-89.211589,41.366338],[-89.208081,41.365726],[-89.206246,41.365408],[-89.203725,41.364972],[-89.202528,41.364778],[-89.201884,41.364684],[-89.200921,41.364532],[-89.199753,41.364426],[-89.197774,41.364338],[-89.194013,41.364341],[-89.187689,41.364366],[-89.186875,41.364361],[-89.182733,41.36437],[-89.182166,41.364372],[-89.18024,41.364421],[-89.175045,41.364399],[-89.173156,41.364405],[-89.168378,41.364472],[-89.164616,41.364536],[-89.159053,41.364633],[-89.158553,41.364643],[-89.157084,41.364663],[-89.151375,41.364767],[-89.146639,41.364841],[-89.145651,41.364863],[-89.142747,41.364941],[-89.137592,41.364993],[-89.13237,41.365097],[-89.131559,41.365109],[-89.127379,41.365174],[-89.124237,41.365221],[-89.120461,41.365292],[-89.120339,41.365297],[-89.116678,41.365349],[-89.115514,41.365464],[-89.114284,41.365587],[-89.111965,41.366127],[-89.110672,41.366625],[-89.110189,41.366875],[-89.109535,41.367157],[-89.10873,41.367575],[-89.106295,41.369266],[-89.105994,41.36946],[-89.105501,41.369814],[-89.104814,41.3702],[-89.104256,41.37053],[-89.103773,41.370756],[-89.103035,41.37105],[-89.102392,41.371297],[-89.101806,41.371482],[-89.100841,41.37177],[-89.099745,41.372004],[-89.098677,41.372138],[-89.097928,41.372196],[-89.096656,41.372293],[-89.096522,41.372288],[-89.095321,41.372251],[-89.09286,41.372156],[-89.092231,41.372128],[-89.091714,41.3721],[-89.08988,41.37202],[-89.088989,41.371977],[-89.086924,41.371882],[-89.085538,41.371819],[-89.084152,41.371761],[-89.083805,41.371746],[-89.080116,41.371633],[-89.078872,41.371561],[-89.077863,41.371456],[-89.077005,41.371336],[-89.076361,41.371207],[-89.07588,41.371081],[-89.071941,41.370037],[-89.067391,41.368842],[-89.065379,41.368314],[-89.064039,41.368047],[-89.061637,41.367795],[-89.060146,41.367778],[-89.059229,41.367768],[-89.058539,41.367772],[-89.053645,41.367801],[-89.052338,41.367803],[-89.050851,41.367806],[-89.0505,41.367805],[-89.049101,41.367807],[-89.047355,41.36781],[-89.044567,41.367815],[-89.040734,41.367823],[-89.036555,41.367834],[-89.029433,41.367865],[-89.028221,41.367865],[-89.027384,41.367873],[-89.025281,41.367865],[-89.024359,41.367841],[-89.022417,41.367753],[-89.017474,41.367532],[-89.017126,41.367522],[-89.015593,41.367516],[-89.012243,41.367534],[-89.0039,41.367592],[-89.002964,41.367587],[-88.997944,41.367624],[-88.988618,41.36768],[-88.97992,41.36773],[-88.97198,41.367809],[-88.965004,41.367835],[-88.957703,41.367881],[-88.948311,41.367939],[-88.940658,41.36799],[-88.931621,41.368043],[-88.924313,41.368084],[-88.915273,41.368139],[-88.90484,41.368198],[-88.902254,41.368244],[-88.894413,41.36826],[-88.888148,41.368296],[-88.88045,41.368368],[-88.875507,41.368403],[-88.870968,41.368422],[-88.861931,41.368464],[-88.860451,41.368581],[-88.859169,41.368713],[-88.857593,41.369001],[-88.856143,41.369317],[-88.854561,41.369803],[-88.853267,41.370281],[-88.852021,41.370812],[-88.851292,41.371175],[-88.850592,41.37154],[-88.848687,41.372653],[-88.847491,41.373281],[-88.846734,41.373679],[-88.845512,41.374202],[-88.844231,41.37466],[-88.842959,41.375067],[-88.841631,41.375385],[-88.840218,41.375646],[-88.838556,41.375889],[-88.83701,41.376012],[-88.835437,41.376024],[-88.831748,41.376067],[-88.831275,41.376073],[-88.825477,41.376148],[-88.820519,41.376216],[-88.818564,41.37624],[-88.816565,41.376265],[-88.812165,41.376431],[-88.808162,41.376842],[-88.807206,41.376916],[-88.806273,41.377008],[-88.80519,41.37706],[-88.803429,41.377127],[-88.802046,41.377181],[-88.797916,41.377237],[-88.797119,41.377234],[-88.796269,41.377244],[-88.793571,41.377295],[-88.790639,41.377284],[-88.788914,41.377154],[-88.787189,41.377022],[-88.785807,41.376913],[-88.784768,41.376836],[-88.784377,41.376805],[-88.782691,41.376675],[-88.776112,41.376162],[-88.775719,41.37613],[-88.772657,41.375887],[-88.769897,41.375688],[-88.76748,41.375534],[-88.766092,41.375469],[-88.760514,41.375384],[-88.752861,41.375383],[-88.749389,41.375379],[-88.740321,41.37537],[-88.732681,41.375363],[-88.72886,41.37536],[-88.728513,41.37536],[-88.725044,41.375358],[-88.724353,41.375358],[-88.723315,41.375356],[-88.721583,41.37535],[-88.721236,41.375349],[-88.719849,41.375348],[-88.718807,41.375348],[-88.716372,41.375346],[-88.710472,41.375336],[-88.708011,41.375333],[-88.702501,41.375325],[-88.701034,41.375324],[-88.691978,41.375311],[-88.687461,41.375317],[-88.682938,41.375355],[-88.677002,41.375407],[-88.672466,41.375455],[-88.668627,41.375486],[-88.660264,41.375561],[-88.650154,41.375661],[-88.644924,41.375749],[-88.638648,41.37582],[-88.636561,41.37584],[-88.634821,41.375856],[-88.634123,41.375863],[-88.628545,41.375889],[-88.619839,41.375989],[-88.610436,41.376114],[-88.603462,41.376243],[-88.59893,41.376335],[-88.592757,41.376464],[-88.585779,41.3766],[-88.581951,41.376685],[-88.58173,41.376689],[-88.578507,41.376748],[-88.576715,41.37681],[-88.572131,41.376841],[-88.564885,41.376937],[-88.562664,41.376957],[-88.561533,41.376983],[-88.550691,41.377134],[-88.546869,41.377167],[-88.541621,41.377223],[-88.536803,41.377294],[-88.535823,41.377308],[-88.530149,41.377376],[-88.523877,41.37746],[-88.505577,41.377688],[-88.501867,41.377747],[-88.501649,41.37775],[-88.493301,41.377843],[-88.492705,41.377852],[-88.489365,41.377905],[-88.480554,41.377997],[-88.476377,41.378061],[-88.471715,41.378121],[-88.467102,41.378142],[-88.466631,41.378152],[-88.463609,41.378219],[-88.461331,41.378241],[-88.45642,41.378289],[-88.452125,41.378348],[-88.447004,41.378408],[-88.445773,41.37845],[-88.444153,41.378575],[-88.44303,41.378736],[-88.442833,41.378764],[-88.441345,41.379061],[-88.440318,41.379327],[-88.439172,41.379663],[-88.438367,41.379936],[-88.436913,41.380504],[-88.435757,41.381038],[-88.434863,41.381505],[-88.433625,41.382215],[-88.433393,41.382348],[-88.432115,41.383061],[-88.430383,41.384028],[-88.429895,41.384304],[-88.427781,41.385496],[-88.427639,41.385575],[-88.426955,41.385955],[-88.426344,41.386294],[-88.42615,41.386403],[-88.419531,41.390153],[-88.417995,41.390996],[-88.417483,41.391277],[-88.413882,41.393329],[-88.412869,41.393904],[-88.411673,41.394573],[-88.406803,41.397299],[-88.405072,41.398295],[-88.404435,41.398644],[-88.403661,41.399069],[-88.402272,41.39988],[-88.401516,41.400284],[-88.400948,41.400614],[-88.40054,41.400838],[-88.40021,41.401019],[-88.400086,41.401088],[-88.399857,41.401217],[-88.399776,41.401262],[-88.399693,41.401309],[-88.399534,41.401399],[-88.39936,41.401497],[-88.396809,41.402939],[-88.392849,41.405165],[-88.390022,41.406761],[-88.387664,41.408073],[-88.385893,41.409073],[-88.384204,41.410035],[-88.382158,41.411166],[-88.377298,41.413922],[-88.37426,41.415653],[-88.372128,41.416843],[-88.37053,41.41775],[-88.36765,41.419386],[-88.365502,41.420542],[-88.362893,41.422052],[-88.361551,41.422805],[-88.360711,41.423276],[-88.359465,41.423978],[-88.357781,41.424929],[-88.354983,41.4265],[-88.352146,41.428082],[-88.351156,41.428622],[-88.350921,41.428762],[-88.350572,41.428963],[-88.349983,41.429285],[-88.349584,41.429552],[-88.348868,41.43],[-88.347787,41.430701],[-88.3471,41.43122],[-88.346025,41.432033],[-88.344132,41.433508],[-88.342822,41.434512],[-88.34157,41.435428],[-88.339981,41.436689],[-88.338247,41.438035],[-88.337469,41.438633],[-88.332082,41.442777],[-88.330645,41.443876],[-88.329918,41.444431],[-88.326983,41.446706],[-88.323814,41.44914],[-88.320692,41.451561],[-88.317935,41.453685],[-88.317662,41.453883],[-88.317481,41.454051],[-88.316732,41.45462],[-88.316338,41.454907],[-88.315574,41.455488],[-88.314418,41.456306],[-88.313553,41.456825],[-88.312975,41.457183],[-88.312613,41.457382],[-88.311674,41.457901],[-88.310195,41.458582],[-88.309729,41.458787],[-88.309026,41.459095],[-88.307611,41.459609],[-88.307476,41.459657],[-88.307336,41.459705],[-88.306529,41.459982],[-88.305795,41.460191],[-88.305229,41.460354],[-88.304962,41.460421],[-88.304122,41.46063],[-88.302955,41.460869],[-88.302111,41.461052],[-88.300614,41.461267],[-88.29992,41.461349],[-88.29939,41.461411],[-88.297717,41.461532],[-88.296443,41.461588],[-88.29427,41.461636],[-88.287881,41.461809],[-88.284053,41.461888],[-88.281141,41.46198],[-88.278893,41.462035],[-88.278542,41.462044],[-88.273739,41.462163],[-88.27332,41.46217],[-88.271932,41.4622],[-88.271228,41.462215],[-88.267938,41.462287],[-88.266473,41.462333],[-88.264973,41.462364],[-88.259713,41.462492],[-88.256012,41.46257],[-88.254706,41.46262],[-88.253875,41.462665],[-88.253211,41.462726],[-88.252504,41.462844],[-88.252047,41.46292],[-88.251199,41.463105],[-88.250426,41.463318],[-88.249452,41.463641],[-88.248265,41.464124],[-88.247406,41.464552],[-88.246688,41.46496],[-88.245834,41.465525],[-88.245011,41.466164],[-88.244461,41.466662],[-88.243786,41.467346],[-88.240352,41.470829],[-88.235803,41.475467],[-88.230149,41.48119],[-88.229406,41.481936],[-88.228384,41.482749],[-88.227741,41.483197],[-88.226986,41.483644],[-88.226042,41.484112],[-88.225048,41.484538],[-88.22413,41.484853],[-88.223146,41.485124],[-88.222011,41.485357],[-88.220941,41.48551],[-88.219654,41.485623],[-88.218659,41.485631],[-88.211902,41.485712],[-88.210814,41.485722],[-88.205459,41.485796],[-88.205222,41.4858],[-88.203929,41.485879],[-88.20344,41.485909],[-88.202486,41.485977],[-88.19998,41.486151],[-88.198032,41.486197],[-88.196836,41.486224],[-88.196768,41.486226],[-88.196197,41.48625],[-88.193065,41.486318],[-88.188068,41.486432],[-88.186523,41.486455],[-88.186114,41.486465],[-88.183365,41.486524],[-88.181325,41.486595],[-88.179743,41.486724],[-88.178188,41.486964],[-88.176805,41.487236],[-88.175215,41.48765],[-88.173712,41.488142],[-88.172682,41.48855],[-88.171621,41.489027],[-88.171447,41.48912],[-88.170566,41.489579],[-88.169727,41.490058],[-88.168777,41.490667],[-88.167473,41.49164],[-88.167083,41.491953],[-88.165935,41.492931],[-88.162985,41.495359],[-88.160605,41.497347],[-88.15785,41.499623],[-88.155215,41.501802],[-88.152788,41.503786],[-88.151644,41.504643],[-88.150234,41.505571],[-88.148662,41.506499],[-88.146962,41.50735],[-88.145466,41.508016],[-88.144038,41.508585],[-88.143812,41.508667],[-88.143285,41.508854],[-88.142074,41.50925],[-88.140433,41.509717],[-88.139144,41.510024],[-88.13747,41.510357],[-88.136129,41.510555],[-88.134675,41.510741],[-88.13384,41.510817],[-88.133411,41.510856],[-88.132146,41.510933],[-88.130439,41.510987],[-88.128064,41.511061],[-88.125034,41.511138],[-88.124799,41.511145],[-88.123563,41.511178],[-88.119899,41.511276],[-88.119498,41.511286],[-88.11518,41.511421],[-88.114964,41.511427],[-88.114456,41.511441],[-88.111808,41.511511],[-88.109395,41.511569],[-88.106381,41.511685],[-88.104174,41.511756],[-88.102709,41.511787],[-88.102056,41.511845],[-88.100934,41.51217],[-88.100343,41.512295],[-88.099903,41.51243],[-88.099094,41.512616],[-88.098788,41.512671],[-88.098137,41.512765],[-88.097051,41.512768],[-88.095781,41.512616],[-88.095146,41.512404],[-88.094827,41.512315],[-88.093506,41.511945],[-88.090299,41.511179],[-88.089872,41.511083],[-88.089521,41.511017],[-88.089178,41.510966],[-88.088814,41.510925],[-88.088435,41.510908],[-88.087978,41.5109],[-88.08759,41.510916],[-88.087201,41.51095],[-88.086306,41.51105],[-88.082434,41.511587],[-88.08227,41.511605],[-88.081625,41.5117],[-88.081416,41.51173],[-88.080015,41.511936],[-88.078291,41.512105],[-88.076719,41.512322],[-88.075954,41.512428],[-88.074885,41.512577],[-88.073258,41.512865],[-88.072663,41.512943],[-88.0714,41.513052],[-88.069898,41.513094],[-88.06479,41.513209],[-88.063701,41.513224],[-88.062908,41.513203],[-88.062261,41.51317],[-88.060084,41.512959],[-88.058789,41.512825],[-88.057466,41.512744],[-88.056217,41.512735],[-88.047989,41.512911],[-88.036413,41.513146],[-88.032256,41.513205],[-88.021544,41.513443],[-88.010189,41.513674],[-88.003796,41.513796],[-88.00217,41.513945],[-88.000696,41.514173],[-87.99941,41.514511],[-87.998352,41.514874],[-87.997103,41.51539],[-87.996705,41.51559],[-87.995894,41.51603],[-87.995181,41.51646],[-87.994366,41.51707],[-87.994211,41.517199],[-87.993594,41.517713],[-87.992727,41.518628],[-87.992215,41.519304],[-87.992017,41.519599],[-87.991842,41.519859],[-87.991671,41.520113],[-87.991125,41.521092],[-87.990994,41.521424],[-87.99083,41.52184],[-87.990614,41.522557],[-87.989954,41.52483],[-87.989694,41.525824],[-87.989268,41.526736],[-87.988719,41.527604],[-87.988191,41.528356],[-87.987544,41.529159],[-87.986831,41.529903],[-87.986125,41.530495],[-87.985247,41.531197],[-87.984209,41.531878],[-87.983121,41.532483],[-87.981997,41.532987],[-87.980992,41.533388],[-87.980024,41.533706],[-87.978744,41.534038],[-87.975266,41.53485],[-87.970031,41.536051],[-87.968925,41.536289],[-87.96412,41.537389],[-87.958507,41.538706],[-87.953417,41.539849],[-87.950564,41.540505],[-87.947126,41.541295],[-87.940002,41.54292],[-87.932688,41.544623],[-87.931807,41.544825],[-87.926807,41.545966],[-87.925477,41.546315],[-87.924111,41.546768],[-87.922987,41.547208],[-87.921667,41.547802],[-87.917248,41.549934],[-87.915684,41.550663],[-87.914544,41.551077],[-87.9132,41.551504],[-87.911783,41.551796],[-87.910559,41.551955],[-87.909939,41.551999],[-87.909411,41.552037],[-87.906378,41.552063],[-87.898739,41.552192],[-87.893514,41.552261],[-87.890473,41.552301],[-87.883092,41.552429],[-87.876458,41.552519],[-87.869522,41.552616],[-87.862347,41.552731],[-87.861765,41.552738],[-87.856509,41.552829],[-87.853731,41.552875],[-87.852309,41.552883],[-87.84733,41.552974],[-87.846318,41.552969],[-87.842897,41.55302],[-87.83825,41.553055],[-87.836354,41.553037],[-87.835206,41.552995],[-87.833902,41.552911],[-87.832281,41.552697],[-87.830879,41.552414],[-87.829541,41.552076],[-87.826796,41.551248],[-87.825698,41.550957],[-87.824707,41.550755],[-87.823245,41.550574],[-87.822162,41.550496],[-87.821012,41.550483],[-87.816014,41.550567],[-87.8072,41.550695],[-87.799226,41.550804],[-87.798775,41.550811],[-87.793162,41.550894],[-87.791488,41.550919],[-87.790566,41.550933],[-87.78463,41.551007],[-87.782334,41.551036],[-87.780957,41.551061],[-87.779861,41.551119],[-87.778643,41.551216],[-87.777535,41.551372],[-87.775955,41.551663],[-87.774374,41.552051],[-87.772853,41.552536],[-87.771299,41.553137],[-87.769329,41.554038],[-87.765279,41.555861],[-87.75964,41.558366],[-87.75503,41.560454],[-87.751412,41.562093],[-87.750395,41.562527],[-87.749592,41.562835],[-87.747292,41.563535],[-87.746591,41.563721],[-87.74494,41.564158],[-87.744482,41.564312],[-87.743601,41.564607],[-87.742657,41.56507],[-87.74185,41.565564],[-87.740657,41.56645],[-87.739884,41.566977],[-87.738983,41.56751],[-87.737636,41.568248],[-87.737062,41.568505],[-87.735609,41.569154],[-87.734171,41.569824],[-87.732734,41.57044],[-87.730713,41.571364],[-87.728981,41.572144],[-87.727024,41.573001],[-87.721428,41.575486],[-87.716681,41.577631],[-87.711695,41.579865],[-87.709732,41.58075],[-87.70869,41.581172],[-87.707555,41.581599],[-87.706815,41.581834],[-87.706132,41.582026],[-87.705251,41.582239],[-87.704509,41.582404],[-87.703734,41.582547],[-87.702845,41.582692],[-87.701929,41.582785],[-87.700311,41.582887],[-87.699089,41.582894],[-87.694808,41.58293],[-87.694097,41.582938],[-87.688515,41.582939],[-87.687246,41.582923],[-87.685472,41.582726],[-87.684365,41.582505],[-87.682879,41.582172],[-87.681816,41.581814],[-87.680569,41.581313],[-87.679072,41.580583],[-87.677144,41.579428],[-87.676402,41.579055],[-87.675478,41.578665],[-87.674419,41.578332],[-87.673577,41.578139],[-87.672753,41.577997],[-87.671807,41.577914],[-87.671024,41.577883],[-87.670162,41.577877],[-87.6686,41.57785],[-87.666599,41.577876],[-87.665643,41.577907],[-87.665181,41.577922],[-87.663074,41.577992],[-87.661199,41.577996],[-87.654671,41.578031],[-87.646504,41.578086],[-87.645715,41.578088],[-87.645658,41.578088],[-87.636002,41.578148],[-87.633503,41.578236],[-87.62828,41.579131],[-87.627769,41.579174],[-87.626567,41.579276],[-87.624164,41.579341],[-87.620197,41.579335],[-87.61133,41.579364],[-87.605968,41.579379],[-87.604797,41.579338],[-87.60376,41.579255],[-87.602708,41.579127],[-87.601579,41.57895],[-87.599772,41.578688],[-87.599111,41.578591],[-87.596907,41.578271],[-87.595688,41.578115],[-87.595457,41.578083],[-87.594582,41.57796],[-87.59325,41.57778],[-87.592135,41.577674],[-87.591236,41.57762],[-87.590488,41.577595],[-87.589632,41.577593],[-87.588599,41.577596],[-87.58753,41.5776],[-87.584847,41.577606],[-87.581809,41.577621],[-87.581136,41.577622],[-87.579949,41.577621],[-87.578325,41.577629],[-87.57655,41.577629],[-87.571266,41.577642],[-87.568234,41.577646],[-87.565032,41.577654],[-87.562252,41.577641],[-87.557899,41.577652],[-87.551113,41.577658],[-87.548703,41.577658],[-87.547576,41.577658],[-87.544616,41.577661],[-87.542879,41.577662],[-87.541674,41.577673],[-87.539754,41.577677],[-87.539018,41.577685],[-87.536937,41.577692],[-87.53308,41.577695],[-87.532057,41.577694],[-87.531316,41.577685],[-87.53058,41.577659],[-87.529911,41.577621],[-87.529195,41.577559],[-87.528544,41.577487],[-87.527965,41.577415],[-87.527104,41.57728],[-87.52638,41.577148],[-87.525889,41.577049],[-87.525357,41.576929],[-87.525029,41.576854],[-87.52455,41.576732],[-87.523845,41.576543],[-87.522725,41.576235],[-87.521866,41.576002],[-87.520041,41.575499],[-87.517979,41.574929],[-87.517653,41.574849],[-87.517124,41.574721],[-87.516626,41.574606],[-87.515969,41.574469],[-87.515182,41.57433],[-87.514039,41.574177],[-87.513305,41.574097],[-87.512644,41.574038],[-87.511973,41.573993],[-87.511272,41.573962],[-87.510668,41.573953],[-87.509865,41.573952],[-87.508526,41.573966],[-87.506792,41.573982],[-87.504898,41.573984],[-87.500018,41.574034],[-87.49151,41.574117],[-87.485919,41.574129],[-87.485544,41.57413],[-87.48545,41.574132],[-87.483283,41.574146],[-87.482388,41.574138],[-87.481613,41.574134],[-87.480787,41.57412],[-87.479479,41.574106],[-87.474351,41.574079],[-87.469368,41.574053],[-87.467097,41.574045],[-87.466289,41.574042],[-87.458535,41.574006],[-87.456831,41.573976],[-87.451279,41.573955],[-87.450601,41.573949],[-87.449942,41.573921],[-87.449271,41.573886],[-87.448605,41.57383],[-87.447986,41.573769],[-87.447334,41.573688],[-87.446589,41.573578],[-87.446027,41.573482],[-87.445266,41.573333],[-87.444588,41.57318],[-87.443965,41.57303],[-87.443458,41.572888],[-87.442838,41.572698],[-87.441897,41.572399],[-87.440973,41.572059],[-87.44019,41.57176],[-87.439458,41.571502],[-87.438717,41.571253],[-87.438028,41.571035],[-87.437324,41.570835],[-87.436582,41.570648],[-87.435777,41.570469],[-87.435115,41.570338],[-87.434289,41.570202],[-87.433437,41.570083],[-87.432969,41.570029],[-87.432437,41.569971],[-87.431928,41.569927],[-87.431118,41.569885],[-87.430412,41.569858],[-87.428575,41.569852],[-87.427434,41.569851],[-87.424362,41.569845],[-87.422255,41.569836],[-87.41961,41.569835],[-87.415923,41.569829],[-87.41261,41.569805],[-87.410796,41.569801],[-87.406021,41.569788],[-87.399828,41.569756],[-87.397382,41.569742],[-87.391817,41.5697],[-87.384882,41.569659],[-87.377758,41.569623],[-87.371134,41.569586],[-87.365781,41.569554],[-87.363666,41.569546],[-87.362922,41.569535],[-87.361937,41.569503],[-87.361197,41.569471],[-87.36038,41.569421],[-87.359693,41.569369],[-87.358571,41.56926],[-87.357996,41.569192],[-87.357263,41.569102],[-87.35641,41.568988],[-87.355525,41.568854],[-87.354121,41.568618],[-87.352702,41.568378],[-87.35068,41.56804],[-87.349875,41.567925],[-87.349196,41.567827],[-87.348058,41.567684],[-87.346885,41.567566],[-87.346016,41.5675],[-87.345098,41.567444],[-87.344224,41.567405],[-87.343489,41.567381],[-87.341041,41.567372],[-87.338159,41.567356],[-87.335957,41.567343],[-87.332023,41.567326],[-87.329173,41.567299],[-87.324509,41.567266],[-87.319423,41.567229],[-87.31757,41.567244],[-87.3165,41.567238],[-87.315418,41.56723],[-87.314241,41.567241],[-87.313401,41.567261],[-87.312266,41.567315],[-87.311508,41.567362],[-87.310464,41.56745],[-87.309611,41.567527],[-87.308859,41.567613],[-87.30783,41.567744],[-87.306758,41.567899],[-87.30562,41.568091],[-87.304759,41.568255],[-87.303018,41.56858],[-87.29975,41.569193],[-87.296566,41.5698],[-87.292676,41.570531],[-87.292475,41.570568],[-87.291919,41.570674],[-87.290488,41.570946],[-87.287671,41.571475],[-87.284284,41.572105],[-87.283344,41.57228],[-87.282538,41.572436],[-87.279127,41.57308],[-87.278292,41.573238],[-87.274146,41.574019],[-87.27216,41.574382],[-87.268293,41.575126],[-87.266375,41.57551],[-87.26478,41.575857],[-87.263565,41.57613],[-87.262358,41.576419],[-87.26086,41.576802],[-87.259667,41.577125],[-87.25841,41.577485],[-87.256934,41.577924],[-87.254596,41.578631],[-87.251581,41.579545],[-87.247367,41.580826],[-87.244887,41.581573],[-87.241148,41.582706],[-87.240072,41.583034],[-87.236778,41.58403],[-87.235671,41.584378],[-87.234661,41.58463],[-87.232529,41.585332],[-87.23062,41.58617],[-87.23043,41.586231],[-87.230266,41.586252],[-87.230084,41.586244],[-87.2299,41.586204],[-87.229753,41.586126],[-87.229605,41.586026],[-87.229511,41.585885],[-87.229467,41.585749],[-87.229468,41.585587],[-87.229531,41.585418],[-87.229622,41.585313],[-87.229764,41.585215],[-87.229922,41.585148],[-87.230106,41.585106],[-87.23029,41.585101],[-87.230467,41.585127],[-87.23063,41.585187],[-87.230802,41.585298],[-87.230928,41.585439],[-87.231174,41.585746],[-87.231697,41.586432],[-87.232045,41.586913],[-87.232294,41.587344],[-87.232438,41.587656],[-87.232569,41.588005],[-87.232952,41.58904],[-87.233124,41.589487],[-87.233563,41.590717],[-87.233612,41.59098],[-87.233616,41.591141],[-87.233587,41.591278],[-87.233539,41.591376],[-87.233444,41.591481],[-87.23331,41.591581],[-87.232379,41.59212],[-87.232217,41.592199],[-87.232048,41.592261],[-87.231865,41.59229],[-87.231694,41.592297],[-87.231482,41.592278],[-87.230757,41.592112],[-87.230087,41.591943],[-87.229682,41.591878],[-87.229111,41.591697],[-87.228503,41.591497],[-87.227824,41.591266],[-87.226273,41.590758],[-87.221489,41.589178],[-87.218936,41.588331],[-87.217743,41.587945],[-87.216924,41.587705],[-87.215997,41.587448],[-87.215076,41.587226],[-87.214317,41.587061],[-87.213536,41.586912],[-87.212612,41.586753],[-87.211917,41.58666],[-87.211048,41.586548],[-87.210342,41.586478],[-87.20877,41.586332],[-87.207325,41.58619],[-87.206599,41.586114],[-87.20599,41.586024],[-87.205399,41.58591],[-87.20491,41.585788],[-87.204392,41.585628],[-87.203855,41.585429],[-87.203456,41.585251],[-87.202942,41.584996],[-87.202562,41.584774],[-87.202274,41.584592],[-87.202102,41.58448],[-87.201163,41.583798],[-87.200656,41.583431],[-87.199945,41.582927],[-87.199479,41.582628],[-87.199069,41.58239],[-87.198655,41.582176],[-87.198273,41.582006],[-87.197892,41.581852],[-87.197541,41.581731],[-87.197208,41.581624],[-87.196568,41.581462],[-87.196033,41.581349],[-87.195419,41.581254],[-87.194558,41.581143],[-87.192167,41.580879],[-87.190184,41.580665],[-87.188695,41.580526],[-87.187417,41.580421],[-87.186158,41.580331],[-87.184752,41.580248],[-87.183667,41.580197],[-87.182965,41.580167],[-87.181913,41.580138],[-87.179944,41.580102],[-87.176956,41.580056],[-87.173846,41.57999],[-87.173062,41.579975],[-87.168843,41.579939],[-87.168392,41.579933],[-87.167166,41.579913],[-87.166709,41.579896],[-87.166009,41.579847],[-87.165455,41.579791],[-87.164894,41.579718],[-87.164406,41.579639],[-87.163871,41.579537],[-87.163291,41.579401],[-87.162801,41.579277],[-87.162309,41.579132],[-87.161764,41.578954],[-87.161265,41.578768],[-87.160756,41.578562],[-87.160332,41.578372],[-87.159777,41.578098],[-87.159301,41.577845],[-87.158833,41.577569],[-87.158504,41.577358],[-87.158053,41.577046],[-87.157669,41.576762],[-87.157228,41.576407],[-87.156882,41.576126],[-87.156335,41.575677],[-87.156041,41.575435],[-87.155607,41.575079],[-87.155149,41.574699],[-87.154724,41.57437],[-87.154309,41.574057],[-87.153857,41.573756],[-87.153427,41.573499],[-87.152979,41.573258],[-87.152637,41.573087],[-87.152319,41.572949],[-87.151952,41.572794],[-87.151365,41.572579],[-87.150829,41.572413],[-87.150204,41.572246],[-87.149527,41.572103],[-87.148876,41.572002],[-87.148284,41.571934],[-87.147737,41.571899],[-87.147084,41.571878],[-87.146336,41.571871],[-87.139753,41.571852],[-87.133902,41.571833],[-87.131573,41.571826],[-87.130906,41.571839],[-87.130552,41.571858],[-87.130231,41.571881],[-87.129663,41.571939],[-87.129068,41.572028],[-87.128679,41.572103],[-87.128112,41.572227],[-87.127602,41.572365],[-87.127109,41.572524],[-87.126473,41.572747],[-87.126014,41.572946],[-87.125636,41.573128],[-87.12523,41.573331],[-87.124718,41.573622],[-87.124126,41.573991],[-87.122281,41.575171],[-87.12162,41.575588],[-87.120856,41.576074],[-87.120334,41.576392],[-87.119893,41.576653],[-87.11932,41.576953],[-87.118823,41.577187],[-87.118178,41.577465],[-87.117556,41.577697],[-87.117007,41.577879],[-87.116462,41.57804],[-87.115832,41.578202],[-87.11521,41.578335],[-87.114578,41.578449],[-87.114008,41.578528],[-87.113301,41.578603],[-87.11263,41.578649],[-87.111789,41.578677],[-87.110903,41.578681],[-87.105426,41.57869],[-87.104987,41.578691],[-87.103668,41.578693],[-87.102365,41.578699],[-87.101235,41.578728],[-87.099956,41.578769],[-87.098167,41.57885],[-87.097114,41.578914],[-87.096079,41.578987],[-87.095137,41.579054],[-87.093208,41.579209],[-87.092026,41.579287],[-87.091093,41.579343],[-87.089415,41.579413],[-87.087925,41.579459],[-87.086363,41.579486],[-87.084854,41.579493],[-87.076507,41.579421],[-87.075021,41.579401],[-87.074013,41.579353],[-87.073498,41.579312],[-87.072915,41.579247],[-87.072194,41.579148],[-87.071474,41.579023],[-87.070814,41.578883],[-87.070161,41.578725],[-87.069555,41.578556],[-87.068651,41.578263],[-87.067893,41.577989],[-87.064252,41.576609],[-87.063593,41.576365],[-87.062673,41.576054],[-87.061713,41.575758],[-87.060732,41.575493],[-87.060083,41.575333],[-87.059463,41.575194],[-87.058464,41.574982],[-87.057451,41.574808],[-87.056557,41.574681],[-87.05529,41.574509],[-87.053258,41.574235],[-87.050081,41.573806],[-87.046554,41.573331],[-87.042777,41.572825],[-87.0415,41.57265],[-87.039624,41.572414],[-87.038825,41.572323],[-87.037532,41.572189],[-87.036521,41.572095],[-87.035517,41.572009],[-87.034266,41.571915],[-87.031879,41.571778],[-87.029908,41.5717],[-87.028732,41.571674],[-87.02082,41.571555],[-87.018641,41.571519],[-87.018141,41.571512],[-87.012649,41.571431],[-87.008884,41.571368],[-87.007541,41.571329],[-87.006631,41.571291],[-87.005755,41.571251],[-87.004789,41.571198],[-87.003881,41.571137],[-87.003146,41.571087],[-87.001937,41.570985],[-87.000711,41.570878],[-86.999202,41.570725],[-86.998784,41.570687],[-86.997473,41.570573],[-86.996887,41.57052],[-86.996292,41.570477],[-86.995531,41.570428],[-86.994537,41.570387],[-86.993579,41.570359],[-86.992805,41.57035],[-86.991819,41.57035],[-86.99095,41.570371],[-86.990163,41.570394],[-86.989473,41.570424],[-86.989061,41.570446],[-86.988202,41.570513],[-86.987352,41.570581],[-86.986453,41.570671],[-86.985476,41.570787],[-86.984544,41.570913],[-86.983673,41.571051],[-86.982944,41.571173],[-86.982043,41.571337],[-86.981169,41.571513],[-86.976623,41.572459],[-86.973842,41.573042],[-86.969148,41.57402],[-86.967972,41.574272],[-86.966817,41.574535],[-86.965644,41.574811],[-86.964476,41.575098],[-86.963513,41.575362],[-86.962257,41.575707],[-86.96107,41.576048],[-86.959841,41.57642],[-86.958694,41.576777],[-86.957601,41.577134],[-86.956666,41.577457],[-86.955893,41.577721],[-86.955148,41.577985],[-86.954258,41.578318],[-86.953485,41.578613],[-86.95248,41.579006],[-86.95052,41.579792],[-86.946789,41.581307],[-86.945833,41.581687],[-86.945069,41.581996],[-86.944104,41.582369],[-86.943194,41.582693],[-86.942334,41.582987],[-86.941594,41.583226],[-86.940613,41.583522],[-86.93957,41.583811],[-86.938723,41.584028],[-86.937575,41.584295],[-86.936407,41.584547],[-86.935389,41.584743],[-86.934211,41.584937],[-86.93308,41.585102],[-86.930114,41.585524],[-86.919911,41.586963],[-86.91123,41.588183],[-86.910219,41.58833],[-86.908762,41.588554],[-86.907984,41.58868],[-86.906353,41.588955],[-86.900073,41.590012],[-86.899013,41.590192],[-86.896001,41.5907],[-86.892402,41.591308],[-86.889165,41.591856],[-86.880069,41.593384],[-86.875673,41.594124],[-86.874842,41.594269],[-86.873982,41.594439],[-86.873153,41.594638],[-86.872369,41.594869],[-86.871433,41.595188],[-86.870691,41.595475],[-86.869902,41.595828],[-86.869183,41.596192],[-86.868445,41.596618],[-86.867733,41.597082],[-86.867088,41.59755],[-86.866583,41.597957],[-86.866166,41.598332],[-86.865758,41.598718],[-86.865441,41.599047],[-86.864782,41.599759],[-86.864423,41.600146],[-86.86343,41.601218],[-86.862643,41.60205],[-86.86177,41.602973],[-86.861307,41.603431],[-86.860819,41.603871],[-86.860276,41.604317],[-86.859729,41.60474],[-86.85919,41.605119],[-86.858552,41.605539],[-86.85786,41.605963],[-86.857204,41.606322],[-86.856635,41.606616],[-86.85599,41.606922],[-86.855376,41.607192],[-86.854716,41.607463],[-86.854195,41.607661],[-86.853521,41.607893],[-86.852838,41.60811],[-86.848243,41.609514],[-86.845653,41.61031],[-86.840859,41.611789],[-86.837268,41.612881],[-86.836874,41.613004],[-86.834144,41.613843],[-86.830808,41.614864],[-86.828033,41.61571],[-86.825501,41.616495],[-86.82333,41.617162],[-86.820664,41.617978],[-86.813576,41.620149],[-86.810184,41.621188],[-86.808524,41.621697],[-86.807529,41.622012],[-86.80666,41.622315],[-86.805767,41.622656],[-86.80484,41.623024],[-86.803823,41.623483],[-86.803007,41.623889],[-86.802249,41.624288],[-86.801352,41.62481],[-86.800501,41.625335],[-86.799725,41.625857],[-86.79904,41.626357],[-86.798471,41.626803],[-86.797857,41.627306],[-86.797347,41.627735],[-86.796834,41.628221],[-86.795961,41.629051],[-86.795597,41.629408],[-86.794756,41.630183],[-86.79398,41.630879],[-86.792978,41.631746],[-86.791879,41.632668],[-86.791121,41.633283],[-86.790084,41.634096],[-86.78925,41.634729],[-86.788413,41.63535],[-86.787615,41.635923],[-86.78681,41.636486],[-86.785924,41.637084],[-86.784652,41.63793],[-86.782695,41.639216],[-86.781898,41.639744],[-86.781021,41.640358],[-86.780301,41.640888],[-86.779576,41.641449],[-86.778816,41.642067],[-86.77808,41.642701],[-86.777413,41.643308],[-86.776819,41.643874],[-86.776026,41.644656],[-86.772245,41.648425],[-86.771704,41.64895],[-86.771216,41.649404],[-86.770341,41.650177],[-86.769543,41.650834],[-86.768982,41.651272],[-86.768464,41.651669],[-86.767752,41.652191],[-86.767274,41.652527],[-86.766281,41.653189],[-86.76533,41.65378],[-86.764648,41.654189],[-86.763623,41.654762],[-86.763101,41.655042],[-86.761869,41.655682],[-86.761085,41.656057],[-86.760318,41.656408],[-86.759039,41.656961],[-86.757645,41.657507],[-86.756418,41.65794],[-86.755185,41.658352],[-86.753856,41.658749],[-86.751996,41.659264],[-86.751092,41.65952],[-86.749402,41.660003],[-86.747693,41.660483],[-86.743977,41.661532],[-86.742172,41.662075],[-86.740399,41.662644],[-86.738907,41.663152],[-86.738597,41.663257],[-86.737134,41.663793],[-86.736384,41.664076],[-86.735503,41.664418],[-86.734604,41.664778],[-86.731998,41.665885],[-86.730599,41.666484],[-86.727073,41.667992],[-86.726173,41.668377],[-86.725222,41.668771],[-86.724324,41.669125],[-86.723263,41.66953],[-86.722239,41.669906],[-86.721253,41.670248],[-86.720408,41.670526],[-86.719758,41.670734],[-86.719146,41.670933],[-86.717771,41.671351],[-86.716743,41.671632],[-86.715404,41.671986],[-86.714006,41.672333],[-86.712546,41.672662],[-86.711553,41.672868],[-86.710649,41.673047],[-86.709798,41.673202],[-86.708724,41.673384],[-86.707837,41.673527],[-86.70689,41.673665],[-86.705908,41.673796],[-86.704969,41.673915],[-86.703807,41.674042],[-86.703046,41.674119],[-86.702171,41.6742],[-86.701293,41.674265],[-86.700036,41.674342],[-86.699614,41.674365],[-86.698772,41.674413],[-86.698056,41.674437],[-86.69712,41.674467],[-86.696111,41.674481],[-86.69526,41.674488],[-86.694422,41.674481],[-86.693535,41.674466],[-86.692609,41.674441],[-86.691621,41.674404],[-86.690477,41.674348],[-86.689133,41.674271],[-86.68554,41.67406],[-86.682731,41.673899],[-86.679905,41.673728],[-86.678128,41.673629],[-86.677248,41.673591],[-86.676454,41.673585],[-86.675771,41.67362],[-86.675044,41.673694],[-86.674294,41.673833],[-86.673587,41.674005],[-86.672792,41.674255],[-86.672204,41.67448],[-86.671552,41.674796],[-86.670951,41.675131],[-86.670425,41.675486],[-86.669957,41.675847],[-86.669575,41.676191],[-86.669248,41.67651],[-86.668682,41.677123],[-86.66721,41.678758],[-86.666783,41.679214],[-86.666223,41.679781],[-86.665765,41.680206],[-86.665253,41.680646],[-86.66464,41.68112],[-86.66408,41.681536],[-86.663329,41.68203],[-86.66254,41.68251],[-86.661951,41.682843],[-86.661271,41.68319],[-86.660473,41.683561],[-86.659651,41.683903],[-86.652934,41.686474],[-86.651633,41.686971],[-86.650743,41.687326],[-86.649864,41.687721],[-86.649058,41.6881],[-86.648247,41.688509],[-86.647465,41.688934],[-86.646726,41.689368],[-86.645913,41.689889],[-86.645162,41.690407],[-86.644463,41.690922],[-86.643804,41.691437],[-86.642857,41.692221],[-86.641503,41.693368],[-86.639126,41.695374],[-86.638035,41.696293],[-86.637232,41.696917],[-86.636488,41.69748],[-86.635544,41.698131],[-86.634881,41.698583],[-86.634016,41.699129],[-86.633352,41.699528],[-86.6328,41.699852],[-86.632133,41.700225],[-86.630799,41.700941],[-86.629676,41.701535],[-86.628919,41.701932],[-86.627912,41.702476],[-86.627253,41.702854],[-86.626223,41.703471],[-86.625677,41.703816],[-86.624894,41.704337],[-86.624392,41.704679],[-86.623686,41.705188],[-86.623122,41.705613],[-86.622473,41.706111],[-86.621568,41.706846],[-86.620555,41.707678],[-86.619243,41.708748],[-86.616421,41.711053],[-86.613606,41.713368],[-86.612013,41.71475],[-86.611168,41.715506],[-86.610015,41.716595],[-86.609526,41.717072],[-86.604777,41.721775],[-86.604075,41.722467],[-86.603726,41.722796],[-86.603345,41.723121],[-86.602978,41.72341],[-86.602519,41.723745],[-86.602026,41.724071],[-86.601569,41.724342],[-86.601034,41.724635],[-86.600505,41.724903],[-86.59986,41.725184],[-86.59934,41.725396],[-86.59877,41.725596],[-86.598212,41.725774],[-86.597672,41.725924],[-86.597109,41.726057],[-86.596505,41.726187],[-86.595952,41.726281],[-86.595346,41.726364],[-86.594757,41.726429],[-86.594191,41.726472],[-86.593607,41.726496],[-86.593013,41.726511],[-86.583672,41.726646],[-86.58326,41.726652],[-86.579381,41.726709],[-86.57543,41.726768],[-86.574397,41.726802],[-86.573347,41.72687],[-86.572193,41.726981],[-86.57118,41.727119],[-86.570311,41.727256],[-86.56956,41.727395],[-86.568776,41.727562],[-86.568006,41.72775],[-86.567248,41.727952],[-86.566475,41.728175],[-86.565442,41.728512],[-86.564487,41.728858],[-86.563818,41.72913],[-86.563116,41.729438],[-86.560656,41.73052],[-86.559949,41.730837],[-86.559198,41.731152],[-86.558469,41.731442],[-86.557736,41.731707],[-86.557106,41.73192],[-86.556206,41.732208],[-86.555448,41.732429],[-86.554716,41.73262],[-86.553896,41.732822],[-86.553082,41.732995],[-86.552228,41.733155],[-86.551168,41.733328],[-86.550167,41.733478],[-86.548868,41.733679],[-86.547768,41.73389],[-86.546764,41.734113],[-86.545989,41.734304],[-86.545277,41.734495],[-86.544492,41.734729],[-86.543778,41.734958],[-86.543121,41.735187],[-86.542417,41.735448],[-86.541837,41.735677],[-86.541287,41.735904],[-86.540772,41.736126],[-86.53736,41.737652],[-86.535537,41.738466],[-86.534658,41.738852],[-86.53371,41.739245],[-86.532855,41.739583],[-86.531946,41.739918],[-86.531118,41.740197],[-86.530353,41.740457],[-86.529421,41.740739],[-86.528258,41.741074],[-86.527156,41.741356],[-86.526075,41.741612],[-86.525365,41.741768],[-86.524656,41.741909],[-86.524263,41.741986],[-86.523387,41.742149],[-86.522624,41.742279],[-86.52183,41.742397],[-86.521127,41.742497],[-86.520081,41.742623],[-86.518995,41.742736],[-86.517859,41.742826],[-86.516793,41.742891],[-86.516026,41.742924],[-86.515308,41.742941],[-86.514325,41.74296],[-86.511469,41.742988],[-86.509262,41.743017],[-86.507489,41.743039],[-86.506892,41.743046],[-86.506402,41.743058],[-86.505745,41.74308],[-86.505125,41.743114],[-86.504551,41.743159],[-86.503928,41.743214],[-86.5033,41.743274],[-86.502703,41.743338],[-86.502187,41.743401],[-86.501417,41.743517],[-86.500665,41.74364],[-86.500156,41.743737],[-86.499613,41.743841],[-86.499076,41.743954],[-86.498559,41.744059],[-86.497818,41.744239],[-86.497325,41.744357],[-86.496822,41.744503],[-86.495905,41.744758],[-86.4954,41.744916],[-86.489276,41.746864],[-86.485501,41.748068],[-86.480863,41.749538],[-86.476708,41.750856],[-86.47319,41.751975],[-86.469099,41.753274],[-86.466783,41.754002],[-86.464688,41.754671],[-86.463494,41.755033],[-86.463078,41.755148],[-86.462709,41.755238],[-86.462325,41.755325],[-86.461951,41.755408],[-86.461372,41.755515],[-86.460863,41.755596],[-86.460456,41.755656],[-86.459869,41.755726],[-86.459247,41.75578],[-86.458577,41.755817],[-86.457961,41.755839],[-86.457462,41.755838],[-86.457005,41.755827],[-86.456589,41.755814],[-86.456049,41.755783],[-86.455518,41.755741],[-86.454892,41.755674],[-86.454406,41.755606],[-86.453801,41.755509],[-86.453177,41.755386],[-86.452575,41.755258],[-86.45199,41.755112],[-86.451355,41.75493],[-86.450765,41.754737],[-86.450338,41.754589],[-86.449929,41.754434],[-86.4495,41.754259],[-86.44912,41.754092],[-86.448732,41.753922],[-86.448238,41.753674],[-86.44788,41.753487],[-86.447454,41.753252],[-86.447004,41.75299],[-86.444927,41.751695],[-86.444079,41.751178],[-86.443791,41.751012],[-86.443488,41.750846],[-86.442955,41.750576],[-86.442542,41.750375],[-86.442243,41.750238],[-86.441702,41.750013],[-86.441217,41.749822],[-86.440846,41.749693],[-86.440476,41.749563],[-86.440021,41.749419],[-86.439486,41.749266],[-86.438967,41.749122],[-86.438448,41.749001],[-86.438074,41.748922],[-86.437503,41.748814],[-86.437152,41.748757],[-86.436566,41.748668],[-86.436094,41.748612],[-86.435725,41.748575],[-86.435353,41.748544],[-86.434717,41.748504],[-86.434245,41.748487],[-86.433472,41.74848],[-86.429667,41.74847],[-86.428525,41.748472],[-86.420319,41.748471],[-86.415313,41.748465],[-86.414797,41.748459],[-86.414315,41.748446],[-86.413913,41.748429],[-86.41351,41.748403],[-86.412941,41.748364],[-86.412509,41.748321],[-86.412142,41.74828],[-86.41174,41.748231],[-86.411322,41.748169],[-86.41092,41.748106],[-86.410099,41.747963],[-86.409509,41.747843],[-86.409021,41.747729],[-86.408387,41.747569],[-86.407918,41.74744],[-86.407532,41.747325],[-86.407201,41.747222],[-86.406699,41.747059],[-86.40604,41.746821],[-86.40553,41.746625],[-86.404922,41.746372],[-86.404342,41.746114],[-86.403778,41.74584],[-86.403249,41.745566],[-86.402857,41.745349],[-86.40243,41.745103],[-86.401959,41.744818],[-86.40149,41.744514],[-86.400432,41.743788],[-86.398382,41.742363],[-86.396703,41.741202],[-86.39442,41.739611],[-86.391784,41.737788],[-86.390201,41.736688],[-86.389318,41.736095],[-86.388648,41.735676],[-86.387912,41.735243],[-86.387107,41.734795],[-86.386631,41.734547],[-86.386168,41.734314],[-86.385481,41.733983],[-86.384893,41.733714],[-86.384388,41.733493],[-86.383672,41.733194],[-86.383021,41.732939],[-86.382352,41.732691],[-86.381628,41.732441],[-86.381002,41.732237],[-86.380228,41.732001],[-86.379522,41.731802],[-86.378749,41.731597],[-86.37779,41.73137],[-86.377126,41.731224],[-86.376399,41.73108],[-86.375704,41.730961],[-86.374975,41.730844],[-86.374469,41.730771],[-86.374051,41.730714],[-86.373545,41.730653],[-86.373002,41.730593],[-86.37225,41.730521],[-86.37175,41.730479],[-86.371336,41.730456],[-86.370482,41.730412],[-86.369782,41.730387],[-86.368924,41.730374],[-86.364255,41.730328],[-86.360482,41.730292],[-86.358814,41.730273],[-86.355766,41.730242],[-86.353142,41.730217],[-86.351024,41.730211],[-86.347953,41.730225],[-86.338855,41.730269],[-86.329903,41.730302],[-86.323061,41.730326],[-86.314493,41.730358],[-86.313979,41.73036],[-86.313373,41.730341],[-86.3128,41.730314],[-86.312215,41.730273],[-86.311622,41.730218],[-86.311049,41.730152],[-86.310533,41.730085],[-86.309809,41.729976],[-86.309263,41.729876],[-86.308609,41.729747],[-86.30796,41.729595],[-86.307344,41.729436],[-86.306813,41.729286],[-86.306118,41.729066],[-86.305585,41.728887],[-86.305068,41.728699],[-86.304639,41.72853],[-86.304013,41.728276],[-86.303482,41.72804],[-86.302802,41.727705],[-86.30249,41.727546],[-86.302016,41.727294],[-86.301456,41.726973],[-86.298759,41.725334],[-86.298183,41.724988],[-86.297599,41.724652],[-86.297203,41.72444],[-86.296777,41.724227],[-86.296371,41.724035],[-86.295937,41.723844],[-86.295494,41.723664],[-86.295052,41.723492],[-86.294624,41.723344],[-86.294066,41.723158],[-86.293558,41.723006],[-86.293093,41.722878],[-86.292505,41.722735],[-86.292024,41.722632],[-86.291664,41.722562],[-86.29124,41.722485],[-86.290864,41.722426],[-86.290168,41.722333],[-86.289768,41.722289],[-86.289255,41.722246],[-86.288767,41.722212],[-86.28834,41.722194],[-86.287799,41.722186],[-86.28705,41.722188],[-86.271196,41.722358],[-86.269663,41.722372],[-86.26809,41.722381],[-86.266309,41.722405],[-86.262587,41.722452],[-86.260671,41.722472],[-86.258998,41.722495],[-86.256123,41.722518],[-86.255532,41.722523],[-86.253216,41.722557],[-86.252389,41.722565],[-86.252016,41.722567],[-86.251546,41.722561],[-86.251201,41.722545],[-86.250903,41.72253],[-86.25044,41.722482],[-86.250005,41.722423],[-86.249624,41.722352],[-86.249239,41.722267],[-86.248698,41.722128],[-86.24833,41.722009],[-86.247882,41.721846],[-86.247377,41.721627],[-86.246968,41.721423],[-86.246638,41.72124],[-86.246238,41.721],[-86.245631,41.720609],[-86.245486,41.720514],[-86.245037,41.720225],[-86.244245,41.719702],[-86.242731,41.718721],[-86.242497,41.718563],[-86.241928,41.718205],[-86.241549,41.717974],[-86.24121,41.717778],[-86.240864,41.7176],[-86.240454,41.717413],[-86.240067,41.717254],[-86.23967,41.717115],[-86.239282,41.716995],[-86.238911,41.716897],[-86.238457,41.716797],[-86.237953,41.716704],[-86.237503,41.716646],[-86.237154,41.716612],[-86.236602,41.716571],[-86.236007,41.716546],[-86.235575,41.716531],[-86.232287,41.716427],[-86.222225,41.71609],[-86.216202,41.715885],[-86.214455,41.715833],[-86.213588,41.715816],[-86.212824,41.715806],[-86.21198,41.715799],[-86.211065,41.715802],[-86.210253,41.715813],[-86.206825,41.715863],[-86.200156,41.715955],[-86.197141,41.715987],[-86.196085,41.716001],[-86.192235,41.716059],[-86.188692,41.716104],[-86.180302,41.716224],[-86.178186,41.716252],[-86.177261,41.716265],[-86.176478,41.716283],[-86.17575,41.71631],[-86.175015,41.716357],[-86.174185,41.716423],[-86.173223,41.71653],[-86.172458,41.716632],[-86.171842,41.71672],[-86.171253,41.716817],[-86.170544,41.716954],[-86.169859,41.717097],[-86.168932,41.717306],[-86.168196,41.717497],[-86.167388,41.717727],[-86.166895,41.717876],[-86.166339,41.718055],[-86.16582,41.71823],[-86.165326,41.718408],[-86.164789,41.718609],[-86.164279,41.718812],[-86.163666,41.719064],[-86.163046,41.719344],[-86.162594,41.719557],[-86.162077,41.719807],[-86.161525,41.720089],[-86.160838,41.72046],[-86.160302,41.720772],[-86.149406,41.727335],[-86.146389,41.729158],[-86.144953,41.730021],[-86.144123,41.730505],[-86.143541,41.730811],[-86.142954,41.731098],[-86.142416,41.731352],[-86.141892,41.731572],[-86.14104,41.73191],[-86.1407,41.73203],[-86.140085,41.732236],[-86.139526,41.732407],[-86.138989,41.732565],[-86.138573,41.732676],[-86.137972,41.732821],[-86.137393,41.732951],[-86.136796,41.733067],[-86.135995,41.733204],[-86.135347,41.733292],[-86.134757,41.733367],[-86.133784,41.733452],[-86.133224,41.733485],[-86.132698,41.733507],[-86.132147,41.733521],[-86.130414,41.733539],[-86.12926,41.733554],[-86.117184,41.733674],[-86.113158,41.733718],[-86.112329,41.733718],[-86.111497,41.733714],[-86.110733,41.733699],[-86.109967,41.73367],[-86.10904,41.733621],[-86.10817,41.733566],[-86.107485,41.733508],[-86.106717,41.733432],[-86.105711,41.733323],[-86.104879,41.733214],[-86.10393,41.733076],[-86.102632,41.732879],[-86.09882,41.732263],[-86.096001,41.731819],[-86.095121,41.731693],[-86.094347,41.731594],[-86.093381,41.731478],[-86.092434,41.731391],[-86.091429,41.731314],[-86.090505,41.731252],[-86.08962,41.731212],[-86.088788,41.731187],[-86.08781,41.731177],[-86.070561,41.731154],[-86.062452,41.731135],[-86.055041,41.731131],[-86.052641,41.731127],[-86.051773,41.731152],[-86.05101,41.731189],[-86.050158,41.731254],[-86.049459,41.731337],[-86.048674,41.731447],[-86.047775,41.731596],[-86.047132,41.731719],[-86.046163,41.73195],[-86.044588,41.732346],[-86.043889,41.732504],[-86.043393,41.732608],[-86.042876,41.7327],[-86.042235,41.732797],[-86.041592,41.732882],[-86.040902,41.732965],[-86.040356,41.733009],[-86.039527,41.733065],[-86.038883,41.733086],[-86.038148,41.733094],[-86.032408,41.733105],[-86.030827,41.733092],[-86.029689,41.733067],[-86.028717,41.73304],[-86.027904,41.733003],[-86.026877,41.732955],[-86.025351,41.732847],[-86.023967,41.732729],[-86.022845,41.73261],[-86.020855,41.73239],[-86.019538,41.73226],[-86.018625,41.732186],[-86.017869,41.732135],[-86.017102,41.73209],[-86.016395,41.732064],[-86.01572,41.732047],[-86.014939,41.732041],[-86.014054,41.732041],[-86.010199,41.732077],[-86.004436,41.732136],[-86.002626,41.732121],[-86.000639,41.732077],[-85.99957,41.732033],[-85.998607,41.73199],[-85.997256,41.731916],[-85.995336,41.731785],[-85.991611,41.731529],[-85.990278,41.731452],[-85.988366,41.73136],[-85.98713,41.731312],[-85.986599,41.731296],[-85.984033,41.731207],[-85.983332,41.731186],[-85.974958,41.730918],[-85.97188,41.730829],[-85.970434,41.730809],[-85.967615,41.730804],[-85.966617,41.730808],[-85.959607,41.730826],[-85.957398,41.730823],[-85.955939,41.730806],[-85.954808,41.730776],[-85.953486,41.73074],[-85.951503,41.730666],[-85.947184,41.73049],[-85.946618,41.730468],[-85.938197,41.730128],[-85.926406,41.729655],[-85.9194,41.729365],[-85.915037,41.729185],[-85.913233,41.729135],[-85.911873,41.72911],[-85.90919,41.729083],[-85.907943,41.729087],[-85.906787,41.729101],[-85.905156,41.729132],[-85.904056,41.729161],[-85.902738,41.729207],[-85.901683,41.729249],[-85.900135,41.729324],[-85.898746,41.729401],[-85.898181,41.729438],[-85.893618,41.729778],[-85.891958,41.729904],[-85.888837,41.730132],[-85.885369,41.730387],[-85.884119,41.730465],[-85.882205,41.730571],[-85.880619,41.730636],[-85.879387,41.730682],[-85.877954,41.730721],[-85.874586,41.730794],[-85.864018,41.731014],[-85.856114,41.731177],[-85.849348,41.731315],[-85.848256,41.731351],[-85.847297,41.731412],[-85.846429,41.731501],[-85.845629,41.731607],[-85.84475,41.731749],[-85.843753,41.731939],[-85.842054,41.732365],[-85.841659,41.732467],[-85.839679,41.732981],[-85.829463,41.735589],[-85.828812,41.735751],[-85.828044,41.735933],[-85.827292,41.736078],[-85.82624,41.736247],[-85.825357,41.736356],[-85.82438,41.736438],[-85.823518,41.736493],[-85.822542,41.73651],[-85.821636,41.736498],[-85.820633,41.736451],[-85.819745,41.736385],[-85.818872,41.736282],[-85.817559,41.736088],[-85.813546,41.735458],[-85.811906,41.735205],[-85.810265,41.734944],[-85.808727,41.734707],[-85.80799,41.7346],[-85.807261,41.734516],[-85.806621,41.734453],[-85.805863,41.734408],[-85.805222,41.73438],[-85.80436,41.734372],[-85.803481,41.734386],[-85.801792,41.734469],[-85.79965,41.734574],[-85.796968,41.734711],[-85.792907,41.734917],[-85.78903,41.735115],[-85.787263,41.735202],[-85.786667,41.735225],[-85.78611,41.735223],[-85.785573,41.735202],[-85.784932,41.735136],[-85.784326,41.735042],[-85.783838,41.734935],[-85.783401,41.73482],[-85.782975,41.734692],[-85.782591,41.734547],[-85.78213,41.734359],[-85.781736,41.734175],[-85.781243,41.73391],[-85.780829,41.73366],[-85.780345,41.733342],[-85.779798,41.732993],[-85.777793,41.731677],[-85.777408,41.731432],[-85.776285,41.730704],[-85.775778,41.730388],[-85.775262,41.73011],[-85.774742,41.729863],[-85.774161,41.729615],[-85.773488,41.72938],[-85.772938,41.729207],[-85.772324,41.729059],[-85.771772,41.728943],[-85.771057,41.728828],[-85.77033,41.728754],[-85.769601,41.728718],[-85.768895,41.728714],[-85.768061,41.72876],[-85.76722,41.72886],[-85.766435,41.728993],[-85.765789,41.729137],[-85.761685,41.730249],[-85.753815,41.732393],[-85.752582,41.732735],[-85.751014,41.733195],[-85.749423,41.733677],[-85.747665,41.734232],[-85.745374,41.734995],[-85.743368,41.735695],[-85.741127,41.736518],[-85.738597,41.737493],[-85.735917,41.738591],[-85.733492,41.739638],[-85.73065,41.740871],[-85.729241,41.741446],[-85.728459,41.741765],[-85.727936,41.741961],[-85.727543,41.742106],[-85.726683,41.742426],[-85.725846,41.742708],[-85.7247,41.743084],[-85.723678,41.74341],[-85.722646,41.743718],[-85.721686,41.743992],[-85.720662,41.744265],[-85.719727,41.744504],[-85.718367,41.744833],[-85.717264,41.745077],[-85.716018,41.745339],[-85.71496,41.745541],[-85.713672,41.745775],[-85.712183,41.746011],[-85.710996,41.746175],[-85.709724,41.746333],[-85.708484,41.746472],[-85.706982,41.746615],[-85.705569,41.746721],[-85.704511,41.746786],[-85.703424,41.746843],[-85.702127,41.746889],[-85.700577,41.746912],[-85.697685,41.746936],[-85.692536,41.746981],[-85.688824,41.747012],[-85.685499,41.747037],[-85.681721,41.747071],[-85.680383,41.747089],[-85.679394,41.747116],[-85.678366,41.747156],[-85.677482,41.747198],[-85.676431,41.747266],[-85.675291,41.747352],[-85.673825,41.747486],[-85.672565,41.74762],[-85.67119,41.747786],[-85.66928,41.748071],[-85.667819,41.74831],[-85.666375,41.748575],[-85.66393,41.749085],[-85.661995,41.749548],[-85.660664,41.749903],[-85.659457,41.750235],[-85.658515,41.75052],[-85.657642,41.750792],[-85.656524,41.751153],[-85.654645,41.7518],[-85.652386,41.752582],[-85.651759,41.752789],[-85.651204,41.75295],[-85.650768,41.753067],[-85.650293,41.753188],[-85.649806,41.753304],[-85.649233,41.753432],[-85.648669,41.753537],[-85.648016,41.753643],[-85.647425,41.75373],[-85.64665,41.753817],[-85.64599,41.753876],[-85.645323,41.753921],[-85.644644,41.753951],[-85.643888,41.753959],[-85.643093,41.753949],[-85.642415,41.753924],[-85.641569,41.753871],[-85.640792,41.753795],[-85.640043,41.753704],[-85.639279,41.75359],[-85.638423,41.753437],[-85.637248,41.753207],[-85.635407,41.752857],[-85.634049,41.752603],[-85.632931,41.752399],[-85.631947,41.752238],[-85.630952,41.752085],[-85.629641,41.751904],[-85.628564,41.751771],[-85.627178,41.751625],[-85.625694,41.751486],[-85.624535,41.751397],[-85.623389,41.751331],[-85.622085,41.75127],[-85.620934,41.751228],[-85.620001,41.751218],[-85.618806,41.751212],[-85.617666,41.751217],[-85.616375,41.75124],[-85.615256,41.751284],[-85.613963,41.751351],[-85.612561,41.751435],[-85.610164,41.751584],[-85.604906,41.751913],[-85.603578,41.751997],[-85.602382,41.75207],[-85.601318,41.75214],[-85.599958,41.752219],[-85.598069,41.752343],[-85.595774,41.752485],[-85.593961,41.752603],[-85.591784,41.752734],[-85.589725,41.752865],[-85.587556,41.752995],[-85.584355,41.753198],[-85.581004,41.75341],[-85.580143,41.753461],[-85.578758,41.753547],[-85.577868,41.753597],[-85.577156,41.753616],[-85.576313,41.753616],[-85.575579,41.753597],[-85.574912,41.753561],[-85.574223,41.75351],[-85.573608,41.753442],[-85.572898,41.753349],[-85.572204,41.753249],[-85.571419,41.753103],[-85.570748,41.752955],[-85.569935,41.752765],[-85.56916,41.752547],[-85.568072,41.752211],[-85.566148,41.751603],[-85.56447,41.751077],[-85.562065,41.750316],[-85.560658,41.749877],[-85.559581,41.749553],[-85.55788,41.749065],[-85.556591,41.748724],[-85.554821,41.748271],[-85.553074,41.747873],[-85.551418,41.747514],[-85.549458,41.74713],[-85.548157,41.746884],[-85.54697,41.746685],[-85.545969,41.746529],[-85.544103,41.746252],[-85.542395,41.746032],[-85.540911,41.745868],[-85.539123,41.745681],[-85.537411,41.745533],[-85.535865,41.745433],[-85.534477,41.745355],[-85.533038,41.745289],[-85.531605,41.745247],[-85.530421,41.745226],[-85.528753,41.745209],[-85.527056,41.745228],[-85.525055,41.745273],[-85.522078,41.745331],[-85.519226,41.745403],[-85.513879,41.745522],[-85.512397,41.745561],[-85.510794,41.745646],[-85.509212,41.745784],[-85.507854,41.745931],[-85.506318,41.746147],[-85.504692,41.746418],[-85.50328,41.746693],[-85.502093,41.746956],[-85.500462,41.747354],[-85.498376,41.747919],[-85.496334,41.748454],[-85.493418,41.749225],[-85.490032,41.750118],[-85.488465,41.750525],[-85.486771,41.750976],[-85.485044,41.751426],[-85.48127,41.752421],[-85.480099,41.752693],[-85.479017,41.752883],[-85.477836,41.753066],[-85.476809,41.753194],[-85.476164,41.753265],[-85.475209,41.753346],[-85.473909,41.753405],[-85.472727,41.753423],[-85.471213,41.753393],[-85.469971,41.75334],[-85.466908,41.753216],[-85.464811,41.753123],[-85.463257,41.753073],[-85.462235,41.753048],[-85.461256,41.75304],[-85.460156,41.753036],[-85.458834,41.753049],[-85.457752,41.753066],[-85.457075,41.753081],[-85.455542,41.753117],[-85.452953,41.753173],[-85.450628,41.753227],[-85.448698,41.753267],[-85.447381,41.753297],[-85.443879,41.753378],[-85.441259,41.75344],[-85.43943,41.753475],[-85.436711,41.753539],[-85.433724,41.753605],[-85.4315,41.753653],[-85.427203,41.753752],[-85.426426,41.753768],[-85.418927,41.753937],[-85.418344,41.753948],[-85.41529,41.754017],[-85.412163,41.754088],[-85.411023,41.754113],[-85.410015,41.754127],[-85.409177,41.754123],[-85.408479,41.754102],[-85.407683,41.754061],[-85.40688,41.754004],[-85.406178,41.753944],[-85.405365,41.753851],[-85.404455,41.753726],[-85.403638,41.753597],[-85.402818,41.753447],[-85.401988,41.753269],[-85.401229,41.753096],[-85.400493,41.752903],[-85.399996,41.752766],[-85.399442,41.752606],[-85.398974,41.752461],[-85.398504,41.752307],[-85.397894,41.752094],[-85.396363,41.751577],[-85.395524,41.751311],[-85.394758,41.751086],[-85.393778,41.750829],[-85.393041,41.750658],[-85.392339,41.750508],[-85.391609,41.750368],[-85.390937,41.750253],[-85.390328,41.750158],[-85.3897,41.750075],[-85.389056,41.75],[-85.387965,41.749885],[-85.386737,41.74976],[-85.385263,41.749603],[-85.383873,41.749457],[-85.381141,41.749172],[-85.377438,41.748785],[-85.376288,41.748673],[-85.374985,41.748567],[-85.373719,41.74848],[-85.372229,41.74839],[-85.371104,41.74834],[-85.369585,41.748284],[-85.368864,41.748264],[-85.367839,41.748245],[-85.366728,41.748234],[-85.365569,41.748233],[-85.363968,41.748258],[-85.362238,41.748308],[-85.359973,41.748406],[-85.354008,41.748647],[-85.351619,41.748746],[-85.349881,41.748818],[-85.348679,41.748858],[-85.347774,41.748875],[-85.346695,41.748877],[-85.345485,41.748853],[-85.34443,41.748805],[-85.343512,41.748758],[-85.342684,41.748695],[-85.341793,41.748612],[-85.340804,41.748511],[-85.339902,41.748394],[-85.339035,41.748272],[-85.338098,41.748127],[-85.33698,41.747926],[-85.335958,41.747726],[-85.334814,41.747473],[-85.333642,41.747183],[-85.332845,41.746969],[-85.330658,41.746358],[-85.328373,41.745718],[-85.327041,41.745348],[-85.32532,41.744887],[-85.323669,41.744465],[-85.322737,41.744238],[-85.320366,41.743677],[-85.319178,41.743415],[-85.317345,41.743025],[-85.31567,41.742691],[-85.313734,41.74232],[-85.31173,41.741967],[-85.310086,41.741694],[-85.308599,41.741463],[-85.306958,41.741225],[-85.305178,41.740986],[-85.303591,41.740789],[-85.301679,41.740573],[-85.3007,41.740466],[-85.299056,41.740311],[-85.297668,41.740192],[-85.296076,41.74006],[-85.294682,41.739966],[-85.293196,41.739873],[-85.292778,41.739853],[-85.290807,41.739762],[-85.289015,41.739693],[-85.287327,41.739653],[-85.28532,41.739622],[-85.28429,41.739616],[-85.283549,41.739621],[-85.282777,41.739644],[-85.281983,41.739713],[-85.281154,41.739849],[-85.280252,41.740085],[-85.279482,41.740345],[-85.278691,41.740691],[-85.277965,41.741109],[-85.277316,41.741565],[-85.276772,41.742028],[-85.276276,41.742524],[-85.275854,41.743011],[-85.27493,41.744149],[-85.273765,41.745567],[-85.2717,41.748082],[-85.271365,41.748503],[-85.271236,41.748665],[-85.27025,41.749865],[-85.269608,41.750621],[-85.269221,41.751025],[-85.268989,41.751266],[-85.268582,41.751661],[-85.268171,41.751997],[-85.26768,41.752376],[-85.267164,41.752708],[-85.26664,41.753011],[-85.265948,41.753355],[-85.265336,41.75362],[-85.264611,41.753879],[-85.263912,41.754093],[-85.263232,41.754261],[-85.262397,41.754427],[-85.261691,41.75452],[-85.260967,41.754581],[-85.260243,41.754616],[-85.259516,41.754618],[-85.253534,41.754597],[-85.248661,41.754577],[-85.242818,41.754562],[-85.239835,41.754549],[-85.237748,41.754537],[-85.23626,41.754532],[-85.235345,41.754548],[-85.234454,41.754589],[-85.234141,41.754604],[-85.233541,41.754658],[-85.23278,41.754741],[-85.231912,41.754849],[-85.231119,41.754972],[-85.2308,41.755029],[-85.230475,41.755092],[-85.230135,41.755164],[-85.22953,41.755301],[-85.228822,41.75547],[-85.227555,41.755787],[-85.226977,41.755933],[-85.226358,41.756064],[-85.22564,41.756209],[-85.224511,41.756398],[-85.223363,41.756536],[-85.222336,41.756624],[-85.221352,41.756679],[-85.220596,41.756696],[-85.219573,41.756692],[-85.218088,41.756656],[-85.215154,41.756586],[-85.212908,41.756534],[-85.206119,41.756373],[-85.203827,41.75632],[-85.195735,41.756128],[-85.187694,41.755943],[-85.184818,41.75589],[-85.181832,41.755859],[-85.17274,41.755765],[-85.17217,41.75576],[-85.165975,41.755692],[-85.146686,41.755493],[-85.139488,41.755411],[-85.127884,41.75529],[-85.126786,41.755276],[-85.126029,41.755253],[-85.125295,41.755207],[-85.124507,41.75514],[-85.123807,41.755066],[-85.123174,41.754977],[-85.122513,41.754868],[-85.121852,41.754743],[-85.121018,41.754561],[-85.116444,41.753411],[-85.115001,41.753053],[-85.113697,41.752715],[-85.11329,41.752612],[-85.111962,41.752276],[-85.111259,41.752098],[-85.110545,41.751926],[-85.10962,41.751711],[-85.10879,41.751535],[-85.107827,41.751343],[-85.106669,41.751143],[-85.105535,41.750965],[-85.104383,41.750807],[-85.102686,41.750581],[-85.093123,41.749281],[-85.088144,41.748608],[-85.086313,41.748364],[-85.085309,41.748245],[-85.084309,41.748142],[-85.083277,41.748035],[-85.081944,41.747918],[-85.08029,41.747792],[-85.077836,41.747638],[-85.07742,41.747613],[-85.074323,41.747427],[-85.071794,41.74727],[-85.068287,41.747054],[-85.065614,41.74689],[-85.064226,41.746811],[-85.063073,41.746767],[-85.061958,41.746741],[-85.060709,41.746751],[-85.060002,41.746762],[-85.059301,41.746788],[-85.05821,41.746839],[-85.057004,41.746923],[-85.055772,41.747016],[-85.049758,41.747462],[-85.048391,41.747556],[-85.047365,41.747622],[-85.045994,41.74769],[-85.044517,41.747746],[-85.043136,41.747777],[-85.041796,41.747792],[-85.040313,41.747799],[-85.038827,41.747772],[-85.03731,41.747733],[-85.033851,41.74759],[-85.028871,41.747388],[-85.027981,41.747343],[-85.027236,41.747292],[-85.026532,41.747202],[-85.025828,41.747073],[-85.025256,41.74694],[-85.024654,41.746772],[-85.023952,41.746543],[-85.023287,41.746271],[-85.022859,41.746066],[-85.022483,41.745871],[-85.021911,41.745536],[-85.021364,41.745174],[-85.020473,41.744541],[-85.020017,41.744228],[-85.017904,41.742751],[-85.013124,41.739415],[-85.011974,41.738607],[-85.011427,41.738236],[-85.010859,41.737873],[-85.010255,41.737528],[-85.009696,41.737242],[-85.009132,41.736979],[-85.008574,41.736743],[-85.007938,41.736508],[-85.007371,41.736327],[-85.006632,41.736117],[-85.005914,41.735952],[-85.005208,41.735813],[-85.00447,41.735702],[-85.003727,41.735624],[-85.003091,41.735573],[-85.002452,41.735544],[-85.0016,41.735531],[-85.000918,41.735526],[-84.99996,41.735514],[-84.999193,41.735512],[-84.99571,41.73548],[-84.994219,41.735467],[-84.993681,41.735463],[-84.989735,41.735429],[-84.984356,41.735386],[-84.981937,41.73536],[-84.980124,41.735343],[-84.979461,41.73531],[-84.978775,41.735248],[-84.978106,41.735144],[-84.977469,41.735004],[-84.976884,41.734837],[-84.976206,41.734594],[-84.975518,41.734282],[-84.974875,41.733921],[-84.974278,41.733512],[-84.973729,41.733063],[-84.973204,41.732536],[-84.972196,41.73147],[-84.971195,41.730403],[-84.97086,41.730048],[-84.969673,41.728774],[-84.966068,41.724908],[-84.964561,41.723297],[-84.963618,41.722289],[-84.962372,41.720951],[-84.961922,41.720492],[-84.96151,41.720102],[-84.960964,41.719624],[-84.960413,41.719205],[-84.959792,41.71879],[-84.959057,41.718357],[-84.958365,41.718001],[-84.957634,41.717663],[-84.956455,41.717174],[-84.95461,41.716414],[-84.950456,41.714687],[-84.948236,41.713753],[-84.945336,41.712572],[-84.944681,41.712299],[-84.942667,41.711459],[-84.940703,41.710649],[-84.940103,41.710402],[-84.937435,41.709303],[-84.936246,41.708807],[-84.927709,41.70528],[-84.924586,41.703981],[-84.92367,41.703591],[-84.922767,41.703172],[-84.921836,41.702728],[-84.92078,41.702189],[-84.919536,41.701497],[-84.91852,41.700894],[-84.917093,41.699992],[-84.912106,41.696751],[-84.911118,41.696141],[-84.910178,41.695592],[-84.909234,41.695073],[-84.908417,41.69465],[-84.907393,41.694141],[-84.90633,41.69365],[-84.905464,41.693279],[-84.904438,41.692857],[-84.903111,41.692357],[-84.900824,41.691547],[-84.894541,41.689304],[-84.891409,41.688189],[-84.890082,41.687696],[-84.889151,41.687316],[-84.888299,41.686953],[-84.88734,41.686514],[-84.88637,41.686046],[-84.885513,41.685615],[-84.884639,41.685145],[-84.883748,41.684641],[-84.883176,41.684293],[-84.882264,41.683726],[-84.881378,41.683137],[-84.880515,41.682538],[-84.876581,41.679648],[-84.875641,41.678962],[-84.872576,41.676701],[-84.871559,41.675964],[-84.870257,41.675061],[-84.869544,41.674581],[-84.868357,41.673808],[-84.86753,41.673283],[-84.866477,41.672639],[-84.865279,41.67193],[-84.864376,41.671412],[-84.863036,41.670666],[-84.862188,41.670215],[-84.861242,41.669722],[-84.860088,41.66914],[-84.857855,41.668053],[-84.855354,41.666836],[-84.853401,41.665913],[-84.852625,41.665531],[-84.850706,41.664577],[-84.849661,41.664066],[-84.849045,41.663751],[-84.84845,41.663406],[-84.847893,41.663041],[-84.847304,41.662593],[-84.847012,41.662326],[-84.846727,41.662056],[-84.846457,41.661771],[-84.846207,41.661486],[-84.845789,41.660916],[-84.84547,41.660399],[-84.84528,41.660047],[-84.845088,41.659605],[-84.84493,41.659163],[-84.844847,41.658869],[-84.84476,41.658472],[-84.844273,41.655724],[-84.843675,41.652325],[-84.843379,41.650639],[-84.843259,41.650057],[-84.843142,41.649589],[-84.842963,41.649067],[-84.842766,41.648629],[-84.842511,41.648184],[-84.842211,41.64775],[-84.841895,41.64737],[-84.841632,41.647092],[-84.841397,41.64687],[-84.84104,41.646564],[-84.840632,41.646256],[-84.8402,41.645968],[-84.839732,41.645688],[-84.838801,41.64515],[-84.8377,41.644527],[-84.835667,41.643359],[-84.83502,41.642979],[-84.83409,41.642421],[-84.83282,41.641624],[-84.832036,41.641121],[-84.830652,41.640192],[-84.829137,41.639125],[-84.828387,41.63858],[-84.827631,41.638019],[-84.82691,41.637474],[-84.82609,41.636825],[-84.822913,41.634255],[-84.819221,41.631259],[-84.818574,41.630749],[-84.817993,41.630316],[-84.817693,41.6301],[-84.817338,41.629876],[-84.817047,41.629707],[-84.816656,41.629489],[-84.816247,41.62929],[-84.815655,41.629024],[-84.814963,41.628766],[-84.814456,41.628596],[-84.813876,41.628432],[-84.813215,41.628275],[-84.812587,41.62816],[-84.811978,41.62807],[-84.811304,41.628002],[-84.810655,41.62796],[-84.80987,41.62795],[-84.80923,41.627967],[-84.808489,41.628029],[-84.807908,41.628096],[-84.807057,41.628218],[-84.805714,41.628414],[-84.803622,41.628714],[-84.80201,41.628951],[-84.800893,41.629113],[-84.798139,41.629528],[-84.794796,41.630001],[-84.793431,41.6302],[-84.792495,41.630341],[-84.791834,41.630429],[-84.791385,41.630496],[-84.790528,41.6306],[-84.7901,41.630617],[-84.789094,41.630675],[-84.788223,41.63066],[-84.78711,41.630673],[-84.786245,41.630623],[-84.785599,41.630589],[-84.784695,41.630543],[-84.783715,41.63049],[-84.781534,41.630402],[-84.780521,41.630357],[-84.778247,41.630238],[-84.77771,41.630213],[-84.776192,41.630144],[-84.774446,41.630054],[-84.773881,41.630025],[-84.772084,41.629924],[-84.770627,41.629873],[-84.769402,41.629807],[-84.768193,41.629754],[-84.766351,41.629664],[-84.766007,41.629647],[-84.765188,41.629608],[-84.76259,41.629486],[-84.761832,41.629446],[-84.760841,41.629402],[-84.759472,41.629325],[-84.758194,41.629292],[-84.754366,41.62908],[-84.750835,41.628921],[-84.74941,41.62886],[-84.74843,41.62882],[-84.745687,41.628678],[-84.744534,41.628618],[-84.742356,41.628513],[-84.740916,41.628442],[-84.7377,41.628305],[-84.736593,41.628246],[-84.734981,41.628173],[-84.732327,41.628041],[-84.730557,41.627958],[-84.728954,41.62788],[-84.728171,41.627856],[-84.725724,41.627726],[-84.724086,41.627642],[-84.722578,41.627578],[-84.721354,41.627511],[-84.71831,41.627366],[-84.717295,41.627306],[-84.716419,41.627245],[-84.715444,41.627167],[-84.714634,41.627088],[-84.713982,41.627022],[-84.712567,41.626849],[-84.711772,41.626742],[-84.711149,41.626656],[-84.710992,41.626635],[-84.710266,41.626527],[-84.709926,41.626479],[-84.709004,41.626334],[-84.708561,41.62626],[-84.707086,41.62597],[-84.705448,41.62563],[-84.703945,41.625289],[-84.702441,41.624917],[-84.701508,41.624678],[-84.69967,41.624186],[-84.697954,41.623708],[-84.697547,41.623599],[-84.694203,41.622703],[-84.690804,41.621766],[-84.682865,41.619668],[-84.679904,41.618898],[-84.678376,41.618622],[-84.674471,41.618083],[-84.673037,41.617955],[-84.668291,41.617679],[-84.660403,41.617333],[-84.658068,41.617256],[-84.649159,41.616826],[-84.644387,41.616608],[-84.639357,41.616389],[-84.636722,41.616351],[-84.633169,41.616428],[-84.630603,41.616543],[-84.62505,41.616793],[-84.622775,41.616966],[-84.612047,41.617877],[-84.609832,41.618095],[-84.607899,41.618247],[-84.606022,41.618328],[-84.604838,41.618354],[-84.603501,41.618332],[-84.603017,41.61833],[-84.60147,41.618273],[-84.596898,41.617883],[-84.595092,41.61774],[-84.593073,41.617573],[-84.592067,41.617489],[-84.59106,41.617406],[-84.589685,41.617315],[-84.58898,41.617262],[-84.5843,41.61685],[-84.582846,41.616709],[-84.581539,41.616603],[-84.579907,41.616472],[-84.578927,41.616391],[-84.578109,41.616317],[-84.576428,41.616177],[-84.575805,41.616123],[-84.574524,41.616003],[-84.573534,41.615926],[-84.572559,41.615857],[-84.571609,41.615779],[-84.570621,41.615693],[-84.569633,41.615612],[-84.566662,41.615355],[-84.565669,41.615274],[-84.564655,41.61519],[-84.56364,41.615108],[-84.562607,41.61503],[-84.561573,41.614943],[-84.561154,41.614904],[-84.560411,41.614848],[-84.55926,41.614747],[-84.558024,41.614647],[-84.556963,41.614561],[-84.555815,41.614466],[-84.554664,41.614359],[-84.553877,41.614292],[-84.553457,41.61426],[-84.552758,41.614213],[-84.551639,41.614113],[-84.549396,41.613924],[-84.548274,41.613834],[-84.547236,41.613748],[-84.546066,41.613655],[-84.545177,41.613573],[-84.544178,41.613467],[-84.543475,41.613392],[-84.542606,41.613294],[-84.541757,41.613171],[-84.54065,41.613014],[-84.539547,41.612861],[-84.538446,41.612701],[-84.536642,41.61244],[-84.536073,41.612362],[-84.535244,41.612244],[-84.534524,41.612133],[-84.534115,41.612076],[-84.533199,41.611943],[-84.531324,41.611673],[-84.530409,41.611538],[-84.52949,41.61141],[-84.528572,41.611279],[-84.527651,41.611142],[-84.527499,41.61112],[-84.52452,41.610679],[-84.52281,41.610432],[-84.521812,41.610288],[-84.519466,41.609952],[-84.515817,41.609424],[-84.514393,41.609216],[-84.512294,41.608913],[-84.510091,41.608607],[-84.508517,41.608365],[-84.507449,41.608206],[-84.507134,41.608166],[-84.505772,41.607997],[-84.503912,41.607822],[-84.502338,41.607718],[-84.500917,41.607663],[-84.500738,41.607656],[-84.499681,41.60761],[-84.498653,41.607574],[-84.496718,41.607518],[-84.493908,41.607426],[-84.493173,41.607402],[-84.491845,41.607356],[-84.491635,41.607348],[-84.483972,41.607079],[-84.48132,41.606983],[-84.477157,41.606837],[-84.471946,41.606657],[-84.468253,41.606528],[-84.466819,41.606474],[-84.463481,41.606358],[-84.46179,41.6063],[-84.457164,41.606136],[-84.456077,41.606095],[-84.455146,41.60606],[-84.45418,41.606028],[-84.452135,41.605955],[-84.451406,41.605931],[-84.450094,41.605883],[-84.449533,41.605865],[-84.448228,41.605814],[-84.447053,41.60577],[-84.445012,41.605698],[-84.444437,41.605677],[-84.443424,41.605647],[-84.442849,41.605626],[-84.441638,41.605579],[-84.440477,41.605541],[-84.433597,41.605291],[-84.429855,41.605157],[-84.429337,41.605144],[-84.421564,41.604857],[-84.42104,41.604842],[-84.419339,41.604786],[-84.41732,41.604712],[-84.415446,41.604645],[-84.414761,41.604618],[-84.413878,41.604584],[-84.412925,41.604552],[-84.412513,41.604539],[-84.411336,41.604496],[-84.410192,41.604458],[-84.409801,41.604444],[-84.408892,41.604411],[-84.407429,41.604355],[-84.405078,41.604275],[-84.403603,41.604217],[-84.402927,41.604194],[-84.402582,41.604183],[-84.40148,41.604144],[-84.400474,41.604106],[-84.399998,41.604088],[-84.398363,41.604035],[-84.396908,41.603975],[-84.395907,41.60392],[-84.39491,41.603852],[-84.393715,41.603759],[-84.392403,41.603637],[-84.391289,41.603521],[-84.389928,41.603352],[-84.388943,41.603214],[-84.388143,41.603094],[-84.387946,41.603064],[-84.387041,41.602916],[-84.386069,41.60274],[-84.385107,41.602562],[-84.384424,41.602422],[-84.383305,41.602189],[-84.381582,41.601784],[-84.381196,41.601692],[-84.380282,41.601453],[-84.379869,41.601342],[-84.378639,41.601001],[-84.377787,41.600753],[-84.376821,41.60046],[-84.375815,41.600142],[-84.375303,41.599974],[-84.374674,41.599761],[-84.373934,41.599493],[-84.373351,41.599284],[-84.372855,41.599097],[-84.372285,41.598893],[-84.370817,41.598313],[-84.369992,41.597958],[-84.369175,41.597626],[-84.368292,41.59725],[-84.367619,41.59696],[-84.366909,41.596659],[-84.365972,41.596268],[-84.364688,41.595718],[-84.362249,41.594687],[-84.361586,41.594403],[-84.360924,41.594126],[-84.360211,41.593826],[-84.359511,41.59353],[-84.358711,41.593195],[-84.358276,41.593007],[-84.357787,41.592797],[-84.357396,41.592634],[-84.356955,41.592439],[-84.352775,41.590671],[-84.351686,41.590223],[-84.35136,41.590083],[-84.350787,41.589849],[-84.350381,41.58967],[-84.34985,41.589444],[-84.349508,41.589306],[-84.34905,41.589113],[-84.348795,41.589009],[-84.348113,41.588723],[-84.347417,41.588429],[-84.34691,41.588221],[-84.346519,41.588074],[-84.346189,41.587966],[-84.345812,41.587849],[-84.345591,41.587788],[-84.345359,41.587732],[-84.345086,41.58767],[-84.344806,41.587611],[-84.344492,41.587546],[-84.344238,41.587502],[-84.343975,41.587465],[-84.343661,41.587429],[-84.343394,41.587407],[-84.343086,41.587376],[-84.342907,41.587369],[-84.342566,41.587348],[-84.342164,41.587337],[-84.341898,41.587338],[-84.34141,41.58736],[-84.340978,41.587387],[-84.340513,41.587429],[-84.340093,41.58748],[-84.339697,41.587544],[-84.339405,41.587599],[-84.339018,41.587676],[-84.338525,41.587779],[-84.337862,41.587914],[-84.336925,41.58813],[-84.334534,41.588729],[-84.332462,41.589198],[-84.331637,41.589389],[-84.32828,41.590172],[-84.327232,41.590414],[-84.326784,41.590513],[-84.325535,41.590774],[-84.324525,41.590957],[-84.323326,41.591154],[-84.322352,41.59129],[-84.321441,41.591394],[-84.320638,41.591482],[-84.318883,41.591634],[-84.31787,41.591691],[-84.316603,41.591739],[-84.315997,41.591754],[-84.31469,41.591759],[-84.313768,41.591739],[-84.312471,41.591697],[-84.311103,41.591616],[-84.310413,41.591575],[-84.308324,41.591452],[-84.308012,41.591433],[-84.305837,41.591301],[-84.293853,41.590587],[-84.292588,41.59052],[-84.290673,41.59044],[-84.288717,41.590411],[-84.282732,41.590428],[-84.27062,41.590505],[-84.258537,41.590525],[-84.248557,41.590571],[-84.229156,41.590645],[-84.217253,41.590689],[-84.211844,41.590704],[-84.193455,41.590764],[-84.181416,41.590798],[-84.176116,41.590816],[-84.175392,41.590828],[-84.174662,41.590839],[-84.174201,41.590853],[-84.172723,41.590912],[-84.171892,41.590952],[-84.171308,41.590991],[-84.171012,41.591016],[-84.17071,41.591032],[-84.169851,41.591102],[-84.168966,41.591177],[-84.1684,41.591235],[-84.167533,41.591328],[-84.166942,41.591393],[-84.166211,41.591472],[-84.164084,41.591714],[-84.161292,41.592025],[-84.159105,41.592271],[-84.157794,41.592417],[-84.156787,41.592533],[-84.156042,41.592617],[-84.15489,41.592745],[-84.154021,41.592845],[-84.153714,41.592878],[-84.152256,41.593042],[-84.151672,41.593111],[-84.151099,41.593175],[-84.150371,41.593258],[-84.149646,41.593339],[-84.149179,41.593389],[-84.148716,41.593441],[-84.147988,41.593524],[-84.147513,41.593582],[-84.147178,41.593618],[-84.146787,41.593661],[-84.146499,41.593686],[-84.146059,41.593715],[-84.145611,41.593733],[-84.145154,41.593738],[-84.144742,41.593735],[-84.144445,41.593728],[-84.144008,41.593706],[-84.143711,41.593686],[-84.143423,41.59366],[-84.143263,41.593647],[-84.142092,41.593539],[-84.141819,41.593514],[-84.141428,41.593476],[-84.140935,41.593422],[-84.137185,41.59305],[-84.136674,41.593003],[-84.136204,41.592958],[-84.133787,41.592711],[-84.133516,41.592686],[-84.133263,41.592664],[-84.13252,41.592584],[-84.131777,41.59251],[-84.131053,41.592441],[-84.129456,41.592284],[-84.12801,41.592139],[-84.1221,41.591552],[-84.120797,41.591415],[-84.115497,41.590884],[-84.115244,41.590862],[-84.115019,41.590846],[-84.114035,41.590742],[-84.113504,41.590687],[-84.112776,41.590621],[-84.112169,41.59057],[-84.111601,41.590531],[-84.111014,41.590496],[-84.110286,41.590464],[-84.109691,41.590444],[-84.109095,41.590425],[-84.108364,41.59042],[-84.107633,41.590419],[-84.101917,41.590542],[-84.087786,41.590804],[-84.064536,41.591257],[-84.055843,41.591427],[-84.0511,41.591519],[-84.050122,41.591544],[-84.049615,41.591552],[-84.049265,41.591561],[-84.047591,41.59159],[-84.047075,41.591602],[-84.046502,41.591613],[-84.045929,41.591621],[-84.045381,41.591627],[-84.044765,41.591635],[-84.0442,41.591652],[-84.043616,41.591672],[-84.042938,41.591679],[-84.041764,41.591703],[-84.037867,41.591774],[-84.037396,41.59178],[-84.032932,41.591868],[-84.032433,41.591876],[-84.031798,41.591897],[-84.030231,41.591994],[-84.028975,41.592154],[-84.027481,41.59243],[-84.026167,41.59276],[-84.025374,41.592999],[-84.023933,41.593522],[-84.019351,41.595361],[-84.018922,41.59554],[-84.016846,41.596357],[-84.015041,41.597083],[-84.014358,41.597355],[-84.0137,41.597601],[-84.013337,41.597727],[-84.01321,41.597769],[-84.013061,41.597815],[-84.01259,41.597952],[-84.012214,41.598041],[-84.012075,41.598075],[-84.01179,41.598133],[-84.011338,41.598211],[-84.01103,41.59826],[-84.010484,41.598328],[-84.010034,41.59836],[-84.009697,41.598376],[-84.009304,41.598383],[-84.008663,41.59838],[-84.007956,41.598354],[-83.998262,41.597921],[-83.991862,41.597636],[-83.990643,41.597603],[-83.990086,41.597591],[-83.989482,41.597581],[-83.989053,41.597582],[-83.988438,41.59758],[-83.987751,41.597589],[-83.987139,41.597599],[-83.986549,41.597615],[-83.985944,41.597628],[-83.985343,41.597649],[-83.98478,41.597676],[-83.983425,41.597747],[-83.982995,41.597766],[-83.982443,41.597792],[-83.982035,41.597816],[-83.976412,41.598104],[-83.973237,41.598261],[-83.951534,41.59936],[-83.95078,41.599397],[-83.948976,41.599494],[-83.947613,41.599563],[-83.946127,41.599621],[-83.945238,41.599638],[-83.944635,41.599647],[-83.943771,41.599656],[-83.942874,41.599655],[-83.941989,41.59966],[-83.927793,41.599696],[-83.913251,41.599736],[-83.902803,41.599771],[-83.902091,41.599771],[-83.900238,41.599779],[-83.899513,41.599785],[-83.895757,41.599773],[-83.89426,41.59977],[-83.892783,41.599778],[-83.891286,41.59978],[-83.889953,41.599784],[-83.888771,41.599785],[-83.887596,41.599788],[-83.886776,41.599796],[-83.885681,41.599794],[-83.884504,41.599793],[-83.88292,41.599802],[-83.877256,41.599833],[-83.865555,41.59988],[-83.848166,41.59995],[-83.825499,41.601583],[-83.825063,41.601612],[-83.814975,41.602313],[-83.812066,41.60252],[-83.810855,41.602485],[-83.809778,41.602346],[-83.80887,41.602141],[-83.807318,41.601684],[-83.806594,41.601469],[-83.804081,41.600763],[-83.803506,41.600597],[-83.799449,41.599411],[-83.798796,41.599232],[-83.790557,41.596888],[-83.787255,41.596136],[-83.784231,41.595529],[-83.781544,41.595027],[-83.77812,41.594545],[-83.764444,41.593044],[-83.753435,41.591786],[-83.741522,41.590514],[-83.74086,41.59047],[-83.739934,41.590475],[-83.738826,41.590514],[-83.737732,41.590626],[-83.737219,41.590679],[-83.732915,41.591135],[-83.732501,41.59118],[-83.729075,41.591549],[-83.726613,41.591724],[-83.72393,41.591835],[-83.713824,41.59186],[-83.6964,41.59185],[-83.69021,41.591881],[-83.689623,41.591884],[-83.681989,41.591875],[-83.676136,41.59189],[-83.667165,41.591891],[-83.666383,41.591872],[-83.665692,41.591848],[-83.66513,41.591817],[-83.66441,41.591774],[-83.663038,41.591669],[-83.658944,41.591201],[-83.657107,41.590976],[-83.655888,41.590887],[-83.644773,41.59063],[-83.642911,41.590514],[-83.641632,41.590392],[-83.641002,41.590305],[-83.640456,41.590221],[-83.640207,41.590174],[-83.639014,41.589962],[-83.635117,41.588935],[-83.632527,41.588264],[-83.631324,41.587958],[-83.62535,41.58638],[-83.615762,41.583922],[-83.612154,41.583011],[-83.611266,41.582714],[-83.610516,41.582409],[-83.609792,41.582045],[-83.608868,41.581527],[-83.604735,41.578979],[-83.604345,41.578711],[-83.603773,41.578372],[-83.603198,41.578061],[-83.602715,41.577819],[-83.602212,41.577593],[-83.601879,41.577466],[-83.601259,41.577232],[-83.598747,41.576284],[-83.598154,41.576066],[-83.596862,41.575576],[-83.596192,41.575323],[-83.594086,41.574532],[-83.593106,41.574148],[-83.591882,41.573631],[-83.591329,41.573395],[-83.588844,41.572336],[-83.586832,41.571478],[-83.586217,41.571216],[-83.585218,41.57079],[-83.580863,41.568934],[-83.580137,41.568625],[-83.576671,41.567144],[-83.575596,41.566691],[-83.575122,41.566481],[-83.574518,41.566201],[-83.574066,41.565979],[-83.573526,41.565694],[-83.572919,41.565352],[-83.569877,41.563647],[-83.565101,41.560941],[-83.564401,41.560546],[-83.557745,41.556812],[-83.557111,41.556449],[-83.555997,41.555786],[-83.555538,41.555536],[-83.553497,41.554389],[-83.552812,41.554026],[-83.551916,41.553575],[-83.55126,41.553261],[-83.550494,41.552908],[-83.549719,41.552566],[-83.548987,41.55226],[-83.548032,41.551883],[-83.544982,41.550728],[-83.534696,41.546853],[-83.527417,41.544099],[-83.524897,41.543152],[-83.522276,41.542167],[-83.521519,41.541898],[-83.520696,41.541628],[-83.519974,41.541408],[-83.519246,41.541201],[-83.518511,41.541009],[-83.517771,41.540829],[-83.517024,41.540664],[-83.51633,41.540524],[-83.515516,41.540375],[-83.514696,41.540242],[-83.513932,41.540134],[-83.512809,41.539995],[-83.51171,41.539844],[-83.510487,41.539704],[-83.50257,41.538774],[-83.499493,41.538405],[-83.498192,41.538245],[-83.497366,41.538131],[-83.496369,41.537972],[-83.495377,41.537797],[-83.494564,41.537639],[-83.493641,41.537442],[-83.492399,41.537132],[-83.491225,41.536823],[-83.489903,41.536464],[-83.488764,41.536096],[-83.487396,41.535627],[-83.485615,41.534955],[-83.484902,41.53467],[-83.484176,41.534354],[-83.483426,41.534016],[-83.482938,41.533787],[-83.482448,41.533557],[-83.481887,41.533294],[-83.479594,41.53222],[-83.478424,41.531671],[-83.477652,41.531326],[-83.476975,41.531037],[-83.475971,41.530635],[-83.474692,41.530142],[-83.468008,41.527605],[-83.46525,41.526562],[-83.463604,41.525938],[-83.462659,41.52558],[-83.462367,41.525469],[-83.459178,41.524266],[-83.45778,41.52375],[-83.456981,41.523448],[-83.453933,41.522288],[-83.453657,41.522185],[-83.451627,41.521423],[-83.448906,41.520378],[-83.442167,41.517823],[-83.439703,41.516895],[-83.435851,41.515452],[-83.435229,41.515211],[-83.433787,41.514655],[-83.431676,41.513861],[-83.430865,41.513572],[-83.430045,41.513297],[-83.429162,41.513018],[-83.428383,41.512785],[-83.427542,41.512548],[-83.426582,41.512296],[-83.425727,41.512088],[-83.424867,41.511896],[-83.424068,41.511706],[-83.423045,41.511509],[-83.421026,41.511154],[-83.418993,41.510828],[-83.418035,41.510684],[-83.414879,41.510145],[-83.414298,41.51006],[-83.413386,41.509885],[-83.412928,41.509798],[-83.412417,41.509675],[-83.411695,41.509497],[-83.411191,41.50935],[-83.410748,41.509211],[-83.410255,41.509044],[-83.409768,41.508868],[-83.409286,41.508685],[-83.408756,41.508471],[-83.408287,41.508271],[-83.407668,41.507994],[-83.40341,41.506058],[-83.401772,41.505306],[-83.397552,41.503398],[-83.396998,41.503148],[-83.394683,41.502106],[-83.394173,41.501868],[-83.393921,41.501746],[-83.391586,41.500688],[-83.390823,41.500332],[-83.382581,41.496576],[-83.380547,41.495643],[-83.373379,41.492409],[-83.364442,41.488318],[-83.363449,41.487861],[-83.362507,41.487428],[-83.360704,41.486616],[-83.360269,41.486403],[-83.359826,41.486206],[-83.359299,41.485972],[-83.358813,41.485751],[-83.358332,41.485525],[-83.356133,41.484527],[-83.350624,41.482026],[-83.346913,41.480335],[-83.339221,41.47683],[-83.338765,41.476622],[-83.337386,41.475999],[-83.334585,41.474734],[-83.333616,41.474287],[-83.332946,41.473991],[-83.332271,41.473702],[-83.331746,41.473487],[-83.331268,41.473302],[-83.330623,41.473066],[-83.329918,41.47282],[-83.329292,41.472638],[-83.328883,41.472519],[-83.328202,41.472309],[-83.327704,41.472145],[-83.326967,41.471958],[-83.324067,41.471246],[-83.316097,41.469309],[-83.314333,41.468877],[-83.308672,41.467502],[-83.307612,41.467225],[-83.302838,41.466076],[-83.299138,41.465179],[-83.298628,41.465047],[-83.298235,41.464935],[-83.297681,41.464765],[-83.297077,41.464566],[-83.296642,41.464414],[-83.296266,41.464274],[-83.295843,41.464104],[-83.295426,41.463926],[-83.294911,41.463697],[-83.294453,41.463482],[-83.293953,41.463234],[-83.292915,41.462685],[-83.29242,41.462434],[-83.290693,41.461558],[-83.289806,41.461098],[-83.288825,41.460604],[-83.284222,41.45824],[-83.283583,41.457911],[-83.282284,41.45724],[-83.281977,41.457088],[-83.28042,41.456271],[-83.278785,41.455451],[-83.275963,41.454151],[-83.27338,41.453097],[-83.269156,41.451518],[-83.264111,41.449631],[-83.261808,41.448753],[-83.260423,41.448251],[-83.26001,41.448102],[-83.259379,41.447873],[-83.256911,41.446949],[-83.252994,41.445482],[-83.250786,41.444661],[-83.248536,41.443858],[-83.246534,41.443212],[-83.24361,41.442342],[-83.237745,41.440596],[-83.23634,41.440178],[-83.233594,41.439368],[-83.224742,41.436733],[-83.223588,41.436389],[-83.216257,41.43421],[-83.214476,41.433682],[-83.211851,41.432904],[-83.211106,41.432683],[-83.210833,41.432602],[-83.208854,41.43201],[-83.20798,41.431749],[-83.20116,41.429723],[-83.188801,41.426101],[-83.188312,41.425951],[-83.187259,41.425593],[-83.185481,41.425068],[-83.183477,41.424505],[-83.182609,41.424287],[-83.182091,41.424157],[-83.179963,41.423665],[-83.177259,41.423106],[-83.175375,41.422722],[-83.173644,41.422371],[-83.171846,41.421999],[-83.171253,41.421869],[-83.170665,41.421735],[-83.170077,41.421596],[-83.168907,41.421305],[-83.167744,41.420997],[-83.166592,41.420672],[-83.166535,41.420655],[-83.165488,41.420342],[-83.164432,41.42001],[-83.163384,41.419664],[-83.162865,41.419486],[-83.161831,41.419117],[-83.161317,41.418928],[-83.160297,41.418537],[-83.159285,41.418134],[-83.158282,41.417715],[-83.157291,41.417285],[-83.15631,41.41684],[-83.155822,41.416612],[-83.154009,41.415737],[-83.152567,41.415025],[-83.15068,41.414111],[-83.148889,41.413236],[-83.147548,41.412575],[-83.146358,41.412],[-83.143188,41.410568],[-83.141245,41.409778],[-83.139789,41.40924],[-83.138722,41.408867],[-83.138202,41.408687],[-83.13706,41.4083],[-83.136021,41.407988],[-83.135515,41.407839],[-83.131981,41.406828],[-83.128799,41.40592],[-83.128007,41.405698],[-83.12445,41.404661],[-83.119575,41.403263],[-83.118859,41.403062],[-83.118337,41.402886],[-83.117996,41.402794],[-83.116696,41.402444],[-83.11115,41.400859],[-83.109815,41.400478],[-83.10946,41.400383],[-83.10855,41.400117],[-83.106223,41.399468],[-83.105578,41.399283],[-83.103675,41.398729],[-83.101822,41.398199],[-83.098652,41.397312],[-83.096902,41.396792],[-83.09492,41.396266],[-83.092735,41.395754],[-83.090809,41.395349],[-83.088455,41.394916],[-83.088343,41.394896],[-83.083026,41.39394],[-83.081795,41.393721],[-83.080427,41.393477],[-83.066572,41.39102],[-83.066011,41.390919],[-83.056706,41.389205],[-83.050867,41.388154],[-83.049052,41.387827],[-83.047313,41.387467],[-83.044283,41.386822],[-83.043615,41.386659],[-83.038246,41.385441],[-83.028277,41.383186],[-83.027374,41.382971],[-83.024901,41.382509],[-83.022151,41.382066],[-83.017753,41.381498],[-83.017147,41.381419],[-83.012263,41.380812],[-83.011513,41.380728],[-83.009057,41.380443],[-83.006738,41.380142],[-83.004188,41.379753],[-83.002065,41.379374],[-83.000837,41.379137],[-82.999374,41.37879],[-82.997031,41.378233],[-82.996181,41.378006],[-82.983303,41.374805],[-82.979187,41.373796],[-82.978275,41.373559],[-82.973922,41.372466],[-82.97336,41.372336],[-82.967863,41.370955],[-82.964619,41.37014],[-82.963531,41.369865],[-82.962213,41.369511],[-82.961344,41.3693],[-82.960625,41.369121],[-82.955036,41.367726],[-82.953843,41.367407],[-82.953347,41.367266],[-82.951808,41.366902],[-82.951337,41.366773],[-82.951023,41.366681],[-82.950565,41.366547],[-82.949831,41.366314],[-82.949097,41.366071],[-82.948372,41.365825],[-82.947492,41.365506],[-82.945565,41.364822],[-82.944178,41.364349],[-82.94242,41.363808],[-82.940896,41.363405],[-82.939836,41.363148],[-82.938629,41.362889],[-82.936557,41.362504],[-82.935102,41.362281],[-82.931541,41.361901],[-82.930992,41.361846],[-82.92913,41.361587],[-82.916943,41.360185],[-82.905202,41.358836],[-82.903222,41.358605],[-82.899005,41.358124],[-82.897529,41.357926],[-82.89663,41.357851],[-82.895259,41.357664],[-82.894481,41.357527],[-82.893261,41.357294],[-82.892427,41.357124],[-82.891788,41.356998],[-82.889571,41.356507],[-82.886099,41.355774],[-82.880206,41.354446],[-82.878358,41.354073],[-82.876875,41.353815],[-82.875192,41.353541],[-82.87306,41.353265],[-82.868238,41.352746],[-82.864739,41.352391],[-82.861691,41.35205],[-82.859672,41.351834],[-82.857576,41.351618],[-82.855582,41.351399],[-82.848817,41.350682],[-82.846697,41.350462],[-82.845035,41.350281],[-82.836442,41.349375],[-82.833907,41.349097],[-82.828937,41.348559],[-82.826895,41.348347],[-82.825356,41.34825],[-82.823688,41.348158],[-82.819453,41.34794],[-82.811525,41.347543],[-82.805254,41.347241],[-82.803923,41.347191],[-82.802363,41.347122],[-82.801885,41.347096],[-82.799329,41.346856],[-82.796433,41.346504],[-82.793186,41.346039],[-82.786798,41.344807],[-82.786174,41.344679],[-82.784587,41.344365],[-82.783842,41.34422],[-82.780835,41.343571],[-82.780078,41.343419],[-82.771783,41.34176],[-82.770799,41.341592],[-82.766398,41.340974],[-82.765141,41.340803],[-82.761229,41.340335],[-82.759057,41.340043],[-82.75612,41.339673],[-82.751526,41.339111],[-82.747637,41.338672],[-82.747193,41.338621],[-82.743909,41.338251],[-82.739632,41.337756],[-82.733207,41.336884],[-82.728526,41.336379],[-82.725141,41.336159],[-82.714252,41.335922],[-82.700015,41.335644],[-82.69948,41.335634],[-82.693835,41.335525],[-82.693341,41.335515],[-82.687419,41.335359],[-82.682269,41.335042],[-82.677587,41.334495],[-82.675388,41.334193],[-82.673423,41.33381],[-82.667558,41.332549],[-82.662147,41.331402],[-82.657047,41.330357],[-82.656815,41.330302],[-82.652572,41.329398],[-82.648039,41.328494],[-82.646891,41.328287],[-82.64648,41.328223],[-82.64522,41.328025],[-82.643419,41.327786],[-82.639539,41.327208],[-82.636648,41.326707],[-82.63502,41.326337],[-82.632067,41.325742],[-82.631373,41.32559],[-82.630871,41.325479],[-82.630608,41.325407],[-82.625436,41.324269],[-82.622106,41.323524],[-82.619409,41.323116],[-82.616726,41.322884],[-82.615853,41.322834],[-82.615169,41.322802],[-82.613618,41.322776],[-82.612115,41.322795],[-82.610095,41.322935],[-82.60871,41.323034],[-82.608133,41.323093],[-82.60632,41.323382],[-82.6049,41.323613],[-82.602641,41.324026],[-82.601556,41.324191],[-82.600501,41.324324],[-82.599366,41.324409],[-82.597885,41.324451],[-82.596153,41.324406],[-82.594885,41.324286],[-82.593864,41.324172],[-82.59129,41.323896],[-82.588265,41.323587],[-82.587785,41.323533],[-82.587617,41.323514],[-82.586953,41.32344],[-82.586795,41.323414],[-82.585191,41.323202],[-82.583774,41.323094],[-82.582731,41.323046],[-82.580617,41.32297],[-82.579944,41.322981],[-82.579035,41.322976],[-82.577417,41.323008],[-82.577072,41.323035],[-82.574425,41.323208],[-82.571448,41.323429],[-82.568889,41.323593],[-82.567147,41.323725],[-82.566392,41.323779],[-82.564314,41.323936],[-82.562379,41.324097],[-82.560862,41.324194],[-82.558551,41.32435],[-82.556532,41.324486],[-82.555036,41.324599],[-82.552857,41.324771],[-82.552001,41.324831],[-82.551189,41.324863],[-82.548621,41.325063],[-82.546917,41.325176],[-82.544982,41.325343],[-82.543474,41.325392],[-82.542314,41.32544],[-82.540145,41.325458],[-82.535693,41.325508],[-82.527867,41.325597],[-82.523794,41.325643],[-82.520454,41.325885],[-82.516426,41.326293],[-82.512396,41.326867],[-82.510285,41.327247],[-82.507767,41.327593],[-82.504755,41.328033],[-82.503725,41.328154],[-82.503177,41.328226],[-82.502723,41.328278],[-82.499404,41.328547],[-82.49826,41.328603],[-82.496628,41.328691],[-82.493681,41.328776],[-82.493181,41.328779],[-82.492036,41.328768],[-82.488209,41.328775],[-82.48559,41.328768],[-82.483672,41.328755],[-82.481789,41.328789],[-82.481118,41.32881],[-82.47912,41.328957],[-82.478144,41.329009],[-82.477595,41.329048],[-82.473114,41.329328],[-82.469517,41.32959],[-82.467144,41.32975],[-82.463722,41.330031],[-82.455343,41.330576],[-82.454952,41.330606],[-82.452655,41.33075],[-82.442821,41.33142],[-82.438529,41.331641],[-82.435242,41.331811],[-82.427489,41.332333],[-82.423999,41.332569],[-82.417009,41.333041],[-82.416429,41.33308],[-82.410257,41.333497],[-82.408284,41.333636],[-82.407611,41.333674],[-82.404703,41.333805],[-82.401782,41.334002],[-82.387688,41.33492],[-82.385743,41.334962],[-82.383706,41.334893],[-82.373827,41.334218],[-82.372193,41.334242],[-82.370697,41.334351],[-82.369146,41.334625],[-82.367759,41.33509],[-82.359888,41.338264],[-82.356818,41.339503],[-82.355059,41.340096],[-82.351679,41.34115],[-82.350089,41.341657],[-82.348398,41.342162],[-82.346984,41.342628],[-82.344999,41.343172],[-82.34323,41.343585],[-82.3421,41.343835],[-82.341578,41.34393],[-82.340826,41.344068],[-82.339848,41.344232],[-82.339081,41.344346],[-82.338133,41.34447],[-82.33673,41.344622],[-82.33525,41.344757],[-82.333498,41.344897],[-82.331868,41.345033],[-82.330465,41.345157],[-82.328789,41.345349],[-82.327256,41.345552],[-82.325784,41.345773],[-82.323304,41.346205],[-82.321847,41.346506],[-82.320557,41.346784],[-82.319297,41.347085],[-82.317953,41.347425],[-82.31567,41.34807],[-82.314,41.348599],[-82.31274,41.349014],[-82.311381,41.349497],[-82.309984,41.350032],[-82.309513,41.350216],[-82.307561,41.350981],[-82.300146,41.353914],[-82.299842,41.354036],[-82.299083,41.354343],[-82.295256,41.355848],[-82.292446,41.356954],[-82.29049,41.357726],[-82.281241,41.361377],[-82.280381,41.361716],[-82.279031,41.362299],[-82.278588,41.362501],[-82.277868,41.362868],[-82.276824,41.363466],[-82.276042,41.36397],[-82.275191,41.364576],[-82.274356,41.365245],[-82.273494,41.366012],[-82.272617,41.3669],[-82.270694,41.368835],[-82.266955,41.372572],[-82.266476,41.373012],[-82.265968,41.373427],[-82.265706,41.373618],[-82.265419,41.373826],[-82.265241,41.373955],[-82.264745,41.374272],[-82.263919,41.374745],[-82.263373,41.375009],[-82.262654,41.375323],[-82.261949,41.375597],[-82.261144,41.375855],[-82.260485,41.376034],[-82.259741,41.376213],[-82.259056,41.376336],[-82.258344,41.37644],[-82.257673,41.376514],[-82.257028,41.376554],[-82.252985,41.376702],[-82.25245,41.376721],[-82.248422,41.376868],[-82.247951,41.376883],[-82.239261,41.377192],[-82.239138,41.377196],[-82.237356,41.377261],[-82.234881,41.377347],[-82.233173,41.377403],[-82.231438,41.377509],[-82.230188,41.377611],[-82.229264,41.377715],[-82.228829,41.377766],[-82.228261,41.377833],[-82.227137,41.37799],[-82.224637,41.378396],[-82.221214,41.378946],[-82.219865,41.379165],[-82.219084,41.379291],[-82.215393,41.37989],[-82.210519,41.380699],[-82.209943,41.38079],[-82.208832,41.380969],[-82.208138,41.381081],[-82.202619,41.38197],[-82.201524,41.382156],[-82.19634,41.382988],[-82.189904,41.384009],[-82.188496,41.384233],[-82.187215,41.384462],[-82.186461,41.384612],[-82.18565,41.38478],[-82.184929,41.384951],[-82.184113,41.385144],[-82.183351,41.385364],[-82.182268,41.385671],[-82.180991,41.386038],[-82.179433,41.386466],[-82.179266,41.386515],[-82.175685,41.387547],[-82.174782,41.387788],[-82.173942,41.387992],[-82.173106,41.388165],[-82.172082,41.388355],[-82.170647,41.388561],[-82.169335,41.3887],[-82.166833,41.388879],[-82.163354,41.389124],[-82.151936,41.389908],[-82.149854,41.390051],[-82.149127,41.390102],[-82.146259,41.390292],[-82.144029,41.390458],[-82.143508,41.390493],[-82.139062,41.390788],[-82.138023,41.39086],[-82.135657,41.391025],[-82.132959,41.391214],[-82.13104,41.391345],[-82.130522,41.391376],[-82.129938,41.391408],[-82.127978,41.391555],[-82.125831,41.391701],[-82.125175,41.391744],[-82.124713,41.391765],[-82.124214,41.391763],[-82.123772,41.391752],[-82.123151,41.391702],[-82.122787,41.391652],[-82.122444,41.391595],[-82.122024,41.391513],[-82.121692,41.391433],[-82.121369,41.391342],[-82.121146,41.391272],[-82.12083,41.391166],[-82.120531,41.391059],[-82.118795,41.39036],[-82.116979,41.389611],[-82.116673,41.389493],[-82.116235,41.389318],[-82.115283,41.388923],[-82.110763,41.387117],[-82.109357,41.386527],[-82.108385,41.386117],[-82.107413,41.385707],[-82.10704,41.385555],[-82.106254,41.385266],[-82.105994,41.385178],[-82.105226,41.384935],[-82.104661,41.384773],[-82.104148,41.384651],[-82.103673,41.384532],[-82.103266,41.384438],[-82.102701,41.384326],[-82.102094,41.384203],[-82.10168,41.384133],[-82.100981,41.384032],[-82.100119,41.383938],[-82.099831,41.383911],[-82.099398,41.383877],[-82.09895,41.383848],[-82.098445,41.383825],[-82.098106,41.383817],[-82.09738,41.383809],[-82.096926,41.383811],[-82.096341,41.383826],[-82.095934,41.383845],[-82.095489,41.383873],[-82.094641,41.383944],[-82.094212,41.383991],[-82.093646,41.384066],[-82.093216,41.384127],[-82.092373,41.38427],[-82.091915,41.384356],[-82.085029,41.385707],[-82.084117,41.385881],[-82.082675,41.386167],[-82.081676,41.386355],[-82.081257,41.386422],[-82.080958,41.386465],[-82.080644,41.386504],[-82.080398,41.386527],[-82.079767,41.386561],[-82.079362,41.386575],[-82.079071,41.38658],[-82.078726,41.386569],[-82.078458,41.386557],[-82.077995,41.386522],[-82.077783,41.386493],[-82.077433,41.386459],[-82.077155,41.386423],[-82.07657,41.386311],[-82.076066,41.3862],[-82.075785,41.386126],[-82.07511,41.385924],[-82.074467,41.385696],[-82.074203,41.385585],[-82.073875,41.385441],[-82.073348,41.385182],[-82.073002,41.384989],[-82.072838,41.384897],[-82.072514,41.384696],[-82.07209,41.3844],[-82.07172,41.384121],[-82.071323,41.383802],[-82.070837,41.383382],[-82.070078,41.38274],[-82.069173,41.381987],[-82.068978,41.38183],[-82.068669,41.381587],[-82.068393,41.381397],[-82.067649,41.380907],[-82.06726,41.380674],[-82.066575,41.38028],[-82.065802,41.379887],[-82.065068,41.37955],[-82.064271,41.379226],[-82.063683,41.379009],[-82.062941,41.378768],[-82.062439,41.378613],[-82.061342,41.378335],[-82.060738,41.378203],[-82.060097,41.378084],[-82.059481,41.377983],[-82.058898,41.377911],[-82.058298,41.377842],[-82.057833,41.377805],[-82.057191,41.377771],[-82.056414,41.377745],[-82.05581,41.377746],[-82.055298,41.37776],[-82.054778,41.377783],[-82.053492,41.377864],[-82.052765,41.377923],[-82.048574,41.378228],[-82.04451,41.37852],[-82.040124,41.378842],[-82.03595,41.379144],[-82.0324,41.379397],[-82.02793,41.379726],[-82.026328,41.379816],[-82.025723,41.379843],[-82.02527,41.379863],[-82.023863,41.379901],[-82.022734,41.379919],[-82.022586,41.379918],[-82.020967,41.379909],[-82.019534,41.379871],[-82.018506,41.379838],[-82.010738,41.379381],[-82.008021,41.37923],[-82.006776,41.379183],[-82.006277,41.379166],[-82.004516,41.379137],[-82.003826,41.379136],[-81.995011,41.379111],[-81.994757,41.379116],[-81.993984,41.37912],[-81.993346,41.379098],[-81.992726,41.379068],[-81.99222,41.379031],[-81.99169,41.378982],[-81.991426,41.378962],[-81.990881,41.378897],[-81.99034,41.378816],[-81.989922,41.378744],[-81.989516,41.378667],[-81.989149,41.378593],[-81.988475,41.378456],[-81.988143,41.378382],[-81.987587,41.378235],[-81.987333,41.378168],[-81.986321,41.377867],[-81.986037,41.377774],[-81.985508,41.377592],[-81.98498,41.377392],[-81.984103,41.377031],[-81.983498,41.376756],[-81.982895,41.376466],[-81.982365,41.376183],[-81.981562,41.375767],[-81.980533,41.375104],[-81.975632,41.371633],[-81.974508,41.370872],[-81.97397,41.370537],[-81.97319,41.370102],[-81.972521,41.369772],[-81.971873,41.369474],[-81.971135,41.369169],[-81.971006,41.369117],[-81.970743,41.369015],[-81.969113,41.368513],[-81.96746,41.368117],[-81.965845,41.367863],[-81.964273,41.367719],[-81.962445,41.367689],[-81.960956,41.367747],[-81.949076,41.369066],[-81.946945,41.369239],[-81.945242,41.369292],[-81.943561,41.369235],[-81.941864,41.369127],[-81.940016,41.368862],[-81.930129,41.367047],[-81.928965,41.366755],[-81.927276,41.366211],[-81.925676,41.365474],[-81.922224,41.363523],[-81.914821,41.359391],[-81.913736,41.35886],[-81.912459,41.358341],[-81.911273,41.357951],[-81.910228,41.357674],[-81.908791,41.357383],[-81.907521,41.357216],[-81.90611,41.357132],[-81.896299,41.356964],[-81.895457,41.356946],[-81.893153,41.356896],[-81.892501,41.356892],[-81.88936,41.356807],[-81.886976,41.356645],[-81.884189,41.356315],[-81.881548,41.355869],[-81.878864,41.355258],[-81.876793,41.354721],[-81.875315,41.354261],[-81.873247,41.353517],[-81.87054,41.352355],[-81.865021,41.349981],[-81.860037,41.347885],[-81.85838,41.347235],[-81.857428,41.346914],[-81.855778,41.34635],[-81.854685,41.345953],[-81.84507,41.342615],[-81.844274,41.342387],[-81.843554,41.342248],[-81.84301,41.342176],[-81.84246,41.342113],[-81.84189,41.342073],[-81.841061,41.342082],[-81.837507,41.342277],[-81.836637,41.342334],[-81.836227,41.342361],[-81.835573,41.342391],[-81.833808,41.342458],[-81.832962,41.342443],[-81.832112,41.342378],[-81.831238,41.342253],[-81.830304,41.342049],[-81.82955,41.341816],[-81.828799,41.34154],[-81.828026,41.341227],[-81.827367,41.340856],[-81.826635,41.340411],[-81.82595,41.339909],[-81.824692,41.338666],[-81.823504,41.337364],[-81.822723,41.336514],[-81.821672,41.335308],[-81.821163,41.334846],[-81.819853,41.333964],[-81.819175,41.333583],[-81.818399,41.333257],[-81.815026,41.332181],[-81.810424,41.330791],[-81.80808,41.330155],[-81.805706,41.329557],[-81.799178,41.328114],[-81.795911,41.327385],[-81.794305,41.326997],[-81.792748,41.326547],[-81.790981,41.325923],[-81.789328,41.325208],[-81.787732,41.324469],[-81.786297,41.323678],[-81.780621,41.320895],[-81.778212,41.319906],[-81.773698,41.318288],[-81.771518,41.317624],[-81.7626,41.315064],[-81.76,41.314207],[-81.757489,41.313116],[-81.75656,41.312652],[-81.75561,41.31215],[-81.755049,41.31183],[-81.745889,41.306129],[-81.745105,41.30573],[-81.744244,41.305279],[-81.742368,41.304541],[-81.740216,41.303982],[-81.738817,41.303724],[-81.737658,41.303524],[-81.736355,41.303342],[-81.735461,41.303266],[-81.731967,41.30324],[-81.718818,41.30306],[-81.711102,41.302963],[-81.707952,41.302673],[-81.706124,41.302395],[-81.705085,41.302131],[-81.70348,41.301709],[-81.702058,41.301281],[-81.70074,41.300863],[-81.698871,41.300106],[-81.694296,41.298227],[-81.689215,41.296547],[-81.684125,41.295012],[-81.678959,41.293491],[-81.677619,41.293097],[-81.670177,41.290932],[-81.666401,41.289834],[-81.664951,41.289202],[-81.663535,41.288428],[-81.661378,41.286939],[-81.657953,41.284684],[-81.656199,41.28354],[-81.654368,41.282539],[-81.652377,41.281667],[-81.650351,41.280843],[-81.646326,41.279147],[-81.640506,41.276996],[-81.638725,41.276369],[-81.638253,41.276219],[-81.636989,41.275782],[-81.635722,41.275389],[-81.634649,41.275046],[-81.633385,41.274636],[-81.629612,41.273514],[-81.628038,41.273099],[-81.627648,41.272978],[-81.627062,41.272803],[-81.626643,41.272647],[-81.626468,41.272582],[-81.625887,41.272339],[-81.625557,41.272196],[-81.625205,41.27206],[-81.624733,41.271873],[-81.623892,41.271442],[-81.623392,41.271146],[-81.622971,41.270882],[-81.622734,41.270746],[-81.621419,41.269853],[-81.621176,41.269664],[-81.621014,41.269531],[-81.618844,41.26811],[-81.617815,41.26743],[-81.61424,41.265029],[-81.613793,41.264731],[-81.612786,41.264047],[-81.610787,41.262703],[-81.609778,41.26202],[-81.609104,41.261576],[-81.608538,41.261229],[-81.60751,41.260585],[-81.606292,41.259864],[-81.604963,41.259119],[-81.602849,41.25801],[-81.60144,41.257326],[-81.600241,41.256772],[-81.599386,41.256396],[-81.598455,41.256001],[-81.597752,41.255711],[-81.596879,41.255371],[-81.595877,41.255002],[-81.594838,41.254645],[-81.59428,41.254462],[-81.593905,41.254344],[-81.593005,41.254073],[-81.592071,41.253811],[-81.591945,41.253778],[-81.59118,41.253578],[-81.590874,41.253502],[-81.590729,41.253468],[-81.590415,41.253394],[-81.590031,41.253299],[-81.589242,41.253125],[-81.588838,41.253041],[-81.587485,41.252773],[-81.586886,41.252679],[-81.58542,41.252456],[-81.584338,41.252303],[-81.58341,41.252197],[-81.582566,41.252118],[-81.581681,41.252043],[-81.580139,41.251954],[-81.579137,41.25192],[-81.57823,41.251901],[-81.577225,41.251898],[-81.576288,41.251913],[-81.575461,41.251938],[-81.574549,41.251979],[-81.574166,41.252005],[-81.5737,41.252031],[-81.573321,41.252057],[-81.572111,41.252162],[-81.571064,41.252273],[-81.570766,41.25231],[-81.569845,41.25243],[-81.569466,41.252485],[-81.56844,41.252646],[-81.568066,41.252708],[-81.56727,41.252858],[-81.565759,41.253119],[-81.56453,41.253345],[-81.563497,41.253589],[-81.562737,41.253763],[-81.562065,41.253927],[-81.561069,41.25418],[-81.560587,41.254319],[-81.559622,41.254575],[-81.557873,41.255212],[-81.556178,41.255753],[-81.555564,41.255945],[-81.55214,41.256891],[-81.551679,41.257044],[-81.551307,41.257159],[-81.550899,41.257277],[-81.550587,41.25736],[-81.550298,41.257435],[-81.550027,41.257495],[-81.549779,41.257543],[-81.549466,41.257586],[-81.549104,41.257623],[-81.548788,41.25765],[-81.548502,41.257667],[-81.548148,41.257675],[-81.547822,41.257671],[-81.547411,41.25766],[-81.546935,41.25763],[-81.546434,41.257544],[-81.545383,41.257352],[-81.544682,41.257238],[-81.544302,41.257162],[-81.543129,41.256948],[-81.542616,41.256864],[-81.542098,41.25679],[-81.541551,41.256732],[-81.541185,41.256699],[-81.540765,41.256663],[-81.539976,41.25661],[-81.539518,41.256589],[-81.539447,41.256587],[-81.538395,41.256572],[-81.53797,41.256576],[-81.537606,41.256586],[-81.537113,41.256606],[-81.53456,41.256744],[-81.533894,41.256777],[-81.533022,41.256824],[-81.528258,41.257082],[-81.52705,41.257144],[-81.520097,41.25752],[-81.512173,41.257948],[-81.50979,41.258082],[-81.508272,41.258157],[-81.507455,41.258203],[-81.506711,41.25824],[-81.505208,41.258323],[-81.503498,41.258411],[-81.502777,41.258453],[-81.502078,41.258489],[-81.501523,41.258508],[-81.499688,41.258516],[-81.498828,41.258508],[-81.49761,41.258498],[-81.496167,41.258415],[-81.494297,41.258265],[-81.493291,41.258159],[-81.491913,41.257981],[-81.49057,41.257776],[-81.489549,41.25762],[-81.487444,41.257298],[-81.48695,41.257225],[-81.484386,41.25683],[-81.483865,41.256746],[-81.482782,41.256582],[-81.482428,41.256532],[-81.481655,41.25641],[-81.48132,41.256363],[-81.480238,41.25619],[-81.479627,41.256099],[-81.478753,41.255962],[-81.477759,41.255817],[-81.477246,41.255746],[-81.476287,41.25562],[-81.475466,41.255522],[-81.474378,41.25541],[-81.473707,41.255347],[-81.473064,41.255295],[-81.472749,41.255266],[-81.472519,41.255249],[-81.471318,41.255167],[-81.470899,41.255142],[-81.469788,41.255088],[-81.468755,41.25505],[-81.468023,41.255032],[-81.463514,41.254958],[-81.463136,41.254957],[-81.462695,41.254953],[-81.461612,41.25493],[-81.461173,41.254921],[-81.458158,41.254876],[-81.457783,41.254867],[-81.45735,41.254863],[-81.453221,41.254794],[-81.450703,41.254759],[-81.445868,41.254681],[-81.445616,41.254674],[-81.445129,41.25467],[-81.444612,41.254665],[-81.444001,41.254648],[-81.443921,41.254647],[-81.441609,41.254615],[-81.440838,41.254592],[-81.440541,41.254589],[-81.43934,41.254545],[-81.438184,41.254491],[-81.436804,41.254401],[-81.43384,41.254165],[-81.428895,41.253791],[-81.427477,41.253675],[-81.425208,41.253509],[-81.423654,41.253379],[-81.422803,41.253322],[-81.421823,41.253239],[-81.421118,41.253189],[-81.420776,41.253166],[-81.419723,41.253084],[-81.419207,41.253036],[-81.418524,41.252991],[-81.417998,41.252944],[-81.416548,41.252835],[-81.415095,41.25275],[-81.413837,41.252711],[-81.412681,41.2527],[-81.411982,41.252704],[-81.410988,41.252725],[-81.410352,41.252749],[-81.409697,41.252782],[-81.408175,41.252883],[-81.4073,41.252962],[-81.407086,41.252978],[-81.404518,41.253177],[-81.403564,41.253262],[-81.403378,41.253275],[-81.402726,41.25332],[-81.40226,41.253365],[-81.401947,41.253383],[-81.399305,41.253606],[-81.398785,41.253658],[-81.397238,41.253778],[-81.395427,41.253922],[-81.391752,41.254219],[-81.386989,41.254603],[-81.386336,41.254662],[-81.385495,41.254739],[-81.384407,41.254833],[-81.383161,41.254935],[-81.381843,41.255037],[-81.379335,41.255213],[-81.378157,41.255315],[-81.374202,41.255652],[-81.372857,41.255744],[-81.372048,41.255823],[-81.371633,41.255867],[-81.370172,41.255985],[-81.369621,41.256033],[-81.369249,41.256056],[-81.368938,41.256072],[-81.367975,41.256138],[-81.366817,41.25618],[-81.365608,41.256215],[-81.364747,41.256215],[-81.36405,41.256177],[-81.363443,41.256131],[-81.362538,41.256051],[-81.362162,41.256013],[-81.361734,41.255965],[-81.361233,41.2559],[-81.361155,41.25589],[-81.360738,41.255833],[-81.360304,41.25577],[-81.359885,41.255705],[-81.35906,41.255552],[-81.358184,41.255373],[-81.357499,41.25524],[-81.356885,41.255118],[-81.355871,41.254918],[-81.354922,41.254753],[-81.353088,41.254417],[-81.352083,41.254226],[-81.351072,41.254026],[-81.350044,41.253826],[-81.348993,41.253624],[-81.347933,41.253424],[-81.346862,41.253229],[-81.345684,41.253036],[-81.345185,41.252953],[-81.343786,41.252744],[-81.343051,41.252638],[-81.342446,41.252557],[-81.341463,41.252447],[-81.339575,41.252274],[-81.33862,41.252192],[-81.33764,41.252115],[-81.336449,41.252012],[-81.335874,41.251957],[-81.335016,41.251889],[-81.33243,41.251677],[-81.331559,41.251607],[-81.330657,41.251541],[-81.329671,41.251455],[-81.328713,41.25138],[-81.327901,41.25131],[-81.325538,41.250996],[-81.324595,41.25088],[-81.323329,41.250687],[-81.323012,41.250647],[-81.322379,41.250552],[-81.321893,41.25048],[-81.32148,41.250416],[-81.321259,41.250362],[-81.321041,41.250313],[-81.320793,41.250272],[-81.320494,41.25023],[-81.320087,41.250171],[-81.319787,41.250134],[-81.31938,41.250064],[-81.318845,41.249977],[-81.318262,41.249886],[-81.316971,41.249696],[-81.316174,41.249561],[-81.315852,41.24951],[-81.315524,41.249466],[-81.315184,41.249412],[-81.314851,41.249363],[-81.31456,41.249324],[-81.314088,41.249259],[-81.313404,41.249148],[-81.312945,41.249076],[-81.31237,41.248996],[-81.311867,41.248931],[-81.311351,41.248863],[-81.310204,41.248741],[-81.309891,41.248712],[-81.309313,41.248654],[-81.308876,41.248614],[-81.308558,41.24858],[-81.308245,41.248555],[-81.307433,41.248515],[-81.306686,41.248491],[-81.305324,41.248442],[-81.304311,41.2484],[-81.302745,41.248356],[-81.301543,41.24834],[-81.300221,41.248325],[-81.298722,41.248292],[-81.298538,41.248286],[-81.295911,41.248214],[-81.294681,41.248198],[-81.291374,41.248129],[-81.289869,41.248108],[-81.289124,41.248091],[-81.287577,41.24808],[-81.286411,41.248057],[-81.285604,41.248044],[-81.284507,41.248017],[-81.284266,41.248012],[-81.283498,41.247986],[-81.282329,41.247945],[-81.281282,41.247926],[-81.280415,41.247901],[-81.27942,41.247874],[-81.277388,41.247831],[-81.276243,41.247801],[-81.275914,41.247791],[-81.275405,41.247768],[-81.274695,41.247716],[-81.274068,41.247685],[-81.273294,41.247623],[-81.272642,41.247576],[-81.271255,41.247421],[-81.269968,41.247279],[-81.268705,41.247145],[-81.267351,41.247014],[-81.266181,41.246899],[-81.265542,41.246825],[-81.263853,41.246668],[-81.26089,41.246374],[-81.25965,41.246271],[-81.258217,41.246159],[-81.25692,41.246074],[-81.256265,41.24603],[-81.255305,41.245988],[-81.251053,41.245774],[-81.250597,41.245742],[-81.249177,41.245675],[-81.247848,41.245605],[-81.242716,41.245324],[-81.23449,41.244881],[-81.230324,41.244661],[-81.229597,41.244627],[-81.227823,41.244531],[-81.224811,41.244383],[-81.210532,41.243621],[-81.196142,41.24357],[-81.187946,41.243527],[-81.184649,41.243483],[-81.181694,41.243478],[-81.180906,41.24347],[-81.180048,41.24346],[-81.178239,41.243468],[-81.171637,41.243413],[-81.162079,41.243349],[-81.160179,41.243352],[-81.154497,41.243286],[-81.153732,41.243271],[-81.152106,41.243198],[-81.149101,41.24299],[-81.147351,41.242893],[-81.146777,41.242857],[-81.145461,41.242765],[-81.141863,41.24255],[-81.138259,41.24231],[-81.136823,41.242241],[-81.13517,41.242196],[-81.134505,41.242186],[-81.132427,41.242194],[-81.129849,41.242282],[-81.115249,41.243005],[-81.113241,41.243126],[-81.110848,41.243214],[-81.105751,41.243482],[-81.09994,41.243751],[-81.097616,41.243882],[-81.096493,41.243915],[-81.094363,41.244017],[-81.093384,41.24403],[-81.090417,41.244036],[-81.089005,41.244025],[-81.087562,41.24399],[-81.085459,41.243883],[-81.082391,41.243647],[-81.081177,41.243542],[-81.079364,41.243359],[-81.07554,41.243042],[-81.071444,41.242729],[-81.070179,41.242657],[-81.066674,41.242384],[-81.066182,41.242337],[-81.064852,41.242226],[-81.063049,41.242099],[-81.061503,41.241996],[-81.060322,41.241947],[-81.056153,41.241891],[-81.052486,41.241861],[-81.049149,41.241818],[-81.048531,41.241813],[-81.047044,41.241788],[-81.045553,41.241767],[-81.041955,41.241704],[-81.041435,41.241706],[-81.039964,41.241678],[-81.039267,41.241679],[-81.038251,41.241661],[-81.036983,41.241637],[-81.035657,41.241607],[-81.034414,41.241605],[-81.033186,41.241559],[-81.031866,41.241571],[-81.030454,41.241547],[-81.030069,41.241531],[-81.027477,41.241528],[-81.026,41.241527],[-81.024671,41.241512],[-81.023209,41.24148],[-81.021725,41.241459],[-81.020778,41.241447],[-81.020584,41.241454],[-81.019494,41.241432],[-81.018385,41.241417],[-81.017283,41.241407],[-81.016196,41.241395],[-81.015162,41.241389],[-81.014141,41.241368],[-81.013173,41.241354],[-81.012204,41.241349],[-81.01117,41.24135],[-81.010094,41.241328],[-81.009013,41.241307],[-81.007888,41.241303],[-81.006795,41.241281],[-81.005697,41.241262],[-81.004596,41.241254],[-81.003534,41.241236],[-81.002472,41.241229],[-81.001399,41.241214],[-80.99983,41.241175],[-80.998361,41.241157],[-80.996897,41.241135],[-80.996204,41.241118],[-80.995445,41.241082],[-80.995354,41.241075],[-80.994667,41.241026],[-80.99392,41.240954],[-80.993152,41.240863],[-80.992642,41.240792],[-80.992161,41.240718],[-80.991681,41.240636],[-80.991217,41.240549],[-80.990715,41.240448],[-80.990216,41.240339],[-80.989719,41.240222],[-80.989268,41.240108],[-80.988835,41.23999],[-80.988364,41.239855],[-80.987617,41.239625],[-80.98734,41.239511],[-80.986139,41.239099],[-80.985823,41.238981],[-80.985484,41.238844],[-80.984678,41.238494],[-80.984246,41.238296],[-80.983548,41.237954],[-80.98293,41.237631],[-80.982338,41.237301],[-80.981636,41.236882],[-80.981425,41.236754],[-80.981126,41.236562],[-80.980338,41.23603],[-80.978691,41.234913],[-80.976716,41.233562],[-80.969491,41.22868],[-80.968676,41.228118],[-80.967395,41.227234],[-80.962287,41.223767],[-80.961949,41.223538],[-80.961329,41.223114],[-80.960522,41.222562],[-80.957981,41.220803],[-80.957507,41.220479],[-80.956913,41.220076],[-80.956255,41.219662],[-80.954068,41.218176],[-80.953239,41.217599],[-80.952884,41.217334],[-80.952737,41.217213],[-80.951994,41.216464],[-80.951846,41.216299],[-80.951671,41.216081],[-80.951515,41.215865],[-80.951363,41.215633],[-80.951215,41.215392],[-80.951097,41.215177],[-80.950999,41.214976],[-80.950824,41.214564],[-80.950742,41.214331],[-80.950622,41.213936],[-80.950435,41.213309],[-80.949348,41.209598],[-80.948982,41.208351],[-80.948917,41.208129],[-80.948291,41.205989],[-80.948162,41.205558],[-80.947459,41.203143],[-80.947301,41.20261],[-80.947282,41.202546],[-80.947102,41.201944],[-80.946879,41.201275],[-80.946688,41.20076],[-80.946497,41.200286],[-80.946446,41.20017],[-80.945812,41.198829],[-80.945221,41.197751],[-80.944689,41.196882],[-80.944225,41.196222],[-80.943586,41.195372],[-80.943063,41.194719],[-80.942802,41.194407],[-80.942569,41.194139],[-80.942255,41.193806],[-80.941715,41.193244],[-80.941119,41.192661],[-80.940539,41.192126],[-80.936292,41.188319],[-80.935801,41.187901],[-80.934725,41.186944],[-80.933838,41.186163],[-80.93361,41.185963],[-80.933125,41.185555],[-80.93222,41.18483],[-80.931154,41.184032],[-80.929378,41.182755],[-80.929313,41.182688],[-80.929261,41.182645],[-80.928654,41.182209],[-80.928092,41.181832],[-80.92329,41.178378],[-80.922223,41.1776],[-80.921481,41.17703],[-80.92094,41.176596],[-80.920262,41.176026],[-80.919995,41.175793],[-80.919176,41.175057],[-80.917755,41.173754],[-80.916306,41.172424],[-80.916187,41.172308],[-80.910894,41.167457],[-80.909842,41.166478],[-80.909481,41.166143],[-80.90578,41.16277],[-80.900282,41.157726],[-80.89863,41.15621],[-80.898427,41.156031],[-80.898226,41.155839],[-80.897562,41.155234],[-80.897234,41.154909],[-80.896302,41.15405],[-80.896007,41.153782],[-80.895609,41.153469],[-80.894816,41.152791],[-80.894267,41.152339],[-80.89344,41.151679],[-80.89308,41.151399],[-80.892139,41.150686],[-80.891423,41.150162],[-80.890948,41.149827],[-80.889738,41.149001],[-80.888656,41.148295],[-80.887633,41.147661],[-80.88633,41.146877],[-80.882171,41.144384],[-80.882056,41.144315],[-80.881157,41.143775],[-80.878862,41.142399],[-80.87876,41.142335],[-80.878384,41.14211],[-80.878148,41.141946],[-80.87788,41.141775],[-80.877631,41.141632],[-80.87712,41.141327],[-80.876561,41.141012],[-80.875134,41.140156],[-80.873502,41.139191],[-80.870463,41.137356],[-80.870373,41.137307],[-80.868511,41.136191],[-80.867555,41.13558],[-80.867236,41.135387],[-80.865629,41.134441],[-80.863526,41.133201],[-80.861359,41.131901],[-80.859079,41.130534],[-80.858734,41.130327],[-80.85744,41.129519],[-80.856954,41.129224],[-80.855956,41.128633],[-80.855545,41.128379],[-80.854607,41.127817],[-80.853786,41.127314],[-80.853114,41.126872],[-80.852523,41.126459],[-80.851932,41.126026],[-80.851391,41.125608],[-80.85103,41.125317],[-80.850677,41.125022],[-80.850637,41.124988],[-80.850217,41.12462],[-80.849598,41.124057],[-80.849526,41.123988],[-80.849235,41.123706],[-80.848853,41.123323],[-80.848251,41.12268],[-80.847743,41.1221],[-80.847379,41.121664],[-80.845978,41.119967],[-80.844494,41.118125],[-80.844348,41.117917],[-80.842902,41.116057],[-80.840351,41.112833],[-80.839432,41.111702],[-80.838933,41.11109],[-80.838342,41.11035],[-80.837609,41.109432],[-80.837159,41.108869],[-80.836769,41.108385],[-80.836104,41.107551],[-80.8351,41.106293],[-80.835016,41.106188],[-80.834707,41.10578],[-80.834605,41.105657],[-80.834303,41.105293],[-80.834098,41.105037],[-80.832527,41.10307],[-80.831682,41.102013],[-80.830497,41.100529],[-80.830146,41.100094],[-80.830073,41.100003],[-80.829834,41.099708],[-80.828252,41.097725],[-80.827125,41.096312],[-80.826866,41.096],[-80.826492,41.095548],[-80.826114,41.09511],[-80.825883,41.094858],[-80.825505,41.094446],[-80.824961,41.093879],[-80.824639,41.093547],[-80.824031,41.092969],[-80.823493,41.092475],[-80.823314,41.092311],[-80.822668,41.091747],[-80.822048,41.091232],[-80.821124,41.090503],[-80.820414,41.089972],[-80.819674,41.089443],[-80.817273,41.087804],[-80.816819,41.08752],[-80.816387,41.087237],[-80.815991,41.08693],[-80.813264,41.08507],[-80.812038,41.084226],[-80.811917,41.084144],[-80.811315,41.083733],[-80.811099,41.08359],[-80.810809,41.083395],[-80.81017,41.082962],[-80.809133,41.082259],[-80.808576,41.081903],[-80.808001,41.081552],[-80.807696,41.081372],[-80.807189,41.081083],[-80.806686,41.080808],[-80.806223,41.080565],[-80.805693,41.080298],[-80.804978,41.079957],[-80.803446,41.079276],[-80.802963,41.079054],[-80.802305,41.078734],[-80.80166,41.078398],[-80.801273,41.078186],[-80.800879,41.077962],[-80.800514,41.077745],[-80.800167,41.077529],[-80.799518,41.077107],[-80.799125,41.076836],[-80.79875,41.076567],[-80.798127,41.076094],[-80.797542,41.075618],[-80.797027,41.075168],[-80.79632,41.074517],[-80.795386,41.073648],[-80.792453,41.070918],[-80.79144,41.069969],[-80.791042,41.069598],[-80.790644,41.069217],[-80.790234,41.068832],[-80.789465,41.068137],[-80.788992,41.067688],[-80.788776,41.067483],[-80.788294,41.067025],[-80.787763,41.066559],[-80.785526,41.064472],[-80.784701,41.063755],[-80.78415,41.063193],[-80.782507,41.061663],[-80.777136,41.056647],[-80.774375,41.054093],[-80.771082,41.051028],[-80.768484,41.048601],[-80.766407,41.046664],[-80.765178,41.045531],[-80.764577,41.045008],[-80.764088,41.044585],[-80.76405,41.044552],[-80.763329,41.04397],[-80.762561,41.043379],[-80.761632,41.042702],[-80.760979,41.04225],[-80.760015,41.041621],[-80.759154,41.041088],[-80.758354,41.040623],[-80.757654,41.040227],[-80.756474,41.039604],[-80.756078,41.039403],[-80.7553,41.039025],[-80.754405,41.038614],[-80.753349,41.038155],[-80.751939,41.037584],[-80.737108,41.031692],[-80.732684,41.029905],[-80.732038,41.029637],[-80.73141,41.029363],[-80.730474,41.02894],[-80.730007,41.028716],[-80.729554,41.028498],[-80.72869,41.028056],[-80.728498,41.027958],[-80.727512,41.027418],[-80.726756,41.026983],[-80.725818,41.026415],[-80.725239,41.026046],[-80.724623,41.025638],[-80.719246,41.021928],[-80.718609,41.021489],[-80.718384,41.021313],[-80.716395,41.019926],[-80.715548,41.019336],[-80.714612,41.01864],[-80.713955,41.018125],[-80.713344,41.017625],[-80.712673,41.017048],[-80.712049,41.016483],[-80.711511,41.015975],[-80.711051,41.015527],[-80.710625,41.01509],[-80.710198,41.014636],[-80.709746,41.014138],[-80.709322,41.013643],[-80.709032,41.013299],[-80.708598,41.012784],[-80.694724,40.995895],[-80.693819,40.994801],[-80.692206,40.992829],[-80.691553,40.992038],[-80.691465,40.991931],[-80.689916,40.990054],[-80.688393,40.988228],[-80.688105,40.987871],[-80.687661,40.987325],[-80.686576,40.986151],[-80.68531,40.984905],[-80.683798,40.983574],[-80.683589,40.983403],[-80.683411,40.983257],[-80.682853,40.982809],[-80.682408,40.98247],[-80.681967,40.982141],[-80.68138,40.981717],[-80.680943,40.981413],[-80.680111,40.980855],[-80.679767,40.980631],[-80.679314,40.980348],[-80.678394,40.979793],[-80.677294,40.979171],[-80.676522,40.978758],[-80.675884,40.978424],[-80.673027,40.976928],[-80.670186,40.97544],[-80.66956,40.975123],[-80.669065,40.974864],[-80.667996,40.974291],[-80.667059,40.973794],[-80.666346,40.973429],[-80.665581,40.973025],[-80.662784,40.971562],[-80.661014,40.970632],[-80.660297,40.970225],[-80.659012,40.969453],[-80.658294,40.968989],[-80.658105,40.968862],[-80.657195,40.968289],[-80.656668,40.967918],[-80.656364,40.967703],[-80.655839,40.967338],[-80.655372,40.966974],[-80.654612,40.966419],[-80.654286,40.966147],[-80.65418,40.966059],[-80.653671,40.965698],[-80.65319,40.965363],[-80.652532,40.96489],[-80.652401,40.964805],[-80.651351,40.964039],[-80.651204,40.963924],[-80.647795,40.961431],[-80.64614,40.960227],[-80.640005,40.955671],[-80.638923,40.954941],[-80.638458,40.954594],[-80.637183,40.953666],[-80.636827,40.953407],[-80.635767,40.952628],[-80.635209,40.952206],[-80.634931,40.952005],[-80.634571,40.951758],[-80.634373,40.951604],[-80.633773,40.951116],[-80.633364,40.950824],[-80.631611,40.949572],[-80.631374,40.949403],[-80.630719,40.948961],[-80.630051,40.948541],[-80.629798,40.948391],[-80.629236,40.948074],[-80.62887,40.947878],[-80.628474,40.947674],[-80.628034,40.947464],[-80.627295,40.947149],[-80.626487,40.946798],[-80.62597,40.946608],[-80.625136,40.946323],[-80.624228,40.946052],[-80.623662,40.945904],[-80.622821,40.945702],[-80.621774,40.945494],[-80.592429,40.940458],[-80.590386,40.940085],[-80.589572,40.939974],[-80.586104,40.939378],[-80.585059,40.939189],[-80.584646,40.939106],[-80.583901,40.938944],[-80.583431,40.938828],[-80.583029,40.938698],[-80.582398,40.938503],[-80.58171,40.938291],[-80.581121,40.938094],[-80.580596,40.937896],[-80.580223,40.937742],[-80.579539,40.937443],[-80.578991,40.937184],[-80.578338,40.936848],[-80.578269,40.93681],[-80.577866,40.936589],[-80.577441,40.936352],[-80.577036,40.936102],[-80.576702,40.935904],[-80.576262,40.935623],[-80.574092,40.934249],[-80.572197,40.933063],[-80.571761,40.932787],[-80.56935,40.931283],[-80.567242,40.929961],[-80.564237,40.92807],[-80.563224,40.927437],[-80.562478,40.926986],[-80.561869,40.926629],[-80.561257,40.926284],[-80.560519,40.925886],[-80.559686,40.925458],[-80.559186,40.925205],[-80.558004,40.924647],[-80.557374,40.92438],[-80.557,40.924223],[-80.556616,40.924063],[-80.556087,40.92384],[-80.555554,40.923637],[-80.55486,40.923382],[-80.554381,40.923208],[-80.55387,40.923031],[-80.553176,40.922799],[-80.552702,40.922648],[-80.551659,40.922332],[-80.551107,40.922176],[-80.550381,40.921981],[-80.53142,40.917162],[-80.529587,40.916697],[-80.529033,40.916543],[-80.528606,40.916415],[-80.527931,40.916192],[-80.527542,40.916057],[-80.527069,40.915882],[-80.526447,40.915634],[-80.526109,40.915489],[-80.525753,40.915329],[-80.525254,40.91509],[-80.524861,40.914897],[-80.524546,40.914731],[-80.524126,40.914502],[-80.523879,40.914361],[-80.523214,40.913948],[-80.522469,40.913458],[-80.519681,40.911476],[-80.518756,40.910817],[-80.518216,40.910453],[-80.51775,40.910162],[-80.517154,40.909813],[-80.516681,40.909552],[-80.516236,40.90932],[-80.515805,40.909111],[-80.515258,40.908858],[-80.514714,40.908624],[-80.514113,40.908383],[-80.51361,40.908195],[-80.513047,40.908004],[-80.512372,40.907795],[-80.511832,40.907635],[-80.511188,40.907469],[-80.510665,40.907346],[-80.510085,40.907218],[-80.509569,40.907115],[-80.508818,40.906962],[-80.505324,40.906257],[-80.503446,40.905875],[-80.502517,40.905675],[-80.501588,40.905486],[-80.501375,40.905442],[-80.499668,40.905097],[-80.498928,40.904986],[-80.497697,40.904758],[-80.49636,40.904516],[-80.495273,40.904315],[-80.494445,40.904154],[-80.493592,40.903973],[-80.493058,40.903855],[-80.492291,40.903664],[-80.491722,40.903519],[-80.49112,40.903362],[-80.490541,40.903201],[-80.48967,40.902945],[-80.488518,40.902574],[-80.48835,40.902497],[-80.48751,40.902204],[-80.486848,40.901959],[-80.48546,40.901434],[-80.484002,40.900886],[-80.481916,40.900115],[-80.480535,40.899609],[-80.480275,40.899512],[-80.479525,40.899238],[-80.479401,40.899189],[-80.471261,40.896188],[-80.464108,40.893546],[-80.462117,40.892815],[-80.461224,40.892492],[-80.460724,40.892319],[-80.460402,40.892213],[-80.459632,40.891967],[-80.458975,40.891763],[-80.458441,40.891607],[-80.457851,40.891447],[-80.457423,40.891332],[-80.457059,40.891235],[-80.456379,40.891071],[-80.455555,40.890883],[-80.454836,40.890722],[-80.454123,40.890581],[-80.445348,40.888879],[-80.442171,40.888261],[-80.436502,40.887157],[-80.433422,40.886562],[-80.432961,40.886465],[-80.432489,40.886354],[-80.43207,40.886248],[-80.431654,40.886125],[-80.431225,40.885979],[-80.430888,40.885856],[-80.430421,40.885665],[-80.430048,40.885502],[-80.429746,40.88536],[-80.429279,40.885119],[-80.428897,40.8849],[-80.428596,40.884716],[-80.428253,40.884486],[-80.425868,40.882928],[-80.423175,40.881151],[-80.4197,40.878864],[-80.417404,40.877359],[-80.417275,40.877272],[-80.411002,40.873141],[-80.408258,40.871334],[-80.404452,40.86883],[-80.403993,40.86852],[-80.403696,40.868302],[-80.403367,40.86805],[-80.403121,40.867855],[-80.402898,40.867667],[-80.402617,40.867415],[-80.402323,40.867139],[-80.402022,40.866847],[-80.401721,40.866529],[-80.401347,40.866098],[-80.401034,40.865714],[-80.400721,40.865296],[-80.400513,40.865],[-80.400345,40.864747],[-80.400149,40.86443],[-80.399897,40.863968],[-80.399714,40.863593],[-80.399535,40.863168],[-80.399383,40.862794],[-80.399179,40.862154],[-80.398891,40.861182],[-80.398544,40.860038],[-80.397725,40.857347],[-80.396927,40.854721],[-80.396487,40.853262],[-80.396338,40.852827],[-80.396162,40.852346],[-80.395922,40.851755],[-80.395719,40.851294],[-80.395572,40.850981],[-80.395386,40.85062],[-80.395165,40.850198],[-80.394955,40.849821],[-80.394737,40.849445],[-80.394452,40.849],[-80.394155,40.848555],[-80.393835,40.848097],[-80.393571,40.847742],[-80.393208,40.847276],[-80.392944,40.846962],[-80.392682,40.846649],[-80.392258,40.846178],[-80.391828,40.84573],[-80.391337,40.845244],[-80.390894,40.844813],[-80.390431,40.844403],[-80.389972,40.844017],[-80.389592,40.843711],[-80.389224,40.843423],[-80.388789,40.8431],[-80.388426,40.842844],[-80.388,40.842547],[-80.387375,40.842132],[-80.38675,40.841749],[-80.386242,40.841451],[-80.385433,40.840991],[-80.384526,40.840479],[-80.383458,40.839898],[-80.381879,40.83901],[-80.380878,40.838451],[-80.38022,40.838096],[-80.377686,40.836665],[-80.376676,40.836094],[-80.376268,40.835869],[-80.375785,40.835624],[-80.375005,40.835271],[-80.374491,40.835075],[-80.373826,40.834864],[-80.37326,40.834703],[-80.372653,40.834565],[-80.372246,40.834482],[-80.371846,40.834411],[-80.371275,40.834334],[-80.370693,40.834273],[-80.369649,40.83417],[-80.368335,40.83404],[-80.367835,40.833987],[-80.367402,40.83393],[-80.366733,40.833813],[-80.366037,40.833657],[-80.365136,40.833404],[-80.364295,40.833073],[-80.363256,40.832599],[-80.361059,40.831469],[-80.35993,40.830895],[-80.358974,40.830456],[-80.358338,40.830202],[-80.357578,40.829951],[-80.355931,40.829563],[-80.354716,40.8293],[-80.353445,40.829007],[-80.353007,40.828896],[-80.352624,40.82878],[-80.352265,40.828656],[-80.3519,40.828514],[-80.351524,40.828352],[-80.351224,40.828204],[-80.350923,40.828043],[-80.350666,40.827893],[-80.350433,40.827743],[-80.35014,40.827542],[-80.34991,40.827369],[-80.349692,40.827195],[-80.349427,40.826955],[-80.349232,40.826767],[-80.344751,40.821837],[-80.344424,40.821506],[-80.344116,40.821258],[-80.343689,40.820943],[-80.343346,40.820718],[-80.342955,40.820507],[-80.342601,40.820332],[-80.34223,40.820182],[-80.341855,40.820048],[-80.341367,40.819898],[-80.340782,40.819764],[-80.338727,40.819447],[-80.338373,40.819393],[-80.335833,40.819003],[-80.335219,40.818873],[-80.334841,40.818774],[-80.334471,40.818662],[-80.334087,40.818532],[-80.333781,40.818414],[-80.333401,40.818244],[-80.332979,40.818045],[-80.331719,40.817409],[-80.33059,40.816847],[-80.329396,40.816258],[-80.327808,40.815452],[-80.325858,40.814474],[-80.32508,40.814082],[-80.324801,40.813934],[-80.32441,40.813731],[-80.324155,40.813622],[-80.323476,40.813289],[-80.322543,40.812852],[-80.3222,40.81271],[-80.32173,40.812523],[-80.321226,40.812341],[-80.316189,40.810493],[-80.314901,40.810008],[-80.314266,40.809758],[-80.309821,40.80813],[-80.305723,40.806632],[-80.304347,40.80613],[-80.303888,40.805956],[-80.303415,40.805764],[-80.303062,40.805603],[-80.302685,40.805426],[-80.30233,40.805241],[-80.301928,40.805016],[-80.301632,40.804841],[-80.301238,40.804594],[-80.30071,40.804228],[-80.300326,40.80394],[-80.299913,40.803599],[-80.299338,40.80312],[-80.298746,40.802632],[-80.29777,40.80183],[-80.296893,40.801107],[-80.29663,40.8009],[-80.29642,40.800742],[-80.296161,40.800555],[-80.295943,40.800411],[-80.295635,40.80021],[-80.295281,40.799997],[-80.294817,40.799735],[-80.294482,40.799564],[-80.294112,40.799382],[-80.293728,40.799207],[-80.293277,40.799016],[-80.292787,40.798827],[-80.292371,40.798687],[-80.291883,40.798533],[-80.29148,40.798421],[-80.29103,40.798303],[-80.290657,40.79822],[-80.290279,40.798139],[-80.289713,40.798029],[-80.288978,40.797895],[-80.287489,40.797617],[-80.286972,40.797518],[-80.286489,40.797406],[-80.286145,40.797311],[-80.285848,40.797213],[-80.285528,40.797101],[-80.284917,40.796866],[-80.283048,40.796128],[-80.280955,40.795317],[-80.279648,40.794829],[-80.277211,40.793874],[-80.275052,40.79303],[-80.27448,40.792805],[-80.272627,40.79208],[-80.271563,40.791664],[-80.271106,40.791493],[-80.270666,40.791341],[-80.270159,40.791174],[-80.269658,40.79102],[-80.269078,40.790857],[-80.268491,40.790707],[-80.267163,40.790406],[-80.265847,40.790105],[-80.264499,40.789799],[-80.263031,40.789468],[-80.261263,40.789065],[-80.259294,40.788623],[-80.257231,40.788154],[-80.255383,40.787736],[-80.253852,40.787385],[-80.252397,40.787057],[-80.250569,40.786641],[-80.249029,40.786294],[-80.247063,40.785845],[-80.244818,40.785341],[-80.244078,40.785169],[-80.24363,40.785051],[-80.243292,40.784946],[-80.24294,40.784814],[-80.24264,40.784682],[-80.242385,40.784556],[-80.242146,40.784428],[-80.241926,40.784289],[-80.241733,40.784166],[-80.241414,40.783928],[-80.241186,40.783727],[-80.240972,40.783518],[-80.2408,40.783331],[-80.240644,40.783148],[-80.24051,40.782953],[-80.240349,40.78271],[-80.240237,40.782486],[-80.240108,40.782222],[-80.24003,40.782005],[-80.239958,40.781779],[-80.239915,40.781597],[-80.239875,40.781365],[-80.239832,40.781085],[-80.239687,40.779785],[-80.239574,40.778719],[-80.239419,40.777334],[-80.239342,40.77662],[-80.239282,40.776109],[-80.239231,40.775662],[-80.239175,40.775254],[-80.239105,40.774914],[-80.239043,40.774671],[-80.238976,40.774439],[-80.238901,40.774216],[-80.238829,40.774],[-80.238743,40.773809],[-80.238633,40.773558],[-80.238542,40.773375],[-80.238429,40.77317],[-80.238324,40.772983],[-80.238134,40.772692],[-80.237927,40.772396],[-80.23785,40.772288],[-80.237493,40.771813],[-80.236696,40.77076],[-80.236095,40.769964],[-80.235838,40.769617],[-80.23546,40.769119],[-80.234963,40.768457],[-80.233978,40.767149],[-80.233461,40.766462],[-80.233099,40.765981],[-80.232519,40.765205],[-80.231833,40.764301],[-80.231235,40.763508],[-80.230905,40.763065],[-80.230441,40.762462],[-80.229935,40.761786],[-80.229206,40.760817],[-80.22833,40.759653],[-80.227729,40.75886],[-80.227489,40.758574],[-80.227319,40.758393],[-80.227086,40.758165],[-80.226877,40.75799],[-80.226682,40.757833],[-80.226453,40.757665],[-80.226222,40.757509],[-80.225981,40.757359],[-80.225592,40.757147],[-80.225313,40.757011],[-80.225018,40.756887],[-80.224664,40.756751],[-80.224184,40.756599],[-80.2238,40.756497],[-80.22324,40.756357],[-80.221083,40.755816],[-80.218969,40.755286],[-80.218385,40.755136],[-80.217921,40.755004],[-80.217567,40.754896],[-80.217205,40.754782],[-80.216797,40.754644],[-80.216344,40.754484],[-80.215922,40.754321],[-80.215504,40.754161],[-80.215005,40.753947],[-80.214386,40.753665],[-80.213938,40.753443],[-80.21349,40.75321],[-80.213095,40.752996],[-80.212736,40.752791],[-80.212382,40.752588],[-80.211422,40.752031],[-80.210537,40.751511],[-80.209512,40.750914],[-80.208139,40.750113],[-80.2036,40.747459],[-80.203394,40.747335],[-80.200358,40.745557],[-80.199316,40.744945],[-80.198384,40.7444],[-80.196573,40.743346],[-80.19465,40.742241],[-80.193388,40.741597],[-80.19253,40.7412],[-80.191603,40.740829],[-80.190693,40.740504],[-80.189766,40.740218],[-80.18896,40.740004],[-80.188187,40.739821],[-80.185329,40.739204],[-80.182316,40.73854],[-80.178239,40.737643],[-80.176875,40.737305],[-80.175984,40.737058],[-80.175415,40.736887],[-80.174718,40.736668],[-80.173672,40.736298],[-80.172948,40.736025],[-80.172181,40.735725],[-80.170944,40.735184],[-80.170206,40.73484],[-80.168815,40.734124],[-80.168043,40.733721],[-80.165206,40.731906],[-80.164249,40.731159],[-80.16327,40.730346],[-80.162541,40.729689],[-80.161862,40.729058],[-80.161288,40.728524],[-80.160901,40.728162],[-80.16079,40.728054],[-80.160489,40.727757],[-80.159571,40.726931],[-80.159159,40.726586],[-80.158902,40.726371],[-80.158558,40.726118],[-80.158206,40.725864],[-80.157897,40.725669],[-80.15764,40.725513],[-80.157348,40.725344],[-80.157022,40.725168],[-80.156713,40.724999],[-80.156301,40.724804],[-80.155683,40.724524],[-80.155022,40.724257],[-80.154095,40.72388],[-80.151658,40.722878],[-80.150195,40.722288],[-80.147534,40.721189],[-80.146624,40.720818],[-80.146015,40.720571],[-80.138787,40.71763],[-80.13809,40.717329],[-80.137655,40.71713],[-80.137076,40.716845],[-80.136539,40.716573],[-80.135947,40.716238],[-80.135306,40.715845],[-80.134742,40.715474],[-80.133878,40.714846],[-80.133131,40.714267],[-80.132774,40.71397],[-80.129252,40.711177],[-80.128422,40.71053],[-80.127398,40.709726],[-80.126565,40.70903],[-80.125904,40.708457],[-80.125244,40.707846],[-80.124806,40.707426],[-80.123896,40.706512],[-80.123063,40.705588],[-80.121973,40.704312],[-80.121012,40.703011],[-80.119699,40.701163],[-80.118557,40.699536],[-80.117939,40.698677],[-80.117766,40.698418],[-80.117698,40.698321],[-80.11654,40.696693],[-80.116017,40.69597],[-80.115596,40.695372],[-80.114343,40.693641],[-80.11321,40.692033],[-80.11182,40.69007],[-80.111718,40.689927],[-80.110833,40.688688],[-80.110197,40.687783],[-80.108891,40.685986],[-80.107897,40.684581],[-80.106747,40.682948],[-80.106181,40.682132],[-80.105937,40.681793],[-80.105618,40.681324],[-80.105291,40.680814],[-80.104867,40.680126],[-80.104624,40.67971],[-80.104417,40.679343],[-80.104188,40.67891],[-80.104048,40.678644],[-80.103855,40.678279],[-80.1033,40.677217],[-80.10257,40.675818],[-80.102344,40.675399],[-80.101708,40.674195],[-80.099501,40.669919],[-80.097714,40.666533],[-80.097655,40.666423],[-80.096786,40.664776],[-80.09647,40.664296],[-80.096143,40.663865],[-80.095617,40.663364],[-80.095075,40.662945],[-80.094607,40.662655],[-80.094301,40.662482],[-80.094009,40.662336],[-80.091422,40.661155],[-80.087386,40.659312],[-80.084742,40.658106],[-80.083095,40.657363],[-80.082663,40.657186],[-80.082204,40.657015],[-80.081646,40.656824],[-80.08108,40.656643],[-80.080442,40.656472],[-80.079868,40.656333],[-80.079214,40.656191],[-80.078677,40.656097],[-80.078092,40.656006],[-80.077867,40.655975],[-80.077312,40.65591],[-80.076682,40.655831],[-80.076277,40.655762],[-80.075885,40.655688],[-80.075298,40.655568],[-80.074533,40.655422],[-80.074272,40.655365],[-80.073597,40.655247],[-80.072433,40.655108],[-80.071744,40.655027],[-80.071089,40.65496],[-80.069458,40.654846],[-80.06864,40.654712],[-80.067418,40.654476],[-80.062667,40.653063],[-80.062103,40.652904],[-80.061666,40.652786],[-80.061346,40.652711],[-80.060946,40.652631],[-80.060538,40.652572],[-80.060168,40.65253],[-80.059873,40.652503],[-80.059511,40.652487],[-80.058944,40.652473],[-80.05476,40.652436],[-80.05416,40.65243],[-80.049473,40.652395],[-80.046483,40.652379],[-80.045981,40.652367],[-80.045581,40.652344],[-80.045187,40.652312],[-80.04476,40.652261],[-80.044193,40.652179],[-80.043684,40.65209],[-80.043198,40.651984],[-80.042672,40.651845],[-80.042336,40.651754],[-80.041837,40.651593],[-80.04141,40.651432],[-80.041018,40.651279],[-80.040573,40.651076],[-80.040143,40.650872],[-80.039819,40.650695],[-80.03955,40.650546],[-80.039365,40.650438],[-80.039061,40.650246],[-80.038662,40.649978],[-80.038316,40.649713],[-80.037945,40.649418],[-80.033283,40.645457],[-80.032765,40.64502],[-80.032314,40.644647],[-80.032041,40.644429],[-80.031794,40.64426],[-80.031579,40.644117],[-80.031327,40.643965],[-80.031034,40.643808],[-80.030747,40.643673],[-80.03043,40.643529],[-80.030111,40.643411],[-80.029781,40.643299],[-80.029502,40.643213],[-80.029252,40.643148],[-80.028952,40.643077],[-80.028683,40.643026],[-80.028337,40.642975],[-80.028087,40.642944],[-80.027746,40.642922],[-80.027379,40.642906],[-80.026952,40.642906],[-80.026579,40.64292],[-80.026219,40.642948],[-80.025822,40.642999],[-80.025344,40.643085],[-80.024727,40.643219],[-80.021147,40.644036],[-80.020639,40.644142],[-80.020293,40.644193],[-80.019934,40.644236],[-80.01966,40.64426],[-80.019327,40.644278],[-80.018857,40.644276],[-80.0185,40.644262],[-80.018232,40.644244],[-80.017915,40.644209],[-80.017574,40.64416],[-80.017228,40.644093],[-80.016785,40.643981],[-80.016407,40.643869],[-80.016101,40.643765],[-80.015814,40.643649],[-80.015553,40.643543],[-80.015202,40.64337],[-80.01477,40.643138],[-80.010618,40.640916],[-80.010331,40.640773],[-80.010022,40.640627],[-80.009705,40.640494],[-80.009413,40.64038],[-80.009125,40.640285],[-80.00886,40.640207],[-80.00857,40.640132],[-80.008269,40.640065],[-80.008012,40.640014],[-80.007698,40.639965],[-80.007349,40.639924],[-80.006997,40.639896],[-80.006672,40.639881],[-80.006256,40.639883],[-80.005883,40.639894],[-80.00543,40.639926],[-80.000422,40.640317],[-79.999847,40.640354],[-79.999541,40.640364],[-79.999171,40.64037],[-79.998776,40.640364],[-79.998392,40.640336],[-79.998041,40.640289],[-79.997695,40.64023],[-79.997327,40.640158],[-79.997144,40.640116],[-79.996905,40.640055],[-79.996607,40.639953],[-79.996191,40.639784],[-79.995781,40.639613],[-79.99551,40.639484],[-79.995263,40.639356],[-79.994952,40.639169],[-79.994688,40.638998],[-79.994455,40.638822],[-79.994197,40.638621],[-79.992101,40.636723],[-79.990024,40.634829],[-79.988043,40.633004],[-79.98763,40.632606],[-79.987021,40.631957],[-79.986521,40.631401],[-79.985985,40.630749],[-79.985611,40.630254],[-79.985257,40.629769],[-79.98489,40.629205],[-79.984554,40.628677],[-79.984323,40.62826],[-79.983918,40.627543],[-79.983676,40.62704],[-79.983411,40.626451],[-79.98315,40.625801],[-79.982804,40.624754],[-79.982571,40.623957],[-79.981688,40.619897],[-79.981572,40.619427],[-79.981451,40.619013],[-79.981312,40.618685],[-79.98118,40.618396],[-79.980992,40.618078],[-79.980789,40.617787],[-79.980595,40.61754],[-79.980372,40.617286],[-79.980123,40.617035],[-79.979865,40.616803],[-79.979514,40.616528],[-79.979141,40.616279],[-79.978743,40.616047],[-79.978268,40.615813],[-79.977834,40.615627],[-79.977428,40.615474],[-79.976897,40.615297],[-79.974127,40.614385],[-79.972761,40.613934],[-79.970879,40.613319],[-79.970463,40.613191],[-79.970139,40.613093],[-79.969779,40.613001],[-79.969409,40.612932],[-79.968926,40.612865],[-79.968453,40.612826],[-79.967978,40.612803],[-79.967479,40.612803],[-79.967171,40.612812],[-79.966704,40.612854],[-79.966129,40.61293],[-79.964806,40.613151],[-79.963549,40.613369],[-79.962028,40.613617],[-79.961137,40.613762],[-79.960537,40.613849],[-79.959861,40.613929],[-79.959512,40.613943],[-79.959131,40.613947],[-79.958841,40.613941],[-79.95852,40.613921],[-79.9582,40.61389],[-79.957895,40.613849],[-79.957589,40.613803],[-79.957205,40.613715],[-79.956881,40.613629],[-79.95639,40.613479],[-79.956084,40.613363],[-79.955867,40.613273],[-79.955663,40.613182],[-79.955473,40.61309],[-79.954939,40.612809],[-79.952891,40.611676],[-79.952075,40.611228],[-79.951197,40.61075],[-79.950752,40.610514],[-79.950419,40.610353],[-79.950073,40.610182],[-79.949695,40.610007],[-79.949169,40.609783],[-79.948673,40.609575],[-79.948029,40.609331],[-79.947537,40.609135],[-79.947011,40.608935],[-79.945718,40.608447],[-79.945343,40.608304],[-79.944725,40.608075],[-79.944178,40.607873],[-79.943465,40.607604],[-79.942677,40.607298],[-79.942124,40.607086],[-79.94164,40.606873],[-79.941359,40.606735],[-79.941013,40.60655],[-79.940761,40.606409],[-79.940568,40.606295],[-79.94034,40.606152],[-79.939803,40.605798],[-79.939358,40.605509],[-79.938612,40.605024],[-79.93788,40.60455],[-79.937039,40.603979],[-79.935354,40.602883],[-79.933289,40.601535],[-79.931766,40.600529],[-79.930713,40.599862],[-79.930421,40.599699],[-79.930198,40.599583],[-79.929949,40.599475],[-79.929654,40.599361],[-79.929401,40.599271],[-79.929114,40.599188],[-79.928819,40.599114],[-79.928567,40.599059],[-79.928275,40.599015],[-79.927983,40.59898],[-79.927741,40.59896],[-79.927449,40.598945],[-79.927076,40.598935],[-79.926443,40.598941],[-79.925284,40.598962],[-79.924641,40.598966],[-79.924276,40.59896],[-79.923889,40.598934],[-79.923568,40.598907],[-79.923313,40.598883],[-79.923042,40.598846],[-79.92265,40.598787],[-79.922259,40.598716],[-79.921996,40.598659],[-79.921722,40.598593],[-79.921532,40.598542],[-79.921371,40.598502],[-79.92117,40.598443],[-79.920979,40.598386],[-79.920781,40.598323],[-79.920588,40.598261],[-79.920319,40.598164],[-79.920099,40.598078],[-79.919888,40.597997],[-79.919743,40.59794],[-79.919448,40.597797],[-79.919185,40.597671],[-79.917224,40.596701],[-79.916833,40.596506],[-79.916591,40.596392],[-79.916395,40.596302],[-79.916092,40.59617],[-79.915845,40.596064],[-79.915545,40.59594],[-79.915271,40.595826],[-79.914987,40.595712],[-79.914668,40.595591],[-79.914335,40.595479],[-79.914005,40.595365],[-79.913638,40.595245],[-79.913212,40.595115],[-79.912922,40.595031],[-79.912536,40.594925],[-79.912128,40.59482],[-79.911637,40.594703],[-79.911337,40.594638],[-79.911042,40.594575],[-79.910736,40.594516],[-79.910387,40.594455],[-79.910012,40.594392],[-79.909609,40.594331],[-79.909237,40.594278],[-79.908893,40.594235],[-79.908577,40.594198],[-79.908258,40.59417],[-79.907764,40.594127],[-79.90737,40.594099],[-79.906951,40.594078],[-79.906554,40.594062],[-79.906157,40.594056],[-79.905693,40.594054],[-79.905224,40.59406],[-79.904787,40.59407],[-79.904317,40.594088],[-79.903888,40.594115],[-79.903,40.594174],[-79.899996,40.594376],[-79.899358,40.594416],[-79.898687,40.594457],[-79.898312,40.594477],[-79.897979,40.59449],[-79.897665,40.594494],[-79.897378,40.59449],[-79.897159,40.594483],[-79.896955,40.594473],[-79.896697,40.594453],[-79.89644,40.594424],[-79.896236,40.5944],[-79.895876,40.594351],[-79.895603,40.594304],[-79.895332,40.594255],[-79.895123,40.594213],[-79.894903,40.59416],[-79.894691,40.594101],[-79.894441,40.594029],[-79.894254,40.593976],[-79.894047,40.593905],[-79.893776,40.593815],[-79.893575,40.59374],[-79.893361,40.593657],[-79.8932,40.593587],[-79.893001,40.593498],[-79.892795,40.593398],[-79.892591,40.59329],[-79.892357,40.593172],[-79.892095,40.593017],[-79.891783,40.592822],[-79.891518,40.592636],[-79.891314,40.59249],[-79.891118,40.592343],[-79.890641,40.59196],[-79.89037,40.591734],[-79.890115,40.591524],[-79.889828,40.59129],[-79.889453,40.590978],[-79.889152,40.590736],[-79.888975,40.590591],[-79.888777,40.59043],[-79.888586,40.590278],[-79.888377,40.590127],[-79.88816,40.589982],[-79.887975,40.589866],[-79.887819,40.589783],[-79.887457,40.589587],[-79.887149,40.589447],[-79.886942,40.589361],[-79.886693,40.589267],[-79.886419,40.589172],[-79.886108,40.589072],[-79.885333,40.588846],[-79.883369,40.588292],[-79.879893,40.587308],[-79.879569,40.58722],[-79.879174,40.587104],[-79.878885,40.587012],[-79.878614,40.586925],[-79.878351,40.586833],[-79.878067,40.586729],[-79.877753,40.586611],[-79.877474,40.586495],[-79.877149,40.586353],[-79.876854,40.58622],[-79.876581,40.586086],[-79.876385,40.585986],[-79.876098,40.585833],[-79.875848,40.585688],[-79.875594,40.585536],[-79.875371,40.585401],[-79.875065,40.585202],[-79.874794,40.585014],[-79.874577,40.584857],[-79.874365,40.584696],[-79.874129,40.584507],[-79.873885,40.584303],[-79.873662,40.584114],[-79.873456,40.583931],[-79.873231,40.583706],[-79.872203,40.582653],[-79.87198,40.582424],[-79.871752,40.582187],[-79.871479,40.58191],[-79.871219,40.581645],[-79.870964,40.581379],[-79.870489,40.580894],[-79.869939,40.580325],[-79.869676,40.580046],[-79.869092,40.579451],[-79.868426,40.578771],[-79.867563,40.577885],[-79.867227,40.577539],[-79.866954,40.577257],[-79.8666,40.576899],[-79.866273,40.576559],[-79.865779,40.576051],[-79.865288,40.575546],[-79.865033,40.575283],[-79.8648,40.575043],[-79.86458,40.574815],[-79.864398,40.574631],[-79.864143,40.574387],[-79.864025,40.574281],[-79.863864,40.57414],[-79.86366,40.573969],[-79.863403,40.57377],[-79.863129,40.573576],[-79.86289,40.573413],[-79.862555,40.573203],[-79.862177,40.572989],[-79.859953,40.571795],[-79.859554,40.571579],[-79.859175,40.57138],[-79.858918,40.571241],[-79.858706,40.571119],[-79.858626,40.57107],[-79.858491,40.570995],[-79.85825,40.570848],[-79.857942,40.57063],[-79.857628,40.570398],[-79.857354,40.570182],[-79.857148,40.57],[-79.856987,40.569856],[-79.856788,40.569662],[-79.856622,40.569493],[-79.856437,40.569283],[-79.856281,40.569104],[-79.856131,40.568925],[-79.855976,40.568717],[-79.855879,40.568578],[-79.855731,40.568358],[-79.855587,40.568138],[-79.855286,40.56768],[-79.855053,40.567329],[-79.85486,40.567042],[-79.854744,40.566855],[-79.854605,40.566655],[-79.854444,40.566414],[-79.854275,40.566154],[-79.854146,40.565972],[-79.853999,40.565764],[-79.853883,40.565612],[-79.853744,40.565422],[-79.853604,40.565243],[-79.853422,40.565025],[-79.853258,40.564833],[-79.853068,40.564621],[-79.851899,40.563315],[-79.851705,40.563085],[-79.851553,40.562893],[-79.851394,40.562688],[-79.851266,40.562504],[-79.851148,40.562325],[-79.851008,40.562115],[-79.850791,40.56175],[-79.850539,40.561298],[-79.850262,40.56077],[-79.850088,40.560434],[-79.849895,40.560069],[-79.849686,40.559649],[-79.849584,40.55946],[-79.849364,40.559059],[-79.848892,40.558154],[-79.84876,40.557905],[-79.84861,40.557646],[-79.848447,40.557398],[-79.848307,40.5572],[-79.848146,40.557006],[-79.848015,40.556852],[-79.847878,40.556711],[-79.84765,40.556495],[-79.847481,40.556342],[-79.847301,40.556197],[-79.847092,40.55604],[-79.846867,40.55589],[-79.846599,40.555714],[-79.846336,40.555566],[-79.846153,40.55547],[-79.845907,40.55535],[-79.845657,40.555242],[-79.845357,40.555121],[-79.845169,40.555054],[-79.844898,40.554969],[-79.84459,40.554879],[-79.844308,40.55481],[-79.844064,40.554755],[-79.843788,40.554706],[-79.843501,40.554665],[-79.843259,40.554636],[-79.843026,40.554616],[-79.842546,40.554579],[-79.840885,40.55449],[-79.839426,40.554406],[-79.839008,40.554376],[-79.838656,40.554347],[-79.838386,40.554321],[-79.838123,40.55429],[-79.837846,40.554253],[-79.837594,40.55421],[-79.837334,40.554162],[-79.837015,40.554094],[-79.836709,40.554023],[-79.836382,40.553937],[-79.836103,40.553856],[-79.835754,40.553742],[-79.835451,40.55364],[-79.835105,40.553511],[-79.834612,40.553322],[-79.833485,40.552888],[-79.831329,40.552056],[-79.830355,40.551684],[-79.829783,40.551461],[-79.828732,40.551053],[-79.82825,40.550862],[-79.827816,40.550689],[-79.827609,40.550601],[-79.827412,40.550513],[-79.827285,40.550451],[-79.827017,40.550316],[-79.826778,40.55018],[-79.826507,40.55001],[-79.826227,40.549814],[-79.825943,40.549593],[-79.82574,40.549416],[-79.825519,40.549202],[-79.825302,40.548963],[-79.82516,40.548794],[-79.825013,40.548598],[-79.824868,40.548389],[-79.824729,40.548156],[-79.8246,40.54792],[-79.824528,40.547771],[-79.824448,40.547583],[-79.824377,40.54738],[-79.824314,40.547169],[-79.824248,40.546878],[-79.824221,40.54673],[-79.824188,40.546532],[-79.82411,40.545859],[-79.823971,40.544646],[-79.823898,40.54408],[-79.823817,40.543538],[-79.823771,40.543248],[-79.82372,40.542928],[-79.823481,40.541566],[-79.823328,40.54078],[-79.823022,40.539286],[-79.822038,40.534412],[-79.821849,40.533434],[-79.821766,40.53302],[-79.821703,40.532677],[-79.821673,40.532365],[-79.821648,40.532026],[-79.821648,40.531656],[-79.821659,40.53103],[-79.821665,40.529788],[-79.821657,40.529513],[-79.821648,40.529366],[-79.821623,40.52914],[-79.82159,40.528926],[-79.821562,40.528772],[-79.821502,40.52854],[-79.821429,40.528294],[-79.821343,40.528058],[-79.821209,40.5277],[-79.820552,40.525926],[-79.820222,40.525057],[-79.820117,40.524828],[-79.819981,40.524589],[-79.819868,40.524419],[-79.819696,40.524181],[-79.81954,40.524004],[-79.819392,40.523836],[-79.819266,40.523699],[-79.81914,40.523588],[-79.818999,40.523464],[-79.81888,40.52337],[-79.818749,40.523275],[-79.81864,40.523199],[-79.818517,40.523118],[-79.818385,40.523034],[-79.818222,40.522939],[-79.818067,40.522854],[-79.817853,40.522749],[-79.817694,40.522674],[-79.817514,40.5226],[-79.817356,40.522542],[-79.817084,40.522462],[-79.81644,40.522272],[-79.815235,40.521932],[-79.812791,40.521222],[-79.812496,40.521143],[-79.812239,40.521079],[-79.811865,40.520992],[-79.811622,40.520943],[-79.811398,40.520907],[-79.811093,40.520868],[-79.810867,40.520843],[-79.8105,40.520823],[-79.810081,40.520802],[-79.809855,40.520795],[-79.80686,40.5207],[-79.806435,40.520676],[-79.806194,40.520655],[-79.806011,40.520635],[-79.805828,40.520612],[-79.805626,40.52058],[-79.80539,40.520534],[-79.805174,40.520484],[-79.804998,40.520437],[-79.804757,40.520361],[-79.80449,40.520263],[-79.804257,40.520169],[-79.804055,40.520074],[-79.803847,40.519965],[-79.803686,40.519873],[-79.803536,40.519779],[-79.803379,40.519673],[-79.803213,40.519553],[-79.803084,40.519455],[-79.802996,40.519384],[-79.802886,40.519288],[-79.802743,40.519159],[-79.802573,40.518981],[-79.802453,40.518847],[-79.802282,40.518644],[-79.802083,40.518401],[-79.801563,40.517759],[-79.801444,40.51762],[-79.801329,40.517481],[-79.801175,40.517312],[-79.801073,40.517204],[-79.800913,40.517047],[-79.800789,40.516936],[-79.800646,40.516817],[-79.800494,40.516694],[-79.800352,40.516583],[-79.800229,40.516496],[-79.800087,40.516397],[-79.799919,40.516288],[-79.799778,40.516201],[-79.799616,40.516103],[-79.799439,40.516007],[-79.799245,40.515903],[-79.798954,40.515755],[-79.797262,40.514909],[-79.793218,40.512874],[-79.792658,40.512586],[-79.792559,40.512533],[-79.792137,40.512287],[-79.791567,40.511889],[-79.791374,40.511729],[-79.790999,40.51138],[-79.790798,40.511165],[-79.790531,40.510833],[-79.790262,40.510419],[-79.790166,40.510241],[-79.789974,40.509825],[-79.789905,40.509635],[-79.78977,40.509181],[-79.789711,40.50888],[-79.789668,40.508626],[-79.789645,40.508275],[-79.78949,40.505444],[-79.789453,40.505177],[-79.789348,40.50469],[-79.78927,40.504433],[-79.789123,40.504054],[-79.788947,40.50368],[-79.788772,40.503363],[-79.788579,40.50305],[-79.788352,40.502732],[-79.788041,40.50235],[-79.787881,40.502166],[-79.787715,40.501984],[-79.787366,40.501602],[-79.787001,40.501195],[-79.786737,40.500901],[-79.786416,40.50054],[-79.786112,40.500197],[-79.785934,40.499993],[-79.785794,40.499823],[-79.785683,40.499681],[-79.785564,40.499514],[-79.785436,40.49933],[-79.785312,40.499129],[-79.78519,40.498912],[-79.785041,40.498617],[-79.784946,40.498405],[-79.784262,40.496873],[-79.78393,40.496175],[-79.783581,40.495462],[-79.783337,40.494919],[-79.783064,40.494273],[-79.782757,40.493514],[-79.782458,40.492808],[-79.782197,40.492206],[-79.781033,40.489619],[-79.780881,40.4893],[-79.780728,40.489012],[-79.780604,40.488805],[-79.780503,40.488643],[-79.780365,40.488455],[-79.78023,40.488274],[-79.780077,40.488084],[-79.779885,40.487867],[-79.779686,40.487677],[-79.779473,40.487466],[-79.779263,40.487284],[-79.779024,40.487094],[-79.778762,40.486904],[-79.778537,40.486756],[-79.778295,40.486599],[-79.777981,40.486422],[-79.777398,40.486116],[-79.777314,40.486074],[-79.776803,40.485803],[-79.77543,40.485089],[-79.774123,40.484408],[-79.773381,40.484011],[-79.773095,40.483851],[-79.772916,40.483742],[-79.772699,40.483599],[-79.772428,40.483411],[-79.772115,40.483173],[-79.771884,40.482982],[-79.771684,40.482795],[-79.771433,40.482548],[-79.771297,40.482397],[-79.771167,40.482245],[-79.771013,40.482047],[-79.770918,40.481917],[-79.770769,40.481696],[-79.770599,40.481432],[-79.770417,40.481135],[-79.770176,40.480731],[-79.76868,40.478167],[-79.768268,40.477464],[-79.767702,40.476466],[-79.767134,40.475513],[-79.766841,40.474976],[-79.766639,40.474578],[-79.766374,40.474037],[-79.765842,40.472937],[-79.765454,40.472126],[-79.764962,40.471077],[-79.764585,40.470306],[-79.763904,40.468886],[-79.763677,40.468414],[-79.763339,40.467707],[-79.763044,40.467091],[-79.7627,40.46637],[-79.761911,40.464734],[-79.761496,40.463837],[-79.760911,40.46264],[-79.760731,40.46227],[-79.760429,40.461648],[-79.76027,40.461323],[-79.760069,40.460967],[-79.759831,40.460564],[-79.759572,40.460152],[-79.759303,40.45976],[-79.758826,40.459102],[-79.758473,40.458627],[-79.757773,40.457682],[-79.757204,40.456904],[-79.756783,40.456344],[-79.756441,40.455876],[-79.756057,40.455356],[-79.755696,40.454869],[-79.755542,40.454651],[-79.755348,40.454351],[-79.755159,40.45404],[-79.754977,40.453708],[-79.754857,40.453479],[-79.754769,40.453283],[-79.75464,40.452997],[-79.754525,40.452694],[-79.754417,40.452384],[-79.754349,40.452174],[-79.754244,40.451807],[-79.754138,40.451322],[-79.754086,40.451002],[-79.754039,40.450621],[-79.753997,40.450102],[-79.753848,40.447936],[-79.753778,40.446906],[-79.753609,40.444507],[-79.75358,40.444253],[-79.75354,40.443977],[-79.753507,40.443799],[-79.753457,40.443578],[-79.753397,40.443348],[-79.753342,40.44315],[-79.75328,40.442971],[-79.753211,40.442785],[-79.753137,40.4426],[-79.753044,40.44239],[-79.752928,40.442149],[-79.75272,40.441766],[-79.75246,40.441335],[-79.752406,40.441238],[-79.751067,40.439023],[-79.750722,40.438454],[-79.750155,40.437527],[-79.74998,40.437234],[-79.748945,40.435498],[-79.748369,40.434623],[-79.748112,40.434272],[-79.74768,40.433666],[-79.747283,40.433242],[-79.746859,40.432813],[-79.745797,40.431941],[-79.742593,40.429599],[-79.739764,40.427518],[-79.739262,40.427028],[-79.738757,40.42646],[-79.738196,40.425611],[-79.737528,40.424368],[-79.737159,40.423665],[-79.736782,40.423054],[-79.736095,40.422178],[-79.734053,40.420344],[-79.733286,40.419641],[-79.732809,40.419203],[-79.732351,40.418649],[-79.730869,40.416234],[-79.729171,40.413433],[-79.728666,40.412736],[-79.728453,40.412503],[-79.727785,40.411865],[-79.72679,40.411227],[-79.724357,40.409894],[-79.724135,40.409774],[-79.722705,40.408989],[-79.721837,40.408528],[-79.718181,40.406523],[-79.717441,40.406123],[-79.716453,40.405695],[-79.715194,40.405299],[-79.714632,40.405147],[-79.713824,40.405005],[-79.712821,40.404837],[-79.712138,40.404718],[-79.711338,40.404568],[-79.71052,40.404394],[-79.709339,40.404069],[-79.708535,40.403782],[-79.707646,40.403408],[-79.706736,40.402964],[-79.705875,40.402563],[-79.70505,40.402205],[-79.704075,40.401777],[-79.703282,40.401422],[-79.701884,40.400781],[-79.701343,40.400542],[-79.70034,40.400082],[-79.699427,40.399663],[-79.698526,40.399247],[-79.697538,40.398798],[-79.696961,40.398521],[-79.696044,40.398099],[-79.695148,40.397698],[-79.69445,40.397405],[-79.693929,40.397167],[-79.693575,40.39701],[-79.693141,40.396788],[-79.69253,40.396408],[-79.69184,40.395904],[-79.691335,40.395449],[-79.690645,40.39474],[-79.689869,40.393873],[-79.689222,40.393228],[-79.688411,40.392367],[-79.68787,40.391803],[-79.687429,40.391321],[-79.687123,40.391023],[-79.686704,40.390584],[-79.686056,40.38995],[-79.68548,40.389398],[-79.684797,40.388775],[-79.684079,40.388157],[-79.683289,40.387491],[-79.682599,40.386889],[-79.682308,40.386629],[-79.681852,40.386266],[-79.681176,40.385627],[-79.680522,40.38508],[-79.679796,40.384473],[-79.679042,40.383812],[-79.678296,40.383173],[-79.677734,40.382674],[-79.677172,40.38223],[-79.676645,40.381748],[-79.676275,40.38133],[-79.675856,40.380734],[-79.675621,40.380263],[-79.675443,40.379786],[-79.67535,40.379331],[-79.67535,40.37882],[-79.675379,40.378204],[-79.675535,40.377592],[-79.675726,40.377176],[-79.675984,40.37679],[-79.676396,40.376167],[-79.676816,40.375501],[-79.677314,40.374753],[-79.677711,40.374097],[-79.677995,40.373577],[-79.67823,40.373012],[-79.67848,40.372218],[-79.678623,40.37128],[-79.678673,40.3703],[-79.678729,40.369157],[-79.678773,40.365899],[-79.678806,40.365204],[-79.678822,40.36418],[-79.678863,40.363196],[-79.678902,40.362682],[-79.678998,40.362135],[-79.679124,40.36164],[-79.679333,40.361085],[-79.679745,40.360316],[-79.680277,40.35962],[-79.680645,40.35914],[-79.681189,40.358468],[-79.681317,40.358308],[-79.683586,40.355472],[-79.683992,40.354936],[-79.684411,40.354313],[-79.684675,40.353783],[-79.685941,40.350965],[-79.686467,40.349907],[-79.686789,40.349381],[-79.687143,40.348858],[-79.687904,40.347872],[-79.690275,40.344832],[-79.690836,40.344053],[-79.691369,40.343212],[-79.691654,40.342604],[-79.691895,40.341998],[-79.692144,40.341181],[-79.692265,40.340608],[-79.692379,40.339856],[-79.692407,40.33926],[-79.692393,40.338548],[-79.692251,40.337369],[-79.691853,40.335914],[-79.691411,40.334919],[-79.691032,40.334263],[-79.690655,40.333678],[-79.689914,40.332659],[-79.689529,40.332141],[-79.689238,40.331764],[-79.688948,40.331394],[-79.688567,40.330929],[-79.688247,40.330554],[-79.688003,40.330268],[-79.68755,40.329728],[-79.686453,40.328391],[-79.685955,40.327757],[-79.685674,40.327388],[-79.685592,40.327282],[-79.684767,40.326235],[-79.684256,40.325605],[-79.683003,40.324024],[-79.680072,40.320299],[-79.679457,40.319515],[-79.679165,40.319144],[-79.678959,40.318867],[-79.678792,40.318607],[-79.67863,40.318318],[-79.678515,40.318075],[-79.678398,40.317779],[-79.678316,40.317513],[-79.678261,40.317287],[-79.678243,40.31719],[-79.678224,40.317087],[-79.678188,40.316847],[-79.678171,40.316648],[-79.678165,40.316385],[-79.678174,40.316158],[-79.678196,40.315936],[-79.678217,40.315782],[-79.678245,40.315626],[-79.678325,40.315227],[-79.678431,40.314671],[-79.678522,40.314213],[-79.678573,40.313959],[-79.678604,40.313762],[-79.678627,40.313533],[-79.67864,40.313333],[-79.678644,40.313098],[-79.678635,40.312875],[-79.678614,40.31265],[-79.678575,40.312408],[-79.678536,40.312221],[-79.678477,40.311994],[-79.678382,40.311715],[-79.67828,40.31145],[-79.678179,40.311228],[-79.678018,40.310925],[-79.677871,40.310692],[-79.677718,40.310471],[-79.67756,40.310268],[-79.677394,40.31007],[-79.677209,40.309866],[-79.676735,40.309358],[-79.676242,40.308839],[-79.675794,40.308364],[-79.675536,40.30808],[-79.675209,40.307727],[-79.674931,40.307407],[-79.67472,40.307161],[-79.674516,40.306898],[-79.674293,40.306608],[-79.674112,40.306343],[-79.673909,40.306016],[-79.673738,40.305737],[-79.673605,40.305497],[-79.673464,40.305219],[-79.673359,40.304977],[-79.673243,40.30471],[-79.673162,40.304491],[-79.673088,40.304294],[-79.673006,40.304035],[-79.67292,40.303723],[-79.672843,40.303411],[-79.672756,40.303062],[-79.67268,40.302738],[-79.672578,40.302315],[-79.672453,40.301785],[-79.672271,40.301042],[-79.672169,40.300614],[-79.672066,40.300179],[-79.671933,40.299634],[-79.671753,40.298885],[-79.671515,40.297914],[-79.671226,40.296704],[-79.67112,40.296261],[-79.671,40.295763],[-79.670846,40.295118],[-79.670719,40.294579],[-79.670618,40.29415],[-79.670434,40.293399],[-79.670281,40.292753],[-79.670081,40.291904],[-79.669979,40.291343],[-79.66992,40.290922],[-79.669871,40.290484],[-79.669837,40.290035],[-79.669626,40.287416],[-79.669502,40.285889],[-79.669287,40.283232],[-79.668937,40.278918],[-79.668539,40.274017],[-79.668315,40.27129],[-79.668229,40.270227],[-79.668182,40.269858],[-79.668131,40.269563],[-79.668053,40.269272],[-79.667957,40.268991],[-79.66785,40.268731],[-79.667729,40.268483],[-79.667622,40.268293],[-79.667468,40.26805],[-79.667328,40.26785],[-79.667196,40.26768],[-79.667038,40.267492],[-79.666843,40.267285],[-79.666671,40.267113],[-79.666424,40.266892],[-79.666117,40.266644],[-79.665835,40.266445],[-79.665556,40.26627],[-79.665325,40.266135],[-79.665065,40.265998],[-79.664756,40.265851],[-79.664433,40.265714],[-79.664165,40.265609],[-79.663766,40.26548],[-79.663388,40.265377],[-79.662508,40.265148],[-79.661087,40.264795],[-79.657388,40.263893],[-79.656566,40.263681],[-79.655378,40.26339],[-79.653779,40.262996],[-79.651677,40.26247],[-79.650541,40.262191],[-79.649611,40.261957],[-79.647531,40.261439],[-79.647113,40.261329],[-79.646932,40.261277],[-79.64669,40.261199],[-79.646343,40.261077],[-79.646067,40.260964],[-79.645825,40.260854],[-79.645522,40.260699],[-79.645186,40.260509],[-79.644921,40.260338],[-79.644642,40.260142],[-79.644411,40.259957],[-79.644175,40.259748],[-79.643984,40.259564],[-79.64379,40.259354],[-79.643592,40.25911],[-79.643403,40.25885],[-79.643293,40.258681],[-79.643179,40.258486],[-79.643066,40.258263],[-79.642942,40.257974],[-79.642861,40.257735],[-79.642777,40.257437],[-79.642727,40.257202],[-79.642693,40.256968],[-79.642657,40.256619],[-79.642639,40.256203],[-79.642588,40.254807],[-79.642536,40.253492],[-79.642513,40.25294],[-79.642496,40.252643],[-79.642476,40.252481],[-79.642449,40.2523],[-79.642416,40.252105],[-79.642358,40.25187],[-79.642282,40.251604],[-79.642205,40.251396],[-79.642122,40.251193],[-79.641988,40.250915],[-79.641842,40.250659],[-79.641689,40.250416],[-79.641373,40.249941],[-79.640168,40.248148],[-79.639541,40.247242],[-79.638926,40.246366],[-79.638323,40.245478],[-79.637871,40.244823],[-79.637505,40.244326],[-79.637184,40.243929],[-79.636973,40.243685],[-79.63677,40.243478],[-79.636452,40.243176],[-79.636172,40.242929],[-79.635827,40.242642],[-79.635502,40.242402],[-79.635132,40.242144],[-79.634708,40.241887],[-79.634411,40.24172],[-79.634038,40.241531],[-79.633511,40.241296],[-79.632871,40.241044],[-79.632285,40.24085],[-79.631902,40.240741],[-79.631496,40.240643],[-79.631018,40.240541],[-79.630537,40.24046],[-79.629736,40.240347],[-79.628907,40.240243],[-79.628466,40.240169],[-79.628078,40.2401],[-79.627723,40.24002],[-79.627379,40.239931],[-79.626998,40.239812],[-79.626578,40.23966],[-79.626274,40.239533],[-79.625944,40.239382],[-79.625693,40.239259],[-79.625458,40.239132],[-79.625265,40.239022],[-79.624997,40.238851],[-79.62475,40.238683],[-79.624552,40.238538],[-79.624356,40.238385],[-79.62415,40.238214],[-79.623989,40.238064],[-79.623802,40.237884],[-79.623634,40.237709],[-79.623473,40.237529],[-79.623217,40.237216],[-79.622433,40.236227],[-79.621013,40.234429],[-79.620781,40.234134],[-79.620581,40.233884],[-79.620402,40.233664],[-79.620218,40.233448],[-79.620029,40.233231],[-79.619829,40.233026],[-79.619577,40.232784],[-79.61929,40.23253],[-79.618981,40.232279],[-79.618715,40.232081],[-79.61843,40.231881],[-79.618101,40.231664],[-79.61636,40.230529],[-79.612881,40.228297],[-79.610596,40.226818],[-79.609269,40.225973],[-79.608987,40.225817],[-79.608095,40.225236],[-79.607228,40.224679],[-79.60693,40.224471],[-79.606671,40.22426],[-79.606425,40.224057],[-79.606333,40.22398],[-79.606084,40.223767],[-79.605881,40.223578],[-79.605699,40.223396],[-79.605535,40.22322],[-79.605359,40.223015],[-79.605126,40.222742],[-79.604775,40.222309],[-79.604197,40.221543],[-79.603285,40.220321],[-79.602989,40.219934],[-79.602842,40.219747],[-79.602696,40.219568],[-79.602502,40.219344],[-79.6023,40.219135],[-79.602086,40.218937],[-79.601851,40.218749],[-79.601577,40.218552],[-79.601246,40.218336],[-79.600699,40.21803],[-79.59912,40.217388],[-79.597952,40.216929],[-79.597283,40.216661],[-79.596873,40.216452],[-79.596279,40.215979],[-79.595533,40.215113],[-79.594802,40.214262],[-79.594303,40.213804],[-79.593798,40.213475],[-79.592811,40.212997],[-79.591944,40.212695],[-79.590949,40.212505],[-79.589901,40.212413],[-79.588236,40.212433],[-79.584859,40.212501],[-79.583992,40.212488],[-79.583081,40.212384],[-79.582224,40.212166],[-79.581297,40.211858],[-79.577203,40.20984],[-79.573615,40.208076],[-79.57162,40.207125],[-79.568414,40.205979],[-79.565796,40.205002],[-79.564251,40.204268],[-79.563075,40.203638],[-79.559564,40.201767],[-79.556985,40.200378],[-79.554028,40.198748],[-79.550733,40.197054],[-79.547445,40.19528],[-79.545694,40.194388],[-79.544978,40.194127],[-79.541386,40.193051],[-79.538931,40.19231],[-79.537712,40.191825],[-79.536948,40.191451],[-79.53609,40.190907],[-79.535403,40.190382],[-79.534794,40.189792],[-79.533987,40.18892],[-79.533369,40.188094],[-79.531644,40.185156],[-79.530768,40.18416],[-79.529927,40.18353],[-79.529326,40.183189],[-79.522695,40.180387],[-79.522402,40.180264],[-79.520589,40.179497],[-79.516838,40.177904],[-79.515576,40.177458],[-79.513293,40.176776],[-79.509319,40.175576],[-79.508366,40.175241],[-79.507909,40.175056],[-79.507336,40.174756],[-79.504212,40.1729],[-79.501406,40.171201],[-79.497646,40.168952],[-79.495526,40.16783],[-79.494728,40.167456],[-79.49381,40.167161],[-79.491573,40.166621],[-79.491143,40.16653],[-79.490631,40.166421],[-79.489644,40.166191],[-79.488806,40.165961],[-79.488179,40.165699],[-79.487707,40.165397],[-79.487175,40.164977],[-79.48672,40.164544],[-79.485844,40.163396],[-79.484634,40.161894],[-79.484308,40.161566],[-79.483604,40.160996],[-79.482961,40.160543],[-79.48066,40.15927],[-79.478188,40.157945],[-79.476094,40.156817],[-79.473511,40.155472],[-79.472992,40.155236],[-79.472389,40.155043],[-79.47103,40.154554],[-79.47,40.15418],[-79.469219,40.153747],[-79.46849,40.15317],[-79.4677,40.152599],[-79.466996,40.152172],[-79.466335,40.151851],[-79.465451,40.151556],[-79.463932,40.151169],[-79.461314,40.150545],[-79.459786,40.150185],[-79.458791,40.15006],[-79.457383,40.149968],[-79.455452,40.149988],[-79.452843,40.150034],[-79.450946,40.15006],[-79.449615,40.150139],[-79.448869,40.15025],[-79.448242,40.150467],[-79.447452,40.150847],[-79.446611,40.151497],[-79.445993,40.152094],[-79.445341,40.152881],[-79.444705,40.153348],[-79.444294,40.153612],[-79.443641,40.153904],[-79.442337,40.154311],[-79.441092,40.154633],[-79.439865,40.154928],[-79.439256,40.15502],[-79.438432,40.155085],[-79.435814,40.155243],[-79.434904,40.155223],[-79.43432,40.155131],[-79.433685,40.154882],[-79.43289,40.154441],[-79.432472,40.154145],[-79.432081,40.153758],[-79.430226,40.151733],[-79.429806,40.151202],[-79.429007,40.149929],[-79.428638,40.149443],[-79.428106,40.148859],[-79.427832,40.148597],[-79.426101,40.147486],[-79.425308,40.146898],[-79.424613,40.146169],[-79.423918,40.145599],[-79.42336,40.145185],[-79.422579,40.144752],[-79.421025,40.143919],[-79.416656,40.141609],[-79.414562,40.14056],[-79.413163,40.139884],[-79.412022,40.13926],[-79.411215,40.138709],[-79.410648,40.138165],[-79.410099,40.137443],[-79.409695,40.136616],[-79.409498,40.135802],[-79.409147,40.133466],[-79.408992,40.132311],[-79.40876,40.130762],[-79.408623,40.130119],[-79.408443,40.129483],[-79.408125,40.128918],[-79.407782,40.128413],[-79.407275,40.127894],[-79.406704,40.127496],[-79.406219,40.12713],[-79.405701,40.126786],[-79.404522,40.125999],[-79.40228,40.124501],[-79.40095,40.123563],[-79.400297,40.123136],[-79.400074,40.122953],[-79.399499,40.122388],[-79.399079,40.121811],[-79.398873,40.121463],[-79.39867,40.120989],[-79.398544,40.120436],[-79.398403,40.119707],[-79.398302,40.119232],[-79.398146,40.118728],[-79.397985,40.118319],[-79.397642,40.117677],[-79.397409,40.117324],[-79.397185,40.117013],[-79.396946,40.116731],[-79.396681,40.116453],[-79.396304,40.116109],[-79.395919,40.115789],[-79.395598,40.115578],[-79.395179,40.115308],[-79.394798,40.115093],[-79.394459,40.114925],[-79.394067,40.114749],[-79.393471,40.114487],[-79.392331,40.113994],[-79.390796,40.113336],[-79.389719,40.112856],[-79.383041,40.109954],[-79.381542,40.109305],[-79.381243,40.109181],[-79.380216,40.108733],[-79.379377,40.108373],[-79.379038,40.108246],[-79.378635,40.108116],[-79.378177,40.107976],[-79.377572,40.107828],[-79.376532,40.107595],[-79.375252,40.107298],[-79.37387,40.106983],[-79.37284,40.106845],[-79.371948,40.106851],[-79.370935,40.106956],[-79.370197,40.107133],[-79.36933,40.107442],[-79.368643,40.107829],[-79.366575,40.109221],[-79.365665,40.10974],[-79.364403,40.110363],[-79.363141,40.110882],[-79.36109,40.111519],[-79.35903,40.11207],[-79.356112,40.112825],[-79.34504,40.11572],[-79.337409,40.117794],[-79.330208,40.119743],[-79.329135,40.11996],[-79.328157,40.120117],[-79.322197,40.121013],[-79.31768,40.121665],[-79.316639,40.121815],[-79.313882,40.122214],[-79.309355,40.12285],[-79.304476,40.12351],[-79.303532,40.123714],[-79.30215,40.124154],[-79.299884,40.125394],[-79.295927,40.127645],[-79.294502,40.128439],[-79.293661,40.128728],[-79.292752,40.128918],[-79.291516,40.128925],[-79.290709,40.128787],[-79.290082,40.128643],[-79.287619,40.127573],[-79.284495,40.126188],[-79.282555,40.125296],[-79.281559,40.124666],[-79.280941,40.124134],[-79.280358,40.123432],[-79.27986,40.122552],[-79.279225,40.12101],[-79.278933,40.120524],[-79.278504,40.120025],[-79.277903,40.119553],[-79.277414,40.119238],[-79.276186,40.118752],[-79.274753,40.118568],[-79.271431,40.118542],[-79.270444,40.118522],[-79.269423,40.118404],[-79.268238,40.118207],[-79.264994,40.117702],[-79.263397,40.117406],[-79.261767,40.116908],[-79.260393,40.116245],[-79.259423,40.115726],[-79.256952,40.114381],[-79.254935,40.113718],[-79.252746,40.113265],[-79.25078,40.11295],[-79.248926,40.112313],[-79.247536,40.111414],[-79.244832,40.109379],[-79.242566,40.107882],[-79.240455,40.106405],[-79.239039,40.105492],[-79.238661,40.105289],[-79.23793,40.104906],[-79.236987,40.104497],[-79.235989,40.104202],[-79.235131,40.104013],[-79.234026,40.103939],[-79.232835,40.104037],[-79.232019,40.104202],[-79.231043,40.104481],[-79.229349,40.105138],[-79.224494,40.107405],[-79.223332,40.107657],[-79.222349,40.107749],[-79.221593,40.10778],[-79.220727,40.107688],[-79.219362,40.107439],[-79.216332,40.106599],[-79.212972,40.105631],[-79.211896,40.105342],[-79.210332,40.104905],[-79.207758,40.104203],[-79.20623,40.103743],[-79.205346,40.103362],[-79.20417,40.102673],[-79.203397,40.101826],[-79.202659,40.100769],[-79.202436,40.099902],[-79.202367,40.099075],[-79.202565,40.096672],[-79.202934,40.094118],[-79.203037,40.093363],[-79.20302,40.092838],[-79.202994,40.092391],[-79.202874,40.091795],[-79.202738,40.091114],[-79.20224,40.090175],[-79.201468,40.089157],[-79.200292,40.088113],[-79.198035,40.086412],[-79.197254,40.085815],[-79.196627,40.085421],[-79.195631,40.084941],[-79.192868,40.083904],[-79.190009,40.08282],[-79.189005,40.08236],[-79.188216,40.081914],[-79.186731,40.080712],[-79.184285,40.078893],[-79.183134,40.078138],[-79.181933,40.07756],[-79.180577,40.077061],[-79.178912,40.076581],[-79.177401,40.076318],[-79.17601,40.076154],[-79.17438,40.076154],[-79.171839,40.076272],[-79.170346,40.076345],[-79.169135,40.076358],[-79.167642,40.076227],[-79.166191,40.075944],[-79.165402,40.075741],[-79.163943,40.075202],[-79.162801,40.074585],[-79.161471,40.073586],[-79.15881,40.070618],[-79.157668,40.069507],[-79.156664,40.068805],[-79.155282,40.068049],[-79.15378,40.067642],[-79.148038,40.066243],[-79.146897,40.06598],[-79.144862,40.065481],[-79.143566,40.064962],[-79.142863,40.064535],[-79.142356,40.064167],[-79.141592,40.063353],[-79.141137,40.062617],[-79.140262,40.060581],[-79.139893,40.059963],[-79.139292,40.059398],[-79.138339,40.058708],[-79.137361,40.05834],[-79.135696,40.057913],[-79.134915,40.057723],[-79.134237,40.057473],[-79.13367,40.057224],[-79.133035,40.056875],[-79.132288,40.05635],[-79.127859,40.053466],[-79.127018,40.052855],[-79.126563,40.052539],[-79.125911,40.051981],[-79.125405,40.05139],[-79.124684,40.050424],[-79.123482,40.048748],[-79.122169,40.046974],[-79.121542,40.046166],[-79.120658,40.045089],[-79.119723,40.044287],[-79.118779,40.043643],[-79.116839,40.042598],[-79.114599,40.041481],[-79.113963,40.041232],[-79.113242,40.041087],[-79.112281,40.041015],[-79.111234,40.041048],[-79.108865,40.041278],[-79.107758,40.041278],[-79.10629,40.041028],[-79.105149,40.04066],[-79.104282,40.040114],[-79.103398,40.039405],[-79.100668,40.037052],[-79.099604,40.036073],[-79.097802,40.034384],[-79.095647,40.032557],[-79.09472,40.031709],[-79.094197,40.031151],[-79.09351,40.030172],[-79.092404,40.028763],[-79.091748,40.027865],[-79.091372,40.027353],[-79.090997,40.026846],[-79.090034,40.025545],[-79.089176,40.024441],[-79.088638,40.023915],[-79.088376,40.023682],[-79.088052,40.02342],[-79.087719,40.023179],[-79.087431,40.022985],[-79.087118,40.022792],[-79.086892,40.022653],[-79.08644,40.02241],[-79.08583,40.02211],[-79.084538,40.021579],[-79.083616,40.02124],[-79.082904,40.020957],[-79.082198,40.020683],[-79.081204,40.020287],[-79.080434,40.019977],[-79.080055,40.019825],[-79.079756,40.019729],[-79.079427,40.019598],[-79.079156,40.01947],[-79.078836,40.019311],[-79.078606,40.019188],[-79.078442,40.019097],[-79.078182,40.018943],[-79.078,40.018819],[-79.077581,40.018525],[-79.07734,40.018331],[-79.077073,40.018093],[-79.076441,40.017473],[-79.07559,40.016594],[-79.075048,40.015922],[-79.074045,40.015004],[-79.073706,40.01467],[-79.073536,40.014488],[-79.07336,40.014299],[-79.072169,40.013067],[-79.071279,40.012138],[-79.069881,40.010656],[-79.068997,40.009762],[-79.067855,40.008947],[-79.066645,40.008362],[-79.065869,40.008041],[-79.064971,40.007797],[-79.061581,40.007047],[-79.057495,40.006257],[-79.055549,40.00581],[-79.053977,40.005278],[-79.052569,40.00445],[-79.051839,40.003911],[-79.051444,40.00351],[-79.050929,40.00301],[-79.050234,40.002307],[-79.049436,40.001616],[-79.048706,40.00111],[-79.047573,40.00058],[-79.046985,40.000352],[-79.042876,39.999005],[-79.04111,39.998421],[-79.039179,39.997783],[-79.036055,39.996731],[-79.030879,39.995002],[-79.027283,39.993956],[-79.025781,39.993693],[-79.024227,39.993601],[-79.021358,39.993395],[-79.020239,39.993342],[-79.018309,39.993225],[-79.016792,39.993142],[-79.01529,39.993051],[-79.015036,39.993034],[-79.013724,39.992966],[-79.007311,39.99259],[-79.004818,39.992432],[-79.003353,39.992365],[-79.000839,39.992122],[-78.997723,39.991859],[-78.994247,39.991589],[-78.992264,39.991405],[-78.989241,39.99111],[-78.988279,39.991042],[-78.984967,39.990494],[-78.983332,39.990206],[-78.978814,39.989356],[-78.975433,39.988768],[-78.969326,39.987565],[-78.964712,39.986762],[-78.961248,39.986],[-78.959108,39.985552],[-78.956661,39.984685],[-78.953134,39.983566],[-78.949454,39.982267],[-78.949248,39.982196],[-78.947728,39.981644],[-78.945814,39.981],[-78.940483,39.979164],[-78.938591,39.978546],[-78.937406,39.978228],[-78.936484,39.97798],[-78.934138,39.977464],[-78.932294,39.977172],[-78.930416,39.9769],[-78.930227,39.976874],[-78.928803,39.976675],[-78.923248,39.975892],[-78.91769,39.97511],[-78.913294,39.974488],[-78.912972,39.974443],[-78.904075,39.973182],[-78.900233,39.972641],[-78.896726,39.972145],[-78.89338,39.971675],[-78.891341,39.971383],[-78.887855,39.970898],[-78.885935,39.970622],[-78.881088,39.969942],[-78.878756,39.969612],[-78.876845,39.969334],[-78.876603,39.969299],[-78.875801,39.969188],[-78.875464,39.969135],[-78.87515,39.969076],[-78.874769,39.968997],[-78.87439,39.968905],[-78.874032,39.968807],[-78.873733,39.968718],[-78.873481,39.968635],[-78.8731,39.968501],[-78.872784,39.968381],[-78.872477,39.96825],[-78.8722,39.968127],[-78.871938,39.968002],[-78.871585,39.967814],[-78.871138,39.967567],[-78.869887,39.966873],[-78.869599,39.966717],[-78.869391,39.966608],[-78.868849,39.96633],[-78.86833,39.966085],[-78.867877,39.965882],[-78.867271,39.965611],[-78.848775,39.95742],[-78.848581,39.957343],[-78.848419,39.957285],[-78.848255,39.957229],[-78.848124,39.957188],[-78.847952,39.957142],[-78.847809,39.957108],[-78.847659,39.957079],[-78.847482,39.957052],[-78.847334,39.957037],[-78.847124,39.957023],[-78.846938,39.957019],[-78.846746,39.957022],[-78.846562,39.957031],[-78.846384,39.957047],[-78.846189,39.957077],[-78.845991,39.957113],[-78.845811,39.957157],[-78.845521,39.957243],[-78.845279,39.957338],[-78.845034,39.95745],[-78.844821,39.957566],[-78.844628,39.957689],[-78.844406,39.957845],[-78.844131,39.958073],[-78.843419,39.958674],[-78.84304,39.958994],[-78.842599,39.959353],[-78.842172,39.959712],[-78.840991,39.960696],[-78.838464,39.962815],[-78.838243,39.962988],[-78.838077,39.963111],[-78.837918,39.963224],[-78.837705,39.963356],[-78.837472,39.963487],[-78.837218,39.963618],[-78.836935,39.963744],[-78.836628,39.963855],[-78.836387,39.963932],[-78.836022,39.964027],[-78.835767,39.964077],[-78.835449,39.96413],[-78.835108,39.964164],[-78.834775,39.964178],[-78.834481,39.964178],[-78.834171,39.964168],[-78.833907,39.964143],[-78.833643,39.964106],[-78.833284,39.964045],[-78.832983,39.963973],[-78.832681,39.963887],[-78.832307,39.96377],[-78.83184,39.963617],[-78.831413,39.963459],[-78.831031,39.963296],[-78.830793,39.963178],[-78.830522,39.963021],[-78.830185,39.962793],[-78.829911,39.962585],[-78.829484,39.962246],[-78.828064,39.961107],[-78.827167,39.96034],[-78.826537,39.95977],[-78.825686,39.958954],[-78.823622,39.956823],[-78.823303,39.956494],[-78.82311,39.956315],[-78.82288,39.956116],[-78.822638,39.955929],[-78.822321,39.955708],[-78.822119,39.955582],[-78.821849,39.955433],[-78.821548,39.95529],[-78.821314,39.955187],[-78.821065,39.955091],[-78.820825,39.955012],[-78.820565,39.954941],[-78.820277,39.954869],[-78.81983,39.954782],[-78.819625,39.954754],[-78.819376,39.954732],[-78.819058,39.954703],[-78.818517,39.95468],[-78.818067,39.954701],[-78.81719,39.954822],[-78.816772,39.954908],[-78.816453,39.954992],[-78.81605,39.955131],[-78.815664,39.955288],[-78.815315,39.955463],[-78.814976,39.955652],[-78.814631,39.955869],[-78.814053,39.956353],[-78.813838,39.956568],[-78.813528,39.956927],[-78.813296,39.957275],[-78.812983,39.957869],[-78.812638,39.958597],[-78.812387,39.959101],[-78.811785,39.960374],[-78.811245,39.961549],[-78.810491,39.963165],[-78.810369,39.963426],[-78.810201,39.9637],[-78.81005,39.963908],[-78.809859,39.964157],[-78.809686,39.964346],[-78.809443,39.96459],[-78.809105,39.964849],[-78.808611,39.965167],[-78.807847,39.965629],[-78.807627,39.965779],[-78.807453,39.965906],[-78.807229,39.966084],[-78.807051,39.966239],[-78.806865,39.966429],[-78.80658,39.966778],[-78.806324,39.967154],[-78.805743,39.968093],[-78.805304,39.968828],[-78.804379,39.970334],[-78.803563,39.971697],[-78.803218,39.972234],[-78.802903,39.97274],[-78.802471,39.973405],[-78.802187,39.973764],[-78.801944,39.974014],[-78.80177,39.97419],[-78.801353,39.974527],[-78.801005,39.974805],[-78.800257,39.975397],[-78.799391,39.976116],[-78.798822,39.976575],[-78.798302,39.976966],[-78.79777,39.977342],[-78.797415,39.977599],[-78.796842,39.97797],[-78.796077,39.978447],[-78.795331,39.978899],[-78.794527,39.979348],[-78.794121,39.979574],[-78.792989,39.980194],[-78.792455,39.980537],[-78.791994,39.980865],[-78.79137,39.981347],[-78.791038,39.981708],[-78.790446,39.982257],[-78.789922,39.982808],[-78.789653,39.98304],[-78.789435,39.983221],[-78.789151,39.983388],[-78.788796,39.983605],[-78.78849,39.983783],[-78.787632,39.984257],[-78.787269,39.984507],[-78.786934,39.984741],[-78.786519,39.9851],[-78.785953,39.985598],[-78.785561,39.985953],[-78.785241,39.986185],[-78.785014,39.986334],[-78.784683,39.986518],[-78.784343,39.986678],[-78.783868,39.98684],[-78.783527,39.986946],[-78.783135,39.987037],[-78.782746,39.987094],[-78.782374,39.98714],[-78.782143,39.987152],[-78.78164,39.987155],[-78.781265,39.98712],[-78.780852,39.987069],[-78.780537,39.987005],[-78.780125,39.986907],[-78.779858,39.986821],[-78.779682,39.986757],[-78.779427,39.986657],[-78.779295,39.986591],[-78.778939,39.986416],[-78.776248,39.984973],[-78.774695,39.984163],[-78.773431,39.983474],[-78.772479,39.982958],[-78.771102,39.982223],[-78.76885,39.981014],[-78.766712,39.979883],[-78.765013,39.97891],[-78.764292,39.978594],[-78.763597,39.978311],[-78.762859,39.978041],[-78.761863,39.977818],[-78.760781,39.977705],[-78.76022,39.97765],[-78.759718,39.977609],[-78.759375,39.977575],[-78.757979,39.977466],[-78.75758,39.977435],[-78.754654,39.977182],[-78.753796,39.977119],[-78.752816,39.977078],[-78.752163,39.977088],[-78.751598,39.977123],[-78.751089,39.977178],[-78.750665,39.977237],[-78.750215,39.977313],[-78.749765,39.977399],[-78.749715,39.977408],[-78.749088,39.977536],[-78.747516,39.977826],[-78.746021,39.978117],[-78.744879,39.978337],[-78.743728,39.97856],[-78.743055,39.978692],[-78.742156,39.97886],[-78.741234,39.97905],[-78.741078,39.97908],[-78.740911,39.979115],[-78.73756,39.979753],[-78.735415,39.980171],[-78.733967,39.980449],[-78.729858,39.981228],[-78.727856,39.981633],[-78.722853,39.982598],[-78.720764,39.983007],[-78.719202,39.983297],[-78.718419,39.983449],[-78.71726,39.983669],[-78.716383,39.983846],[-78.713633,39.98437],[-78.712636,39.984561],[-78.711164,39.984843],[-78.710615,39.984961],[-78.710161,39.985069],[-78.71001,39.985113],[-78.709884,39.985151],[-78.709682,39.985216],[-78.709459,39.985284],[-78.709194,39.985377],[-78.708928,39.985473],[-78.708506,39.985638],[-78.70809,39.985828],[-78.707738,39.986015],[-78.707504,39.986137],[-78.707168,39.986328],[-78.70692,39.986485],[-78.706626,39.986689],[-78.706336,39.986895],[-78.706109,39.987071],[-78.705837,39.987299],[-78.705644,39.987464],[-78.705283,39.987822],[-78.704791,39.988307],[-78.703781,39.989307],[-78.702769,39.99032],[-78.702123,39.990949],[-78.701449,39.991617],[-78.700845,39.992218],[-78.700196,39.992868],[-78.699671,39.993382],[-78.698551,39.994524],[-78.697688,39.995366],[-78.696996,39.996058],[-78.696223,39.996815],[-78.695359,39.997676],[-78.694589,39.998449],[-78.693538,39.999481],[-78.692187,40.000828],[-78.691875,40.001146],[-78.690957,40.002059],[-78.689781,40.003218],[-78.68913,40.003865],[-78.688704,40.004236],[-78.688457,40.004441],[-78.688247,40.004623],[-78.68786,40.004924],[-78.68744,40.005242],[-78.686906,40.005628],[-78.686683,40.005773],[-78.686492,40.0059],[-78.686322,40.006012],[-78.686088,40.006158],[-78.685832,40.006317],[-78.685079,40.00676],[-78.684722,40.006964],[-78.684339,40.007168],[-78.683816,40.007427],[-78.683305,40.00767],[-78.682433,40.008049],[-78.682087,40.008187],[-78.681729,40.008319],[-78.681318,40.008481],[-78.680723,40.008675],[-78.680592,40.008726],[-78.679827,40.008961],[-78.679326,40.009107],[-78.678695,40.00927],[-78.678151,40.009395],[-78.677724,40.009499],[-78.677418,40.009557],[-78.677132,40.009609],[-78.676727,40.009684],[-78.676356,40.00975],[-78.676008,40.009798],[-78.67559,40.009861],[-78.675268,40.009903],[-78.674878,40.009948],[-78.674562,40.00998],[-78.673953,40.010031],[-78.673591,40.010059],[-78.672978,40.010086],[-78.671955,40.010129],[-78.669993,40.010222],[-78.669399,40.010242],[-78.667544,40.010326],[-78.666383,40.01038],[-78.665045,40.010443],[-78.663024,40.010532],[-78.661416,40.010612],[-78.660654,40.010638],[-78.658386,40.010744],[-78.657065,40.0108],[-78.656299,40.01084],[-78.655143,40.010885],[-78.654533,40.010917],[-78.65423,40.010933],[-78.653753,40.010951],[-78.653086,40.010992],[-78.652432,40.011045],[-78.651829,40.01112],[-78.651473,40.011156],[-78.651008,40.011225],[-78.650612,40.011288],[-78.65021,40.01137],[-78.649698,40.011465],[-78.649009,40.011621],[-78.648618,40.011718],[-78.647738,40.011936],[-78.64639,40.012286],[-78.644608,40.01276],[-78.644296,40.012834],[-78.643447,40.013054],[-78.642853,40.013199],[-78.641452,40.013573],[-78.640671,40.013765],[-78.639017,40.014199],[-78.63798,40.014465],[-78.637373,40.014621],[-78.636606,40.014823],[-78.635486,40.01511],[-78.631151,40.016227],[-78.630768,40.016328],[-78.630346,40.016439],[-78.627971,40.017048],[-78.626959,40.017313],[-78.626297,40.01748],[-78.625645,40.017648],[-78.625381,40.017716],[-78.624848,40.017854],[-78.624739,40.01788],[-78.624355,40.017972],[-78.623812,40.01812],[-78.6236,40.018176],[-78.623229,40.018272],[-78.62262,40.018416],[-78.62224,40.01852],[-78.622081,40.018564],[-78.621652,40.018682],[-78.620639,40.01894],[-78.620348,40.019014],[-78.619881,40.019122],[-78.619684,40.019161],[-78.619283,40.019227],[-78.618915,40.019274],[-78.618517,40.019311],[-78.618071,40.019335],[-78.61783,40.01934],[-78.617397,40.019332],[-78.617146,40.01932],[-78.616713,40.019284],[-78.616379,40.019247],[-78.615866,40.019168],[-78.615685,40.019133],[-78.615276,40.019037],[-78.614903,40.018936],[-78.614307,40.018748],[-78.613704,40.018503],[-78.613402,40.01836],[-78.613176,40.018244],[-78.612879,40.018085],[-78.61282,40.018047],[-78.612763,40.018011],[-78.612593,40.017914],[-78.612386,40.017773],[-78.612042,40.01752],[-78.611754,40.01729],[-78.61162,40.017174],[-78.611487,40.017045],[-78.611309,40.016882],[-78.611199,40.016766],[-78.610861,40.016381],[-78.610757,40.016251],[-78.610498,40.015874],[-78.610371,40.015672],[-78.610256,40.015464],[-78.610054,40.015045],[-78.60996,40.014813],[-78.609889,40.014612],[-78.609786,40.014228],[-78.609747,40.014056],[-78.609704,40.013834],[-78.609659,40.013424],[-78.609603,40.012371],[-78.60957,40.012039],[-78.609509,40.011656],[-78.609466,40.011488],[-78.609318,40.011125],[-78.609199,40.010889],[-78.609048,40.010657],[-78.608825,40.010375],[-78.608716,40.010245],[-78.608586,40.010105],[-78.608423,40.009969],[-78.608305,40.009863],[-78.60815,40.009747],[-78.60789,40.009575],[-78.607703,40.009465],[-78.607521,40.009368],[-78.607334,40.009278],[-78.607153,40.009197],[-78.606815,40.009069],[-78.606628,40.009011],[-78.606422,40.008957],[-78.606242,40.008915],[-78.606034,40.008873],[-78.605855,40.008844],[-78.605514,40.008803],[-78.605135,40.008782],[-78.604932,40.008782],[-78.604641,40.008789],[-78.604368,40.008814],[-78.604175,40.008837],[-78.603929,40.008875],[-78.603674,40.008928],[-78.603505,40.008969],[-78.603327,40.009019],[-78.603115,40.009087],[-78.602805,40.009204],[-78.602635,40.009275],[-78.602263,40.009458],[-78.601789,40.009707],[-78.601464,40.009883],[-78.600568,40.010409],[-78.599686,40.010904],[-78.596937,40.012459],[-78.594564,40.013786],[-78.594169,40.014016],[-78.591405,40.015583],[-78.590853,40.015911],[-78.58972,40.016557],[-78.588998,40.01696],[-78.588783,40.01708],[-78.588604,40.01718],[-78.588364,40.017323],[-78.58814,40.017468],[-78.587837,40.017668],[-78.587581,40.01785],[-78.587231,40.018106],[-78.586949,40.018334],[-78.58652,40.018698],[-78.586263,40.018923],[-78.586007,40.019187],[-78.585477,40.0197],[-78.584975,40.020192],[-78.584092,40.021061],[-78.583348,40.021784],[-78.582773,40.022348],[-78.582145,40.02295],[-78.581052,40.024013],[-78.580213,40.024836],[-78.579266,40.02576],[-78.578146,40.026852],[-78.57696,40.028005],[-78.576085,40.02886],[-78.574919,40.030002],[-78.574322,40.030575],[-78.573793,40.031098],[-78.573384,40.031494],[-78.573028,40.031848],[-78.572158,40.032692],[-78.571725,40.033112],[-78.570626,40.034187],[-78.569388,40.035392],[-78.56816,40.036587],[-78.567617,40.037143],[-78.566691,40.038021],[-78.56547,40.039215],[-78.563907,40.04073],[-78.562549,40.042053],[-78.562254,40.042341],[-78.560589,40.043966],[-78.559419,40.045104],[-78.559129,40.045357],[-78.558835,40.045602],[-78.558521,40.045831],[-78.558103,40.046124],[-78.557788,40.046331],[-78.557427,40.046544],[-78.556984,40.046779],[-78.55638,40.047071],[-78.555876,40.047285],[-78.555337,40.047486],[-78.554899,40.047636],[-78.554141,40.047844],[-78.553628,40.047961],[-78.553239,40.048034],[-78.552897,40.048098],[-78.55094,40.048408],[-78.550574,40.048468],[-78.548704,40.048763],[-78.547729,40.048921],[-78.546752,40.049073],[-78.544815,40.049384],[-78.541568,40.049895],[-78.540307,40.050099],[-78.539638,40.050207],[-78.538929,40.050316],[-78.538677,40.050351],[-78.538316,40.050401],[-78.537762,40.050469],[-78.537341,40.050512],[-78.53627,40.050585],[-78.535668,40.050607],[-78.53526,40.050615],[-78.535161,40.050617],[-78.535051,40.050619],[-78.53448,40.050612],[-78.534077,40.050602],[-78.533438,40.05057],[-78.532585,40.050506],[-78.531856,40.05044],[-78.530499,40.050318],[-78.529804,40.050253],[-78.52864,40.05016],[-78.526918,40.050007],[-78.525402,40.04987],[-78.524846,40.049818],[-78.523424,40.049697],[-78.522547,40.049659],[-78.522213,40.049663],[-78.521858,40.049672],[-78.521561,40.049685],[-78.521179,40.049698],[-78.520904,40.049717],[-78.520204,40.049767],[-78.518502,40.04989],[-78.518237,40.049909],[-78.51794,40.049929],[-78.517786,40.049934],[-78.517618,40.049945],[-78.516974,40.049989],[-78.516421,40.050027],[-78.51593,40.050064],[-78.515367,40.050101],[-78.515217,40.050108],[-78.515076,40.050114],[-78.514689,40.050118],[-78.514488,40.050119],[-78.514079,40.050097],[-78.513872,40.050078],[-78.513684,40.050062],[-78.513568,40.05005],[-78.51341,40.050036],[-78.513051,40.049975],[-78.512509,40.049861],[-78.512247,40.049794],[-78.511975,40.049712],[-78.51171,40.049625],[-78.511458,40.049536],[-78.511222,40.049445],[-78.510959,40.049351],[-78.510594,40.049166],[-78.510299,40.04901],[-78.509872,40.048718],[-78.509577,40.04851],[-78.509258,40.048258],[-78.509053,40.048079],[-78.508787,40.047831],[-78.507818,40.046869],[-78.507658,40.046705],[-78.507427,40.046453],[-78.50718,40.046155],[-78.506961,40.045861],[-78.506765,40.045574],[-78.50664,40.045371],[-78.506484,40.045097],[-78.506383,40.044901],[-78.506275,40.04467],[-78.50614,40.044346],[-78.506064,40.044136],[-78.505757,40.043175],[-78.505573,40.042659],[-78.505429,40.042348],[-78.50526,40.042043],[-78.505132,40.041845],[-78.50477,40.04133],[-78.504458,40.040898],[-78.504107,40.040427],[-78.503865,40.040117],[-78.503694,40.039913],[-78.503497,40.039707],[-78.50326,40.039469],[-78.502848,40.039085],[-78.502453,40.038736],[-78.501828,40.038193],[-78.501394,40.037807],[-78.500334,40.036866],[-78.499869,40.036461],[-78.49949,40.036122],[-78.498714,40.035444],[-78.498386,40.035131],[-78.497862,40.034613],[-78.497708,40.034443],[-78.497483,40.03421],[-78.497094,40.033763],[-78.496668,40.033287],[-78.496104,40.032675],[-78.495838,40.032417],[-78.495392,40.032033],[-78.494571,40.031461],[-78.493814,40.031],[-78.493436,40.030808],[-78.493158,40.030667],[-78.49306,40.030617],[-78.49184,40.030111],[-78.4917,40.030052],[-78.490527,40.02956],[-78.489201,40.029003],[-78.488439,40.028678],[-78.488066,40.028518],[-78.487675,40.028333],[-78.486899,40.027941],[-78.486217,40.027572],[-78.485298,40.027007],[-78.48449,40.02645],[-78.483524,40.025713],[-78.482673,40.025028],[-78.481596,40.024174],[-78.481494,40.02409],[-78.479182,40.022234],[-78.477588,40.020967],[-78.476413,40.02003],[-78.476183,40.019841],[-78.475741,40.01949],[-78.475063,40.018941],[-78.474872,40.018787],[-78.474559,40.018535],[-78.473857,40.017957],[-78.473114,40.017299],[-78.472522,40.016677],[-78.471675,40.015735],[-78.471621,40.015689],[-78.470663,40.014635],[-78.470431,40.014398],[-78.47031,40.014272],[-78.469996,40.014007],[-78.469667,40.013751],[-78.469053,40.013311],[-78.468193,40.012835],[-78.467772,40.012632],[-78.46744,40.012477],[-78.467048,40.012323],[-78.466672,40.012187],[-78.466161,40.012023],[-78.466012,40.011974],[-78.465432,40.011814],[-78.464929,40.01172],[-78.464736,40.011677],[-78.464428,40.011638],[-78.464149,40.011594],[-78.4637,40.011547],[-78.463415,40.011522],[-78.463019,40.011498],[-78.46277,40.011489],[-78.462218,40.011479],[-78.461503,40.011477],[-78.45963,40.011484],[-78.458674,40.011487],[-78.458366,40.011488],[-78.456658,40.011501],[-78.452777,40.011516],[-78.452239,40.011512],[-78.449739,40.011525],[-78.44719,40.011531],[-78.446074,40.011534],[-78.44561,40.011529],[-78.44523,40.011515],[-78.444926,40.011491],[-78.444535,40.011443],[-78.444231,40.0114],[-78.443833,40.011314],[-78.443571,40.011249],[-78.443185,40.011135],[-78.442897,40.011033],[-78.442519,40.010892],[-78.44202,40.010662],[-78.441697,40.010482],[-78.441482,40.010355],[-78.441044,40.010055],[-78.440219,40.009447],[-78.439811,40.009139],[-78.438575,40.008231],[-78.438254,40.00799],[-78.438084,40.007863],[-78.437742,40.007615],[-78.437349,40.007319],[-78.436826,40.006938],[-78.43636,40.006583],[-78.43623,40.006489],[-78.435588,40.00602],[-78.435439,40.005912],[-78.435184,40.005728],[-78.433981,40.004841],[-78.433517,40.0045],[-78.433208,40.004269],[-78.432886,40.004048],[-78.432655,40.003903],[-78.432325,40.003708],[-78.431963,40.00353],[-78.431345,40.003268],[-78.431089,40.003176],[-78.430679,40.003047],[-78.430423,40.002985],[-78.430128,40.002904],[-78.429597,40.002798],[-78.429427,40.002773],[-78.429039,40.002729],[-78.428759,40.002705],[-78.428473,40.002686],[-78.428207,40.002679],[-78.427916,40.002678],[-78.427637,40.002686],[-78.427188,40.00271],[-78.426765,40.002757],[-78.426235,40.002821],[-78.425667,40.002895],[-78.423328,40.003177],[-78.42323,40.003188],[-78.423133,40.0032],[-78.422868,40.003232],[-78.421739,40.003363],[-78.421683,40.003372],[-78.420513,40.003527],[-78.420234,40.003564],[-78.419229,40.003691],[-78.418923,40.003729],[-78.417652,40.003888],[-78.416996,40.003973],[-78.416435,40.004084],[-78.415916,40.004213],[-78.415333,40.004389],[-78.414757,40.004613],[-78.414435,40.004768],[-78.414103,40.004945],[-78.413714,40.005166],[-78.413273,40.005454],[-78.413143,40.005541],[-78.412932,40.005682],[-78.412624,40.005942],[-78.412359,40.006174],[-78.412,40.006537],[-78.411897,40.006633],[-78.411747,40.006822],[-78.411533,40.007108],[-78.411302,40.007447],[-78.410971,40.008063],[-78.410433,40.009117],[-78.410329,40.009302],[-78.410156,40.009613],[-78.409904,40.009996],[-78.409678,40.010277],[-78.409424,40.010561],[-78.409093,40.010876],[-78.408789,40.011121],[-78.408502,40.011331],[-78.408143,40.011561],[-78.407683,40.01181],[-78.407321,40.011971],[-78.406962,40.012123],[-78.406243,40.012343],[-78.405817,40.012448],[-78.405507,40.012511],[-78.40525,40.012551],[-78.404931,40.012587],[-78.404608,40.012614],[-78.404495,40.012619],[-78.404141,40.012634],[-78.403715,40.012632],[-78.403425,40.012616],[-78.403114,40.012586],[-78.402755,40.01254],[-78.40244,40.012493],[-78.402047,40.012409],[-78.401957,40.012386],[-78.401628,40.0123],[-78.400899,40.012071],[-78.399601,40.01164],[-78.398342,40.011227],[-78.397757,40.011053],[-78.397366,40.010951],[-78.397109,40.010896],[-78.396614,40.010806],[-78.396236,40.010749],[-78.395868,40.010706],[-78.395568,40.010684],[-78.395097,40.010658],[-78.394584,40.010636],[-78.393866,40.010598],[-78.3933,40.010555],[-78.392875,40.010514],[-78.392574,40.010468],[-78.392118,40.010382],[-78.391802,40.01031],[-78.391487,40.010233],[-78.390707,40.009972],[-78.390606,40.009938],[-78.39028,40.009801],[-78.389998,40.009672],[-78.389771,40.009561],[-78.389475,40.009406],[-78.388791,40.008977],[-78.388658,40.008894],[-78.386234,40.00734],[-78.3849,40.006475],[-78.383706,40.005701],[-78.38329,40.005438],[-78.383041,40.005278],[-78.382603,40.005003],[-78.382492,40.004934],[-78.382198,40.00474],[-78.381722,40.00446],[-78.381245,40.004213],[-78.380902,40.004053],[-78.380531,40.003892],[-78.380352,40.003821],[-78.380128,40.003732],[-78.379645,40.003557],[-78.379004,40.003365],[-78.378836,40.003319],[-78.378462,40.003217],[-78.378133,40.00314],[-78.377773,40.003067],[-78.377614,40.003035],[-78.377326,40.002987],[-78.37691,40.002926],[-78.37641,40.00287],[-78.376189,40.002845],[-78.37431,40.002679],[-78.373255,40.002584],[-78.373061,40.002568],[-78.372693,40.002537],[-78.371807,40.002455],[-78.371555,40.002433],[-78.37015,40.002309],[-78.369662,40.002263],[-78.369302,40.00223],[-78.367287,40.002052],[-78.366752,40.001993],[-78.366465,40.001954],[-78.36591,40.001865],[-78.365641,40.001815],[-78.365114,40.001704],[-78.364547,40.001566],[-78.364049,40.001434],[-78.362281,40.000965],[-78.361193,40.00068],[-78.360977,40.000629],[-78.360499,40.000524],[-78.360086,40.000448],[-78.359683,40.000387],[-78.35897,40.000311],[-78.358541,40.000287],[-78.358153,40.000275],[-78.357582,40.000278],[-78.357241,40.000292],[-78.356413,40.000362],[-78.353613,40.000658],[-78.353216,40.000695],[-78.352932,40.000726],[-78.351546,40.000874],[-78.351043,40.000927],[-78.350321,40.001001],[-78.350239,40.001006],[-78.349875,40.00103],[-78.34966,40.00104],[-78.349391,40.001043],[-78.348674,40.001026],[-78.348501,40.001006],[-78.348286,40.00099],[-78.348145,40.000975],[-78.347786,40.000926],[-78.347498,40.000879],[-78.347307,40.000842],[-78.345074,40.00035],[-78.340971,39.999419],[-78.340209,39.999249],[-78.339718,39.999129],[-78.339527,39.999076],[-78.339236,39.998986],[-78.338849,39.998845],[-78.338572,39.998732],[-78.338278,39.998598],[-78.338034,39.998476],[-78.337858,39.998378],[-78.337271,39.998012],[-78.337099,39.9979],[-78.336681,39.997624],[-78.336414,39.997458],[-78.336243,39.997352],[-78.335945,39.997185],[-78.335519,39.99698],[-78.335361,39.996908],[-78.335035,39.996782],[-78.334432,39.996586],[-78.334229,39.996538],[-78.334022,39.996479],[-78.333729,39.996419],[-78.330915,39.995921],[-78.330226,39.995789],[-78.329914,39.995712],[-78.329694,39.99566],[-78.329579,39.995625],[-78.329396,39.995569],[-78.329252,39.995517],[-78.329076,39.995458],[-78.328718,39.995321],[-78.328406,39.995187],[-78.328099,39.995041],[-78.327716,39.994845],[-78.327601,39.994783],[-78.326415,39.994134],[-78.32235,39.991957],[-78.321879,39.991698],[-78.321631,39.991571],[-78.321399,39.991441],[-78.321208,39.991342],[-78.321022,39.991239],[-78.320619,39.991032],[-78.320221,39.990841],[-78.319979,39.990741],[-78.319729,39.990647],[-78.31956,39.99059],[-78.319254,39.990504],[-78.318924,39.990427],[-78.31858,39.990359],[-78.318253,39.990311],[-78.318099,39.990292],[-78.317844,39.990268],[-78.317508,39.990254],[-78.317042,39.990246],[-78.315558,39.990236],[-78.314356,39.990233],[-78.314155,39.990232],[-78.312697,39.990218],[-78.311942,39.990168],[-78.311284,39.990071],[-78.310928,39.990005],[-78.310566,39.989914],[-78.309941,39.989718],[-78.309597,39.989587],[-78.308943,39.989288],[-78.308452,39.989067],[-78.307694,39.988718],[-78.307204,39.988484],[-78.304758,39.98739],[-78.303477,39.986793],[-78.302863,39.986558],[-78.30238,39.986399],[-78.301738,39.986224],[-78.300943,39.986094],[-78.300426,39.986037],[-78.299965,39.986002],[-78.298884,39.985919],[-78.297135,39.985822],[-78.295466,39.985722],[-78.294462,39.985639],[-78.293623,39.985501],[-78.29297,39.98536],[-78.292344,39.985188],[-78.291748,39.98498],[-78.291129,39.984731],[-78.290021,39.984284],[-78.288383,39.983595],[-78.287816,39.983404],[-78.287079,39.983177],[-78.286706,39.983089],[-78.286339,39.983005],[-78.285722,39.982893],[-78.285097,39.982816],[-78.28456,39.982771],[-78.283857,39.98274],[-78.28161,39.982724],[-78.279922,39.982703],[-78.278302,39.982684],[-78.277423,39.982703],[-78.276568,39.982756],[-78.275557,39.98288],[-78.274699,39.983034],[-78.273877,39.983218],[-78.269997,39.984329],[-78.26814,39.984856],[-78.264867,39.985789],[-78.264245,39.985967],[-78.263331,39.986182],[-78.263097,39.986237],[-78.261804,39.986508],[-78.26124,39.98652],[-78.260917,39.986548],[-78.260421,39.986562],[-78.259937,39.986521],[-78.259542,39.986429],[-78.259158,39.986281],[-78.258644,39.985994],[-78.258493,39.98591],[-78.258249,39.985755],[-78.258012,39.985636],[-78.257732,39.985591],[-78.25747,39.985618],[-78.257204,39.985698],[-78.256994,39.985824],[-78.256961,39.985862],[-78.256816,39.986117],[-78.256718,39.986461],[-78.256597,39.986906],[-78.256468,39.987416],[-78.256415,39.987712],[-78.256351,39.987935],[-78.256247,39.9881],[-78.256219,39.988135],[-78.256106,39.988233],[-78.256012,39.988315],[-78.255716,39.988445],[-78.255256,39.988608],[-78.254827,39.988731],[-78.25443,39.988846],[-78.254086,39.988945],[-78.253614,39.989085],[-78.252205,39.989537],[-78.251211,39.989775],[-78.250514,39.98994],[-78.249999,39.990038],[-78.249315,39.990177],[-78.248582,39.990293],[-78.247432,39.990414],[-78.24628,39.990461],[-78.241627,39.990613],[-78.240692,39.990678],[-78.23998,39.990788],[-78.239185,39.990987],[-78.238427,39.991259],[-78.237787,39.99156],[-78.237233,39.99189],[-78.236716,39.992264],[-78.236246,39.992686],[-78.235739,39.993214],[-78.235393,39.993584],[-78.234993,39.994007],[-78.234879,39.994125],[-78.234556,39.994512],[-78.234111,39.995022],[-78.233904,39.995311],[-78.233753,39.995554],[-78.233608,39.995859],[-78.233465,39.996208],[-78.233355,39.996637],[-78.233332,39.996756],[-78.233237,39.996934],[-78.233133,39.997432],[-78.233041,39.998018],[-78.232918,39.998806],[-78.232852,39.999222],[-78.232814,39.999317],[-78.232723,39.999399],[-78.232592,39.999446],[-78.232423,39.9995],[-78.232621,39.999487],[-78.233088,39.999456],[-78.233614,39.999422],[-78.23437,39.99938],[-78.234437,39.999376],[-78.234898,39.999369],[-78.23538,39.999365],[-78.236072,39.999369],[-78.236614,39.999388],[-78.237262,39.999412],[-78.23789,39.999433],[-78.238208,39.999441],[-78.238416,39.999447],[-78.238772,39.99946],[-78.238875,39.999464],[-78.238979,39.99894],[-78.239194,39.998375],[-78.239336,39.997976],[-78.239526,39.997583],[-78.239755,39.997144],[-78.240079,39.996562],[-78.240292,39.996167],[-78.240642,39.995577],[-78.241282,39.994444],[-78.241648,39.993808],[-78.241942,39.993267],[-78.241972,39.993224],[-78.242187,39.992758],[-78.24243,39.992151],[-78.24258,39.991593],[-78.242671,39.991222],[-78.242757,39.990835],[-78.242853,39.990412],[-78.243524,39.986344],[-78.243855,39.98452],[-78.244084,39.983205],[-78.244235,39.982449],[-78.244399,39.981535],[-78.244862,39.978912],[-78.244881,39.97882],[-78.244915,39.978634],[-78.24524,39.976848],[-78.245285,39.976599],[-78.245322,39.976444],[-78.24553,39.975201],[-78.24577,39.973825],[-78.245798,39.973736],[-78.246085,39.972118],[-78.246398,39.970359],[-78.246428,39.970218],[-78.246631,39.969006],[-78.246703,39.968617],[-78.246903,39.967537],[-78.24736,39.964967],[-78.247379,39.964887],[-78.247457,39.964299],[-78.247467,39.963662],[-78.247396,39.962897],[-78.247294,39.962149],[-78.247173,39.961257],[-78.247169,39.961174],[-78.247083,39.960643],[-78.2468,39.95889],[-78.246712,39.95857],[-78.24659,39.958237],[-78.246439,39.957887],[-78.246296,39.957615],[-78.246094,39.957313],[-78.245909,39.957061],[-78.245693,39.9568],[-78.245414,39.956512],[-78.245166,39.956286],[-78.244921,39.956083],[-78.244828,39.956016],[-78.244713,39.955933],[-78.244462,39.955769],[-78.243489,39.955191],[-78.239033,39.952583],[-78.236548,39.951137],[-78.236043,39.95084],[-78.235787,39.950698],[-78.235563,39.950576],[-78.235309,39.950456],[-78.23507,39.950347],[-78.234808,39.950247],[-78.234223,39.950031],[-78.232895,39.949556],[-78.232006,39.949231],[-78.231829,39.949163],[-78.231678,39.949098],[-78.231529,39.949026],[-78.231071,39.94878],[-78.230742,39.94859],[-78.230449,39.948389],[-78.23023,39.948225],[-78.230053,39.948079],[-78.229867,39.947913],[-78.229726,39.947778],[-78.22957,39.947615],[-78.22944,39.947471],[-78.229308,39.947302],[-78.229151,39.94709],[-78.229024,39.946903],[-78.22887,39.946633],[-78.2287,39.946277],[-78.228469,39.945737],[-78.227523,39.94352],[-78.227444,39.943309],[-78.227384,39.943103],[-78.227324,39.942879],[-78.227283,39.942666],[-78.22725,39.942453],[-78.227232,39.942226],[-78.227225,39.941996],[-78.227225,39.941908],[-78.227225,39.941832],[-78.22723,39.941687],[-78.227252,39.94148],[-78.227289,39.941255],[-78.22735,39.940953],[-78.227463,39.940605],[-78.227581,39.940309],[-78.227726,39.940004],[-78.228014,39.939392],[-78.228318,39.938769],[-78.228684,39.937997],[-78.229361,39.936593],[-78.229659,39.935976],[-78.230232,39.934781],[-78.230764,39.933674],[-78.231462,39.932235],[-78.231709,39.931708],[-78.231986,39.931135],[-78.232261,39.930565],[-78.232375,39.930315],[-78.232434,39.930185],[-78.232909,39.929041],[-78.2333,39.928004],[-78.233524,39.927329],[-78.233576,39.927169],[-78.233833,39.926282],[-78.233881,39.926116],[-78.234036,39.925484],[-78.234037,39.925349],[-78.234126,39.925074],[-78.234283,39.924413],[-78.234985,39.921265],[-78.235063,39.920848],[-78.235128,39.920628],[-78.235361,39.919593],[-78.23542,39.919403],[-78.235458,39.919176],[-78.235639,39.918375],[-78.236894,39.912819],[-78.237148,39.911669],[-78.23731,39.91072],[-78.237461,39.910254],[-78.23766,39.909384],[-78.237799,39.908945],[-78.237803,39.908729],[-78.238108,39.907388],[-78.238161,39.90709],[-78.23821,39.906947],[-78.238222,39.906893],[-78.238367,39.906251],[-78.238726,39.904843],[-78.239801,39.900633],[-78.240196,39.899573],[-78.240349,39.899194],[-78.240816,39.898036],[-78.240926,39.897724],[-78.243977,39.890381],[-78.244841,39.888292],[-78.244943,39.887796],[-78.24497,39.88722],[-78.244902,39.88677],[-78.244878,39.886615],[-78.244855,39.886534],[-78.244826,39.886436],[-78.244693,39.886103],[-78.244478,39.885567],[-78.244242,39.884975],[-78.244172,39.8848],[-78.244159,39.884749],[-78.244087,39.884468],[-78.244061,39.884274],[-78.24404,39.884122],[-78.243969,39.883765],[-78.244047,39.883371],[-78.244077,39.883217],[-78.244182,39.882854],[-78.244423,39.882254],[-78.244506,39.882099],[-78.244638,39.881912],[-78.244812,39.881718],[-78.24503,39.881515],[-78.245616,39.880891],[-78.248101,39.878214],[-78.249732,39.876241],[-78.250023,39.875934],[-78.251039,39.874652],[-78.252986,39.872305],[-78.253292,39.871971],[-78.253786,39.871487],[-78.254144,39.871177],[-78.254525,39.87088],[-78.258439,39.868645],[-78.258943,39.868337],[-78.259172,39.868162],[-78.2594,39.868047],[-78.259876,39.867687],[-78.260038,39.867591],[-78.263442,39.864235],[-78.264219,39.863341],[-78.2647,39.862741],[-78.2652,39.862062],[-78.265818,39.861133],[-78.271472,39.851949],[-78.272313,39.850515],[-78.272647,39.84989],[-78.27316,39.848841],[-78.27522,39.844208],[-78.275546,39.843359],[-78.275883,39.842271],[-78.276094,39.841381],[-78.276155,39.841053],[-78.276178,39.840931],[-78.276277,39.840253],[-78.276359,39.839344],[-78.276386,39.838658],[-78.276386,39.838203],[-78.27632,39.837055],[-78.276239,39.836362],[-78.276166,39.835897],[-78.276077,39.835431],[-78.275911,39.834731],[-78.275079,39.831733],[-78.274926,39.831163],[-78.273683,39.826669],[-78.273669,39.826621],[-78.273085,39.824504],[-78.272366,39.821893],[-78.271996,39.820549],[-78.271903,39.820114],[-78.27161,39.818308],[-78.271575,39.81761],[-78.271582,39.816969],[-78.271628,39.816235],[-78.27173,39.815433],[-78.271898,39.814586],[-78.272069,39.813935],[-78.272276,39.813288],[-78.272839,39.811789],[-78.272967,39.811354],[-78.273042,39.810911],[-78.273062,39.810479],[-78.27305,39.810085],[-78.273007,39.809751],[-78.272903,39.809306],[-78.272817,39.80903],[-78.272672,39.808682],[-78.272341,39.808073],[-78.272157,39.807814],[-78.271763,39.807349],[-78.271373,39.806972],[-78.270894,39.806595],[-78.270551,39.806363],[-78.270073,39.806085],[-78.269702,39.805916],[-78.268785,39.805563],[-78.266575,39.804777],[-78.262456,39.80331],[-78.261358,39.802908],[-78.260133,39.802489],[-78.258678,39.801973],[-78.258284,39.80182],[-78.254953,39.80064],[-78.254162,39.800359],[-78.252859,39.799923],[-78.252036,39.799689],[-78.25102,39.799467],[-78.249639,39.799166],[-78.249312,39.799109],[-78.248461,39.798992],[-78.24743,39.798887],[-78.24604,39.798744],[-78.245684,39.798708],[-78.243528,39.79849],[-78.243173,39.798454],[-78.242288,39.798331],[-78.242038,39.798286],[-78.241576,39.798205],[-78.24083,39.798051],[-78.234173,39.796629],[-78.233576,39.796521],[-78.232715,39.796312],[-78.230502,39.795837],[-78.228761,39.795464],[-78.226542,39.7951],[-78.223372,39.794737],[-78.216561,39.793978],[-78.21599,39.793829],[-78.215399,39.793636],[-78.215067,39.793507],[-78.214715,39.793348],[-78.213868,39.792861],[-78.213283,39.79241],[-78.213017,39.792165],[-78.212894,39.792032],[-78.212784,39.79189],[-78.212639,39.791742],[-78.212396,39.791419],[-78.212282,39.791248],[-78.212079,39.790881],[-78.211904,39.79049],[-78.211761,39.790077],[-78.21144,39.788893],[-78.211222,39.788089],[-78.210878,39.786804],[-78.210623,39.78583],[-78.210561,39.785622],[-78.210403,39.785211],[-78.210198,39.784809],[-78.210075,39.784614],[-78.209941,39.784424],[-78.209642,39.78406],[-78.209476,39.783888],[-78.209115,39.783564],[-78.20872,39.783267],[-78.20851,39.783131],[-78.207839,39.782764],[-78.205499,39.781638],[-78.205042,39.781406],[-78.204613,39.781147],[-78.204237,39.780848],[-78.203915,39.780514],[-78.203637,39.780159],[-78.201194,39.776775],[-78.201164,39.776701],[-78.201109,39.776634],[-78.200977,39.776474],[-78.20066,39.776006],[-78.200476,39.775655],[-78.200298,39.775284],[-78.200197,39.775018],[-78.200137,39.774813],[-78.200048,39.774394],[-78.20002,39.77418],[-78.199998,39.773754],[-78.200033,39.773274],[-78.200043,39.773125],[-78.200639,39.768544],[-78.200666,39.76809],[-78.200655,39.767635],[-78.200605,39.767183],[-78.200564,39.766958],[-78.200373,39.76629],[-78.200202,39.765855],[-78.199862,39.765228],[-78.19959,39.764827],[-78.199285,39.764445],[-78.198763,39.763911],[-78.198182,39.763424],[-78.197051,39.762606],[-78.191951,39.758924],[-78.190349,39.757757],[-78.190121,39.757592],[-78.188714,39.756555],[-78.186782,39.755168],[-78.18627,39.754787],[-78.185867,39.754464],[-78.185509,39.754148],[-78.18514,39.753811],[-78.1848,39.753469],[-78.184387,39.753017],[-78.184026,39.752598],[-78.183713,39.752187],[-78.183442,39.751811],[-78.183189,39.751419],[-78.182948,39.751018],[-78.182741,39.750628],[-78.182544,39.750227],[-78.182354,39.749797],[-78.182182,39.749355],[-78.182043,39.748932],[-78.181914,39.748497],[-78.1818,39.748016],[-78.181717,39.747582],[-78.181644,39.74707],[-78.181603,39.746593],[-78.181576,39.746094],[-78.181411,39.743018],[-78.181371,39.741823],[-78.181389,39.740642],[-78.181423,39.739978],[-78.181486,39.739202],[-78.181616,39.738003],[-78.182149,39.733198],[-78.182319,39.731711],[-78.182747,39.727796],[-78.182856,39.726855],[-78.182931,39.726424],[-78.183003,39.726098],[-78.183102,39.725756],[-78.183231,39.725368],[-78.183413,39.724915],[-78.183607,39.724526],[-78.183817,39.724141],[-78.184033,39.723795],[-78.1844,39.723234],[-78.184936,39.722424],[-78.186188,39.720518],[-78.186457,39.72011],[-78.186784,39.719619],[-78.187103,39.719125],[-78.187352,39.718742],[-78.18758,39.718357],[-78.187752,39.718023],[-78.187914,39.717669],[-78.188023,39.717415],[-78.188094,39.717223],[-78.188191,39.716923],[-78.188322,39.716457],[-78.188393,39.71613],[-78.188454,39.715802],[-78.188492,39.715468],[-78.188511,39.715102],[-78.188518,39.714766],[-78.188506,39.714377],[-78.188486,39.714071],[-78.188431,39.713676],[-78.188398,39.713475],[-78.188384,39.713371],[-78.18836,39.713258],[-78.188318,39.713109],[-78.188124,39.712461],[-78.187926,39.711955],[-78.187796,39.711678],[-78.187656,39.711397],[-78.187476,39.71108],[-78.187311,39.710799],[-78.187063,39.710435],[-78.186783,39.710078],[-78.186542,39.709784],[-78.186218,39.709433],[-78.185901,39.709115],[-78.185615,39.708852],[-78.185126,39.70845],[-78.184771,39.708181],[-78.184452,39.707956],[-78.184129,39.707742],[-78.183711,39.707503],[-78.183308,39.707294],[-78.182966,39.707122],[-78.182656,39.706989],[-78.182271,39.706834],[-78.181859,39.706693],[-78.181174,39.706478],[-78.18013,39.706192],[-78.17963,39.706051],[-78.175171,39.704826],[-78.172181,39.704001],[-78.171608,39.703849],[-78.171108,39.703723],[-78.170599,39.703602],[-78.170087,39.703486],[-78.16947,39.703358],[-78.168903,39.703252],[-78.16813,39.703124],[-78.167515,39.703037],[-78.160205,39.701996],[-78.159706,39.701925],[-78.159256,39.701832],[-78.158798,39.701728],[-78.158363,39.701606],[-78.15789,39.701445],[-78.157473,39.701282],[-78.157025,39.701079],[-78.15666,39.700874],[-78.156295,39.700644],[-78.155904,39.700343],[-78.155596,39.700064],[-78.155351,39.699811],[-78.155118,39.699532],[-78.15479,39.699132],[-78.154054,39.698183],[-78.153731,39.697766],[-78.153334,39.697324],[-78.153,39.696994],[-78.15272,39.696753],[-78.15237,39.696484],[-78.152092,39.696301],[-78.151699,39.696071],[-78.151336,39.695886],[-78.150931,39.695697],[-78.150436,39.695525],[-78.150024,39.695391],[-78.149481,39.695228],[-78.143366,39.693384],[-78.1428,39.693225],[-78.142149,39.693054],[-78.141499,39.692895],[-78.140913,39.692766],[-78.140296,39.692641],[-78.139538,39.692496],[-78.138433,39.692288],[-78.133726,39.691404],[-78.133145,39.691289],[-78.132657,39.69118],[-78.132102,39.691035],[-78.131471,39.690849],[-78.130994,39.69069],[-78.128571,39.689828],[-78.127567,39.689474],[-78.127087,39.689309],[-78.126658,39.689176],[-78.126096,39.689035],[-78.125625,39.688922],[-78.125148,39.688829],[-78.1246,39.688731],[-78.12411,39.688647],[-78.105534,39.685567],[-78.104978,39.685463],[-78.104374,39.685337],[-78.103799,39.685197],[-78.103275,39.685054],[-78.102875,39.684927],[-78.102513,39.684808],[-78.101687,39.684531],[-78.101137,39.684308],[-78.100604,39.684078],[-78.100016,39.683804],[-78.099485,39.683535],[-78.098988,39.683267],[-78.098679,39.683086],[-78.098204,39.682793],[-78.092937,39.679288],[-78.092172,39.678803],[-78.091616,39.678453],[-78.090957,39.678051],[-78.090401,39.677727],[-78.084987,39.674638],[-78.084399,39.674308],[-78.083951,39.674066],[-78.08346,39.673822],[-78.082985,39.673604],[-78.082568,39.673417],[-78.082115,39.673222],[-78.081673,39.673046],[-78.081246,39.672892],[-78.080835,39.67275],[-78.08043,39.672616],[-78.079941,39.672468],[-78.079376,39.6723],[-78.076982,39.671614],[-78.076517,39.671471],[-78.075971,39.671288],[-78.075436,39.671083],[-78.075036,39.670917],[-78.074556,39.670703],[-78.074102,39.670478],[-78.070941,39.66879],[-78.070372,39.668464],[-78.069929,39.668187],[-78.069499,39.667907],[-78.069078,39.667613],[-78.068569,39.667229],[-78.059637,39.660313],[-78.058513,39.65946],[-78.057999,39.6591],[-78.057503,39.658765],[-78.056938,39.658408],[-78.056353,39.658054],[-78.055787,39.657728],[-78.054481,39.656963],[-78.050805,39.654813],[-78.050407,39.654579],[-78.049778,39.654204],[-78.049394,39.653963],[-78.04894,39.653646],[-78.048535,39.653338],[-78.048141,39.653011],[-78.047144,39.65214],[-78.046244,39.651352],[-78.040654,39.646456],[-78.040257,39.646134],[-78.039751,39.645746],[-78.039203,39.645358],[-78.038688,39.645017],[-78.03825,39.644749],[-78.037716,39.64443],[-78.030445,39.640173],[-78.030002,39.639892],[-78.029547,39.639587],[-78.02902,39.639198],[-78.028497,39.638794],[-78.028039,39.638412],[-78.027595,39.638022],[-78.027211,39.637657],[-78.026798,39.637234],[-78.022657,39.632723],[-78.022258,39.632334],[-78.021853,39.631959],[-78.021478,39.631639],[-78.020982,39.631232],[-78.020371,39.630772],[-78.019353,39.630018],[-78.014499,39.626439],[-78.013961,39.626043],[-78.01364,39.625826],[-78.013132,39.625514],[-78.012711,39.625267],[-78.012171,39.62499],[-78.011729,39.62478],[-78.011243,39.624567],[-78.010788,39.62439],[-78.01037,39.624239],[-78.0099,39.624082],[-78.009344,39.623922],[-78.008856,39.623799],[-78.00839,39.623696],[-78.007918,39.623603],[-78.007374,39.623514],[-78.00694,39.623456],[-78.006435,39.623399],[-78.005811,39.623355],[-78.005245,39.623335],[-78.004588,39.623333],[-78.004009,39.623349],[-78.00345,39.623384],[-78.00289,39.62344],[-78.002336,39.623512],[-78.001783,39.623598],[-78.001223,39.623708],[-77.985355,39.626787],[-77.984801,39.626887],[-77.984105,39.62699],[-77.983399,39.627076],[-77.982693,39.627147],[-77.981989,39.627192],[-77.981422,39.627216],[-77.980711,39.627228],[-77.97474,39.627207],[-77.974015,39.627212],[-77.97345,39.627228],[-77.97274,39.627279],[-77.972037,39.627356],[-77.971468,39.627443],[-77.970909,39.627547],[-77.970233,39.627694],[-77.969562,39.627875],[-77.968911,39.628079],[-77.968262,39.628314],[-77.967763,39.628519],[-77.967265,39.628742],[-77.96679,39.628981],[-77.96633,39.629226],[-77.965759,39.629564],[-77.955356,39.636381],[-77.954601,39.636868],[-77.953725,39.637432],[-77.9524,39.63826],[-77.943313,39.643834],[-77.942722,39.644183],[-77.942102,39.644523],[-77.941501,39.644846],[-77.940958,39.645115],[-77.940208,39.645464],[-77.939633,39.645715],[-77.938996,39.645978],[-77.938426,39.646203],[-77.937734,39.646456],[-77.930865,39.648923],[-77.928827,39.64963],[-77.92821,39.649834],[-77.923678,39.651289],[-77.922892,39.651527],[-77.92234,39.651671],[-77.921684,39.651836],[-77.921082,39.651961],[-77.920415,39.652089],[-77.919829,39.652182],[-77.919011,39.652294],[-77.918418,39.652359],[-77.917849,39.652404],[-77.917107,39.652451],[-77.916306,39.652474],[-77.915134,39.652463],[-77.91422,39.65242],[-77.913528,39.652368],[-77.90903,39.651982],[-77.908723,39.651954],[-77.902525,39.651438],[-77.901691,39.651377],[-77.900827,39.651329],[-77.9001,39.651289],[-77.899282,39.65125],[-77.898513,39.651221],[-77.89764,39.651194],[-77.896584,39.651173],[-77.89558,39.651158],[-77.888883,39.651099],[-77.888459,39.651094],[-77.880677,39.651028],[-77.879255,39.651011],[-77.878213,39.65099],[-77.877062,39.650957],[-77.876322,39.650927],[-77.875596,39.650893],[-77.865925,39.65049],[-77.865172,39.650467],[-77.864278,39.650451],[-77.863221,39.650433],[-77.854276,39.65033],[-77.853671,39.650311],[-77.85315,39.650279],[-77.852201,39.6502],[-77.851427,39.650105],[-77.850791,39.650011],[-77.8502,39.649908],[-77.849542,39.649775],[-77.84876,39.649595],[-77.848156,39.649435],[-77.847437,39.649225],[-77.84676,39.649004],[-77.846161,39.648795],[-77.845444,39.648514],[-77.843158,39.64757],[-77.842414,39.647266],[-77.841265,39.64683],[-77.840434,39.646541],[-77.839671,39.64628],[-77.838773,39.646004],[-77.837952,39.645757],[-77.837019,39.645477],[-77.836462,39.645304],[-77.835882,39.645104],[-77.835229,39.64486],[-77.834567,39.644595],[-77.834005,39.644348],[-77.833604,39.644159],[-77.833025,39.643867],[-77.832514,39.643598],[-77.831982,39.643292],[-77.831645,39.643091],[-77.831229,39.642824],[-77.830875,39.642584],[-77.830054,39.642007],[-77.829107,39.641333],[-77.82735,39.640087],[-77.826667,39.639621],[-77.826143,39.639292],[-77.825633,39.638992],[-77.825103,39.638703],[-77.824628,39.638454],[-77.824096,39.638196],[-77.823518,39.637941],[-77.822952,39.637706],[-77.820937,39.636912],[-77.820211,39.636624],[-77.819686,39.636399],[-77.819038,39.636098],[-77.818518,39.635842],[-77.817967,39.635546],[-77.817385,39.635212],[-77.816721,39.634801],[-77.816083,39.63437],[-77.815504,39.633942],[-77.814773,39.633361],[-77.814273,39.632957],[-77.813575,39.632419],[-77.813107,39.632075],[-77.812618,39.631737],[-77.812076,39.631379],[-77.81153,39.631049],[-77.810984,39.630725],[-77.810473,39.630445],[-77.809953,39.630169],[-77.809336,39.629859],[-77.808769,39.629597],[-77.807997,39.629266],[-77.807273,39.628965],[-77.803951,39.627622],[-77.792581,39.623035],[-77.792125,39.62284],[-77.791653,39.622624],[-77.791292,39.622447],[-77.790939,39.622261],[-77.790508,39.622006],[-77.790177,39.621804],[-77.789927,39.621635],[-77.789295,39.62118],[-77.7889,39.620868],[-77.788496,39.620512],[-77.788198,39.62023],[-77.787807,39.619821],[-77.787532,39.619505],[-77.787302,39.619231],[-77.786945,39.618752],[-77.785885,39.617255],[-77.785423,39.616598],[-77.78275,39.612797],[-77.782557,39.612529],[-77.782194,39.61202],[-77.781485,39.611068],[-77.781224,39.61076],[-77.780862,39.610363],[-77.780483,39.609994],[-77.780091,39.60964],[-77.779684,39.609306],[-77.779296,39.60901],[-77.77892,39.608744],[-77.778605,39.608534],[-77.777943,39.608139],[-77.777475,39.60789],[-77.776973,39.607644],[-77.776465,39.607416],[-77.775989,39.607226],[-77.775479,39.60704],[-77.774917,39.606857],[-77.774448,39.606715],[-77.773763,39.606542],[-77.773269,39.606437],[-77.772758,39.606352],[-77.77213,39.606252],[-77.771518,39.606181],[-77.770836,39.606128],[-77.770226,39.606107],[-77.769468,39.606105],[-77.762344,39.606256],[-77.755201,39.606408],[-77.754592,39.606421],[-77.753963,39.606438],[-77.752841,39.606447],[-77.752084,39.606431],[-77.75146,39.606399],[-77.750811,39.606353],[-77.750226,39.606295],[-77.744824,39.605654],[-77.74443,39.605609],[-77.742791,39.605425],[-77.742087,39.605347],[-77.741335,39.605276],[-77.740652,39.605223],[-77.739872,39.605174],[-77.739108,39.605131],[-77.738412,39.605108],[-77.737608,39.605086],[-77.736871,39.605081],[-77.736012,39.605086],[-77.735093,39.605107],[-77.729442,39.605298],[-77.728791,39.60532],[-77.726776,39.605384],[-77.726017,39.605388],[-77.725599,39.60538],[-77.72496,39.605367],[-77.724272,39.605337],[-77.723624,39.605299],[-77.722984,39.605252],[-77.722433,39.605201],[-77.72183,39.605132],[-77.721187,39.605052],[-77.720608,39.604968],[-77.720045,39.604878],[-77.719514,39.604784],[-77.718967,39.604683],[-77.718453,39.604576],[-77.717794,39.604428],[-77.717211,39.604284],[-77.716522,39.604103],[-77.715995,39.603952],[-77.715491,39.603804],[-77.714928,39.603625],[-77.714415,39.60345],[-77.71262,39.602813],[-77.711875,39.602551],[-77.706934,39.600814],[-77.705935,39.600466],[-77.70548,39.600312],[-77.705007,39.600161],[-77.704552,39.600028],[-77.704072,39.599899],[-77.703644,39.599788],[-77.703163,39.599677],[-77.702669,39.599572],[-77.702038,39.599452],[-77.701673,39.599393],[-77.701266,39.599328],[-77.700742,39.599261],[-77.70027,39.599206],[-77.699766,39.599159],[-77.699141,39.599113],[-77.698579,39.599086],[-77.697933,39.599067],[-77.697381,39.599064],[-77.696786,39.599076],[-77.69608,39.599105],[-77.688181,39.599563],[-77.682575,39.599895],[-77.68197,39.59993],[-77.676303,39.600262],[-77.673256,39.600442],[-77.672734,39.600465],[-77.672165,39.600478],[-77.671522,39.600483],[-77.670953,39.600472],[-77.670244,39.60044],[-77.66963,39.600391],[-77.668987,39.600329],[-77.668321,39.60025],[-77.667727,39.600166],[-77.666992,39.600032],[-77.666241,39.59988],[-77.665598,39.599731],[-77.665051,39.599585],[-77.66437,39.599388],[-77.663754,39.599188],[-77.663137,39.598969],[-77.662594,39.598762],[-77.662086,39.598556],[-77.66155,39.598318],[-77.661002,39.598063],[-77.660483,39.597798],[-77.659912,39.597483],[-77.659464,39.597231],[-77.65588,39.594986],[-77.655486,39.594747],[-77.646211,39.588961],[-77.645703,39.588656],[-77.645136,39.588324],[-77.644627,39.588038],[-77.643985,39.587687],[-77.643458,39.587415],[-77.642784,39.587074],[-77.642388,39.58688],[-77.641489,39.586462],[-77.640891,39.586188],[-77.640169,39.585859],[-77.639641,39.585617],[-77.636702,39.584275],[-77.636153,39.584018],[-77.635619,39.58375],[-77.63497,39.583406],[-77.634361,39.583051],[-77.633876,39.582746],[-77.633378,39.582416],[-77.632789,39.581994],[-77.632277,39.581606],[-77.631852,39.581247],[-77.631381,39.580838],[-77.630888,39.580364],[-77.630431,39.579896],[-77.629217,39.578649],[-77.628877,39.5783],[-77.626795,39.576177],[-77.626103,39.575471],[-77.625562,39.574913],[-77.625127,39.57443],[-77.624722,39.573976],[-77.624196,39.57336],[-77.623651,39.572672],[-77.623156,39.572023],[-77.62249,39.571067],[-77.62205,39.570378],[-77.617585,39.563728],[-77.617378,39.563424],[-77.611141,39.554099],[-77.610865,39.553659],[-77.610568,39.553114],[-77.610365,39.55268],[-77.610205,39.552292],[-77.610053,39.551867],[-77.609924,39.551418],[-77.609833,39.551044],[-77.60974,39.550538],[-77.609588,39.54953],[-77.609433,39.548617],[-77.609303,39.548017],[-77.609165,39.547495],[-77.609003,39.546993],[-77.608815,39.546467],[-77.608611,39.54597],[-77.608372,39.545432],[-77.608173,39.544981],[-77.60797,39.544532],[-77.606787,39.541888],[-77.606658,39.541575],[-77.60652,39.541185],[-77.606395,39.540779],[-77.606307,39.540417],[-77.606236,39.540025],[-77.606189,39.539628],[-77.606166,39.53931],[-77.606158,39.539032],[-77.606165,39.538656],[-77.60618,39.538373],[-77.606216,39.538066],[-77.606275,39.537627],[-77.606562,39.535965],[-77.606599,39.535728],[-77.606627,39.535403],[-77.606638,39.535068],[-77.606614,39.534763],[-77.606579,39.534482],[-77.606527,39.534186],[-77.606456,39.533941],[-77.606366,39.533691],[-77.606217,39.533334],[-77.606079,39.533064],[-77.605854,39.532704],[-77.605599,39.532361],[-77.604822,39.531347],[-77.604579,39.531022],[-77.604235,39.530558],[-77.603981,39.530123],[-77.603736,39.529613],[-77.603571,39.529204],[-77.603441,39.5288],[-77.603342,39.528389],[-77.602685,39.524936],[-77.602587,39.524524],[-77.602455,39.524109],[-77.6023,39.523706],[-77.602093,39.523266],[-77.601885,39.52289],[-77.601665,39.52254],[-77.601462,39.52225],[-77.601137,39.52184],[-77.597303,39.517343],[-77.596973,39.516932],[-77.596709,39.516578],[-77.596406,39.516136],[-77.596124,39.515699],[-77.595932,39.515383],[-77.59575,39.515048],[-77.595542,39.514665],[-77.595285,39.514135],[-77.594525,39.512499],[-77.593381,39.510067],[-77.593234,39.509814],[-77.593078,39.509578],[-77.592913,39.509368],[-77.592731,39.50916],[-77.592459,39.508908],[-77.592145,39.508649],[-77.59189,39.50848],[-77.5916,39.508301],[-77.591248,39.508135],[-77.590886,39.507981],[-77.590522,39.50786],[-77.59016,39.507757],[-77.589829,39.507679],[-77.589454,39.507586],[-77.585173,39.506571],[-77.584706,39.50646],[-77.584024,39.506263],[-77.583602,39.506117],[-77.583092,39.505918],[-77.582706,39.505754],[-77.582298,39.505552],[-77.581943,39.505361],[-77.581596,39.505159],[-77.58119,39.504897],[-77.575185,39.500852],[-77.572013,39.498732],[-77.568626,39.49645],[-77.5678,39.495881],[-77.567196,39.495441],[-77.566439,39.494864],[-77.565741,39.494311],[-77.563283,39.492327],[-77.562651,39.491827],[-77.560433,39.490044],[-77.559972,39.489673],[-77.557751,39.487898],[-77.557249,39.487536],[-77.556831,39.487264],[-77.556433,39.487033],[-77.555966,39.486786],[-77.55558,39.486591],[-77.555126,39.486406],[-77.554681,39.486242],[-77.554233,39.486099],[-77.553799,39.485973],[-77.553323,39.485861],[-77.552853,39.48577],[-77.552281,39.485673],[-77.550248,39.485367],[-77.547661,39.484988],[-77.546649,39.484825],[-77.546028,39.484704],[-77.545548,39.484589],[-77.545162,39.484481],[-77.54474,39.484348],[-77.544301,39.484193],[-77.543868,39.484016],[-77.54344,39.483824],[-77.542937,39.483563],[-77.542554,39.483344],[-77.54219,39.483116],[-77.541789,39.482842],[-77.541412,39.482547],[-77.541029,39.482219],[-77.539432,39.480764],[-77.538664,39.480071],[-77.535405,39.47711],[-77.534865,39.476601],[-77.534296,39.476105],[-77.533665,39.475588],[-77.533026,39.475079],[-77.532313,39.474539],[-77.531473,39.473943],[-77.519288,39.46554],[-77.514663,39.462344],[-77.514008,39.461876],[-77.513559,39.461536],[-77.513036,39.461135],[-77.512611,39.460801],[-77.512172,39.46044],[-77.509471,39.458145],[-77.509112,39.457842],[-77.506802,39.455877],[-77.506258,39.455338],[-77.506039,39.455079],[-77.505815,39.454791],[-77.505567,39.454415],[-77.505359,39.454044],[-77.505189,39.453687],[-77.505067,39.453374],[-77.504964,39.453029],[-77.504865,39.452643],[-77.503716,39.448089],[-77.503601,39.447664],[-77.503468,39.447279],[-77.50327,39.44684],[-77.503081,39.446501],[-77.502823,39.446108],[-77.502598,39.445807],[-77.502284,39.445451],[-77.501955,39.445124],[-77.501555,39.44479],[-77.501026,39.444405],[-77.500674,39.444174],[-77.500298,39.443958],[-77.499719,39.443674],[-77.497834,39.442759],[-77.494038,39.440921],[-77.493499,39.440651],[-77.493124,39.440439],[-77.492767,39.440211],[-77.492377,39.439931],[-77.49206,39.439675],[-77.491735,39.43938],[-77.49149,39.43912],[-77.491214,39.438809],[-77.490981,39.438504],[-77.490697,39.438063],[-77.490528,39.43776],[-77.490324,39.437343],[-77.49015,39.436928],[-77.489994,39.436481],[-77.489871,39.436062],[-77.489776,39.435608],[-77.489709,39.435187],[-77.489668,39.434751],[-77.489651,39.434226],[-77.489671,39.432694],[-77.489695,39.430702],[-77.489685,39.430082],[-77.489646,39.429533],[-77.489593,39.429092],[-77.489533,39.428693],[-77.489442,39.428217],[-77.489307,39.427686],[-77.48915,39.427135],[-77.48898,39.42666],[-77.48879,39.426171],[-77.488565,39.425676],[-77.488325,39.425208],[-77.488103,39.424804],[-77.48787,39.424404],[-77.487537,39.423902],[-77.487207,39.423445],[-77.48678,39.422904],[-77.486369,39.422428],[-77.486064,39.422114],[-77.485569,39.421631],[-77.485272,39.421353],[-77.484978,39.42109],[-77.484562,39.420741],[-77.484129,39.420414],[-77.483651,39.420063],[-77.483182,39.419758],[-77.482713,39.419463],[-77.481601,39.418809],[-77.480798,39.418345],[-77.480224,39.418009],[-77.479729,39.41771],[-77.479239,39.417401],[-77.478689,39.417029],[-77.478081,39.416576],[-77.477607,39.416199],[-77.477134,39.415792],[-77.476676,39.41538],[-77.476246,39.414957],[-77.475799,39.41449],[-77.475343,39.413964],[-77.474812,39.413289],[-77.47447,39.412811],[-77.47413,39.4123],[-77.473116,39.410701],[-77.472739,39.410136],[-77.472383,39.409666],[-77.472023,39.409226],[-77.471681,39.408846],[-77.471321,39.408473],[-77.470915,39.408082],[-77.470471,39.407691],[-77.470014,39.407323],[-77.469642,39.40704],[-77.469139,39.406686],[-77.468663,39.406377],[-77.468183,39.406089],[-77.467702,39.405819],[-77.467251,39.405587],[-77.466737,39.405335],[-77.466251,39.405124],[-77.465729,39.404911],[-77.465229,39.404727],[-77.464637,39.404526],[-77.464049,39.404348],[-77.46344,39.404188],[-77.46284,39.404044],[-77.462359,39.403945],[-77.461727,39.403833],[-77.461113,39.403745],[-77.460474,39.40367],[-77.457151,39.403304],[-77.454918,39.40306],[-77.451449,39.40268],[-77.450845,39.402609],[-77.450253,39.402528],[-77.449612,39.402419],[-77.448901,39.402282],[-77.448147,39.402108],[-77.447436,39.401927],[-77.446846,39.401746],[-77.446215,39.401558],[-77.44559,39.401336],[-77.444697,39.400994],[-77.444117,39.400746],[-77.442374,39.399946],[-77.442057,39.399802],[-77.441257,39.399444],[-77.441079,39.399373],[-77.440356,39.399092],[-77.439895,39.398935],[-77.439423,39.39879],[-77.438907,39.398643],[-77.438395,39.398506],[-77.437869,39.398391],[-77.437441,39.398306],[-77.437011,39.398231],[-77.436501,39.398151],[-77.435985,39.398088],[-77.435401,39.398028],[-77.434737,39.397983],[-77.433485,39.397932],[-77.428929,39.397932],[-77.427959,39.397859],[-77.427505,39.397844],[-77.427017,39.397811],[-77.426597,39.397767],[-77.426193,39.397701],[-77.425842,39.397628],[-77.425469,39.397535],[-77.425106,39.397425],[-77.424756,39.397297],[-77.424271,39.397089],[-77.423943,39.396931],[-77.423598,39.396733],[-77.423274,39.396516],[-77.422976,39.396299],[-77.422666,39.396041],[-77.422362,39.395757],[-77.421203,39.394571],[-77.413362,39.385853],[-77.41196,39.384287],[-77.410498,39.382656],[-77.40985,39.381933],[-77.409447,39.381498],[-77.40862,39.380465],[-77.408233,39.380035],[-77.407634,39.37919],[-77.407268,39.378602],[-77.40693,39.37806],[-77.40606,39.376246],[-77.405718,39.375397],[-77.40506,39.373764],[-77.404264,39.372098],[-77.403134,39.370098],[-77.402509,39.369052],[-77.402313,39.368709],[-77.401375,39.367098],[-77.400391,39.36531],[-77.399645,39.364024],[-77.398193,39.361395],[-77.395506,39.356716],[-77.394502,39.354984],[-77.394056,39.354062],[-77.393764,39.353155],[-77.393715,39.353004],[-77.393502,39.352343],[-77.393206,39.351613],[-77.392399,39.350179],[-77.391507,39.348991],[-77.383816,39.34015],[-77.382839,39.339137],[-77.381361,39.337946],[-77.378726,39.33608],[-77.377025,39.334841],[-77.375722,39.33373],[-77.374504,39.332549],[-77.371654,39.329382],[-77.37065,39.328466],[-77.369199,39.327417],[-77.368264,39.326863],[-77.367208,39.326314],[-77.366333,39.325929],[-77.365466,39.325604],[-77.364257,39.325228],[-77.363354,39.325],[-77.358385,39.323944],[-77.357578,39.323705],[-77.356805,39.32336],[-77.356584,39.323238],[-77.356041,39.322948],[-77.355329,39.322424],[-77.354823,39.321916],[-77.354265,39.321175],[-77.353672,39.319821],[-77.351045,39.31309],[-77.350693,39.312459],[-77.350178,39.311669],[-77.349671,39.311084],[-77.348985,39.310427],[-77.347676,39.30951],[-77.34412,39.307047],[-77.341834,39.305535],[-77.341067,39.304975],[-77.340417,39.304406],[-77.339892,39.3037],[-77.339559,39.302974],[-77.339264,39.301974],[-77.339098,39.301251],[-77.338797,39.300516],[-77.338508,39.299869],[-77.337955,39.299093],[-77.337065,39.298134],[-77.335772,39.297071],[-77.334605,39.296207],[-77.334137,39.295789],[-77.333989,39.295636],[-77.333727,39.295343],[-77.333428,39.294941],[-77.333272,39.294688],[-77.332993,39.294177],[-77.3328,39.29365],[-77.332604,39.292925],[-77.332473,39.292215],[-77.332215,39.290952],[-77.331968,39.290242],[-77.331749,39.289797],[-77.331534,39.289399],[-77.331126,39.288813],[-77.330622,39.28824],[-77.330027,39.287647],[-77.328659,39.286306],[-77.327588,39.285123],[-77.327089,39.284436],[-77.326118,39.282898],[-77.325709,39.282192],[-77.325291,39.281329],[-77.324935,39.280461],[-77.324457,39.279311],[-77.324163,39.278657],[-77.323793,39.277991],[-77.323503,39.277589],[-77.323314,39.277382],[-77.322746,39.276703],[-77.32201,39.276002],[-77.320929,39.275073],[-77.319802,39.274127],[-77.318048,39.273118],[-77.317034,39.272594],[-77.31616,39.272054],[-77.315398,39.271382],[-77.31492,39.270829],[-77.314561,39.27019],[-77.31425,39.269459],[-77.314084,39.268699],[-77.313735,39.267216],[-77.313424,39.266365],[-77.312957,39.265513],[-77.312841,39.265351],[-77.312431,39.264778],[-77.310886,39.262839],[-77.309502,39.261053],[-77.308121,39.259257],[-77.307549,39.258514],[-77.305864,39.256699],[-77.303938,39.254755],[-77.303056,39.253791],[-77.301909,39.25218],[-77.300325,39.249495],[-77.299099,39.247628],[-77.297382,39.245705],[-77.295044,39.243216],[-77.292233,39.240162],[-77.29063,39.238416],[-77.289588,39.237281],[-77.287507,39.234834],[-77.287103,39.234393],[-77.286408,39.233632],[-77.285801,39.232939],[-77.285168,39.231964],[-77.28453,39.230953],[-77.282304,39.226969],[-77.280445,39.223042],[-77.278656,39.218752],[-77.277787,39.216221],[-77.277288,39.214425],[-77.277218,39.214134],[-77.276709,39.212368],[-77.276521,39.211836],[-77.276397,39.211516],[-77.276295,39.211266],[-77.276092,39.210813],[-77.275791,39.210194],[-77.275464,39.209583],[-77.275139,39.209072],[-77.274324,39.207968],[-77.2737,39.207124],[-77.272186,39.205511],[-77.268844,39.20278],[-77.267755,39.201832],[-77.266682,39.20086],[-77.265721,39.199974],[-77.263898,39.198191],[-77.263623,39.19785],[-77.26153,39.195253],[-77.260728,39.193681],[-77.259971,39.192195],[-77.25936,39.190732],[-77.258843,39.189632],[-77.258459,39.188899],[-77.258156,39.188384],[-77.257791,39.187819],[-77.257425,39.18731],[-77.257051,39.186833],[-77.256733,39.18646],[-77.256155,39.185834],[-77.254403,39.183936],[-77.25169,39.181011],[-77.249749,39.178676],[-77.248745,39.177448],[-77.247221,39.175377],[-77.24697,39.175027],[-77.245965,39.173573],[-77.244817,39.171864],[-77.244319,39.171063],[-77.243938,39.170423],[-77.242524,39.168154],[-77.241535,39.166775],[-77.240849,39.166048],[-77.240119,39.165336],[-77.239313,39.164617],[-77.238454,39.163978],[-77.237476,39.163339],[-77.236566,39.162787],[-77.235579,39.162268],[-77.234635,39.161809],[-77.232902,39.160971],[-77.232584,39.160817],[-77.232191,39.160617],[-77.231802,39.160418],[-77.231184,39.160092],[-77.230486,39.159684],[-77.229794,39.15928],[-77.228584,39.158521],[-77.227665,39.157889],[-77.226653,39.15715],[-77.224592,39.155558],[-77.223118,39.154406],[-77.22184,39.153407],[-77.220585,39.152371],[-77.219352,39.151247],[-77.218686,39.150595],[-77.218063,39.149898],[-77.217373,39.149171],[-77.217179,39.14896],[-77.217124,39.14889],[-77.216798,39.148469],[-77.216529,39.148099],[-77.216143,39.14755],[-77.215575,39.14672],[-77.215204,39.146139],[-77.214256,39.144202],[-77.213326,39.141804],[-77.212899,39.140786],[-77.212653,39.140202],[-77.212457,39.139735],[-77.2115,39.137862],[-77.210776,39.136671],[-77.210716,39.136572],[-77.210367,39.135998],[-77.209489,39.134759],[-77.20802,39.132841],[-77.204963,39.129573],[-77.203423,39.128042],[-77.202728,39.127176],[-77.201455,39.125526],[-77.200136,39.123668],[-77.198793,39.121801],[-77.198518,39.121419],[-77.198238,39.121047],[-77.198084,39.120844],[-77.197299,39.11993],[-77.19567,39.118092],[-77.192664,39.115242],[-77.19102,39.113701],[-77.188484,39.111326],[-77.184407,39.107509],[-77.183483,39.106612],[-77.182287,39.105243],[-77.181251,39.103913],[-77.180292,39.102474],[-77.179422,39.100915],[-77.178678,39.099282],[-77.177715,39.097025],[-77.176418,39.093994],[-77.175795,39.092491],[-77.174893,39.089992],[-77.17439,39.088544],[-77.173318,39.085366],[-77.172519,39.083134],[-77.171738,39.081555],[-77.170983,39.080416],[-77.170219,39.079343],[-77.168691,39.077397],[-77.167541,39.076198],[-77.166219,39.075025],[-77.162855,39.0724],[-77.161155,39.070994],[-77.159937,39.069788],[-77.158828,39.06842],[-77.1581,39.067282],[-77.157838,39.066799],[-77.157207,39.06543],[-77.156229,39.062324],[-77.155766,39.060723],[-77.154812,39.057346],[-77.154212,39.055559],[-77.153522,39.053641],[-77.15277,39.051854],[-77.150686,39.047289],[-77.147916,39.04195],[-77.14585,39.038014],[-77.145705,39.037738],[-77.144808,39.036019],[-77.144595,39.035611],[-77.144291,39.035176],[-77.143905,39.03459],[-77.14363,39.034243],[-77.143253,39.033849],[-77.142918,39.033596],[-77.142609,39.033409],[-77.142197,39.033169],[-77.141768,39.032983],[-77.141236,39.032796],[-77.140606,39.03265],[-77.140026,39.032563],[-77.139291,39.032493],[-77.135931,39.032176],[-77.135056,39.032076],[-77.134138,39.031956],[-77.133216,39.03181],[-77.132177,39.031623],[-77.126692,39.030603],[-77.122353,39.029862],[-77.116843,39.029069],[-77.115735,39.028862],[-77.114771,39.028609],[-77.113921,39.028336],[-77.113075,39.027976],[-77.112302,39.027622],[-77.111406,39.027142],[-77.110414,39.026482],[-77.10959,39.025828],[-77.109459,39.025704],[-77.108766,39.025042],[-77.107933,39.024088],[-77.106955,39.022916],[-77.106556,39.022408],[-77.106434,39.022237],[-77.106269,39.021942],[-77.106,39.021367],[-77.105854,39.020917],[-77.105695,39.020472],[-77.105582,39.020179],[-77.105463,39.019927],[-77.105298,39.019631],[-77.105094,39.019328],[-77.104918,39.019114],[-77.104704,39.018891],[-77.104426,39.018639],[-77.104155,39.018422],[-77.103882,39.018232],[-77.103196,39.017793],[-77.102685,39.017503],[-77.102268,39.017289],[-77.10171,39.01704],[-77.101257,39.01687],[-77.100731,39.016706],[-77.099761,39.016483],[-77.098627,39.01615],[-77.097861,39.015949],[-77.097449,39.015829],[-77.097109,39.015714],[-77.09677,39.015587],[-77.096412,39.015428],[-77.09605,39.015233],[-77.095789,39.015066],[-77.095506,39.01486],[-77.095274,39.01466],[-77.095059,39.014456],[-77.09483,39.014208],[-77.094641,39.013951],[-77.094418,39.013616],[-77.093944,39.01286],[-77.093746,39.012581],[-77.093528,39.012329],[-77.093275,39.01209],[-77.093016,39.011893],[-77.092688,39.011698],[-77.092296,39.011519],[-77.091958,39.01139],[-77.091439,39.011215],[-77.091103,39.011101],[-77.090616,39.010926],[-77.090253,39.010775],[-77.089993,39.010645],[-77.089772,39.010524],[-77.089508,39.010354],[-77.089276,39.010163],[-77.089085,39.009984],[-77.088877,39.009746],[-77.088663,39.009466],[-77.088127,39.008689],[-77.087923,39.008423],[-77.087719,39.008189],[-77.087455,39.007941],[-77.087205,39.007741],[-77.086936,39.007563],[-77.08657,39.007348],[-77.083962,39.005908],[-77.083557,39.005696],[-77.083184,39.00552],[-77.082879,39.005392],[-77.082475,39.005251],[-77.082197,39.005167],[-77.081847,39.005089],[-77.081459,39.00503],[-77.081052,39.00499],[-77.080814,39.004968],[-77.080607,39.004946],[-77.080407,39.004924],[-77.080209,39.004887],[-77.079946,39.004811],[-77.079739,39.004739],[-77.079553,39.004658],[-77.079319,39.004535],[-77.078871,39.00421],[-77.078641,39.004092],[-77.078485,39.004023],[-77.078321,39.003967],[-77.077869,39.003827],[-77.077793,39.003799],[-77.07774,39.003773],[-77.077691,39.003742],[-77.077622,39.00365],[-77.077499,39.003374],[-77.077403,39.002807],[-77.077327,39.002397],[-77.07723,39.00175],[-77.077203,39.001583],[-77.077059,39.000806],[-77.076991,39.000234],[-77.076972,38.999835],[-77.076985,38.99971],[-77.07703,38.999312],[-77.077233,38.997481],[-77.077244,38.996126],[-77.077244,38.995941],[-77.077244,38.995668],[-77.077244,38.995439],[-77.077244,38.994879],[-77.077252,38.994672],[-77.077244,38.994238],[-77.077235,38.993985],[-77.077235,38.993898],[-77.077244,38.993505],[-77.077244,38.992724],[-77.077239,38.992438],[-77.077235,38.99217],[-77.077235,38.991721],[-77.077235,38.991537],[-77.077218,38.99089],[-77.07721,38.990436],[-77.077201,38.989942],[-77.07721,38.989702],[-77.077217,38.989104],[-77.077218,38.989002],[-77.077227,38.988335],[-77.077218,38.987901],[-77.077223,38.987071],[-77.077227,38.986277],[-77.077227,38.985468],[-77.077229,38.98458],[-77.077228,38.984239],[-77.077227,38.983784],[-77.077227,38.983],[-77.077227,38.982204],[-77.077224,38.981173],[-77.077223,38.980979],[-77.077224,38.980809],[-77.077224,38.979766],[-77.077224,38.97795],[-77.077224,38.977854],[-77.077227,38.976702],[-77.077226,38.976173],[-77.077225,38.975733],[-77.077224,38.974826],[-77.077224,38.973856],[-77.077224,38.973671],[-77.077224,38.972566],[-77.077224,38.972028],[-77.077224,38.971187],[-77.077224,38.970254],[-77.077224,38.969362],[-77.077224,38.968745],[-77.077224,38.9684],[-77.077227,38.968328],[-77.077238,38.968268],[-77.077259,38.968197],[-77.077299,38.968126],[-77.077347,38.968049],[-77.07738,38.967996],[-77.077451,38.967962],[-77.07754,38.967897],[-77.077581,38.967856],[-77.077628,38.967787],[-77.077647,38.967744],[-77.077664,38.967677],[-77.077666,38.967598],[-77.077649,38.967523],[-77.07763,38.967479],[-77.077602,38.967432],[-77.07753,38.967354],[-77.077481,38.967317],[-77.077412,38.967278],[-77.077297,38.967238],[-77.077169,38.96722],[-77.076999,38.967101],[-77.076943,38.967065],[-77.076887,38.967025],[-77.076839,38.966976],[-77.076739,38.966805],[-77.076695,38.966764],[-77.076624,38.966712],[-77.076501,38.966499],[-77.076283,38.966123],[-77.076087,38.965785],[-77.076052,38.965725],[-77.075859,38.965398],[-77.075573,38.964903],[-77.075277,38.964393],[-77.075134,38.964145],[-77.075049,38.963999],[-77.074687,38.963379],[-77.074521,38.963092],[-77.073928,38.962076],[-77.073309,38.961017],[-77.072904,38.960316],[-77.072537,38.959687],[-77.072154,38.959026],[-77.071765,38.958359],[-77.071406,38.957739],[-77.071107,38.957223],[-77.070977,38.957001],[-77.070411,38.956033],[-77.0702,38.955669],[-77.07016,38.955601],[-77.070066,38.95544],[-77.069739,38.954881],[-77.06963,38.954665],[-77.069425,38.954336],[-77.069239,38.954016],[-77.06887,38.953384],[-77.068825,38.953308],[-77.068774,38.95322],[-77.06875,38.953177],[-77.068183,38.952201],[-77.068123,38.952096],[-77.067921,38.951745],[-77.067728,38.951415],[-77.067325,38.950726],[-77.066753,38.949749],[-77.066714,38.949683],[-77.066676,38.949618],[-77.066253,38.948894],[-77.066215,38.948825],[-77.066182,38.948767],[-77.066069,38.948569],[-77.065739,38.948],[-77.065678,38.947895],[-77.065632,38.947813],[-77.065356,38.947335],[-77.065132,38.946954],[-77.06505,38.946813],[-77.065006,38.946736],[-77.064972,38.946678],[-77.064365,38.94563],[-77.064282,38.945482],[-77.063774,38.944624],[-77.063611,38.944342],[-77.063559,38.944252],[-77.063523,38.944191],[-77.062984,38.943263],[-77.062921,38.943154],[-77.062869,38.943065],[-77.062263,38.942016],[-77.061722,38.941084],[-77.06168,38.941012],[-77.061607,38.940891],[-77.061571,38.940829],[-77.061517,38.940735],[-77.061184,38.940167],[-77.060734,38.939389],[-77.060634,38.939216],[-77.060564,38.939095],[-77.060364,38.938747],[-77.060229,38.938513],[-77.060086,38.938274],[-77.060058,38.938226],[-77.06,38.938125],[-77.059785,38.937757],[-77.059495,38.937259],[-77.059397,38.937091],[-77.05933,38.936974],[-77.059301,38.936925],[-77.05923,38.936799],[-77.058848,38.936146],[-77.058587,38.935699],[-77.058558,38.93565],[-77.058509,38.935566],[-77.058372,38.935331],[-77.058132,38.934913],[-77.057958,38.934613],[-77.057741,38.934242],[-77.057649,38.934083],[-77.057311,38.933506],[-77.057237,38.93338],[-77.057048,38.933056],[-77.056343,38.931836],[-77.056261,38.931695],[-77.056184,38.931567],[-77.05559,38.930544],[-77.055548,38.930471],[-77.055281,38.929974],[-77.055198,38.929836],[-77.055081,38.929667],[-77.054719,38.929042],[-77.054327,38.92837],[-77.054164,38.928088],[-77.05328,38.926569],[-77.05268,38.925536],[-77.05236,38.924932],[-77.052258,38.924759],[-77.051513,38.923529],[-77.051161,38.922911],[-77.049137,38.919462],[-77.049057,38.919324],[-77.048939,38.91911],[-77.048872,38.918987],[-77.048831,38.918935],[-77.048795,38.918901],[-77.048714,38.918859],[-77.048649,38.918829],[-77.048563,38.9188],[-77.048312,38.918725],[-77.047947,38.91862],[-77.047841,38.918589],[-77.047736,38.918545],[-77.047691,38.918517],[-77.04765,38.918485],[-77.047597,38.918431],[-77.047569,38.918391],[-77.047522,38.918305],[-77.047437,38.918137],[-77.047235,38.91774],[-77.04719,38.917652],[-77.046899,38.917081],[-77.046774,38.916835],[-77.04674,38.916767],[-77.04671,38.916635],[-77.046584,38.916397],[-77.046538,38.916292],[-77.046493,38.916172],[-77.04645,38.916024],[-77.046427,38.915909],[-77.046392,38.915635],[-77.046319,38.914848],[-77.046309,38.914763],[-77.046289,38.914607],[-77.046261,38.914486],[-77.046219,38.914341],[-77.046159,38.914198],[-77.046108,38.914088],[-77.046056,38.913974],[-77.04589,38.913678],[-77.045592,38.913164],[-77.045318,38.912681],[-77.045275,38.912606],[-77.04523,38.912539],[-77.045155,38.912429],[-77.045067,38.912183],[-77.044889,38.911864],[-77.04487,38.91113],[-77.044874,38.910272],[-77.044875,38.910142],[-77.044788,38.910111],[-77.044447,38.909994],[-77.04434,38.909923],[-77.044273,38.909868],[-77.04419,38.909764],[-77.04416,38.909693],[-77.044125,38.909578],[-77.04409,38.909476],[-77.044026,38.909372],[-77.043959,38.909294],[-77.043878,38.909232],[-77.043793,38.90919],[-77.043685,38.909146],[-77.043578,38.909123],[-77.043439,38.909111],[-77.043294,38.909115],[-77.0432,38.909132],[-77.043114,38.909169],[-77.043058,38.909201],[-77.042972,38.909249],[-77.042875,38.909288],[-77.042774,38.909308],[-77.04272,38.909388],[-77.042683,38.909461],[-77.042668,38.909502],[-77.042567,38.909587],[-77.042468,38.909631],[-77.042382,38.909645],[-77.041766,38.909645],[-77.041676,38.909645],[-77.041585,38.909645],[-77.04024,38.909648],[-77.039562,38.90965],[-77.038621,38.909652],[-77.038498,38.909652],[-77.038388,38.909652],[-77.037271,38.909654],[-77.037207,38.909655],[-77.036664,38.909656],[-77.036523,38.909656],[-77.036398,38.909656],[-77.035493,38.909658],[-77.034646,38.90966],[-77.034557,38.90966],[-77.033996,38.909661],[-77.032616,38.909664],[-77.032123,38.909665],[-77.032031,38.909665],[-77.031952,38.909665],[-77.031871,38.909666],[-77.031808,38.909666],[-77.031374,38.909667],[-77.030901,38.909668],[-77.030496,38.909668],[-77.03033,38.909669],[-77.030329,38.909603],[-77.030318,38.909542],[-77.030299,38.909482],[-77.030272,38.909424],[-77.030229,38.909359],[-77.030158,38.909283],[-77.030064,38.909213],[-77.02999,38.909172],[-77.029935,38.909148],[-77.029865,38.909125],[-77.0298,38.909109],[-77.029705,38.909095],[-77.029597,38.909091],[-77.029543,38.909094],[-77.029443,38.909108],[-77.029254,38.90917],[-77.02921,38.909192],[-77.029131,38.909243],[-77.029062,38.909301],[-77.029004,38.909367],[-77.02893,38.90951],[-77.028914,38.909577],[-77.028909,38.909639],[-77.028911,38.909691],[-77.028927,38.90977],[-77.028947,38.909824],[-77.028972,38.909872],[-77.029005,38.909922],[-77.029066,38.909991],[-77.029114,38.910033],[-77.029194,38.910087],[-77.029261,38.910122],[-77.029286,38.910133],[-77.029368,38.910161],[-77.029433,38.910178],[-77.0295,38.910189],[-77.029568,38.910196],[-77.029686,38.910195],[-77.029755,38.910187],[-77.029862,38.910164],[-77.029951,38.910133],[-77.030063,38.910078]]},"steps":[{"maneuver":{"type":"depart","location":{"type":"Point","coordinates":[-122.420017,37.780096]},"instruction":"Head
53
+ east on McAllister Street"},"distance":611,"duration":53,"way_name":"McAllister
54
+ Street","direction":"E","heading":80},{"maneuver":{"type":"bear right","location":{"type":"Point","coordinates":[-122.413148,37.780994]},"instruction":"Bear
55
+ right onto Charles J Brenham Place"},"distance":79,"duration":5,"way_name":"Charles
56
+ J Brenham Place","direction":"SE","heading":135},{"maneuver":{"type":"turn
57
+ left","location":{"type":"Point","coordinates":[-122.412528,37.780488]},"instruction":"Turn
58
+ left onto Market Street"},"distance":1383,"duration":81,"way_name":"Market
59
+ Street","direction":"NE","heading":45},{"maneuver":{"type":"turn right","location":{"type":"Point","coordinates":[-122.401398,37.789283]},"instruction":"Turn
60
+ right onto 2nd Street"},"distance":778,"duration":59,"way_name":"2nd Street","direction":"SE","heading":135},{"maneuver":{"type":"turn
61
+ left","location":{"type":"Point","coordinates":[-122.395178,37.784312]},"instruction":"Turn
62
+ left onto Harrison Street"},"distance":142,"duration":13,"way_name":"Harrison
63
+ Street","direction":"NE","heading":45},{"maneuver":{"type":"bear right","location":{"type":"Point","coordinates":[-122.394038,37.785216]},"instruction":"Bear
64
+ right"},"distance":169,"duration":12,"way_name":"","direction":"E","heading":107},{"maneuver":{"type":"bear
65
+ left","location":{"type":"Point","coordinates":[-122.392138,37.785171]},"instruction":"Bear
66
+ left onto I 80"},"distance":10422,"duration":494,"way_name":"I 80","direction":"NE","heading":58},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-122.293906,37.828655]},"instruction":"Continue"},"distance":906,"duration":39,"way_name":"","direction":"N","heading":13},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-122.295882,37.836444]},"instruction":"Continue
67
+ on I 880"},"distance":121,"duration":5,"way_name":"I 880","direction":"N","heading":338},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-122.296273,37.83749]},"instruction":"Continue
68
+ on I 80;I 580"},"distance":5234,"duration":208,"way_name":"I 80;I 580","direction":"N","heading":348},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-122.308377,37.883534]},"instruction":"Continue
69
+ on I 80"},"distance":44227,"duration":1700,"way_name":"I 80","direction":"N","heading":349},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-122.145417,38.211289]},"instruction":"Continue
70
+ on I 80;CA 12"},"distance":7892,"duration":300,"way_name":"I 80;CA 12","direction":"NE","heading":49},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-122.069897,38.249462]},"instruction":"Continue
71
+ on I 80"},"distance":34182,"duration":1299,"way_name":"I 80","direction":"NE","heading":40},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-121.820683,38.475321]},"instruction":"Continue
72
+ on I 80;CA 113"},"distance":5807,"duration":220,"way_name":"I 80;CA 113","direction":"NE","heading":45},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-121.7761,38.514106]},"instruction":"Continue
73
+ on I 80"},"distance":79829,"duration":3035,"way_name":"I 80","direction":"NE","heading":36},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-121.073552,38.901115]},"instruction":"Continue
74
+ on I 80;CA 49"},"distance":325,"duration":12,"way_name":"I 80;CA 49","direction":"NE","heading":41},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-121.071462,38.903522]},"instruction":"Continue
75
+ on I 80"},"distance":105781,"duration":4022,"way_name":"I 80","direction":"N","heading":15},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-120.203792,39.322939]},"instruction":"Continue
76
+ on I 80;CA 89"},"distance":3063,"duration":116,"way_name":"I 80;CA 89","direction":"E","heading":89},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-120.174039,39.336563]},"instruction":"Continue
77
+ on I 80"},"distance":106115,"duration":3923,"way_name":"I 80","direction":"E","heading":77},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-119.214644,39.613826]},"instruction":"Continue
78
+ on I 80;US 95 ALT"},"distance":25943,"duration":868,"way_name":"I 80;US 95
79
+ ALT","direction":"NE","heading":63},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-119.020736,39.790707]},"instruction":"Continue
80
+ on I 80;US 95 Alternate"},"distance":16,"duration":0,"way_name":"I 80;US 95
81
+ Alternate","direction":"NE","heading":32},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-119.02064,39.790829]},"instruction":"Continue
82
+ on I 80;US 95 ALT"},"distance":21958,"duration":734,"way_name":"I 80;US 95
83
+ ALT","direction":"NE","heading":32},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-118.821355,39.912633]},"instruction":"Continue
84
+ on I 80;US 95 Alternate"},"distance":17,"duration":0,"way_name":"I 80;US 95
85
+ Alternate","direction":"NE","heading":51},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-118.821198,39.912729]},"instruction":"Continue
86
+ on I 80;US 95 ALT"},"distance":7403,"duration":247,"way_name":"I 80;US 95
87
+ ALT","direction":"NE","heading":51},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-118.744546,39.943839]},"instruction":"Continue
88
+ on I 80;US 95"},"distance":38579,"duration":1291,"way_name":"I 80;US 95","direction":"NE","heading":63},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-118.456097,40.190999]},"instruction":"Continue
89
+ on I-80;US-95"},"distance":20142,"duration":674,"way_name":"I-80;US-95","direction":"E","heading":68},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-118.319436,40.334425]},"instruction":"Continue
90
+ on I 80;US 95"},"distance":23,"duration":0,"way_name":"I 80;US 95","direction":"NE","heading":32},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-118.319298,40.3346]},"instruction":"Continue
91
+ on I-80;US-95"},"distance":15099,"duration":505,"way_name":"I-80;US-95","direction":"NE","heading":32},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-118.284758,40.467081]},"instruction":"Continue
92
+ on I 80;US 95"},"distance":75225,"duration":2519,"way_name":"I 80;US 95","direction":"N","heading":3},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-117.757397,40.948557]},"instruction":"Continue
93
+ on I 80"},"distance":282778,"duration":9467,"way_name":"I 80","direction":"NE","heading":48},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-114.957723,41.09939]},"instruction":"Continue
94
+ on I-80"},"distance":470,"duration":15,"way_name":"I-80","direction":"E","heading":113},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-114.952372,41.09815]},"instruction":"Continue
95
+ on I 80;US 93 ALT"},"distance":12623,"duration":422,"way_name":"I 80;US 93
96
+ ALT","direction":"E","heading":98},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-114.803538,41.112521]},"instruction":"Continue
97
+ on I 80;US 93 Alternate"},"distance":79522,"duration":2662,"way_name":"I 80;US
98
+ 93 Alternate","direction":"E","heading":90},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-114.06286,40.741205]},"instruction":"Continue
99
+ on I 80"},"distance":194664,"duration":6265,"way_name":"I 80","direction":"E","heading":112},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-111.911259,40.753389]},"instruction":"Continue
100
+ on I 15;I 80"},"distance":3326,"duration":118,"way_name":"I 15;I 80","direction":"S","heading":172},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-111.904565,40.72516]},"instruction":"Continue
101
+ on I 80"},"distance":40596,"duration":1591,"way_name":"I 80","direction":"S","heading":187},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-111.492679,40.733716]},"instruction":"Continue
102
+ on I 80;US 189"},"distance":13405,"duration":572,"way_name":"I 80;US 189","direction":"NE","heading":59},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-111.401135,40.812957]},"instruction":"Continue
103
+ on I 80"},"distance":36,"duration":1,"way_name":"I 80","direction":"NE","heading":30},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-111.400924,40.813241]},"instruction":"Continue
104
+ on I 80;US 189"},"distance":95493,"duration":3486,"way_name":"I 80;US 189","direction":"NE","heading":28},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-110.734875,41.30882]},"instruction":"Continue
105
+ on I 80"},"distance":78597,"duration":2630,"way_name":"I 80","direction":"E","heading":100},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-109.895993,41.542551]},"instruction":"Continue
106
+ on I 80;US 30"},"distance":52349,"duration":1763,"way_name":"I 80;US 30","direction":"E","heading":104},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-109.303383,41.560385]},"instruction":"Continue
107
+ on I 80;US 30;US 191"},"distance":6236,"duration":208,"way_name":"I 80;US
108
+ 30;US 191","direction":"NE","heading":60},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-109.244989,41.592662]},"instruction":"Continue"},"distance":595,"duration":18,"way_name":"","direction":"NE","heading":29},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-109.240988,41.597057]},"instruction":"Continue"},"distance":549,"duration":18,"way_name":"","direction":"NE","heading":24},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-109.239111,41.601761]},"instruction":"Continue
109
+ on I 80;US 30;US 191"},"distance":1130,"duration":38,"way_name":"I 80;US 30;US
110
+ 191","direction":"NE","heading":26},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-109.228791,41.607889]},"instruction":"Continue
111
+ on I 80;US 30"},"distance":132706,"duration":4303,"way_name":"I 80;US 30","direction":"NE","heading":63},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-107.72271,41.729489]},"instruction":"Continue
112
+ on I 80;US 30;WY 789"},"distance":38232,"duration":1279,"way_name":"I 80;US
113
+ 30;WY 789","direction":"E","heading":73},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-107.275212,41.780292]},"instruction":"Continue
114
+ on I 80;US 30"},"distance":7649,"duration":255,"way_name":"I 80;US 30","direction":"E","heading":76},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-107.188835,41.787704]},"instruction":"Continue
115
+ on I 80;US 30;US 287"},"distance":29921,"duration":1001,"way_name":"I 80;US
116
+ 30;US 287","direction":"E","heading":106},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-106.838025,41.741438]},"instruction":"Continue
117
+ on I 80"},"distance":132187,"duration":4425,"way_name":"I 80","direction":"E","heading":93},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-105.523111,41.287134]},"instruction":"Continue
118
+ on I 80;US 30"},"distance":66427,"duration":2236,"way_name":"I 80;US 30","direction":"SE","heading":145},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-104.87111,41.116539]},"instruction":"Continue
119
+ on I 80"},"distance":2249,"duration":97,"way_name":"I 80","direction":"E","heading":89},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-104.84563,41.114909]},"instruction":"Continue
120
+ on I 80;US 87 Business"},"distance":3079,"duration":133,"way_name":"I 80;US
121
+ 87 Business","direction":"E","heading":74},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-104.809341,41.118253]},"instruction":"Continue
122
+ on I 80"},"distance":14486,"duration":628,"way_name":"I 80","direction":"E","heading":79},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-104.648587,41.157896]},"instruction":"Continue
123
+ on I 80;US 30"},"distance":48806,"duration":1633,"way_name":"I 80;US 30","direction":"E","heading":83},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-104.080575,41.174404]},"instruction":"Continue
124
+ on I 80"},"distance":36375,"duration":1218,"way_name":"I 80","direction":"NE","heading":55},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-103.656455,41.217008]},"instruction":"Continue
125
+ on I 80;NE 71"},"distance":2050,"duration":68,"way_name":"I 80;NE 71","direction":"E","heading":82},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-103.632204,41.219627]},"instruction":"Continue
126
+ on I 80"},"distance":602687,"duration":20191,"way_name":"I 80","direction":"E","heading":82},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-96.752619,40.82159]},"instruction":"Continue
127
+ on I 80;US 77"},"distance":12353,"duration":529,"way_name":"I 80;US 77","direction":"NE","heading":27},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-96.652066,40.896687]},"instruction":"Continue
128
+ on I 80"},"distance":82019,"duration":3370,"way_name":"I 80","direction":"E","heading":90},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-95.891516,41.232568]},"instruction":"Continue
129
+ on I 29;I 80"},"distance":4030,"duration":175,"way_name":"I 29;I 80","direction":"E","heading":93},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-95.843738,41.230757]},"instruction":"Continue
130
+ on I 80"},"distance":92295,"duration":3326,"way_name":"I 80","direction":"SE","heading":129},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-94.9375,41.497073]},"instruction":"Continue
131
+ on I 80;US 6"},"distance":78382,"duration":2791,"way_name":"I 80;US 6","direction":"E","heading":90},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-94.018346,41.539473]},"instruction":"Continue
132
+ on I 80"},"distance":20552,"duration":753,"way_name":"I 80","direction":"E","heading":82},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-93.78615,41.592077]},"instruction":"Continue
133
+ on I 235"},"distance":22287,"duration":958,"way_name":"I 235","direction":"E","heading":90},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-93.575534,41.645919]},"instruction":"Continue"},"distance":414,"duration":31,"way_name":"","direction":"N","heading":5},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-93.574614,41.649552]},"instruction":"Continue"},"distance":531,"duration":40,"way_name":"","direction":"NE","heading":36},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-93.569992,41.652762]},"instruction":"Continue
134
+ on I 80"},"distance":4777,"duration":203,"way_name":"I 80","direction":"E","heading":70},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-93.513623,41.661128]},"instruction":"Continue
135
+ on I 80;US 65"},"distance":1148,"duration":49,"way_name":"I 80;US 65","direction":"E","heading":79},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-93.4999,41.661845]},"instruction":"Continue
136
+ on I 80"},"distance":788,"duration":31,"way_name":"I 80","direction":"E","heading":97},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-93.490493,41.66137]},"instruction":"Continue
137
+ on I 80;US 6"},"distance":35294,"duration":1255,"way_name":"I 80;US 6","direction":"E","heading":76},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-93.077921,41.68328]},"instruction":"Continue
138
+ on I 80"},"distance":171736,"duration":6114,"way_name":"I 80","direction":"E","heading":82},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-91.030556,41.63489]},"instruction":"Continue
139
+ on I 80;US 6"},"distance":29173,"duration":1038,"way_name":"I 80;US 6","direction":"E","heading":107},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-90.686718,41.603623]},"instruction":"Continue
140
+ on I 80"},"distance":1700,"duration":64,"way_name":"I 80","direction":"E","heading":89},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-90.666498,41.603582]},"instruction":"Continue
141
+ on I 80;US 61"},"distance":8176,"duration":310,"way_name":"I 80;US 61","direction":"E","heading":94},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-90.569034,41.595897]},"instruction":"Continue
142
+ on I 80"},"distance":23510,"duration":895,"way_name":"I 80","direction":"E","heading":102},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-90.341787,41.536321]},"instruction":"Continue
143
+ on I 80;IL 110"},"distance":10893,"duration":414,"way_name":"I 80;IL 110","direction":"S","heading":180},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-90.329859,41.439691]},"instruction":"Continue
144
+ on I 80"},"distance":235265,"duration":9093,"way_name":"I 80","direction":"S","heading":182},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-87.663074,41.577992]},"instruction":"Continue
145
+ on I 80;I 294"},"distance":8418,"duration":370,"way_name":"I 80;I 294","direction":"E","heading":90},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-87.562252,41.577641]},"instruction":"Continue
146
+ on I 80;I 94"},"distance":1221,"duration":53,"way_name":"I 80;I 94","direction":"E","heading":90},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-87.547576,41.577658]},"instruction":"Continue
147
+ on I 80;I 94;US 6"},"distance":3611,"duration":159,"way_name":"I 80;I 94;US
148
+ 6","direction":"E","heading":90},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-87.504898,41.573984]},"instruction":"Continue
149
+ on I 80;I 94;US 6;US 41"},"distance":1619,"duration":71,"way_name":"I 80;I
150
+ 94;US 6;US 41","direction":"E","heading":89},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-87.48545,41.574132]},"instruction":"Continue
151
+ on I 80;I 94;US 6"},"distance":20349,"duration":895,"way_name":"I 80;I 94;US
152
+ 6","direction":"E","heading":90},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-87.244887,41.581573]},"instruction":"Continue
153
+ on I 80;I 94"},"distance":828,"duration":35,"way_name":"I 80;I 94","direction":"E","heading":68},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-87.235671,41.584378]},"instruction":"Continue
154
+ on I 80"},"distance":1844,"duration":141,"way_name":"I 80","direction":"E","heading":71},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-87.229682,41.591878]},"instruction":"Continue
155
+ on I 80;I 90"},"distance":445943,"duration":17108,"way_name":"I 80;I 90","direction":"SE","heading":113},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-82.180991,41.386038]},"instruction":"Continue
156
+ on I 80"},"distance":122821,"duration":4372,"way_name":"I 80","direction":"E","heading":70},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-80.845978,41.119967]},"instruction":"Continue
157
+ on Ohio Turnpike"},"distance":923,"duration":32,"way_name":"Ohio Turnpike","direction":"SE","heading":149},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-80.840351,41.112833]},"instruction":"Continue
158
+ on I 76"},"distance":156983,"duration":5933,"way_name":"I 76","direction":"SE","heading":148},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-79.606671,40.22426]},"instruction":"Continue
159
+ on I 70;I 76"},"distance":139038,"duration":5298,"way_name":"I 70;I 76","direction":"SE","heading":136},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-78.261804,39.986508]},"instruction":"Continue
160
+ on I 70"},"distance":3062,"duration":172,"way_name":"I 70","direction":"E","heading":88},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-78.233332,39.996756]},"instruction":"Continue"},"distance":329,"duration":25,"way_name":"","direction":"N","heading":22},{"maneuver":{"type":"u-turn","location":{"type":"Point","coordinates":[-78.232423,39.9995]},"instruction":"Make
161
+ a U-turn onto US 30"},"distance":550,"duration":41,"way_name":"US 30","direction":"W","heading":267},{"maneuver":{"type":"turn
162
+ left","location":{"type":"Point","coordinates":[-78.238875,39.999464]},"instruction":"Turn
163
+ left onto I 70"},"distance":33469,"duration":1472,"way_name":"I 70","direction":"S","heading":189},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-78.188714,39.756555]},"instruction":"Continue
164
+ on I 70;US 522"},"distance":5135,"duration":219,"way_name":"I 70;US 522","direction":"SE","heading":133},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-78.188318,39.713109]},"instruction":"Continue
165
+ on I 70"},"distance":533,"duration":20,"way_name":"I 70","direction":"S","heading":167},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-78.185615,39.708852]},"instruction":"Continue
166
+ on I 70;US 40"},"distance":12953,"duration":492,"way_name":"I 70;US 40","direction":"SE","heading":137},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-78.054481,39.656963]},"instruction":"Continue
167
+ on I 70"},"distance":70068,"duration":2679,"way_name":"I 70","direction":"SE","heading":127},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-77.428929,39.397932]},"instruction":"Continue"},"distance":803,"duration":35,"way_name":"","direction":"E","heading":96},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-77.421203,39.394571]},"instruction":"Continue
168
+ on I 270"},"distance":51914,"duration":2172,"way_name":"I 270","direction":"SE","heading":145},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-77.103196,39.017793]},"instruction":"Continue
169
+ on I 495"},"distance":2343,"duration":103,"way_name":"I 495","direction":"SE","heading":125},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-77.082475,39.005251]},"instruction":"Continue"},"distance":287,"duration":22,"way_name":"","direction":"E","heading":112},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-77.079319,39.004535]},"instruction":"Continue"},"distance":213,"duration":16,"way_name":"","direction":"SE","heading":133},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-77.077499,39.003374]},"instruction":"Continue
170
+ on MD 185"},"distance":3942,"duration":275,"way_name":"MD 185","direction":"S","heading":172},{"maneuver":{"type":"enter
171
+ roundabout","location":{"type":"Point","coordinates":[-77.077169,38.96722]},"instruction":"Enter
172
+ the roundabout and take the exit onto Connecticut Avenue Northwest"},"distance":6739,"duration":440,"way_name":"Connecticut
173
+ Avenue Northwest","direction":"SE","heading":133},{"maneuver":{"type":"continue","location":{"type":"Point","coordinates":[-77.045155,38.912429]},"instruction":"Continue"},"distance":67,"duration":6,"way_name":"","direction":"S","heading":165},{"maneuver":{"type":"bear
174
+ right","location":{"type":"Point","coordinates":[-77.044889,38.911864]},"instruction":"Bear
175
+ right onto 20th Street Northwest"},"distance":191,"duration":18,"way_name":"20th
176
+ Street Northwest","direction":"S","heading":179},{"maneuver":{"type":"bear
177
+ left","location":{"type":"Point","coordinates":[-77.044875,38.910142]},"instruction":"Bear
178
+ left onto Massachusetts Avenue Northwest"},"distance":245,"duration":14,"way_name":"Massachusetts
179
+ Avenue Northwest","direction":"SE","heading":118},{"maneuver":{"type":"enter
180
+ roundabout","location":{"type":"Point","coordinates":[-77.042668,38.909502]},"instruction":"Enter
181
+ the roundabout and take the exit onto P Street Northwest"},"distance":1074,"duration":80,"way_name":"P
182
+ Street Northwest","direction":"NE","heading":44},{"maneuver":{"type":"arrive","location":{"type":"Point","coordinates":[-77.030063,38.910078]},"instruction":"You
183
+ have arrived at your destination"}}]}]}'
184
+ http_version:
185
+ recorded_at: Thu, 18 Jun 2015 15:34:40 GMT
186
+ recorded_with: VCR 2.9.3