gtfs-geojson 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: bf0802ca353854ab37535916e773d218dd124777
4
+ data.tar.gz: 0fbfd39b2ba56f71fbe012d14d8bcced4ff103a4
5
+ SHA512:
6
+ metadata.gz: 9c7170ff74b74d89ba3c53eaed0ef0be9c403cd758f645ae0b25792c4f78c2cd29903302bf4c735141d33ed1aa7bc4ac9c1f5e1b651b3505904861cd6c328fa7
7
+ data.tar.gz: 77f0ff96a0526e6ac966bf4df2b47fe7bbba3323d6c6ac5b0463351f29b0fed0fd02965b9b3ee41bdc4a494420fc755bd94255bb6a89b2d41aba41535e4bef5d
@@ -0,0 +1 @@
1
+ coverage
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'gtfs'
4
+ gem 'minitest'
5
+ gem 'simplecov'
@@ -0,0 +1,30 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ docile (1.1.5)
5
+ gtfs (0.2.5)
6
+ multi_json
7
+ rake
8
+ rubyzip (~> 1.1)
9
+ json (1.8.3)
10
+ minitest (5.8.4)
11
+ multi_json (1.11.2)
12
+ rake (10.5.0)
13
+ rubyzip (1.1.7)
14
+ simplecov (0.11.2)
15
+ docile (~> 1.1.0)
16
+ json (~> 1.8)
17
+ simplecov-html (~> 0.10.0)
18
+ simplecov-html (0.10.0)
19
+
20
+ PLATFORMS
21
+ ruby
22
+ x64-mingw32
23
+
24
+ DEPENDENCIES
25
+ gtfs
26
+ minitest
27
+ simplecov
28
+
29
+ BUNDLED WITH
30
+ 1.11.2
@@ -0,0 +1,18 @@
1
+ # gtfs-geojson
2
+
3
+ A Ruby utility to convert the shapes.txt file of a GTFS feed into a GeoJSON file.
4
+
5
+ ## Develop Locally
6
+ ```
7
+ bundle install
8
+ ```
9
+ ### Run Tests
10
+ ```
11
+ rake
12
+ ```
13
+ ### Run Tests and Collect Code Coverage
14
+ ```
15
+ rake coverage
16
+ ```
17
+ ## Issues
18
+ Please contact Tyler at [greent@tyleragreen.com](mailto:greent@tyleragreen.com) or file a GitHub Issue with any ideas or suggestions.
@@ -0,0 +1,13 @@
1
+ require 'rake/testtask'
2
+
3
+ Rake::TestTask.new do |t|
4
+ t.pattern = "test/*.rb"
5
+ end
6
+
7
+ task :default => :test
8
+
9
+ desc 'Generates a coverage report'
10
+ task :coverage do
11
+ ENV['COVERAGE'] = 'true'
12
+ Rake::Task['test'].execute
13
+ end
@@ -0,0 +1,24 @@
1
+ require './lib/gtfs-geojson/version'
2
+
3
+ Gem::Specification.new do |gem|
4
+ gem.name = 'gtfs-geojson'
5
+ gem.version = GTFS::GeoJSON::VERSION
6
+ gem.date = Date.today.to_s
7
+
8
+ gem.summary = 'Convert GTFS to GeoJSON'
9
+ gem.description = 'gtfs-geojson is a Ruby utility to convert the shapes.txt file from a GTFS feed into a GeoJSON file.'
10
+
11
+ gem.authors = ['tyleragreen']
12
+ gem.email = ['greent@tyleragreen.com']
13
+ gem.homepage = 'https://github.com/tyleragreen/gtfs-geojson'
14
+ gem.license = 'MIT'
15
+
16
+ gem.add_dependency 'gtfs', '0.2.5'
17
+
18
+ gem.add_development_dependency 'simplecov', '0.11.2'
19
+ gem.add_development_dependency 'minitest', '5.8.4'
20
+
21
+ gem.files = `git ls-files`.split("\n")
22
+ gem.test_files = `git ls-files -- test/*`.split("\n")
23
+ gem.require_path = 'lib'
24
+ end
@@ -0,0 +1,45 @@
1
+ #!/usr/bin/ruby
2
+
3
+ require 'gtfs'
4
+ require 'json'
5
+ require 'gtfs-geojson/version'
6
+
7
+ module GTFS
8
+ module GeoJSON
9
+
10
+ def self.generate(path)
11
+ source = GTFS::Source.build(path,{strict:true})
12
+
13
+ routes = {}
14
+ features = []
15
+
16
+ source.shapes.each do |shape|
17
+ if routes[shape.id]
18
+ routes[shape.id] << shape
19
+ else
20
+ routes[shape.id] = [shape]
21
+ end
22
+ end
23
+
24
+ routes.each do |route,points|
25
+ coordinates = []
26
+ points.sort! { |a,b| a.pt_sequence.to_i <=> b.pt_sequence.to_i }
27
+
28
+ points.each do |point|
29
+ coordinates << [ point.pt_lon.to_f, point.pt_lat.to_f ]
30
+ end
31
+
32
+ features << { type: 'Feature',
33
+ properties: { name: route
34
+ },
35
+ geometry: { type: 'LineString',
36
+ coordinates: coordinates
37
+ }
38
+ }
39
+
40
+ end
41
+
42
+ return JSON.generate({type: 'FeatureCollection', features: features})
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,5 @@
1
+ module GTFS
2
+ module GeoJSON
3
+ VERSION = '0.0.2'
4
+ end
5
+ end
@@ -0,0 +1 @@
1
+ {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"10:01"},"geometry":{"type":"LineString","coordinates":[[-105.07861,40.59002],[-105.07855,40.59019],[-105.07849,40.59034],[-105.07839,40.59048],[-105.07833,40.59061],[-105.07835,40.59077],[-105.07859,40.59081],[-105.07877,40.59083],[-105.07903,40.59083],[-105.07923,40.59083],[-105.07945,40.59083],[-105.07966,40.59083],[-105.07986,40.59083],[-105.08008,40.59083],[-105.08026,40.59083],[-105.08048,40.59084],[-105.08066,40.59074],[-105.08066,40.59061],[-105.08066,40.59043],[-105.08068,40.59025],[-105.08068,40.59004],[-105.08068,40.58983],[-105.08068,40.58963],[-105.08068,40.58944],[-105.08068,40.58928],[-105.0807,40.5891],[-105.08085,40.58901],[-105.08111,40.58904],[-105.08133,40.58904],[-105.08137,40.58904],[-105.08169,40.58897],[-105.08193,40.58896],[-105.08221,40.58896],[-105.0825,40.58897],[-105.08284,40.58897],[-105.08316,40.58897],[-105.0835,40.58897],[-105.08385,40.58897],[-105.08415,40.58898],[-105.08439,40.589],[-105.08465,40.58901],[-105.08469,40.58901],[-105.08495,40.589],[-105.08515,40.58898],[-105.08543,40.58898],[-105.0857,40.58898],[-105.08604,40.58898],[-105.08634,40.58898],[-105.08668,40.58898],[-105.08701,40.58898],[-105.08733,40.58898],[-105.08763,40.589],[-105.08789,40.58902],[-105.08807,40.58904],[-105.08825,40.58904],[-105.08846,40.58902],[-105.0887,40.589],[-105.08896,40.58901],[-105.08928,40.58901],[-105.0896,40.58901],[-105.08992,40.58901],[-105.09027,40.58901],[-105.09061,40.58901],[-105.09093,40.58902],[-105.09121,40.58905],[-105.09143,40.58908],[-105.0915,40.58908],[-105.0917,40.58908],[-105.09194,40.58906],[-105.0922,40.58907],[-105.0925,40.58906],[-105.09282,40.58906],[-105.09314,40.58906],[-105.09345,40.58906],[-105.09377,40.58907],[-105.09407,40.58906],[-105.09439,40.58906],[-105.0947,40.58906],[-105.095,40.58907],[-105.09532,40.58908],[-105.0956,40.58908],[-105.09588,40.58908],[-105.09611,40.58908],[-105.09637,40.58908],[-105.09641,40.58909],[-105.09663,40.58908],[-105.09685,40.58908],[-105.09715,40.58908],[-105.09744,40.58908],[-105.09776,40.5891],[-105.0981,40.58911],[-105.09844,40.58911],[-105.09878,40.58911],[-105.09914,40.58911],[-105.09949,40.58911],[-105.09985,40.58911],[-105.10017,40.58912],[-105.10053,40.58913],[-105.10084,40.58913],[-105.10116,40.58914],[-105.1014,40.58915],[-105.1016,40.58916],[-105.10162,40.58916],[-105.10188,40.58914],[-105.10211,40.58914],[-105.10239,40.58915],[-105.10271,40.58915],[-105.10301,40.58915],[-105.10335,40.58915],[-105.1037,40.58916],[-105.10402,40.58916],[-105.10438,40.58916],[-105.1047,40.58918],[-105.10496,40.5892],[-105.10514,40.58921],[-105.10515,40.58921],[-105.10539,40.5892],[-105.10563,40.5892],[-105.10591,40.5892],[-105.10623,40.5892],[-105.10657,40.5892],[-105.1069,40.5892],[-105.10722,40.5892],[-105.10748,40.58922],[-105.10768,40.58924],[-105.10778,40.58924],[-105.108,40.58921],[-105.10825,40.58921],[-105.10853,40.58921],[-105.10887,40.58921],[-105.10921,40.58921],[-105.10954,40.58922],[-105.10988,40.58924],[-105.11018,40.58925],[-105.11042,40.58928],[-105.11058,40.58929],[-105.11078,40.58926],[-105.11101,40.58924],[-105.11129,40.58924],[-105.11159,40.58924],[-105.11193,40.58924],[-105.11225,40.58924],[-105.11257,40.58924],[-105.11292,40.58926],[-105.11324,40.58927],[-105.11352,40.58928],[-105.11372,40.5893],[-105.1139,40.58931],[-105.11407,40.58928],[-105.11427,40.58926],[-105.11449,40.58926],[-105.11469,40.58926],[-105.11489,40.58924],[-105.11503,40.58914],[-105.11505,40.58892],[-105.11505,40.58873],[-105.11505,40.58851],[-105.11505,40.58827],[-105.11505,40.588],[-105.11505,40.58775],[-105.11505,40.58751],[-105.11507,40.58729],[-105.11509,40.58707],[-105.11509,40.58685],[-105.11509,40.58665],[-105.11509,40.58646],[-105.11509,40.58633],[-105.11511,40.58618],[-105.11511,40.58618],[-105.11509,40.58602],[-105.11509,40.58582],[-105.11509,40.58564],[-105.11509,40.58543],[-105.11505,40.58519],[-105.11505,40.58494],[-105.11505,40.58469],[-105.11505,40.58443],[-105.11505,40.58416],[-105.11505,40.58389],[-105.11507,40.58364],[-105.11507,40.58338],[-105.11507,40.58314],[-105.11509,40.58291],[-105.11507,40.5827],[-105.11505,40.58249],[-105.11505,40.58234],[-105.11507,40.58219],[-105.11507,40.58204],[-105.11491,40.58193],[-105.11469,40.58192],[-105.11455,40.58191],[-105.11423,40.58203],[-105.11404,40.58203],[-105.11376,40.58203],[-105.11346,40.58203],[-105.11318,40.58203],[-105.11286,40.58203],[-105.11254,40.58203],[-105.11221,40.58201],[-105.11187,40.58201],[-105.11155,40.58201],[-105.11122,40.58201],[-105.11086,40.58201],[-105.11052,40.58201],[-105.11016,40.582],[-105.1098,40.582],[-105.10947,40.58199],[-105.10915,40.58199],[-105.10887,40.58199],[-105.10857,40.58199],[-105.10831,40.58199],[-105.1081,40.58199],[-105.10792,40.582],[-105.10768,40.582],[-105.10754,40.58199],[-105.10734,40.58199],[-105.10714,40.58199],[-105.10688,40.58199],[-105.10665,40.58196],[-105.10641,40.58188],[-105.10621,40.58177],[-105.10601,40.58167],[-105.10575,40.58157],[-105.10551,40.58147],[-105.10531,40.58137],[-105.10514,40.58129],[-105.10497,40.58124],[-105.10474,40.58121],[-105.10454,40.58122],[-105.1043,40.58124],[-105.10406,40.5813],[-105.10378,40.58138],[-105.1035,40.58149],[-105.10323,40.58158],[-105.10293,40.58169],[-105.10265,40.58179],[-105.10235,40.58187],[-105.10206,40.5819],[-105.1018,40.5819],[-105.10158,40.58189],[-105.10142,40.58188],[-105.1012,40.58188],[-105.10096,40.58188],[-105.10078,40.58188],[-105.10057,40.58187],[-105.10035,40.58185],[-105.10019,40.58185],[-105.10019,40.58185],[-105.09999,40.58185],[-105.09979,40.58185],[-105.09951,40.58185],[-105.09921,40.58184],[-105.09893,40.58184],[-105.09862,40.58183],[-105.09834,40.58183],[-105.09804,40.58183],[-105.09776,40.58182],[-105.09746,40.58182],[-105.09719,40.58182],[-105.09695,40.58181],[-105.09675,40.58181],[-105.09653,40.58179],[-105.09631,40.58176],[-105.09606,40.58176],[-105.09586,40.58176],[-105.09562,40.58175],[-105.09538,40.58174],[-105.09516,40.58174],[-105.095,40.58172],[-105.09474,40.58172],[-105.09449,40.58172],[-105.09423,40.58172],[-105.09393,40.58172],[-105.09361,40.58172],[-105.09333,40.58172],[-105.09304,40.58172],[-105.09274,40.58171],[-105.09244,40.58171],[-105.09214,40.58171],[-105.09184,40.5817],[-105.09158,40.58169],[-105.09137,40.58167],[-105.09115,40.58165],[-105.09111,40.58165],[-105.09105,40.58165],[-105.09075,40.58165],[-105.09051,40.58165],[-105.09023,40.58165],[-105.08992,40.58165],[-105.08962,40.58165],[-105.08928,40.58164],[-105.08898,40.58163],[-105.08866,40.58163],[-105.0884,40.58162],[-105.08821,40.58161],[-105.08803,40.58155],[-105.08801,40.58134],[-105.08801,40.58115],[-105.08801,40.58095],[-105.08801,40.58074],[-105.08801,40.58056],[-105.08801,40.58041],[-105.08801,40.58025],[-105.08801,40.58006],[-105.08801,40.57988],[-105.08801,40.57968],[-105.08803,40.57946],[-105.08803,40.57925],[-105.08803,40.57902],[-105.08803,40.57881],[-105.08803,40.57861],[-105.08803,40.57845],[-105.08803,40.5783],[-105.08801,40.57816],[-105.08799,40.57795],[-105.08799,40.57779],[-105.08799,40.57762],[-105.08799,40.57742],[-105.08799,40.57721],[-105.08799,40.577],[-105.08799,40.57684],[-105.08801,40.57666],[-105.08801,40.57651],[-105.08783,40.57642],[-105.08755,40.57641],[-105.08731,40.57642],[-105.08707,40.57642],[-105.08684,40.57642],[-105.08664,40.57642],[-105.08638,40.57642],[-105.08624,40.57635],[-105.0861,40.5762],[-105.08594,40.57605],[-105.08582,40.57591],[-105.08568,40.57578],[-105.08549,40.57572],[-105.08531,40.57581],[-105.08515,40.57586],[-105.08519,40.57587],[-105.08508,40.57593],[-105.08498,40.576],[-105.08487,40.57606],[-105.08476,40.57613],[-105.08479,40.57617],[-105.08484,40.5763],[-105.08481,40.5764],[-105.08479,40.57649],[-105.08471,40.57656],[-105.08464,40.57663],[-105.08457,40.57669],[-105.0845,40.57676],[-105.08442,40.57682],[-105.08435,40.57689],[-105.08428,40.57696],[-105.08421,40.57702],[-105.08405,40.57702],[-105.08389,40.57702],[-105.08373,40.57702],[-105.08357,40.57702],[-105.08342,40.57702],[-105.08326,40.57702],[-105.0831,40.57702],[-105.08294,40.57702],[-105.08284,40.57713],[-105.08274,40.57724],[-105.08264,40.57734],[-105.08254,40.57745],[-105.08252,40.57757],[-105.0825,40.57769],[-105.08251,40.57785],[-105.08251,40.57801],[-105.08252,40.57817],[-105.08252,40.57833],[-105.08252,40.57848],[-105.08252,40.57863],[-105.08252,40.57878],[-105.08252,40.57892],[-105.08252,40.57907],[-105.08252,40.57922],[-105.08252,40.57937],[-105.08253,40.57952],[-105.08257,40.57971],[-105.08257,40.57986],[-105.08254,40.57999],[-105.08254,40.58015],[-105.08254,40.5803],[-105.08254,40.58047],[-105.08254,40.58065],[-105.08254,40.58084],[-105.08254,40.58101],[-105.08254,40.58116],[-105.08253,40.58131],[-105.08253,40.58149],[-105.08253,40.58163],[-105.08253,40.58181],[-105.08253,40.58199],[-105.0825,40.58214],[-105.0825,40.58223],[-105.08253,40.58241],[-105.08253,40.58255],[-105.08253,40.58272],[-105.08253,40.58285],[-105.08253,40.58301],[-105.08253,40.58318],[-105.08253,40.58335],[-105.08253,40.58352],[-105.08253,40.58367],[-105.08253,40.58383],[-105.08253,40.58398],[-105.0825,40.58413],[-105.08236,40.58425],[-105.08213,40.58423],[-105.08197,40.58422],[-105.08173,40.58427],[-105.08153,40.58425],[-105.08133,40.58425],[-105.08113,40.58425],[-105.08096,40.58425],[-105.08074,40.58425],[-105.08068,40.58437],[-105.08068,40.58456],[-105.0807,40.58474],[-105.0807,40.58494],[-105.0807,40.58517],[-105.0807,40.58539],[-105.0807,40.58561],[-105.08068,40.58584],[-105.08068,40.58606],[-105.08068,40.58629],[-105.08066,40.58647],[-105.08066,40.58661],[-105.08066,40.58676],[-105.08066,40.58693],[-105.08066,40.58707],[-105.08062,40.58722],[-105.0806,40.58737],[-105.08062,40.58737],[-105.0807,40.58758],[-105.0807,40.58779],[-105.0807,40.58796],[-105.08068,40.58814],[-105.08068,40.58832],[-105.08068,40.5885],[-105.08068,40.58868],[-105.08066,40.58881],[-105.08052,40.58894],[-105.08032,40.58896],[-105.08008,40.58896],[-105.07982,40.58896],[-105.07958,40.58897],[-105.07939,40.58898],[-105.07915,40.58898],[-105.07893,40.58901],[-105.07883,40.58913],[-105.07883,40.58931],[-105.07875,40.58943],[-105.07863,40.58958],[-105.07861,40.58974],[-105.07857,40.58989],[-105.07857,40.59001]]}},{"type":"Feature","properties":{"name":"12:01"},"geometry":{"type":"LineString","coordinates":[[-105.08028,40.5184],[-105.08046,40.51833],[-105.08054,40.51846],[-105.08054,40.51861],[-105.08054,40.51877],[-105.08054,40.51893],[-105.08054,40.51908],[-105.08052,40.51924],[-105.08048,40.5194],[-105.08032,40.5195],[-105.08012,40.51942],[-105.0801,40.51928],[-105.08012,40.51915],[-105.08012,40.519],[-105.08014,40.51886],[-105.08016,40.5187],[-105.08016,40.51854],[-105.08016,40.51839],[-105.08006,40.51828],[-105.07986,40.51826],[-105.0797,40.51817],[-105.07966,40.518],[-105.07968,40.51781],[-105.07974,40.51768],[-105.07964,40.51754],[-105.0794,40.51752],[-105.07919,40.51752],[-105.07897,40.51752],[-105.07873,40.51752],[-105.07849,40.51753],[-105.07823,40.51754],[-105.078,40.51754],[-105.07776,40.51754],[-105.07754,40.51754],[-105.07734,40.51754],[-105.07722,40.51768],[-105.0772,40.51783],[-105.0772,40.51804],[-105.0772,40.51829],[-105.07718,40.51843],[-105.07716,40.51857],[-105.07716,40.51872],[-105.07716,40.51886],[-105.07716,40.51901],[-105.07716,40.51917],[-105.07714,40.51932],[-105.07714,40.51948],[-105.07714,40.51964],[-105.07714,40.51981],[-105.07714,40.51997],[-105.07714,40.52013],[-105.07714,40.52029],[-105.07714,40.52044],[-105.07714,40.5206],[-105.07714,40.52075],[-105.07714,40.5209],[-105.07714,40.52106],[-105.07714,40.52121],[-105.0771,40.52136],[-105.0771,40.5215],[-105.0771,40.52164],[-105.0771,40.52179],[-105.0771,40.52192],[-105.0771,40.52219],[-105.0771,40.52244],[-105.0771,40.52266],[-105.0771,40.52287],[-105.0771,40.52303],[-105.0771,40.52318],[-105.0771,40.52334],[-105.07714,40.5235],[-105.07726,40.52365],[-105.07746,40.52367],[-105.0777,40.52367],[-105.07796,40.52367],[-105.07823,40.52367],[-105.07855,40.52367],[-105.07883,40.52368],[-105.07913,40.52369],[-105.07935,40.5237],[-105.07954,40.5237],[-105.07954,40.5237],[-105.07976,40.52372],[-105.08002,40.5237],[-105.08026,40.5237],[-105.08054,40.5237],[-105.08088,40.5237],[-105.08121,40.5237],[-105.08139,40.5237],[-105.08159,40.5237],[-105.08177,40.5237],[-105.08197,40.5237],[-105.08217,40.5237],[-105.08236,40.5237],[-105.0827,40.5237],[-105.08298,40.5237],[-105.0832,40.52371],[-105.08324,40.52371],[-105.08344,40.5237],[-105.08366,40.52369],[-105.08392,40.52369],[-105.08423,40.52369],[-105.08459,40.52369],[-105.08479,40.52369],[-105.08495,40.5237],[-105.08515,40.5237],[-105.08535,40.5237],[-105.08554,40.5237],[-105.08574,40.5237],[-105.0859,40.5237],[-105.08626,40.5237],[-105.08654,40.52371],[-105.08674,40.52371],[-105.08682,40.52371],[-105.08704,40.52364],[-105.08727,40.52364],[-105.08757,40.52364],[-105.08793,40.52364],[-105.08809,40.52365],[-105.08831,40.52364],[-105.0885,40.52364],[-105.08872,40.52364],[-105.08892,40.52364],[-105.08914,40.52364],[-105.08938,40.52364],[-105.0896,40.52364],[-105.08982,40.52364],[-105.09001,40.52364],[-105.09023,40.52364],[-105.09045,40.52364],[-105.09065,40.52364],[-105.09085,40.52364],[-105.09101,40.52364],[-105.09131,40.52364],[-105.09154,40.52365],[-105.09172,40.52365],[-105.09198,40.52365],[-105.0922,40.52366],[-105.0923,40.52367],[-105.09248,40.52358],[-105.09266,40.52358],[-105.09279,40.52358],[-105.09297,40.52361],[-105.09306,40.52362],[-105.09324,40.52362],[-105.09342,40.52362],[-105.09349,40.52362],[-105.09367,40.52362],[-105.09385,40.52362],[-105.09403,40.52362],[-105.09421,40.52362],[-105.09439,40.52362],[-105.09451,40.52362],[-105.09469,40.52362],[-105.09487,40.52362],[-105.09505,40.52362],[-105.09523,40.52362],[-105.09541,40.52362],[-105.09559,40.52362],[-105.09577,40.52362],[-105.09595,40.52362],[-105.09609,40.52362],[-105.09627,40.52362],[-105.09629,40.52362],[-105.09647,40.52362],[-105.09665,40.52362],[-105.09683,40.52362],[-105.09701,40.52362],[-105.09719,40.52362],[-105.09737,40.52362],[-105.09748,40.52362],[-105.09766,40.52363],[-105.09784,40.52363],[-105.09802,40.52364],[-105.0982,40.52364],[-105.09837,40.52365],[-105.09854,40.52366],[-105.09872,40.52366],[-105.0989,40.52366],[-105.09907,40.52366],[-105.09914,40.52366],[-105.09932,40.52366],[-105.0995,40.52366],[-105.09968,40.52366],[-105.09986,40.52366],[-105.10004,40.52366],[-105.10022,40.52366],[-105.1004,40.52366],[-105.10058,40.52366],[-105.10076,40.52366],[-105.10094,40.52366],[-105.10112,40.52366],[-105.1013,40.52366],[-105.10148,40.52366],[-105.10166,40.52366],[-105.10178,40.52366],[-105.10196,40.52366],[-105.10214,40.52365],[-105.10224,40.52365],[-105.10242,40.52365],[-105.1026,40.52365],[-105.10266,40.52365],[-105.10284,40.52365],[-105.10285,40.52365],[-105.10289,40.52365],[-105.10307,40.52365],[-105.10325,40.52365],[-105.10343,40.52365],[-105.10354,40.52365],[-105.10372,40.52364],[-105.10374,40.52364],[-105.10392,40.52365],[-105.1041,40.52365],[-105.10411,40.52365],[-105.10429,40.52365],[-105.10447,40.52364],[-105.10465,40.52364],[-105.10472,40.52364],[-105.10479,40.52359],[-105.1048,40.52358],[-105.10498,40.52358],[-105.10516,40.52358],[-105.10534,40.52358],[-105.10552,40.52358],[-105.10562,40.52358],[-105.1058,40.52358],[-105.10589,40.52358],[-105.10607,40.52358],[-105.1062,40.52358],[-105.10629,40.52358],[-105.1064,40.52363],[-105.10642,40.52363],[-105.10644,40.52364],[-105.10662,40.52365],[-105.1068,40.52366],[-105.10695,40.52367],[-105.10702,40.52368],[-105.10717,40.5237],[-105.10734,40.52373],[-105.10738,40.52374],[-105.10754,40.52378],[-105.10771,40.52382],[-105.10777,40.52384],[-105.10787,40.52387],[-105.10793,40.52389],[-105.10801,40.52392],[-105.10816,40.52398],[-105.10831,40.52405],[-105.10839,40.52409],[-105.10851,40.52415],[-105.10858,40.52418],[-105.10864,40.52421],[-105.10878,40.5243],[-105.10884,40.52434],[-105.10897,40.52443],[-105.10903,40.52448],[-105.10916,40.52458],[-105.10921,40.52462],[-105.10932,40.52473],[-105.10937,40.52477],[-105.10946,40.52487],[-105.10949,40.5249],[-105.10955,40.52498],[-105.10965,40.52509],[-105.10967,40.52511],[-105.10975,40.52523],[-105.1098,40.5253],[-105.10985,40.52539],[-105.10992,40.52552],[-105.10995,40.52558],[-105.11,40.52571],[-105.11001,40.52573],[-105.11005,40.52586],[-105.11007,40.52592],[-105.1101,40.52604],[-105.11012,40.52615],[-105.11014,40.52628],[-105.11015,40.52642],[-105.11015,40.52649],[-105.11016,40.52663],[-105.11016,40.52671],[-105.11016,40.52685],[-105.11016,40.52698],[-105.11016,40.52712],[-105.11016,40.52725],[-105.11016,40.52735],[-105.11016,40.52746],[-105.11016,40.52756],[-105.11016,40.52766],[-105.11016,40.52788],[-105.11016,40.52799],[-105.11017,40.52809],[-105.11017,40.52814],[-105.11019,40.52827],[-105.11022,40.5284],[-105.11023,40.52847],[-105.11027,40.5286],[-105.11028,40.52864],[-105.11034,40.52877],[-105.11034,40.52877],[-105.11035,40.52879],[-105.11039,40.52888],[-105.11045,40.52901],[-105.11046,40.52903],[-105.11053,40.52916],[-105.11054,40.52917],[-105.11062,40.52929],[-105.11063,40.5293],[-105.11071,40.5294],[-105.11078,40.52949],[-105.11086,40.52959],[-105.11097,40.5297],[-105.11104,40.52977],[-105.11116,40.52987],[-105.11123,40.52993],[-105.11133,40.53001],[-105.11146,40.5301],[-105.1115,40.53013],[-105.11164,40.53021],[-105.11165,40.53022],[-105.11171,40.53026],[-105.11186,40.53034],[-105.11187,40.53035],[-105.112,40.53042],[-105.11213,40.53047],[-105.11224,40.53052],[-105.11239,40.53058],[-105.11255,40.53064],[-105.11256,40.53064],[-105.11273,40.53068],[-105.11279,40.5307],[-105.11296,40.53074],[-105.11299,40.53075],[-105.11304,40.53076],[-105.11316,40.53079],[-105.11333,40.53083],[-105.11346,40.53085],[-105.11358,40.53087],[-105.11376,40.53089],[-105.11389,40.5309],[-105.11407,40.53092],[-105.11425,40.53094],[-105.11428,40.53094],[-105.11446,40.53095],[-105.11459,40.53095],[-105.11477,40.53095],[-105.11488,40.53095],[-105.11506,40.53095],[-105.11511,40.53095],[-105.11512,40.53109],[-105.11512,40.53122],[-105.11513,40.53136],[-105.11514,40.5315],[-105.11514,40.53155],[-105.11514,40.53169],[-105.11515,40.53182],[-105.11515,40.53196],[-105.11516,40.5321],[-105.11516,40.53212],[-105.11517,40.53226],[-105.11517,40.53239],[-105.11518,40.53253],[-105.11518,40.53257],[-105.11519,40.5327],[-105.11519,40.53309],[-105.11519,40.53323],[-105.11519,40.53336],[-105.11519,40.5335],[-105.11519,40.53364],[-105.11518,40.53377],[-105.11518,40.53391],[-105.11518,40.53405],[-105.11518,40.53419],[-105.11518,40.53432],[-105.11518,40.53446],[-105.11518,40.53449],[-105.11518,40.53463],[-105.11517,40.53476],[-105.11517,40.5349],[-105.11517,40.53504],[-105.11517,40.53507],[-105.11517,40.53521],[-105.11516,40.53534],[-105.11516,40.53548],[-105.11516,40.53552],[-105.11515,40.53566],[-105.11515,40.53576],[-105.11514,40.5359],[-105.11514,40.53603],[-105.11514,40.53613],[-105.11514,40.53623],[-105.11514,40.53633],[-105.11514,40.53643],[-105.11514,40.53652],[-105.11514,40.53662],[-105.11514,40.53672],[-105.11514,40.53682],[-105.11514,40.53697],[-105.11514,40.53713],[-105.11508,40.53726],[-105.11507,40.53728],[-105.11507,40.53742],[-105.11506,40.53755],[-105.11506,40.53769],[-105.11506,40.53775],[-105.11506,40.53789],[-105.11506,40.53804],[-105.11506,40.53817],[-105.11488,40.53817],[-105.1147,40.53816],[-105.11463,40.53816],[-105.11439,40.53813],[-105.11423,40.53814],[-105.11398,40.53815],[-105.11372,40.53816],[-105.11346,40.53816],[-105.11318,40.53816],[-105.11286,40.53817],[-105.11254,40.53818],[-105.11221,40.53818],[-105.11191,40.53819],[-105.11159,40.53819],[-105.11131,40.5382],[-105.11111,40.5382],[-105.11088,40.53819],[-105.11066,40.53819],[-105.11036,40.53819],[-105.11016,40.53818],[-105.10992,40.53818],[-105.10986,40.53818],[-105.10968,40.53818],[-105.10945,40.53819],[-105.10915,40.53819],[-105.10883,40.53819],[-105.10847,40.53819],[-105.10814,40.53819],[-105.10778,40.53818],[-105.10742,40.53818],[-105.10706,40.53818],[-105.10688,40.53818],[-105.10671,40.53818],[-105.1065,40.53818],[-105.10631,40.53818],[-105.10611,40.53818],[-105.10591,40.53817],[-105.10575,40.53817],[-105.10555,40.53817],[-105.10535,40.53817],[-105.10518,40.53817],[-105.105,40.53816],[-105.1048,40.53816],[-105.10462,40.53816],[-105.10444,40.53816],[-105.10424,40.53815],[-105.10406,40.53815],[-105.10386,40.53815],[-105.10367,40.53815],[-105.10349,40.53814],[-105.10329,40.53814],[-105.10311,40.53814],[-105.10291,40.53813],[-105.10273,40.53813],[-105.10253,40.53813],[-105.10235,40.53812],[-105.10218,40.53811],[-105.10184,40.5381],[-105.10154,40.53809],[-105.10132,40.53809],[-105.10118,40.53809],[-105.1009,40.53812],[-105.10061,40.53813],[-105.10027,40.53814],[-105.10009,40.53814],[-105.09991,40.53814],[-105.09973,40.53814],[-105.09955,40.53814],[-105.09935,40.53814],[-105.09915,40.53813],[-105.09897,40.53813],[-105.09878,40.53813],[-105.0986,40.53813],[-105.0984,40.53813],[-105.0982,40.53813],[-105.09802,40.53813],[-105.09768,40.53811],[-105.09741,40.53809],[-105.09717,40.53809],[-105.09693,40.53809],[-105.09675,40.53808],[-105.09651,40.53808],[-105.09631,40.53808],[-105.0961,40.53807],[-105.09586,40.53805],[-105.09562,40.53804],[-105.09556,40.53804],[-105.09532,40.53805],[-105.09502,40.53807],[-105.09472,40.53807],[-105.09439,40.53808],[-105.09403,40.53807],[-105.09385,40.53807],[-105.09365,40.53807],[-105.09345,40.53807],[-105.09327,40.53807],[-105.09307,40.53807],[-105.09289,40.53807],[-105.09272,40.53807],[-105.09252,40.53807],[-105.09232,40.53807],[-105.09214,40.53807],[-105.09194,40.53807],[-105.09178,40.53807],[-105.09158,40.53807],[-105.09139,40.53807],[-105.09119,40.53807],[-105.09099,40.53807],[-105.09081,40.53807],[-105.09061,40.53807],[-105.09043,40.53806],[-105.09025,40.53806],[-105.08989,40.53805],[-105.08964,40.53805],[-105.0894,40.53805],[-105.08938,40.53805],[-105.08908,40.53805],[-105.08882,40.53805],[-105.0885,40.53806],[-105.08815,40.53806],[-105.08795,40.53806],[-105.08777,40.53806],[-105.08757,40.53806],[-105.08739,40.53806],[-105.08719,40.53806],[-105.087,40.53806],[-105.0868,40.53806],[-105.0866,40.53806],[-105.08638,40.53806],[-105.0862,40.53806],[-105.086,40.53806],[-105.0858,40.53805],[-105.08558,40.53805],[-105.08539,40.53805],[-105.08521,40.53805],[-105.08503,40.53805],[-105.08469,40.53805],[-105.08439,40.53805],[-105.08413,40.53805],[-105.08396,40.53805],[-105.08376,40.53804],[-105.08354,40.53804],[-105.08334,40.53804],[-105.08318,40.53803],[-105.08306,40.53803],[-105.08288,40.53798],[-105.0827,40.53799],[-105.08246,40.53799],[-105.08221,40.53799],[-105.08193,40.53799],[-105.08173,40.53799],[-105.08149,40.53799],[-105.08127,40.53799],[-105.08106,40.53798],[-105.08088,40.53796],[-105.08085,40.53796],[-105.08068,40.53804],[-105.08053,40.53803],[-105.08036,40.53803],[-105.08027,40.53803],[-105.08009,40.53803],[-105.07991,40.53803],[-105.07973,40.53803],[-105.07961,40.53803],[-105.07943,40.53803],[-105.07925,40.53803],[-105.07907,40.53803],[-105.07898,40.53803],[-105.0788,40.53803],[-105.07862,40.53803],[-105.07861,40.53803],[-105.07843,40.53803],[-105.07825,40.53802],[-105.07812,40.53802],[-105.07794,40.53802],[-105.07776,40.53802],[-105.07768,40.53802],[-105.07756,40.53802],[-105.07738,40.53802],[-105.0772,40.53802],[-105.07717,40.53802],[-105.07699,40.53802],[-105.07681,40.53802],[-105.07663,40.53802],[-105.07645,40.53802],[-105.07627,40.53802],[-105.07622,40.53802],[-105.07604,40.53802],[-105.07586,40.53802],[-105.07568,40.53802],[-105.07554,40.53802],[-105.07536,40.53802],[-105.07518,40.53802],[-105.07503,40.53802],[-105.07485,40.53802],[-105.07467,40.53802],[-105.07452,40.53802],[-105.07434,40.53802],[-105.07433,40.53802],[-105.07415,40.53802],[-105.07412,40.53802],[-105.07394,40.53802],[-105.07376,40.53802],[-105.07361,40.53802],[-105.07343,40.53802],[-105.07325,40.53802],[-105.07323,40.53802],[-105.07303,40.53798],[-105.07281,40.53798],[-105.07257,40.53798],[-105.07229,40.53798],[-105.07201,40.53798],[-105.07178,40.53798],[-105.0715,40.538],[-105.0712,40.53802],[-105.0709,40.53802],[-105.07054,40.53801],[-105.07021,40.53801],[-105.06985,40.53801],[-105.06949,40.53801],[-105.06933,40.53801],[-105.06913,40.53801],[-105.06893,40.53801],[-105.06876,40.53801],[-105.06856,40.538],[-105.06836,40.538],[-105.0682,40.53798],[-105.068,40.53798],[-105.06782,40.53798],[-105.06762,40.53797],[-105.06745,40.53797],[-105.06725,40.53797],[-105.06707,40.53796],[-105.06689,40.53796],[-105.06671,40.53796],[-105.06637,40.53796],[-105.06603,40.53796],[-105.06574,40.53795],[-105.06548,40.53795],[-105.06528,40.53795],[-105.06522,40.53794],[-105.065,40.53795],[-105.06478,40.53795],[-105.06454,40.53796],[-105.06425,40.53796],[-105.06395,40.53796],[-105.06359,40.53796],[-105.06325,40.53796],[-105.06307,40.53796],[-105.06288,40.53796],[-105.0627,40.53796],[-105.0625,40.53796],[-105.0623,40.53796],[-105.06212,40.53796],[-105.06194,40.53797],[-105.06174,40.53797],[-105.06156,40.53797],[-105.06136,40.53797],[-105.06119,40.53798],[-105.06083,40.53797],[-105.06047,40.53797],[-105.06017,40.53796],[-105.05992,40.53796],[-105.05966,40.53795],[-105.05946,40.53795],[-105.05922,40.53795],[-105.05896,40.53795],[-105.05874,40.53795],[-105.05862,40.53795],[-105.05848,40.53798],[-105.05831,40.53798],[-105.05809,40.53798],[-105.05781,40.53796],[-105.05757,40.53796],[-105.05729,40.53796],[-105.05699,40.53796],[-105.05664,40.53796],[-105.05646,40.53796],[-105.05626,40.53796],[-105.05606,40.53796],[-105.05584,40.53796],[-105.05568,40.53796],[-105.05548,40.53795],[-105.05528,40.53796],[-105.05511,40.53796],[-105.05491,40.53796],[-105.05459,40.53795],[-105.05431,40.53795],[-105.05411,40.53795],[-105.05393,40.53795],[-105.05371,40.53795],[-105.0535,40.53795],[-105.0532,40.53795],[-105.05284,40.53796],[-105.0525,40.53798],[-105.05219,40.53798],[-105.05195,40.53796],[-105.05175,40.53796],[-105.05173,40.53796],[-105.05155,40.53797],[-105.05148,40.53797],[-105.0513,40.53797],[-105.05112,40.53797],[-105.05094,40.53797],[-105.05076,40.53797],[-105.05058,40.53797],[-105.0504,40.53797],[-105.05035,40.53797],[-105.05017,40.53797],[-105.04999,40.53797],[-105.04981,40.53797],[-105.04963,40.53797],[-105.04945,40.53797],[-105.04927,40.53797],[-105.04909,40.53797],[-105.04891,40.53797],[-105.04873,40.53797],[-105.04855,40.53797],[-105.04837,40.53797],[-105.04819,40.53797],[-105.04801,40.53797],[-105.04783,40.53797],[-105.04765,40.53797],[-105.04747,40.53797],[-105.04735,40.53797],[-105.04717,40.53797],[-105.04699,40.53797],[-105.04688,40.53797],[-105.0467,40.53797],[-105.04652,40.53797],[-105.04634,40.53797],[-105.04616,40.53797],[-105.04598,40.53797],[-105.0458,40.53797],[-105.04562,40.53797],[-105.04544,40.53797],[-105.04526,40.53796],[-105.04508,40.53796],[-105.0449,40.53796],[-105.04472,40.53796],[-105.04454,40.53796],[-105.04436,40.53796],[-105.04418,40.53796],[-105.044,40.53796],[-105.04382,40.53796],[-105.04364,40.53796],[-105.04353,40.53796],[-105.04335,40.53796],[-105.04333,40.53796],[-105.04315,40.53796],[-105.04297,40.53796],[-105.04279,40.53796],[-105.04261,40.53796],[-105.04243,40.53796],[-105.04225,40.53796],[-105.04216,40.53796],[-105.04198,40.53796],[-105.0418,40.53795],[-105.04162,40.53795],[-105.04144,40.53795],[-105.04141,40.53795],[-105.04129,40.53794],[-105.04111,40.53794],[-105.04093,40.53794],[-105.04075,40.53794],[-105.04057,40.53794],[-105.04046,40.53794],[-105.04033,40.53794],[-105.04015,40.53794],[-105.04001,40.53794],[-105.03986,40.53794],[-105.03968,40.53794],[-105.0395,40.53793],[-105.03933,40.53793],[-105.03919,40.53794],[-105.03901,40.53794],[-105.03883,40.53793],[-105.03865,40.53793],[-105.03847,40.53793],[-105.03844,40.53793],[-105.03826,40.53792],[-105.03804,40.53793],[-105.03778,40.53794],[-105.03746,40.53795],[-105.03728,40.53796],[-105.03709,40.53796],[-105.03689,40.53796],[-105.03669,40.53795],[-105.03651,40.53795],[-105.03631,40.53795],[-105.03611,40.53794],[-105.03591,40.53794],[-105.03574,40.53794],[-105.0355,40.53794],[-105.03532,40.53794],[-105.03508,40.53794],[-105.03488,40.53794],[-105.03466,40.53794],[-105.03444,40.53794],[-105.03424,40.53793],[-105.03403,40.53792],[-105.03383,40.53792],[-105.03361,40.53792],[-105.03339,40.53792],[-105.03319,40.53792],[-105.03297,40.53791],[-105.03278,40.53791],[-105.03258,40.53791],[-105.03236,40.5379],[-105.03216,40.5379],[-105.03194,40.5379],[-105.03174,40.5379],[-105.03152,40.5379],[-105.03132,40.5379],[-105.0311,40.5379],[-105.03091,40.5379],[-105.03073,40.53789],[-105.03039,40.53788],[-105.03013,40.53787],[-105.02991,40.53786],[-105.02985,40.53786],[-105.02948,40.53786],[-105.02928,40.53785],[-105.02906,40.53784],[-105.02876,40.53784],[-105.02846,40.53784],[-105.02813,40.53783],[-105.02777,40.53783],[-105.02741,40.53783],[-105.02707,40.53782],[-105.02678,40.53782],[-105.0265,40.53782],[-105.02626,40.53781],[-105.02606,40.5378],[-105.02602,40.53779],[-105.02582,40.53779],[-105.02564,40.53779],[-105.02544,40.53779],[-105.02517,40.53779],[-105.02491,40.53779],[-105.02463,40.53779],[-105.02429,40.53779],[-105.02393,40.53779],[-105.02375,40.53779],[-105.02356,40.5378],[-105.02336,40.5378],[-105.02318,40.5378],[-105.02296,40.5378],[-105.02276,40.5378],[-105.02256,40.5378],[-105.0224,40.53779],[-105.0222,40.53779],[-105.02201,40.53779],[-105.02181,40.53779],[-105.02163,40.53779],[-105.02145,40.53779],[-105.02111,40.53779],[-105.02083,40.53778],[-105.02057,40.53776],[-105.02038,40.53772],[-105.02022,40.53765],[-105.02006,40.53761],[-105.01992,40.53772],[-105.02002,40.53786],[-105.02028,40.53786],[-105.02052,40.53786],[-105.02074,40.53787],[-105.02093,40.5379],[-105.02113,40.5379]]}},{"type":"Feature","properties":{"name":"12:51"},"geometry":{"type":"LineString","coordinates":[[-105.02145,40.53791],[-105.02133,40.53791],[-105.02153,40.53792],[-105.02177,40.53791],[-105.02201,40.53791],[-105.02232,40.5379],[-105.02266,40.53791],[-105.023,40.53791],[-105.0233,40.53792],[-105.02366,40.53792],[-105.02399,40.53793],[-105.02433,40.53794],[-105.02469,40.53794],[-105.02489,40.53794],[-105.02506,40.53794],[-105.02524,40.53794],[-105.02544,40.53794],[-105.02576,40.53794],[-105.0261,40.53795],[-105.02642,40.53796],[-105.02663,40.53796],[-105.02687,40.53798],[-105.02697,40.53798],[-105.02719,40.53798],[-105.02737,40.53798],[-105.02761,40.53798],[-105.02787,40.53798],[-105.02814,40.53798],[-105.02846,40.53798],[-105.02878,40.53799],[-105.02912,40.538],[-105.02942,40.53801],[-105.02974,40.53802],[-105.02999,40.53802],[-105.03021,40.53802],[-105.03043,40.53803],[-105.03063,40.53804],[-105.03067,40.53804],[-105.03063,40.53803],[-105.03074,40.53803],[-105.03085,40.53803],[-105.03096,40.53802],[-105.03108,40.53802],[-105.03122,40.53802],[-105.03136,40.53802],[-105.03151,40.53803],[-105.03165,40.53803],[-105.03179,40.53803],[-105.03193,40.53803],[-105.03208,40.53803],[-105.03222,40.53804],[-105.03236,40.53804],[-105.03251,40.53804],[-105.03265,40.53804],[-105.03279,40.53804],[-105.03293,40.53805],[-105.03308,40.53805],[-105.03322,40.53805],[-105.03336,40.53805],[-105.03348,40.53805],[-105.0336,40.53805],[-105.03372,40.53805],[-105.03384,40.53805],[-105.03396,40.53805],[-105.03408,40.53805],[-105.0342,40.53805],[-105.03432,40.53805],[-105.03444,40.53805],[-105.03456,40.53805],[-105.03468,40.53805],[-105.0348,40.53805],[-105.03492,40.53805],[-105.03504,40.53804],[-105.03516,40.53804],[-105.03528,40.53804],[-105.03543,40.53804],[-105.03557,40.53804],[-105.03557,40.53804],[-105.03578,40.53807],[-105.03598,40.53807],[-105.03619,40.53807],[-105.0364,40.53807],[-105.0366,40.53807],[-105.03679,40.53806],[-105.03698,40.53806],[-105.03718,40.53805],[-105.03736,40.53805],[-105.03756,40.53804],[-105.03775,40.53804],[-105.03794,40.53803],[-105.03813,40.53803],[-105.03824,40.53803],[-105.03836,40.53804],[-105.03848,40.53804],[-105.0386,40.53804],[-105.03871,40.53805],[-105.03883,40.53805],[-105.03895,40.53806],[-105.03907,40.53806],[-105.03918,40.53807],[-105.0393,40.53807],[-105.03942,40.53807],[-105.03954,40.53808],[-105.03965,40.53808],[-105.03977,40.53809],[-105.03989,40.53809],[-105.04001,40.53809],[-105.04019,40.53805],[-105.04037,40.53805],[-105.04055,40.53805],[-105.04073,40.53805],[-105.04089,40.53805],[-105.04107,40.53805],[-105.04125,40.53805],[-105.04129,40.53805],[-105.04141,40.53805],[-105.04159,40.53805],[-105.04177,40.53805],[-105.04195,40.53805],[-105.04213,40.53805],[-105.04231,40.53805],[-105.04249,40.53805],[-105.04267,40.53805],[-105.04285,40.53805],[-105.04303,40.53805],[-105.04321,40.53805],[-105.04333,40.53805],[-105.04351,40.53806],[-105.04353,40.53806],[-105.04371,40.53806],[-105.04389,40.53806],[-105.04407,40.53806],[-105.04425,40.53806],[-105.04443,40.53806],[-105.04461,40.53806],[-105.04479,40.53806],[-105.04497,40.53806],[-105.04515,40.53806],[-105.04533,40.53806],[-105.04551,40.53806],[-105.04569,40.53806],[-105.04587,40.53806],[-105.04605,40.53806],[-105.04623,40.53806],[-105.04641,40.53806],[-105.04659,40.53806],[-105.04677,40.53806],[-105.04688,40.53806],[-105.04706,40.53806],[-105.0471,40.53806],[-105.04728,40.53806],[-105.04746,40.53806],[-105.04764,40.53806],[-105.04782,40.53806],[-105.048,40.53806],[-105.04818,40.53806],[-105.04836,40.53806],[-105.04854,40.53806],[-105.04872,40.53806],[-105.0489,40.53806],[-105.04908,40.53806],[-105.04926,40.53806],[-105.04944,40.53806],[-105.04962,40.53806],[-105.0498,40.53806],[-105.04998,40.53806],[-105.05016,40.53806],[-105.05034,40.53806],[-105.05052,40.53807],[-105.0507,40.53807],[-105.05088,40.53807],[-105.05093,40.53807],[-105.05111,40.53807],[-105.05129,40.53807],[-105.05147,40.53807],[-105.05165,40.53807],[-105.05183,40.53807],[-105.05199,40.53807],[-105.05217,40.53807],[-105.05235,40.53807],[-105.05236,40.53807],[-105.05246,40.53807],[-105.05264,40.53811],[-105.05284,40.53809],[-105.05304,40.53809],[-105.0533,40.53809],[-105.05358,40.53809],[-105.05392,40.53809],[-105.05423,40.53809],[-105.05453,40.53809],[-105.05485,40.53809],[-105.05519,40.53809],[-105.05552,40.53809],[-105.05584,40.53809],[-105.05616,40.53809],[-105.05646,40.53809],[-105.05674,40.53809],[-105.05701,40.53809],[-105.05721,40.53809],[-105.05741,40.53809],[-105.05761,40.53809],[-105.05779,40.53809],[-105.05805,40.53809],[-105.05835,40.53809],[-105.05866,40.5381],[-105.05892,40.53811],[-105.05912,40.53811],[-105.05914,40.53811],[-105.05934,40.53804],[-105.05956,40.53803],[-105.05982,40.53804],[-105.06011,40.53804],[-105.06045,40.53803],[-105.06079,40.53803],[-105.06115,40.53804],[-105.06132,40.53804],[-105.06152,40.53804],[-105.0617,40.53804],[-105.06188,40.53804],[-105.06206,40.53804],[-105.06244,40.53804],[-105.06279,40.53804],[-105.06297,40.53804],[-105.06317,40.53804],[-105.06335,40.53804],[-105.06351,40.53804],[-105.06371,40.53804],[-105.06391,40.53804],[-105.06411,40.53804],[-105.06428,40.53804],[-105.06446,40.53804],[-105.06464,40.53805],[-105.06484,40.53805],[-105.06502,40.53805],[-105.06522,40.53805],[-105.06542,40.53805],[-105.06576,40.53805],[-105.06609,40.53805],[-105.06637,40.53806],[-105.06657,40.53806],[-105.06667,40.53807],[-105.06683,40.53809],[-105.06699,40.53809],[-105.06721,40.53809],[-105.06746,40.53809],[-105.06778,40.53809],[-105.06808,40.53809],[-105.0684,40.5381],[-105.06872,40.53811],[-105.06901,40.53811],[-105.06933,40.53812],[-105.06965,40.53813],[-105.06993,40.53813],[-105.07023,40.53813],[-105.0705,40.53814],[-105.07078,40.53815],[-105.07106,40.53816],[-105.07134,40.53816],[-105.0716,40.53815],[-105.07185,40.53813],[-105.07211,40.53813],[-105.07237,40.53813],[-105.07257,40.53813],[-105.07277,40.53814],[-105.07281,40.53814],[-105.07299,40.53814],[-105.07323,40.53814],[-105.0734,40.53814],[-105.0736,40.53814],[-105.07388,40.53814],[-105.0741,40.53814],[-105.07436,40.53814],[-105.07464,40.53814],[-105.07492,40.53815],[-105.07521,40.53815],[-105.07551,40.53815],[-105.07581,40.53814],[-105.07611,40.53814],[-105.07636,40.53814],[-105.07656,40.53815],[-105.07682,40.53815],[-105.07704,40.53815],[-105.07724,40.53815],[-105.0775,40.53815],[-105.07776,40.53816],[-105.07803,40.53816],[-105.07831,40.53816],[-105.07857,40.53816],[-105.07883,40.53816],[-105.07907,40.53817],[-105.07925,40.53818],[-105.07945,40.53818],[-105.07954,40.53818],[-105.0797,40.53824],[-105.07992,40.53823],[-105.08016,40.53823],[-105.08042,40.53824],[-105.08066,40.53824],[-105.08092,40.53824],[-105.08117,40.53824],[-105.08143,40.53824],[-105.08169,40.53824],[-105.08189,40.53824],[-105.08213,40.53824],[-105.08236,40.53824],[-105.08257,40.53824],[-105.0828,40.53824],[-105.08308,40.53824],[-105.08332,40.53825],[-105.08356,40.53826],[-105.08376,40.53827],[-105.08378,40.53827],[-105.08404,40.53825],[-105.08423,40.53825],[-105.08449,40.53825],[-105.08473,40.53825],[-105.08499,40.53825],[-105.08529,40.53825],[-105.08558,40.53825],[-105.0859,40.53825],[-105.08624,40.53826],[-105.08658,40.53826],[-105.08689,40.53826],[-105.08723,40.53826],[-105.08755,40.53826],[-105.08787,40.53827],[-105.08817,40.53827],[-105.08846,40.53827],[-105.08872,40.53828],[-105.0889,40.53829],[-105.08908,40.53829],[-105.08932,40.53827],[-105.08956,40.53827],[-105.08982,40.53827],[-105.09011,40.53827],[-105.09041,40.53827],[-105.09075,40.53827],[-105.09105,40.53827],[-105.09131,40.53828],[-105.09153,40.53829],[-105.0917,40.53829],[-105.09188,40.53829],[-105.0921,40.53828],[-105.09234,40.53828],[-105.09266,40.53828],[-105.09297,40.53829],[-105.09329,40.53828],[-105.09361,40.53829],[-105.09393,40.53829],[-105.09423,40.53829],[-105.0945,40.53829],[-105.09478,40.53829],[-105.09504,40.53829],[-105.09532,40.53829],[-105.09552,40.53829],[-105.09572,40.53829],[-105.09592,40.53829],[-105.0961,40.53829],[-105.09627,40.53829],[-105.09649,40.53829],[-105.09669,40.53833],[-105.09693,40.53834],[-105.09697,40.53834],[-105.09717,40.53832],[-105.09737,40.53829],[-105.09762,40.5383],[-105.0979,40.53829],[-105.09822,40.5383],[-105.09856,40.53829],[-105.09876,40.5383],[-105.09893,40.5383],[-105.09914,40.5383],[-105.09929,40.5383],[-105.09949,40.5383],[-105.09967,40.5383],[-105.09985,40.5383],[-105.10001,40.5383],[-105.10021,40.5383],[-105.10041,40.5383],[-105.10058,40.5383],[-105.10078,40.5383],[-105.10112,40.5383],[-105.10144,40.53831],[-105.10168,40.53832],[-105.1019,40.53833],[-105.10194,40.53833],[-105.10214,40.53831],[-105.10239,40.5383],[-105.10267,40.5383],[-105.10301,40.5383],[-105.10335,40.53829],[-105.10354,40.53829],[-105.10374,40.53829],[-105.10392,40.53829],[-105.10412,40.53829],[-105.1043,40.53829],[-105.1045,40.53829],[-105.10472,40.5383],[-105.1049,40.5383],[-105.1051,40.5383],[-105.10527,40.5383],[-105.10547,40.5383],[-105.10565,40.5383],[-105.10585,40.5383],[-105.10605,40.5383],[-105.10621,40.5383],[-105.10641,40.53831],[-105.10658,40.53831],[-105.10678,40.53831],[-105.10696,40.53831],[-105.10716,40.53831],[-105.10734,40.53832],[-105.10752,40.53832],[-105.10772,40.53832],[-105.10792,40.53833],[-105.1081,40.53833],[-105.10829,40.53833],[-105.10847,40.53833],[-105.10867,40.53833],[-105.10883,40.53833],[-105.10903,40.53833],[-105.10937,40.53833],[-105.10972,40.53833],[-105.11006,40.53834],[-105.11032,40.53834],[-105.1106,40.53836],[-105.11078,40.53836],[-105.1109,40.53836],[-105.11108,40.53825],[-105.11126,40.53825],[-105.11144,40.53825],[-105.11154,40.53825],[-105.11172,40.53825],[-105.1119,40.53825],[-105.11202,40.53825],[-105.1122,40.53824],[-105.11224,40.53824],[-105.11242,40.53823],[-105.11251,40.53823],[-105.11255,40.53823],[-105.11273,40.53822],[-105.11279,40.53822],[-105.11297,40.53822],[-105.11315,40.53822],[-105.11327,40.53822],[-105.11334,40.53822],[-105.11343,40.53827],[-105.11361,40.53827],[-105.11379,40.53827],[-105.11397,40.53827],[-105.11415,40.53827],[-105.11433,40.53827],[-105.11451,40.53827],[-105.11469,40.53827],[-105.11487,40.53827],[-105.11505,40.53827],[-105.11506,40.53827],[-105.1152,40.53827],[-105.1152,40.53817],[-105.1152,40.53804],[-105.1152,40.5379],[-105.1152,40.53776],[-105.1152,40.53764],[-105.1152,40.53752],[-105.1152,40.5374],[-105.1152,40.53728],[-105.11515,40.53715],[-105.11514,40.53713],[-105.11514,40.53697],[-105.11514,40.53682],[-105.11514,40.53672],[-105.11514,40.53662],[-105.11514,40.53652],[-105.11514,40.53643],[-105.11514,40.53633],[-105.11514,40.53623],[-105.11514,40.53613],[-105.11514,40.53603],[-105.11514,40.53589],[-105.11515,40.53576],[-105.11515,40.53569],[-105.11516,40.53555],[-105.11516,40.53552],[-105.11516,40.53538],[-105.11517,40.53525],[-105.11517,40.53511],[-105.11517,40.53507],[-105.11517,40.53493],[-105.11517,40.5348],[-105.11518,40.53466],[-105.11518,40.53452],[-105.11518,40.53449],[-105.11518,40.53435],[-105.11518,40.53422],[-105.11518,40.53408],[-105.11518,40.53394],[-105.11518,40.53381],[-105.11519,40.53367],[-105.11519,40.53353],[-105.11519,40.53339],[-105.11519,40.53326],[-105.11519,40.53312],[-105.11519,40.53309],[-105.11519,40.53295],[-105.11518,40.53282],[-105.11518,40.53268],[-105.11518,40.53257],[-105.11517,40.53243],[-105.11516,40.5323],[-105.11516,40.53223],[-105.11516,40.53212],[-105.11516,40.53198],[-105.11515,40.53185],[-105.11515,40.53171],[-105.11514,40.53157],[-105.11514,40.53155],[-105.11513,40.53141],[-105.11513,40.53128],[-105.11512,40.53114],[-105.11511,40.531],[-105.11511,40.53095],[-105.11511,40.53085],[-105.11495,40.53085],[-105.11477,40.53084],[-105.11468,40.53084],[-105.1145,40.53083],[-105.1144,40.53083],[-105.11422,40.53082],[-105.11406,40.53081],[-105.11388,40.53079],[-105.1138,40.53078],[-105.11365,40.53076],[-105.11348,40.53074],[-105.11337,40.53072],[-105.1132,40.53069],[-105.11309,40.53067],[-105.11294,40.53064],[-105.11279,40.5306],[-105.11262,40.53055],[-105.11255,40.53053],[-105.11239,40.53047],[-105.11232,40.53044],[-105.11216,40.53037],[-105.11215,40.53037],[-105.112,40.5303],[-105.11196,40.53028],[-105.11182,40.5302],[-105.1118,40.53019],[-105.11166,40.5301],[-105.11159,40.53006],[-105.11146,40.52997],[-105.11139,40.52992],[-105.11127,40.52982],[-105.11119,40.52975],[-105.11108,40.52964],[-105.11104,40.52961],[-105.11094,40.5295],[-105.11092,40.52948],[-105.11084,40.52938],[-105.11075,40.52926],[-105.11075,40.52926],[-105.11067,40.52914],[-105.11066,40.52913],[-105.11059,40.529],[-105.11058,40.52899],[-105.11051,40.52886],[-105.1105,40.52885],[-105.11045,40.52872],[-105.11042,40.52864],[-105.11038,40.52854],[-105.11034,40.52841],[-105.11034,40.52839],[-105.11031,40.52826],[-105.11031,40.52824],[-105.11029,40.5281],[-105.11029,40.52808],[-105.11028,40.52802],[-105.11028,40.52789],[-105.11028,40.52776],[-105.11028,40.52765],[-105.11028,40.52755],[-105.11028,40.52744],[-105.11028,40.52733],[-105.11028,40.52725],[-105.11028,40.52717],[-105.11028,40.52701],[-105.11028,40.52684],[-105.11028,40.52676],[-105.11028,40.52667],[-105.11028,40.52658],[-105.11028,40.5265],[-105.11027,40.52636],[-105.11027,40.52628],[-105.11025,40.52614],[-105.11024,40.52608],[-105.1102,40.52595],[-105.11018,40.52587],[-105.11014,40.52574],[-105.11011,40.52566],[-105.11007,40.52557],[-105.11002,40.52545],[-105.10995,40.52532],[-105.10991,40.52525],[-105.10982,40.52513],[-105.10977,40.52506],[-105.10973,40.525],[-105.10963,40.52488],[-105.10959,40.52483],[-105.10954,40.52478],[-105.10947,40.52471],[-105.10936,40.5246],[-105.1093,40.52455],[-105.10918,40.52445],[-105.10914,40.52442],[-105.10901,40.52432],[-105.10896,40.52428],[-105.10888,40.52423],[-105.10874,40.52414],[-105.10871,40.52412],[-105.10856,40.52405],[-105.10847,40.524],[-105.10833,40.52394],[-105.10823,40.52389],[-105.10807,40.52383],[-105.10799,40.5238],[-105.10782,40.52375],[-105.10776,40.52373],[-105.10759,40.52368],[-105.1075,40.52366],[-105.10733,40.52363],[-105.10724,40.52361],[-105.1071,40.52359],[-105.10698,40.52357],[-105.1068,40.52356],[-105.10673,40.52355],[-105.10655,40.52354],[-105.10644,40.52353],[-105.10641,40.52353],[-105.10639,40.52353],[-105.10638,40.52354],[-105.10629,40.52358],[-105.1062,40.52358],[-105.10602,40.52358],[-105.10589,40.52358],[-105.10571,40.52358],[-105.10562,40.52358],[-105.10544,40.52358],[-105.10534,40.52358],[-105.10516,40.52358],[-105.10498,40.52358],[-105.1048,40.52358],[-105.10472,40.52353],[-105.10454,40.52353],[-105.10436,40.52354],[-105.10418,40.52354],[-105.104,40.52354],[-105.10393,40.52354],[-105.10375,40.52354],[-105.10357,40.52354],[-105.10339,40.52354],[-105.10335,40.52354],[-105.10317,40.52354],[-105.10299,40.52354],[-105.10281,40.52354],[-105.10267,40.52354],[-105.10249,40.52354],[-105.10248,40.52354],[-105.1023,40.52354],[-105.10212,40.52354],[-105.10194,40.52354],[-105.10176,40.52354],[-105.10158,40.52354],[-105.1014,40.52354],[-105.10122,40.52354],[-105.10104,40.52354],[-105.10086,40.52354],[-105.10068,40.52354],[-105.1005,40.52354],[-105.10032,40.52354],[-105.10014,40.52354],[-105.10008,40.52354],[-105.0999,40.52354],[-105.09972,40.52354],[-105.09954,40.52354],[-105.09936,40.52354],[-105.09935,40.52354],[-105.09917,40.52354],[-105.09899,40.52354],[-105.09896,40.52354],[-105.09878,40.52354],[-105.0986,40.52354],[-105.09855,40.52354],[-105.09837,40.52353],[-105.09819,40.52353],[-105.09801,40.52352],[-105.09783,40.52351],[-105.09777,40.52351],[-105.09766,40.52351],[-105.09748,40.5235],[-105.0973,40.52349],[-105.09722,40.52349],[-105.09719,40.52349],[-105.09701,40.52349],[-105.09683,40.52349],[-105.09665,40.52349],[-105.09647,40.52349],[-105.09629,40.52349],[-105.09611,40.52349],[-105.0961,40.52349],[-105.09592,40.52349],[-105.09574,40.52349],[-105.09556,40.52349],[-105.09538,40.52349],[-105.09535,40.52349],[-105.09506,40.52343],[-105.09484,40.52344],[-105.09464,40.52345],[-105.09444,40.52346],[-105.09427,40.52346],[-105.09405,40.52346],[-105.09379,40.52347],[-105.09359,40.52347],[-105.09335,40.52348],[-105.09314,40.52348],[-105.09289,40.52348],[-105.09266,40.52349],[-105.09246,40.52349],[-105.09226,40.52349],[-105.09206,40.52349],[-105.09184,40.52348],[-105.09164,40.52347],[-105.09157,40.52347],[-105.09137,40.52348],[-105.09117,40.52348],[-105.09093,40.52348],[-105.09063,40.52349],[-105.09027,40.52349],[-105.09007,40.52349],[-105.08989,40.52349],[-105.08968,40.52349],[-105.08948,40.52349],[-105.08926,40.52348],[-105.08904,40.52348],[-105.08882,40.52348],[-105.08864,40.52348],[-105.08843,40.52348],[-105.08821,40.52348],[-105.08803,40.52348],[-105.08769,40.52348],[-105.08745,40.52348],[-105.08725,40.52347],[-105.08721,40.52347],[-105.08704,40.52351],[-105.08682,40.52351],[-105.08654,40.52351],[-105.08622,40.52351],[-105.08586,40.5235],[-105.08568,40.52351],[-105.08549,40.52351],[-105.08531,40.52351],[-105.08511,40.52351],[-105.08491,40.52351],[-105.08475,40.52351],[-105.08455,40.52351],[-105.08435,40.52351],[-105.08415,40.52351],[-105.08396,40.52351],[-105.08376,40.52351],[-105.0836,40.52351],[-105.0834,40.52351],[-105.0832,40.52351],[-105.08302,40.52351],[-105.08282,40.52351],[-105.08262,40.52351],[-105.08243,40.52351],[-105.08225,40.52351],[-105.08207,40.52351],[-105.08187,40.52351],[-105.08171,40.52351],[-105.08153,40.52352],[-105.08117,40.52351],[-105.08088,40.52351],[-105.0806,40.52351],[-105.08034,40.52349],[-105.08012,40.52348],[-105.07996,40.52348],[-105.07976,40.52352],[-105.07958,40.52352],[-105.07933,40.52352],[-105.07907,40.52352],[-105.07875,40.52352],[-105.07847,40.5235],[-105.07817,40.52349],[-105.07792,40.52346],[-105.07768,40.52346],[-105.07746,40.52343],[-105.07728,40.52336],[-105.0772,40.52322],[-105.07722,40.52307],[-105.07722,40.52291],[-105.07722,40.52276],[-105.07722,40.52261],[-105.07722,40.5226],[-105.0772,40.52244],[-105.0772,40.52229],[-105.0772,40.52212],[-105.07718,40.52193],[-105.07718,40.52172],[-105.07718,40.52149],[-105.07718,40.52125],[-105.07718,40.521],[-105.07718,40.52074],[-105.0772,40.52047],[-105.0772,40.5202],[-105.0772,40.52006],[-105.0772,40.51992],[-105.0772,40.51978],[-105.0772,40.51964],[-105.0772,40.51949],[-105.0772,40.51935],[-105.0772,40.51922],[-105.0772,40.51907],[-105.07722,40.51881],[-105.07724,40.51855],[-105.07724,40.51831],[-105.07726,40.51808],[-105.07728,40.51789],[-105.07728,40.51775],[-105.0773,40.51759],[-105.0775,40.51754],[-105.07768,40.51754],[-105.07793,40.51754],[-105.07819,40.51754],[-105.07839,40.51754],[-105.07865,40.51754],[-105.07891,40.51755],[-105.07909,40.51756],[-105.07935,40.51756],[-105.07958,40.51758],[-105.07966,40.51769],[-105.07966,40.51783],[-105.07964,40.51798],[-105.07966,40.51815],[-105.0798,40.51826],[-105.08002,40.51828],[-105.08018,40.51831],[-105.08026,40.51832]]}},{"type":"Feature","properties":{"name":"14:01"},"geometry":{"type":"LineString","coordinates":[[-105.07861,40.59002],[-105.07859,40.59012],[-105.07859,40.59024],[-105.07857,40.59029],[-105.07852,40.59036],[-105.07843,40.59042],[-105.07841,40.59047],[-105.0784,40.59051],[-105.07841,40.59065],[-105.07841,40.59078],[-105.07841,40.59081],[-105.07823,40.59081],[-105.07814,40.59081],[-105.07803,40.5908],[-105.07785,40.5908],[-105.07767,40.5908],[-105.07758,40.5908],[-105.0774,40.5908],[-105.07722,40.59079],[-105.07708,40.59079],[-105.07692,40.5908],[-105.07676,40.59073],[-105.07669,40.5907],[-105.07659,40.59066],[-105.07645,40.59057],[-105.07645,40.59057],[-105.07631,40.59048],[-105.07624,40.59043],[-105.07611,40.59034],[-105.07597,40.59025],[-105.07584,40.59015],[-105.07571,40.59006],[-105.07558,40.58997],[-105.07551,40.58992],[-105.07537,40.58983],[-105.07524,40.58974],[-105.0751,40.58965],[-105.07497,40.58956],[-105.07483,40.58947],[-105.07469,40.58938],[-105.07456,40.58929],[-105.07442,40.5892],[-105.07429,40.58911],[-105.07419,40.58905],[-105.07406,40.58896],[-105.07398,40.58891],[-105.07388,40.58873],[-105.0737,40.58864],[-105.0735,40.58852],[-105.07331,40.58837],[-105.07305,40.5882],[-105.07277,40.58802],[-105.07265,40.58793],[-105.07251,40.58784],[-105.07225,40.58765],[-105.07201,40.58751],[-105.07183,40.58738],[-105.0717,40.58729],[-105.07154,40.58718],[-105.07134,40.58725],[-105.07116,40.58738],[-105.071,40.58754],[-105.07084,40.58772],[-105.07064,40.5879],[-105.07049,40.58805],[-105.07027,40.58819],[-105.07001,40.58829],[-105.06973,40.58837],[-105.06939,40.58844],[-105.06907,40.58851],[-105.06874,40.58858],[-105.0684,40.58862],[-105.0682,40.58866],[-105.06802,40.58867],[-105.06782,40.58869],[-105.06762,40.58871],[-105.06746,40.58872],[-105.06728,40.58873],[-105.06695,40.58874],[-105.06663,40.58873],[-105.06643,40.58873],[-105.06641,40.58873],[-105.06621,40.58873],[-105.06601,40.58874],[-105.06574,40.58873],[-105.06542,40.58872],[-105.06504,40.58872],[-105.06484,40.58873],[-105.06464,40.58873],[-105.06446,40.58873],[-105.06425,40.58873],[-105.06403,40.58873],[-105.06383,40.58873],[-105.06359,40.58873],[-105.06339,40.58873],[-105.06319,40.58873],[-105.06296,40.58873],[-105.06274,40.58873],[-105.06254,40.58873],[-105.0623,40.58873],[-105.0621,40.58873],[-105.06188,40.58873],[-105.06164,40.58873],[-105.06142,40.58873],[-105.06121,40.58873],[-105.06097,40.58872],[-105.06075,40.58872],[-105.06051,40.58872],[-105.06031,40.58872],[-105.06007,40.58872],[-105.05985,40.58872],[-105.05966,40.5887],[-105.05948,40.5887],[-105.05914,40.58869],[-105.05888,40.58867],[-105.0587,40.58867],[-105.05854,40.58866],[-105.05831,40.58868],[-105.05813,40.58869],[-105.05791,40.58869],[-105.05773,40.58868],[-105.05749,40.58869],[-105.05725,40.58869],[-105.05696,40.58868],[-105.05666,40.58869],[-105.0563,40.58867],[-105.05594,40.58864],[-105.05562,40.58857],[-105.05531,40.5885],[-105.05509,40.58843],[-105.05491,40.58837],[-105.05491,40.58837],[-105.05469,40.5883],[-105.05449,40.58823],[-105.05425,40.58812],[-105.05395,40.588],[-105.05366,40.58787],[-105.05346,40.58783],[-105.05326,40.58776],[-105.0531,40.58769],[-105.0529,40.58762],[-105.05272,40.58755],[-105.05252,40.58747],[-105.05235,40.58739],[-105.05217,40.58731],[-105.05199,40.58723],[-105.05185,40.58716],[-105.05159,40.58704],[-105.05141,40.58694],[-105.05137,40.58693],[-105.05121,40.58687],[-105.05101,40.5868],[-105.05085,40.58671],[-105.05066,40.58662],[-105.05048,40.58654],[-105.05022,40.58644],[-105.05002,40.58636],[-105.04978,40.58627],[-105.04954,40.58616],[-105.04927,40.58605],[-105.04901,40.58594],[-105.04873,40.58583],[-105.04843,40.58572],[-105.04815,40.58559],[-105.04792,40.58546],[-105.04767,40.58535],[-105.04744,40.58523],[-105.04718,40.5851],[-105.0469,40.58497],[-105.04662,40.58483],[-105.04636,40.5847],[-105.04609,40.58456],[-105.04585,40.58444],[-105.04569,40.58436],[-105.04559,40.58432],[-105.04541,40.58423],[-105.04521,40.58413],[-105.04497,40.58401],[-105.0447,40.58386],[-105.0444,40.58371],[-105.04422,40.58363],[-105.04406,40.58355],[-105.04392,40.58347],[-105.04376,40.5834],[-105.04358,40.58331],[-105.04342,40.58324],[-105.04317,40.5831],[-105.04295,40.58299],[-105.04277,40.58291],[-105.04277,40.58291],[-105.04257,40.5828],[-105.04235,40.5827],[-105.04211,40.58257],[-105.04179,40.58244],[-105.04152,40.58228],[-105.04136,40.5822],[-105.0412,40.58212],[-105.041,40.58204],[-105.04084,40.58195],[-105.04068,40.58187],[-105.04052,40.58179],[-105.04032,40.58169],[-105.04014,40.58161],[-105.03997,40.58154],[-105.03975,40.58147],[-105.03959,40.58141],[-105.03937,40.58137],[-105.03915,40.58132],[-105.03895,40.58129],[-105.03874,40.58127],[-105.03852,40.58124],[-105.0383,40.58123],[-105.0381,40.58123],[-105.03788,40.58124],[-105.03766,40.58127],[-105.03746,40.58129],[-105.03724,40.58131],[-105.03705,40.58135],[-105.03687,40.58138],[-105.03663,40.58141],[-105.03645,40.58144],[-105.03625,40.58147],[-105.03605,40.5815],[-105.03587,40.58154],[-105.03567,40.58157],[-105.0355,40.58158],[-105.03518,40.58164],[-105.03496,40.58167],[-105.0348,40.58169],[-105.03454,40.58174],[-105.03431,40.58177],[-105.03403,40.58182],[-105.03375,40.58185],[-105.03343,40.58185],[-105.03317,40.58188],[-105.03297,40.58191],[-105.03278,40.5819],[-105.03267,40.58169],[-105.03266,40.58151],[-105.03266,40.58136],[-105.03271,40.5812],[-105.03266,40.58103],[-105.03246,40.58097],[-105.03226,40.58097],[-105.032,40.581],[-105.03178,40.58099],[-105.03158,40.58096],[-105.03156,40.58096],[-105.03138,40.581],[-105.03118,40.58102],[-105.03091,40.58103],[-105.03057,40.58106],[-105.03037,40.58107],[-105.03017,40.58108],[-105.02997,40.5811],[-105.02975,40.58111],[-105.02954,40.58113],[-105.0293,40.58114],[-105.02908,40.58115],[-105.02886,40.58116],[-105.02866,40.58116],[-105.02844,40.58115],[-105.02823,40.58115],[-105.02803,40.58115],[-105.02769,40.58115],[-105.02741,40.58115],[-105.02723,40.58111],[-105.02705,40.58104],[-105.02683,40.581],[-105.02657,40.58099],[-105.0263,40.58098],[-105.02612,40.58097],[-105.02604,40.58097],[-105.02584,40.58099],[-105.02564,40.58099],[-105.02538,40.58098],[-105.02506,40.58097],[-105.02471,40.58097],[-105.02455,40.58097],[-105.02435,40.58097],[-105.02413,40.58097],[-105.02393,40.58096],[-105.02371,40.58096],[-105.02352,40.58096],[-105.0233,40.58096],[-105.0231,40.58096],[-105.0229,40.58096],[-105.02268,40.58096],[-105.0225,40.58095],[-105.0223,40.58095],[-105.02209,40.58095],[-105.02189,40.58095],[-105.02169,40.58095],[-105.02151,40.58095],[-105.02133,40.58095],[-105.02113,40.58094],[-105.02095,40.58094],[-105.02078,40.58093],[-105.02042,40.58093],[-105.02008,40.58093],[-105.01974,40.58093],[-105.01948,40.58092],[-105.01932,40.58092],[-105.01923,40.58092],[-105.01904,40.58095],[-105.01886,40.58095],[-105.0187,40.58095],[-105.01855,40.58095],[-105.01854,40.58105],[-105.01853,40.58115],[-105.01835,40.58115],[-105.01817,40.58114],[-105.01799,40.58114],[-105.01781,40.58114],[-105.01777,40.58114],[-105.01774,40.58114],[-105.01756,40.58114],[-105.01738,40.58114],[-105.0172,40.58114],[-105.01702,40.58113],[-105.01684,40.58113],[-105.01666,40.58113],[-105.01648,40.58113],[-105.0163,40.58113],[-105.01612,40.58112],[-105.01594,40.58112],[-105.01576,40.58112],[-105.0157,40.58112],[-105.01552,40.58112],[-105.01534,40.58112],[-105.01516,40.58112],[-105.01499,40.58112],[-105.01481,40.58112],[-105.01463,40.58111],[-105.01445,40.58111],[-105.01427,40.58111],[-105.01409,40.58111],[-105.01391,40.5811],[-105.01373,40.5811],[-105.01355,40.5811],[-105.01337,40.58109],[-105.01319,40.58109],[-105.01301,40.58109],[-105.01283,40.58109],[-105.01265,40.58108],[-105.01247,40.58108],[-105.01241,40.58108],[-105.01223,40.58108],[-105.01205,40.58108],[-105.01187,40.58108],[-105.01169,40.58108],[-105.01151,40.58107],[-105.01133,40.58107],[-105.01115,40.58107],[-105.01097,40.58107],[-105.01079,40.58107],[-105.01066,40.58107],[-105.01048,40.58107],[-105.0103,40.58107],[-105.01012,40.58106],[-105.00994,40.58106],[-105.00976,40.58106],[-105.00958,40.58106],[-105.0094,40.58105],[-105.00922,40.58105],[-105.00904,40.58105],[-105.00886,40.58105],[-105.00868,40.58104],[-105.0085,40.58104],[-105.00832,40.58104],[-105.00814,40.58104],[-105.00796,40.58104],[-105.00778,40.58103],[-105.0076,40.58103],[-105.00742,40.58103],[-105.00724,40.58103],[-105.00705,40.58102],[-105.00687,40.58102],[-105.00678,40.58102],[-105.00659,40.58102],[-105.00642,40.58106],[-105.00635,40.58107],[-105.00617,40.58107],[-105.00607,40.58107],[-105.00603,40.58108],[-105.00589,40.58109],[-105.00581,40.5811],[-105.00574,40.58111],[-105.00564,40.58117],[-105.00564,40.58131],[-105.00559,40.58135],[-105.0055,40.58139],[-105.00543,40.58142],[-105.00535,40.58145],[-105.0053,40.58146],[-105.00529,40.58146],[-105.00524,40.58147],[-105.00518,40.58148],[-105.00507,40.58149],[-105.00492,40.58151],[-105.00492,40.58163],[-105.00492,40.58176],[-105.00492,40.5819],[-105.00492,40.58203]]}},{"type":"Feature","properties":{"name":"14:51"},"geometry":{"type":"LineString","coordinates":[[-105.00488,40.58203],[-105.0049,40.58218],[-105.0049,40.58238],[-105.0049,40.58252],[-105.0049,40.5827],[-105.00492,40.58288],[-105.00492,40.58309],[-105.0049,40.58325],[-105.0049,40.58342],[-105.0049,40.5836],[-105.0049,40.58379],[-105.0049,40.58398],[-105.0049,40.58418],[-105.0049,40.58439],[-105.0049,40.5846],[-105.0049,40.58479],[-105.0049,40.58501],[-105.0049,40.58522],[-105.0049,40.58545],[-105.0049,40.58566],[-105.0049,40.58587],[-105.0049,40.58605],[-105.0049,40.5862],[-105.00482,40.58634],[-105.0046,40.58638],[-105.00442,40.58638],[-105.00419,40.58637],[-105.00396,40.58636],[-105.00367,40.58636],[-105.00339,40.58635],[-105.00313,40.58634],[-105.00283,40.58634],[-105.00259,40.58633],[-105.00238,40.58633],[-105.00216,40.58633],[-105.00198,40.58633],[-105.00178,40.5864],[-105.00174,40.58659],[-105.00178,40.58678],[-105.00178,40.58699],[-105.00178,40.58721],[-105.00178,40.58742],[-105.0018,40.58765],[-105.0018,40.58789],[-105.00182,40.58812],[-105.00184,40.58834],[-105.00184,40.58854],[-105.00182,40.58874],[-105.00182,40.58897],[-105.0018,40.58922],[-105.00178,40.58948],[-105.00178,40.58962],[-105.00178,40.58976],[-105.00178,40.58989],[-105.00174,40.59004],[-105.00174,40.59017],[-105.00174,40.59033],[-105.00174,40.59047],[-105.00174,40.59061],[-105.00172,40.59074],[-105.00172,40.59089],[-105.00172,40.59104],[-105.0017,40.59118],[-105.0017,40.59132],[-105.00168,40.59148],[-105.00168,40.59163],[-105.00168,40.59178],[-105.00166,40.59193],[-105.00166,40.59208],[-105.00166,40.59223],[-105.00166,40.59239],[-105.00164,40.59255],[-105.00164,40.59271],[-105.00164,40.59287],[-105.00164,40.59303],[-105.00164,40.59318],[-105.00164,40.59334],[-105.00166,40.5935],[-105.00166,40.59365],[-105.00166,40.59381],[-105.00166,40.59396],[-105.00168,40.59412],[-105.0017,40.59428],[-105.00172,40.59443],[-105.00178,40.59458],[-105.0018,40.59472],[-105.00182,40.59486],[-105.00188,40.5951],[-105.00194,40.59529],[-105.00198,40.59547],[-105.002,40.59562],[-105.0022,40.59569],[-105.00242,40.59571],[-105.00271,40.59571],[-105.00303,40.59571],[-105.00339,40.59573],[-105.00373,40.59574],[-105.00409,40.59574],[-105.00426,40.59575],[-105.0046,40.59576],[-105.00492,40.59576],[-105.00524,40.59578],[-105.00549,40.5958],[-105.00571,40.59582],[-105.00591,40.59584],[-105.00595,40.59584],[-105.00621,40.59582],[-105.00639,40.59581],[-105.00663,40.59581],[-105.00695,40.59581],[-105.00722,40.59581],[-105.00756,40.59582],[-105.00792,40.59582],[-105.00826,40.59583],[-105.00846,40.59583],[-105.00862,40.59584],[-105.00879,40.59584],[-105.00897,40.59584],[-105.00917,40.59585],[-105.00935,40.59585],[-105.00955,40.59586],[-105.00973,40.59586],[-105.00993,40.59586],[-105.01013,40.59587],[-105.01032,40.59587],[-105.01052,40.59587],[-105.0107,40.59589],[-105.01088,40.59589],[-105.01122,40.5959],[-105.01152,40.59591],[-105.01177,40.59592],[-105.01195,40.59593],[-105.01211,40.59594],[-105.01225,40.59595],[-105.01245,40.59594],[-105.01261,40.59593],[-105.01283,40.59593],[-105.0131,40.59594],[-105.01338,40.59595],[-105.01372,40.59595],[-105.01404,40.59596],[-105.01438,40.59597],[-105.01471,40.59597],[-105.01491,40.59598],[-105.01509,40.59598],[-105.01529,40.59598],[-105.01547,40.59599],[-105.01565,40.59599],[-105.01585,40.59599],[-105.01605,40.59599],[-105.0162,40.596],[-105.01638,40.596],[-105.01658,40.59601],[-105.01694,40.59601],[-105.0173,40.59602],[-105.01763,40.59603],[-105.01793,40.59603],[-105.01823,40.59605],[-105.01849,40.59605],[-105.01869,40.59605],[-105.01887,40.59607],[-105.01893,40.59607],[-105.01918,40.59605],[-105.01942,40.59605],[-105.01972,40.59605],[-105.02006,40.59605],[-105.02038,40.59605],[-105.02057,40.59605],[-105.02075,40.59605],[-105.02093,40.59605],[-105.02113,40.59605],[-105.02133,40.59605],[-105.02153,40.59605],[-105.02173,40.59605],[-105.02191,40.59605],[-105.02209,40.59606],[-105.02228,40.59607],[-105.02246,40.59607],[-105.02266,40.59607],[-105.02288,40.59608],[-105.02306,40.59608],[-105.02328,40.59608],[-105.0235,40.59609],[-105.02367,40.59609],[-105.02385,40.59609],[-105.02407,40.59609],[-105.02425,40.5961],[-105.02445,40.5961],[-105.02465,40.5961],[-105.02485,40.59611],[-105.02506,40.59611],[-105.02528,40.59612],[-105.02548,40.59613],[-105.0257,40.59613],[-105.0259,40.59613],[-105.02612,40.59613],[-105.02632,40.59613],[-105.02654,40.59613],[-105.02674,40.59613],[-105.02693,40.59613],[-105.02713,40.59613],[-105.02733,40.59613],[-105.02755,40.59615],[-105.02773,40.59615],[-105.02793,40.59615],[-105.02813,40.59615],[-105.02828,40.59615],[-105.02862,40.59615],[-105.02886,40.59616],[-105.02906,40.59616],[-105.02924,40.59616],[-105.02946,40.59609],[-105.02948,40.59594],[-105.02948,40.59574],[-105.02948,40.59554],[-105.02948,40.59539],[-105.0295,40.59535],[-105.02946,40.59535],[-105.02943,40.59516],[-105.02941,40.59496],[-105.0294,40.59474],[-105.0294,40.5946],[-105.0294,40.59447],[-105.02941,40.59433],[-105.02941,40.59419],[-105.02941,40.59406],[-105.02941,40.59392],[-105.02942,40.59378],[-105.02942,40.59365],[-105.02942,40.59358],[-105.02942,40.59344],[-105.02943,40.59331],[-105.02943,40.59317],[-105.02943,40.59312],[-105.02943,40.59302],[-105.02943,40.59288],[-105.02944,40.59275],[-105.02944,40.59266],[-105.02944,40.59252],[-105.02943,40.59239],[-105.02943,40.59225],[-105.02943,40.59219],[-105.02944,40.59205],[-105.02944,40.59192],[-105.02945,40.59178],[-105.02945,40.59168],[-105.02945,40.59154],[-105.02945,40.59141],[-105.02946,40.59127],[-105.02946,40.59113],[-105.02946,40.591],[-105.02946,40.59086],[-105.02946,40.59072],[-105.02947,40.59058],[-105.02947,40.59045],[-105.02947,40.59031],[-105.02947,40.59031],[-105.02947,40.59017],[-105.02948,40.59004],[-105.02948,40.5899],[-105.02948,40.58976],[-105.02949,40.58963],[-105.02949,40.58951],[-105.02949,40.58937],[-105.02949,40.58923],[-105.0295,40.58909],[-105.0295,40.58907],[-105.02951,40.58896],[-105.02952,40.58884],[-105.02963,40.58867],[-105.02962,40.58852],[-105.0296,40.58832],[-105.0296,40.58811],[-105.02962,40.58788],[-105.02966,40.58765],[-105.02974,40.58742],[-105.02981,40.58719],[-105.02995,40.58697],[-105.03011,40.58676],[-105.03025,40.58655],[-105.03043,40.58638],[-105.03061,40.58622],[-105.03075,40.5861],[-105.03091,40.58598],[-105.03107,40.58585],[-105.03123,40.58573],[-105.03138,40.58561],[-105.03154,40.58549],[-105.03168,40.58537],[-105.03184,40.58524],[-105.03198,40.58511],[-105.0321,40.58497],[-105.03222,40.58483],[-105.03232,40.58468],[-105.03242,40.58453],[-105.03252,40.58437],[-105.03258,40.58421],[-105.03266,40.58405],[-105.03274,40.5839],[-105.03279,40.58375],[-105.03284,40.5836],[-105.03287,40.58346],[-105.03291,40.58331],[-105.03293,40.58318],[-105.03293,40.58304],[-105.03293,40.5829],[-105.03293,40.5827],[-105.03293,40.58252],[-105.03293,40.58235],[-105.03293,40.5822],[-105.03293,40.58206],[-105.03309,40.58193],[-105.03331,40.58189],[-105.03357,40.58185],[-105.03377,40.58183],[-105.03397,40.58181],[-105.03414,40.58179],[-105.03432,40.58176],[-105.03448,40.58174],[-105.03476,40.58169],[-105.03496,40.58167],[-105.03512,40.58165],[-105.03532,40.58163],[-105.03556,40.58161],[-105.0357,40.58159],[-105.03575,40.58158],[-105.03599,40.58155],[-105.03627,40.58151],[-105.03657,40.58147],[-105.03695,40.58142],[-105.03714,40.5814],[-105.03735,40.58138],[-105.03752,40.58135],[-105.03774,40.58134],[-105.03794,40.58132],[-105.03814,40.58132],[-105.03834,40.58133],[-105.03852,40.58134],[-105.0387,40.58136],[-105.03891,40.58138],[-105.03909,40.58141],[-105.03929,40.58145],[-105.03947,40.5815],[-105.03965,40.58155],[-105.03981,40.58161],[-105.03999,40.58167],[-105.04014,40.58174],[-105.04032,40.58181],[-105.0406,40.58196],[-105.04092,40.58212],[-105.0412,40.58227],[-105.04152,40.58241],[-105.04179,40.58256],[-105.04211,40.5827],[-105.04239,40.58284],[-105.04267,40.58298],[-105.04295,40.58312],[-105.04323,40.58326],[-105.04344,40.58338],[-105.0436,40.58348],[-105.04372,40.58355],[-105.04392,40.58362],[-105.04412,40.58371],[-105.04438,40.58382],[-105.04464,40.58395],[-105.04491,40.58409],[-105.04509,40.58417],[-105.04521,40.58425],[-105.04537,40.58433],[-105.04553,40.58441],[-105.04583,40.58456],[-105.04611,40.58469],[-105.04635,40.58481],[-105.04652,40.5849],[-105.04652,40.5849],[-105.0467,40.58498],[-105.0469,40.58509],[-105.04706,40.58517],[-105.04728,40.58527],[-105.0475,40.58537],[-105.04774,40.58551],[-105.04803,40.58565],[-105.04819,40.58573],[-105.04835,40.58579],[-105.04853,40.58587],[-105.04867,40.58595],[-105.04885,40.58602],[-105.04903,40.5861],[-105.04928,40.58621],[-105.0495,40.5863],[-105.04968,40.58638],[-105.04986,40.58645],[-105.05006,40.58654],[-105.05032,40.58665],[-105.05058,40.58677],[-105.05079,40.58687],[-105.05099,40.58696],[-105.05111,40.58702],[-105.05133,40.5871],[-105.05153,40.58718],[-105.05181,40.58729],[-105.05211,40.58742],[-105.05242,40.58755],[-105.05258,40.58762],[-105.05276,40.58769],[-105.05292,40.58776],[-105.0531,40.58783],[-105.0533,40.5879],[-105.05346,40.58797],[-105.05366,40.58804],[-105.05382,40.58812],[-105.05399,40.58819],[-105.05415,40.58826],[-105.05431,40.58833],[-105.05449,40.5884],[-105.05465,40.58846],[-105.05483,40.58853],[-105.05499,40.58858],[-105.05515,40.58864],[-105.05535,40.58869],[-105.05552,40.58873],[-105.0557,40.58877],[-105.0559,40.58881],[-105.05608,40.58883],[-105.05626,40.58884],[-105.05662,40.58885],[-105.05688,40.58884],[-105.05709,40.58884],[-105.05731,40.58884],[-105.05757,40.58883],[-105.05779,40.58883],[-105.05805,40.58885],[-105.05828,40.58888],[-105.0585,40.58888],[-105.05866,40.58889],[-105.05886,40.58888],[-105.05904,40.58888],[-105.05928,40.58885],[-105.0596,40.58885],[-105.05992,40.58884],[-105.06027,40.58884],[-105.06047,40.58885],[-105.06065,40.58885],[-105.06101,40.58885],[-105.06119,40.58885],[-105.06136,40.58885],[-105.06172,40.58885],[-105.06208,40.58885],[-105.06244,40.58885],[-105.06279,40.58885],[-105.06313,40.58885],[-105.06333,40.58885],[-105.06351,40.58886],[-105.06371,40.58886],[-105.06389,40.58886],[-105.06407,40.58886],[-105.06427,40.58886],[-105.06445,40.58886],[-105.06462,40.58887],[-105.06482,40.58887],[-105.06502,40.58888],[-105.06522,40.58888],[-105.06538,40.58888],[-105.06558,40.58888],[-105.06578,40.58888],[-105.06596,40.58888],[-105.06615,40.58888],[-105.06633,40.58888],[-105.06651,40.58888],[-105.06669,40.58888],[-105.06703,40.58888],[-105.06732,40.58886],[-105.06754,40.58885],[-105.06776,40.58884],[-105.06778,40.58883],[-105.06796,40.58881],[-105.06818,40.58878],[-105.06842,40.58874],[-105.0687,40.5887],[-105.06901,40.58865],[-105.06933,40.58858],[-105.06963,40.58851],[-105.06991,40.58843],[-105.07019,40.58836],[-105.0704,40.58827],[-105.07058,40.58818],[-105.0707,40.58808],[-105.07084,40.58799],[-105.07098,40.58784],[-105.07112,40.58773],[-105.07128,40.58762],[-105.0714,40.58751],[-105.07154,40.5874],[-105.0717,40.58725],[-105.07188,40.58715],[-105.07209,40.58709],[-105.07233,40.58709],[-105.07259,40.58709],[-105.07283,40.58709],[-105.07305,40.58709],[-105.07329,40.58709],[-105.0735,40.5871],[-105.07372,40.5871],[-105.074,40.5871],[-105.07422,40.5871],[-105.07444,40.5871],[-105.07466,40.5871],[-105.07489,40.5871],[-105.07511,40.5871],[-105.07531,40.5871],[-105.07555,40.58711],[-105.07577,40.58711],[-105.07599,40.58711],[-105.07617,40.58711],[-105.07621,40.58711],[-105.07631,40.5871],[-105.0765,40.5871],[-105.0767,40.5871],[-105.07694,40.5871],[-105.07716,40.58709],[-105.07736,40.58708],[-105.07756,40.58708],[-105.07774,40.58709],[-105.07797,40.58709],[-105.07819,40.5871],[-105.07839,40.58713],[-105.07857,40.58713],[-105.07877,40.58713],[-105.07889,40.58726],[-105.07889,40.58746],[-105.07887,40.58763],[-105.07887,40.58781],[-105.07887,40.58799],[-105.07887,40.58816],[-105.07887,40.58832],[-105.07887,40.5885],[-105.07887,40.58864],[-105.07887,40.58881],[-105.07887,40.58897],[-105.07887,40.58913],[-105.07887,40.58928],[-105.07881,40.58942],[-105.07867,40.58954],[-105.07867,40.58968],[-105.07867,40.58983],[-105.07861,40.58996],[-105.07861,40.59002]]}},{"type":"Feature","properties":{"name":"16:01"},"geometry":{"type":"LineString","coordinates":[[-105.08028,40.5184],[-105.08032,40.51837],[-105.08033,40.51837],[-105.08035,40.51835],[-105.08036,40.51834],[-105.08037,40.5183],[-105.08036,40.51822],[-105.08031,40.5182],[-105.08027,40.51819],[-105.08022,40.51818],[-105.08014,40.51817],[-105.07996,40.51817],[-105.07978,40.51816],[-105.07977,40.51816],[-105.07966,40.51816],[-105.07966,40.51802],[-105.07967,40.51789],[-105.07967,40.51775],[-105.07967,40.51767],[-105.07968,40.51753],[-105.07968,40.51751],[-105.0795,40.51751],[-105.07932,40.51751],[-105.07914,40.51751],[-105.07896,40.51751],[-105.07878,40.51751],[-105.0786,40.51751],[-105.07847,40.51751],[-105.07829,40.51751],[-105.07811,40.51751],[-105.07793,40.51751],[-105.07776,40.51751],[-105.07758,40.51751],[-105.0774,40.51751],[-105.07725,40.51751],[-105.07711,40.51751],[-105.07711,40.51765],[-105.07711,40.51778],[-105.0771,40.51792],[-105.0771,40.51806],[-105.0771,40.5181],[-105.07715,40.51823],[-105.07716,40.51826],[-105.07716,40.51839],[-105.07716,40.51851],[-105.07716,40.51865],[-105.07715,40.51878],[-105.07715,40.51892],[-105.07715,40.51897],[-105.07715,40.51911],[-105.07715,40.51924],[-105.07714,40.51938],[-105.07714,40.51952],[-105.07714,40.51958],[-105.07714,40.51972],[-105.07713,40.51985],[-105.07713,40.51999],[-105.07713,40.52013],[-105.07712,40.52026],[-105.07712,40.5204],[-105.07712,40.52054],[-105.07711,40.52067],[-105.07711,40.5208],[-105.07711,40.52089],[-105.07711,40.52103],[-105.07711,40.52116],[-105.0771,40.5213],[-105.0771,40.52144],[-105.0771,40.52154],[-105.07703,40.52167],[-105.07703,40.52167],[-105.07703,40.52181],[-105.07703,40.52194],[-105.07702,40.52208],[-105.07702,40.52222],[-105.07702,40.52223],[-105.07702,40.5223],[-105.07701,40.52244],[-105.07701,40.52253],[-105.07701,40.52268],[-105.07701,40.52282],[-105.07701,40.52298],[-105.07701,40.52313],[-105.07694,40.52324],[-105.07692,40.52328],[-105.07691,40.5233],[-105.0769,40.52332],[-105.07689,40.52334],[-105.07687,40.52335],[-105.07686,40.52336],[-105.07684,40.52337],[-105.07682,40.52338],[-105.0768,40.52339],[-105.07663,40.52343],[-105.07652,40.52346],[-105.07634,40.52346],[-105.07616,40.52346],[-105.07598,40.52346],[-105.07594,40.52346],[-105.07578,40.52346],[-105.0756,40.52346],[-105.07554,40.52346],[-105.07536,40.52346],[-105.07518,40.52345],[-105.0751,40.52345],[-105.07492,40.52345],[-105.07474,40.52345],[-105.07456,40.52345],[-105.07438,40.52345],[-105.0742,40.52345],[-105.07402,40.52345],[-105.07395,40.52345],[-105.07389,40.52345],[-105.07371,40.52345],[-105.07353,40.52345],[-105.07342,40.52345],[-105.07324,40.52345],[-105.07306,40.52345],[-105.07288,40.52345],[-105.0727,40.52346],[-105.07252,40.52346],[-105.07234,40.52346],[-105.07218,40.52346],[-105.072,40.52346],[-105.07182,40.52345],[-105.07164,40.52345],[-105.07146,40.52345],[-105.07144,40.52345],[-105.07126,40.52345],[-105.07108,40.52345],[-105.0709,40.52346],[-105.07072,40.52346],[-105.07071,40.52346],[-105.07053,40.52345],[-105.07048,40.52345],[-105.0703,40.52345],[-105.07012,40.52345],[-105.06994,40.52345],[-105.06976,40.52345],[-105.0696,40.52345],[-105.06942,40.52345],[-105.06924,40.52345],[-105.06923,40.52345],[-105.06905,40.52345],[-105.06887,40.52345],[-105.06873,40.52345],[-105.06871,40.52345],[-105.06853,40.52345],[-105.06835,40.52344],[-105.06825,40.52344],[-105.06808,40.52345],[-105.0679,40.52345],[-105.06772,40.52345],[-105.06754,40.52345],[-105.06743,40.52345],[-105.06725,40.52345],[-105.06721,40.52345],[-105.06699,40.52341],[-105.06677,40.52342],[-105.06655,40.52342],[-105.06637,40.52343],[-105.06615,40.52343],[-105.06596,40.52345],[-105.06574,40.52346],[-105.06546,40.52348],[-105.06516,40.52349],[-105.06478,40.52351],[-105.0646,40.52351],[-105.06442,40.52352],[-105.06419,40.52352],[-105.06399,40.52352],[-105.06377,40.52352],[-105.06353,40.52353],[-105.06333,40.52353],[-105.06309,40.52353],[-105.06284,40.52353],[-105.06262,40.52353],[-105.06238,40.52352],[-105.06214,40.52352],[-105.0619,40.52352],[-105.06172,40.52351],[-105.06152,40.5235],[-105.06119,40.52349],[-105.06091,40.52349],[-105.06071,40.52349],[-105.06067,40.52349],[-105.06047,40.5235],[-105.06027,40.52351],[-105.06005,40.52351],[-105.05982,40.52351],[-105.0596,40.52351],[-105.05938,40.52351],[-105.05918,40.52351],[-105.05896,40.52351],[-105.05876,40.52351],[-105.05854,40.5235],[-105.05836,40.5235],[-105.05813,40.5235],[-105.05783,40.5235],[-105.05751,40.5235],[-105.05717,40.5235],[-105.05682,40.5235],[-105.05664,40.5235],[-105.05644,40.5235],[-105.05622,40.5235],[-105.05604,40.5235],[-105.05582,40.5235],[-105.05562,40.5235],[-105.05542,40.5235],[-105.05522,40.5235],[-105.05501,40.52349],[-105.05479,40.52349],[-105.05459,40.52349],[-105.05439,40.52349],[-105.05419,40.52349],[-105.05399,40.52349],[-105.05378,40.52349],[-105.05356,40.52349],[-105.05336,40.52349],[-105.05314,40.52349],[-105.05292,40.52348],[-105.05272,40.52348],[-105.0525,40.52347],[-105.05232,40.52346],[-105.05205,40.52346],[-105.05185,40.52346],[-105.05179,40.52346],[-105.05159,40.52346],[-105.05135,40.52347],[-105.05105,40.52348],[-105.0507,40.52348],[-105.05034,40.52348],[-105.05016,40.52348],[-105.04978,40.52349],[-105.04944,40.52349],[-105.04927,40.52349],[-105.04907,40.52349],[-105.04887,40.5235],[-105.04867,40.5235],[-105.04849,40.5235],[-105.04827,40.5235],[-105.04805,40.5235],[-105.04788,40.5235],[-105.04764,40.5235],[-105.04744,40.5235],[-105.04724,40.52349],[-105.04706,40.52349],[-105.04674,40.52349],[-105.04648,40.52348],[-105.04621,40.52348],[-105.04597,40.52348],[-105.04573,40.52347],[-105.04545,40.52346],[-105.04515,40.52346],[-105.04481,40.52345],[-105.04446,40.52343],[-105.0443,40.52342],[-105.04412,40.52341],[-105.04392,40.52339],[-105.04376,40.52336],[-105.0434,40.52332],[-105.04305,40.52327],[-105.04271,40.52323],[-105.04241,40.5232],[-105.04219,40.52318],[-105.04207,40.52317],[-105.04185,40.52317],[-105.04162,40.52317],[-105.04138,40.52316],[-105.04112,40.52315],[-105.04086,40.52314],[-105.04064,40.52314],[-105.04044,40.52312],[-105.04021,40.52312],[-105.03999,40.52314],[-105.03971,40.52312],[-105.03949,40.52312],[-105.03921,40.52312],[-105.03895,40.52311],[-105.03866,40.5231],[-105.0384,40.52307],[-105.0382,40.52307],[-105.03818,40.52307],[-105.03794,40.5231],[-105.03768,40.5231],[-105.0374,40.5231],[-105.03707,40.5231],[-105.03687,40.5231],[-105.03653,40.5231],[-105.03621,40.5231],[-105.03595,40.5231],[-105.03575,40.5231],[-105.03567,40.5231],[-105.03542,40.52315],[-105.03522,40.52315],[-105.03496,40.52316],[-105.03462,40.52318],[-105.03427,40.52318],[-105.03407,40.52319],[-105.03387,40.52319],[-105.03365,40.52319],[-105.03345,40.52319],[-105.03323,40.52319],[-105.03303,40.52319],[-105.03279,40.52319],[-105.03258,40.52319],[-105.03238,40.52319],[-105.03216,40.52319],[-105.0319,40.52319],[-105.03168,40.52319],[-105.03146,40.52318],[-105.03124,40.52318],[-105.03101,40.52318],[-105.03081,40.52318],[-105.03059,40.52318],[-105.03039,40.52317],[-105.03019,40.52316],[-105.02997,40.52315],[-105.02979,40.52315],[-105.0296,40.52314],[-105.0294,40.52312],[-105.0292,40.52311],[-105.02902,40.52311],[-105.02866,40.5231],[-105.02836,40.52309],[-105.02813,40.52309],[-105.02791,40.52307],[-105.02769,40.52307],[-105.02749,40.52306],[-105.02735,40.52306],[-105.02717,40.52309],[-105.02699,40.52309],[-105.02691,40.52309],[-105.02675,40.52309],[-105.02657,40.52309],[-105.02639,40.52309],[-105.02621,40.52309],[-105.02605,40.52309],[-105.02587,40.52309],[-105.02569,40.52309],[-105.02551,40.52308],[-105.02533,40.52308],[-105.02525,40.52308],[-105.02511,40.52308],[-105.02493,40.52308],[-105.02475,40.52308],[-105.02457,40.52309],[-105.02439,40.52309],[-105.02421,40.52309],[-105.02403,40.52309],[-105.024,40.52309],[-105.02382,40.52309],[-105.02364,40.52309],[-105.02346,40.52309],[-105.02328,40.5231],[-105.0231,40.5231],[-105.02307,40.5231],[-105.02289,40.5231],[-105.02271,40.52311],[-105.02253,40.52311],[-105.02243,40.52311],[-105.02225,40.52312],[-105.02207,40.52312],[-105.02189,40.52313],[-105.02171,40.52314],[-105.02165,40.52314],[-105.02147,40.52315],[-105.02129,40.52316],[-105.02111,40.52317],[-105.02093,40.52318],[-105.02075,40.52319],[-105.0207,40.52319],[-105.02061,40.5232],[-105.02043,40.5232],[-105.02041,40.5232],[-105.0204,40.52306],[-105.0204,40.52293],[-105.02039,40.52279],[-105.02038,40.52265],[-105.02038,40.52263],[-105.02038,40.52249],[-105.02037,40.52236],[-105.02037,40.52228],[-105.02036,40.5221],[-105.02035,40.52197],[-105.02034,40.52183],[-105.02033,40.52169],[-105.02032,40.52156],[-105.02031,40.52142],[-105.0203,40.52128],[-105.02029,40.52115],[-105.02028,40.52106],[-105.02027,40.52099],[-105.02025,40.52095],[-105.02021,40.52087],[-105.0202,40.52073],[-105.0202,40.5206],[-105.02019,40.52046],[-105.02019,40.52032],[-105.02018,40.52019],[-105.02018,40.52015],[-105.02018,40.52001],[-105.02017,40.51988],[-105.02017,40.51974],[-105.02016,40.5196],[-105.02016,40.51952],[-105.02015,40.51938],[-105.02015,40.5193],[-105.02015,40.51916],[-105.02014,40.51903],[-105.02014,40.51889],[-105.02013,40.51875],[-105.02013,40.51864],[-105.02012,40.5185],[-105.02012,40.51837],[-105.02012,40.51823],[-105.02011,40.51809],[-105.02011,40.51796],[-105.0201,40.51782],[-105.02009,40.51768],[-105.02009,40.51754],[-105.02009,40.51754],[-105.02009,40.5174],[-105.02008,40.51727],[-105.02008,40.51713],[-105.02007,40.51699],[-105.02007,40.51686],[-105.02007,40.51672],[-105.02006,40.51658],[-105.02006,40.51644],[-105.02005,40.51631],[-105.02005,40.51623],[-105.02005,40.51608],[-105.01987,40.51608],[-105.01972,40.51608],[-105.01954,40.51609],[-105.01954,40.51607],[-105.01937,40.51608],[-105.0192,40.51609],[-105.01904,40.51609],[-105.01887,40.5161],[-105.01869,40.51611],[-105.0185,40.51612],[-105.01832,40.51612],[-105.01814,40.51613],[-105.01796,40.51614],[-105.01777,40.51615],[-105.01759,40.51616],[-105.01741,40.51616],[-105.01728,40.51616],[-105.01716,40.51615],[-105.01703,40.51615],[-105.0169,40.51614],[-105.01677,40.51613],[-105.01665,40.51613],[-105.01652,40.51612],[-105.01639,40.51611],[-105.01627,40.51611],[-105.01614,40.5161],[-105.01601,40.5161],[-105.01588,40.51609],[-105.01576,40.51608],[-105.01563,40.51608],[-105.0155,40.51607],[-105.01538,40.51607],[-105.01538,40.51607],[-105.01518,40.51607],[-105.01499,40.51607],[-105.01479,40.51607],[-105.0146,40.51607],[-105.01443,40.51607],[-105.01425,40.51607],[-105.01408,40.51607],[-105.0139,40.51606],[-105.01373,40.51606],[-105.01356,40.51606],[-105.01338,40.51606],[-105.01321,40.51605],[-105.01304,40.51605],[-105.01286,40.51605],[-105.01269,40.51605],[-105.01251,40.51604],[-105.01234,40.51604],[-105.01217,40.51604],[-105.01199,40.51604],[-105.01182,40.51603],[-105.01166,40.51603],[-105.01151,40.51603],[-105.01136,40.51602],[-105.0112,40.51602],[-105.01105,40.51601],[-105.01089,40.51601],[-105.01074,40.51601],[-105.01059,40.516],[-105.01044,40.51604],[-105.01036,40.51614],[-105.01038,40.5163],[-105.01044,40.51649],[-105.01048,40.51668],[-105.01054,40.5169],[-105.0106,40.51713],[-105.01064,40.51738],[-105.01064,40.51763],[-105.01064,40.51792],[-105.01064,40.51807],[-105.01064,40.51823],[-105.01064,40.51839],[-105.01068,40.51854],[-105.01068,40.51869],[-105.01068,40.51885],[-105.01068,40.51899],[-105.0107,40.51915],[-105.0107,40.5193],[-105.0107,40.51944],[-105.0107,40.51959],[-105.01072,40.51975],[-105.01072,40.5199],[-105.01072,40.52005],[-105.01074,40.52021],[-105.01072,40.52038],[-105.01072,40.52054],[-105.01074,40.52069],[-105.01074,40.52083],[-105.01074,40.52109],[-105.01074,40.52128],[-105.01074,40.52144],[-105.01074,40.52145],[-105.01078,40.52161],[-105.01078,40.52179],[-105.01078,40.522],[-105.01074,40.52222],[-105.0107,40.52244],[-105.0107,40.52264],[-105.01068,40.52282],[-105.01068,40.52297],[-105.0107,40.52311],[-105.01072,40.52328],[-105.01086,40.52343],[-105.0111,40.52349],[-105.0114,40.5235],[-105.01177,40.52351],[-105.01199,40.52351],[-105.01219,40.52352],[-105.01239,40.52353],[-105.01263,40.52354],[-105.01283,40.52353],[-105.01306,40.52353],[-105.0133,40.52353],[-105.01352,40.52354],[-105.01376,40.52354],[-105.01396,40.52354],[-105.01418,40.52354],[-105.0144,40.52354],[-105.01462,40.52354],[-105.01481,40.52354],[-105.01501,40.52354],[-105.01521,40.52355],[-105.01555,40.52355],[-105.01585,40.52357],[-105.01605,40.52358],[-105.0162,40.52358],[-105.01644,40.52358],[-105.01668,40.52357],[-105.01694,40.52357],[-105.01728,40.52355],[-105.01756,40.52355],[-105.01787,40.52353],[-105.01817,40.52352],[-105.01849,40.5235],[-105.01877,40.52349],[-105.01909,40.52349],[-105.01936,40.52348],[-105.01958,40.52346],[-105.01978,40.52346],[-105.01998,40.52346],[-105.02018,40.52344],[-105.02036,40.52343],[-105.02057,40.52343],[-105.02087,40.52342],[-105.02117,40.52343],[-105.02149,40.52343],[-105.02181,40.52344],[-105.02209,40.52345],[-105.02224,40.52345],[-105.02244,40.52343],[-105.02264,40.52342],[-105.02292,40.52342],[-105.02324,40.52341],[-105.0236,40.52339],[-105.0238,40.52339],[-105.02401,40.52338],[-105.02419,40.52338],[-105.02439,40.52338],[-105.02459,40.52338],[-105.02477,40.52338],[-105.02495,40.52338],[-105.0253,40.52337],[-105.0256,40.52338],[-105.02584,40.52338],[-105.02608,40.52338],[-105.02626,40.52338],[-105.0265,40.52338],[-105.02674,40.52339],[-105.02697,40.52339],[-105.02729,40.5234],[-105.02765,40.52341],[-105.02801,40.52343],[-105.02831,40.52346],[-105.0285,40.52347],[-105.0286,40.52347]]}},{"type":"Feature","properties":{"name":"16:02"},"geometry":{"type":"LineString","coordinates":[[-105.08028,40.5184],[-105.08032,40.51837],[-105.08033,40.51837],[-105.08035,40.51835],[-105.08036,40.51834],[-105.08037,40.5183],[-105.08036,40.51822],[-105.08031,40.5182],[-105.08027,40.51819],[-105.08022,40.51818],[-105.08014,40.51817],[-105.07996,40.51817],[-105.07978,40.51816],[-105.07977,40.51816],[-105.07966,40.51816],[-105.07966,40.51802],[-105.07967,40.51789],[-105.07967,40.51775],[-105.07967,40.51767],[-105.07968,40.51753],[-105.07968,40.51751],[-105.0795,40.51751],[-105.07932,40.51751],[-105.07914,40.51751],[-105.07896,40.51751],[-105.07878,40.51751],[-105.0786,40.51751],[-105.07847,40.51751],[-105.07829,40.51751],[-105.07811,40.51751],[-105.07793,40.51751],[-105.07776,40.51751],[-105.07758,40.51751],[-105.0774,40.51751],[-105.07725,40.51751],[-105.07711,40.51751],[-105.07711,40.51765],[-105.07711,40.51778],[-105.0771,40.51792],[-105.0771,40.51806],[-105.0771,40.5181],[-105.07715,40.51823],[-105.07716,40.51826],[-105.07716,40.51839],[-105.07716,40.51851],[-105.07716,40.51865],[-105.07715,40.51878],[-105.07715,40.51892],[-105.07715,40.51897],[-105.07715,40.51911],[-105.07715,40.51924],[-105.07714,40.51938],[-105.07714,40.51952],[-105.07714,40.51958],[-105.07714,40.51972],[-105.07713,40.51985],[-105.07713,40.51999],[-105.07713,40.52013],[-105.07712,40.52026],[-105.07712,40.5204],[-105.07712,40.52054],[-105.07711,40.52067],[-105.07711,40.5208],[-105.07711,40.52089],[-105.07711,40.52103],[-105.07711,40.52116],[-105.0771,40.5213],[-105.0771,40.52144],[-105.0771,40.52154],[-105.07703,40.52167],[-105.07703,40.52167],[-105.07703,40.52181],[-105.07703,40.52194],[-105.07702,40.52208],[-105.07702,40.52222],[-105.07702,40.52223],[-105.07702,40.5223],[-105.07701,40.52244],[-105.07701,40.52253],[-105.07701,40.52268],[-105.07701,40.52282],[-105.07701,40.52298],[-105.07701,40.52313],[-105.07694,40.52324],[-105.07692,40.52328],[-105.07691,40.5233],[-105.0769,40.52332],[-105.07689,40.52334],[-105.07687,40.52335],[-105.07686,40.52336],[-105.07684,40.52337],[-105.07682,40.52338],[-105.0768,40.52339],[-105.07663,40.52343],[-105.07652,40.52346],[-105.07634,40.52346],[-105.07616,40.52346],[-105.07598,40.52346],[-105.07594,40.52346],[-105.07578,40.52346],[-105.0756,40.52346],[-105.07554,40.52346],[-105.07536,40.52346],[-105.07518,40.52345],[-105.0751,40.52345],[-105.07492,40.52345],[-105.07474,40.52345],[-105.07456,40.52345],[-105.07438,40.52345],[-105.0742,40.52345],[-105.07402,40.52345],[-105.07395,40.52345],[-105.07389,40.52345],[-105.07371,40.52345],[-105.07353,40.52345],[-105.07342,40.52345],[-105.07324,40.52345],[-105.07306,40.52345],[-105.07288,40.52345],[-105.0727,40.52346],[-105.07252,40.52346],[-105.07234,40.52346],[-105.07218,40.52346],[-105.072,40.52346],[-105.07182,40.52345],[-105.07164,40.52345],[-105.07146,40.52345],[-105.07144,40.52345],[-105.07126,40.52345],[-105.07108,40.52345],[-105.0709,40.52346],[-105.07072,40.52346],[-105.07071,40.52346],[-105.07053,40.52345],[-105.07048,40.52345],[-105.0703,40.52345],[-105.07012,40.52345],[-105.06994,40.52345],[-105.06976,40.52345],[-105.0696,40.52345],[-105.06942,40.52345],[-105.06924,40.52345],[-105.06923,40.52345],[-105.06905,40.52345],[-105.06887,40.52345],[-105.06873,40.52345],[-105.06871,40.52345],[-105.06853,40.52345],[-105.06835,40.52344],[-105.06825,40.52344],[-105.06808,40.52345],[-105.0679,40.52345],[-105.06772,40.52345],[-105.06754,40.52345],[-105.06743,40.52345],[-105.06725,40.52345],[-105.06721,40.52345],[-105.06699,40.52341],[-105.06677,40.52342],[-105.06655,40.52342],[-105.06637,40.52343],[-105.06615,40.52343],[-105.06596,40.52345],[-105.06574,40.52346],[-105.06546,40.52348],[-105.06516,40.52349],[-105.06478,40.52351],[-105.0646,40.52351],[-105.06442,40.52352],[-105.06419,40.52352],[-105.06399,40.52352],[-105.06377,40.52352],[-105.06353,40.52353],[-105.06333,40.52353],[-105.06309,40.52353],[-105.06284,40.52353],[-105.06262,40.52353],[-105.06238,40.52352],[-105.06214,40.52352],[-105.0619,40.52352],[-105.06172,40.52351],[-105.06152,40.5235],[-105.06119,40.52349],[-105.06091,40.52349],[-105.06071,40.52349],[-105.06067,40.52349],[-105.06047,40.5235],[-105.06027,40.52351],[-105.06005,40.52351],[-105.05982,40.52351],[-105.0596,40.52351],[-105.05938,40.52351],[-105.05918,40.52351],[-105.05896,40.52351],[-105.05876,40.52351],[-105.05854,40.5235],[-105.05836,40.5235],[-105.05813,40.5235],[-105.05783,40.5235],[-105.05751,40.5235],[-105.05717,40.5235],[-105.05682,40.5235],[-105.05664,40.5235],[-105.05644,40.5235],[-105.05622,40.5235],[-105.05604,40.5235],[-105.05582,40.5235],[-105.05562,40.5235],[-105.05542,40.5235],[-105.05522,40.5235],[-105.05501,40.52349],[-105.05479,40.52349],[-105.05459,40.52349],[-105.05439,40.52349],[-105.05419,40.52349],[-105.05399,40.52349],[-105.05378,40.52349],[-105.05356,40.52349],[-105.05336,40.52349],[-105.05314,40.52349],[-105.05292,40.52348],[-105.05272,40.52348],[-105.0525,40.52347],[-105.05232,40.52346],[-105.05205,40.52346],[-105.05185,40.52346],[-105.05179,40.52346],[-105.05159,40.52346],[-105.05135,40.52347],[-105.05105,40.52348],[-105.0507,40.52348],[-105.05034,40.52348],[-105.05016,40.52348],[-105.04978,40.52349],[-105.04944,40.52349],[-105.04927,40.52349],[-105.04907,40.52349],[-105.04887,40.5235],[-105.04867,40.5235],[-105.04849,40.5235],[-105.04827,40.5235],[-105.04805,40.5235],[-105.04788,40.5235],[-105.04764,40.5235],[-105.04744,40.5235],[-105.04724,40.52349],[-105.04706,40.52349],[-105.04674,40.52349],[-105.04648,40.52348],[-105.04621,40.52348],[-105.04597,40.52348],[-105.04573,40.52347],[-105.04545,40.52346],[-105.04515,40.52346],[-105.04481,40.52345],[-105.04446,40.52343],[-105.0443,40.52342],[-105.04412,40.52341],[-105.04392,40.52339],[-105.04376,40.52336],[-105.0434,40.52332],[-105.04305,40.52327],[-105.04271,40.52323],[-105.04241,40.5232],[-105.04219,40.52318],[-105.04207,40.52317],[-105.04185,40.52317],[-105.04162,40.52317],[-105.04138,40.52316],[-105.04112,40.52315],[-105.04086,40.52314],[-105.04064,40.52314],[-105.04044,40.52312],[-105.04021,40.52312],[-105.03999,40.52314],[-105.03971,40.52312],[-105.03949,40.52312],[-105.03921,40.52312],[-105.03895,40.52311],[-105.03866,40.5231],[-105.0384,40.52307],[-105.0382,40.52307],[-105.03818,40.52307],[-105.03794,40.5231],[-105.03768,40.5231],[-105.0374,40.5231],[-105.03707,40.5231],[-105.03687,40.5231],[-105.03653,40.5231],[-105.03621,40.5231],[-105.03595,40.5231],[-105.03575,40.5231],[-105.03567,40.5231],[-105.03542,40.52315],[-105.03522,40.52315],[-105.03496,40.52316],[-105.03462,40.52318],[-105.03427,40.52318],[-105.03407,40.52319],[-105.03387,40.52319],[-105.03365,40.52319],[-105.03345,40.52319],[-105.03323,40.52319],[-105.03303,40.52319],[-105.03279,40.52319],[-105.03258,40.52319],[-105.03238,40.52319],[-105.03216,40.52319],[-105.0319,40.52319],[-105.03168,40.52319],[-105.03146,40.52318],[-105.03124,40.52318],[-105.03101,40.52318],[-105.03081,40.52318],[-105.03059,40.52318],[-105.03039,40.52317],[-105.03019,40.52316],[-105.02997,40.52315],[-105.02979,40.52315],[-105.0296,40.52314],[-105.0294,40.52312],[-105.0292,40.52311],[-105.02902,40.52311],[-105.02866,40.5231],[-105.02836,40.52309],[-105.02813,40.52309],[-105.02791,40.52307],[-105.02769,40.52307],[-105.02749,40.52306],[-105.02735,40.52306],[-105.02717,40.52309],[-105.02699,40.52309],[-105.02691,40.52309],[-105.02675,40.52309],[-105.02657,40.52309],[-105.02639,40.52309],[-105.02621,40.52309],[-105.02605,40.52309],[-105.02587,40.52309],[-105.02569,40.52309],[-105.02551,40.52308],[-105.02533,40.52308],[-105.02525,40.52308],[-105.02511,40.52308],[-105.02493,40.52308],[-105.02475,40.52308],[-105.02457,40.52309],[-105.02439,40.52309],[-105.02421,40.52309],[-105.02403,40.52309],[-105.024,40.52309],[-105.02382,40.52309],[-105.02364,40.52309],[-105.02346,40.52309],[-105.02328,40.5231],[-105.0231,40.5231],[-105.02307,40.5231],[-105.02289,40.5231],[-105.02271,40.52311],[-105.02253,40.52311],[-105.02243,40.52311],[-105.02225,40.52312],[-105.02207,40.52312],[-105.02189,40.52313],[-105.02171,40.52314],[-105.02165,40.52314],[-105.02147,40.52315],[-105.02129,40.52316],[-105.02111,40.52317],[-105.02093,40.52318],[-105.02075,40.52319],[-105.0207,40.52319],[-105.02061,40.5232],[-105.02043,40.5232],[-105.02041,40.5232],[-105.0204,40.52306],[-105.0204,40.52293],[-105.02039,40.52279],[-105.02038,40.52265],[-105.02038,40.52263],[-105.02038,40.52249],[-105.02037,40.52236],[-105.02037,40.52228],[-105.02036,40.5221],[-105.02035,40.52197],[-105.02034,40.52183],[-105.02033,40.52169],[-105.02032,40.52156],[-105.02031,40.52142],[-105.0203,40.52128],[-105.02029,40.52115],[-105.02028,40.52106],[-105.02027,40.52099],[-105.02025,40.52095],[-105.02021,40.52087],[-105.0202,40.52073],[-105.0202,40.5206],[-105.02019,40.52046],[-105.02019,40.52032],[-105.02018,40.52019],[-105.02018,40.52015],[-105.02018,40.52001],[-105.02017,40.51988],[-105.02017,40.51974],[-105.02016,40.5196],[-105.02016,40.51952],[-105.02015,40.51938],[-105.02015,40.5193],[-105.02015,40.51916],[-105.02014,40.51903],[-105.02014,40.51889],[-105.02013,40.51875],[-105.02013,40.51864],[-105.02012,40.5185],[-105.02012,40.51837],[-105.02012,40.51823],[-105.02011,40.51809],[-105.02011,40.51796],[-105.0201,40.51782],[-105.02009,40.51768],[-105.02009,40.51754],[-105.02009,40.51754],[-105.02009,40.5174],[-105.02008,40.51727],[-105.02008,40.51713],[-105.02007,40.51699],[-105.02007,40.51686],[-105.02007,40.51672],[-105.02006,40.51658],[-105.02006,40.51644],[-105.02005,40.51631],[-105.02005,40.51623],[-105.02005,40.51608],[-105.01987,40.51608],[-105.01972,40.51608],[-105.01954,40.51609],[-105.01954,40.51607],[-105.01937,40.51608],[-105.0192,40.51609],[-105.01904,40.51609],[-105.01887,40.5161],[-105.01869,40.51611],[-105.0185,40.51612],[-105.01832,40.51612],[-105.01814,40.51613],[-105.01796,40.51614],[-105.01777,40.51615],[-105.01759,40.51616],[-105.01741,40.51616],[-105.01728,40.51616],[-105.01716,40.51615],[-105.01703,40.51615],[-105.0169,40.51614],[-105.01677,40.51613],[-105.01665,40.51613],[-105.01652,40.51612],[-105.01639,40.51611],[-105.01627,40.51611],[-105.01614,40.5161],[-105.01601,40.5161],[-105.01588,40.51609],[-105.01576,40.51608],[-105.01563,40.51608],[-105.0155,40.51607],[-105.01538,40.51607],[-105.01538,40.51607],[-105.01518,40.51607],[-105.01499,40.51607],[-105.01479,40.51607],[-105.0146,40.51607],[-105.01443,40.51607],[-105.01425,40.51607],[-105.01408,40.51607],[-105.0139,40.51606],[-105.01373,40.51606],[-105.01356,40.51606],[-105.01338,40.51606],[-105.01321,40.51605],[-105.01304,40.51605],[-105.01286,40.51605],[-105.01269,40.51605],[-105.01251,40.51604],[-105.01234,40.51604],[-105.01217,40.51604],[-105.01199,40.51604],[-105.01182,40.51603],[-105.01166,40.51603],[-105.01151,40.51603],[-105.01136,40.51602],[-105.0112,40.51602],[-105.01105,40.51601],[-105.01089,40.51601],[-105.01074,40.51601],[-105.01059,40.516],[-105.01044,40.51604],[-105.01036,40.51614],[-105.01038,40.5163],[-105.01044,40.51649],[-105.01048,40.51668],[-105.01054,40.5169],[-105.0106,40.51713],[-105.01064,40.51738],[-105.01064,40.51763],[-105.01064,40.51792],[-105.01064,40.51807],[-105.01064,40.51823],[-105.01064,40.51839],[-105.01068,40.51854],[-105.01068,40.51869],[-105.01068,40.51885],[-105.01068,40.51899],[-105.0107,40.51915],[-105.0107,40.5193],[-105.0107,40.51944],[-105.0107,40.51959],[-105.01072,40.51975],[-105.01072,40.5199],[-105.01072,40.52005],[-105.01074,40.52021],[-105.01072,40.52038],[-105.01072,40.52054],[-105.01074,40.52069],[-105.01074,40.52083],[-105.01074,40.52109],[-105.01074,40.52128],[-105.01074,40.52144],[-105.01074,40.52145],[-105.01074,40.52145],[-105.01075,40.5216],[-105.01076,40.52175],[-105.01078,40.52188],[-105.01079,40.522],[-105.01077,40.52209],[-105.01076,40.52217],[-105.01074,40.52226],[-105.01072,40.52234],[-105.0107,40.52246],[-105.01068,40.52257],[-105.01067,40.52269],[-105.01065,40.5228],[-105.01064,40.52289],[-105.01064,40.52297],[-105.01063,40.52306],[-105.01063,40.52314],[-105.01057,40.52319],[-105.01045,40.52323],[-105.01032,40.52323],[-105.0102,40.52322],[-105.01008,40.52322],[-105.00996,40.52322],[-105.00983,40.52322],[-105.00971,40.52322],[-105.00959,40.52322],[-105.00947,40.52322],[-105.00934,40.52322],[-105.00922,40.52322],[-105.0091,40.52321],[-105.00897,40.52321],[-105.00885,40.52321],[-105.00873,40.52321],[-105.00861,40.52321],[-105.00848,40.52321],[-105.00836,40.52321],[-105.00824,40.5232],[-105.00811,40.5232],[-105.00799,40.5232],[-105.00787,40.5232],[-105.00775,40.5232],[-105.00762,40.5232],[-105.0075,40.5232],[-105.00738,40.5232],[-105.00726,40.5232],[-105.00713,40.52319],[-105.00701,40.52319],[-105.00689,40.52319],[-105.00677,40.52319],[-105.00664,40.52319],[-105.00652,40.52319],[-105.00638,40.52319],[-105.00623,40.52318],[-105.00609,40.52318],[-105.00595,40.52318],[-105.0058,40.52318],[-105.00566,40.52318],[-105.00552,40.52318],[-105.00537,40.52318],[-105.00523,40.52318],[-105.00509,40.52318],[-105.00494,40.52318],[-105.0048,40.52318],[-105.00466,40.52318],[-105.00451,40.52318],[-105.00437,40.52318],[-105.00423,40.52318],[-105.00409,40.52318],[-105.00394,40.52317],[-105.0038,40.52317],[-105.00366,40.52317],[-105.00351,40.52317],[-105.00337,40.52317],[-105.00323,40.52317],[-105.00308,40.52317],[-105.00294,40.52317],[-105.0028,40.52317],[-105.00265,40.52317],[-105.00251,40.52317],[-105.00237,40.52316],[-105.00222,40.52316],[-105.00208,40.52316],[-105.00194,40.52316],[-105.00181,40.52316],[-105.00168,40.52316],[-105.00154,40.52316],[-105.00141,40.52315],[-105.00128,40.52315],[-105.00115,40.52315],[-105.00102,40.52315],[-105.00089,40.52315],[-105.00071,40.52315],[-105.00052,40.52315],[-105.00034,40.52316],[-105.00016,40.52316],[-104.99998,40.52317],[-104.9998,40.52317],[-104.99962,40.52318],[-104.99944,40.52318],[-104.99926,40.52318],[-104.99908,40.52319],[-104.9989,40.52319],[-104.99872,40.5232],[-104.99853,40.5232],[-104.99835,40.5232],[-104.99817,40.52321],[-104.99799,40.52321],[-104.99782,40.52322],[-104.99765,40.52322],[-104.99747,40.52326],[-104.9974,40.52338],[-104.99743,40.52354],[-104.99748,40.52366],[-104.99747,40.52375],[-104.99747,40.52384],[-104.99738,40.5239],[-104.99719,40.52393],[-104.99702,40.52394],[-104.99685,40.52395],[-104.99665,40.52395],[-104.99646,40.52386],[-104.99633,40.52381],[-104.99619,40.52375],[-104.99605,40.52371],[-104.99596,40.52373],[-104.99594,40.52378],[-104.99596,40.52388],[-104.99602,40.52397],[-104.99613,40.52403],[-104.99625,40.52409],[-104.99637,40.52415],[-104.99649,40.52421]]}},{"type":"Feature","properties":{"name":"16:51"},"geometry":{"type":"LineString","coordinates":[[-105.02856,40.52346],[-105.02886,40.52346],[-105.02908,40.52345],[-105.02938,40.52344],[-105.02966,40.52344],[-105.02997,40.52344],[-105.03031,40.52344],[-105.03059,40.52344],[-105.03085,40.52344],[-105.03109,40.52344],[-105.03127,40.52345],[-105.03146,40.52345],[-105.03168,40.52345],[-105.03186,40.52346],[-105.0321,40.52346],[-105.03232,40.52348],[-105.03252,40.52348],[-105.03254,40.52348],[-105.03281,40.52347],[-105.03309,40.52347],[-105.03341,40.52346],[-105.03377,40.52346],[-105.03397,40.52346],[-105.03414,40.52346],[-105.03436,40.52346],[-105.03456,40.52346],[-105.03476,40.52346],[-105.03496,40.52346],[-105.03514,40.52346],[-105.03532,40.52346],[-105.0355,40.52346],[-105.0357,40.52346],[-105.03603,40.52347],[-105.03635,40.52348],[-105.03657,40.52349],[-105.03673,40.52349],[-105.03697,40.52349],[-105.03724,40.52347],[-105.03754,40.52346],[-105.03786,40.52346],[-105.03814,40.52346],[-105.03836,40.52346],[-105.03854,40.52346],[-105.03875,40.52346],[-105.03895,40.52346],[-105.03919,40.52346],[-105.03941,40.52346],[-105.03969,40.52347],[-105.03995,40.52348],[-105.04021,40.5235],[-105.0404,40.52352],[-105.04052,40.52353],[-105.04074,40.52352],[-105.04096,40.5235],[-105.0412,40.5235],[-105.04146,40.52349],[-105.04167,40.5235],[-105.04189,40.52351],[-105.04213,40.52352],[-105.04241,40.52354],[-105.04273,40.52357],[-105.04305,40.52359],[-105.04336,40.52361],[-105.04372,40.52365],[-105.04408,40.52371],[-105.04426,40.52373],[-105.04446,40.52373],[-105.04466,40.52375],[-105.04485,40.52376],[-105.04505,40.52377],[-105.04525,40.52377],[-105.04549,40.52378],[-105.04569,40.52379],[-105.04593,40.5238],[-105.04611,40.52381],[-105.04631,40.52381],[-105.04666,40.52382],[-105.04684,40.52383],[-105.04694,40.52383],[-105.0472,40.52381],[-105.0474,40.52381],[-105.04766,40.52381],[-105.04789,40.52381],[-105.04813,40.52381],[-105.04835,40.52381],[-105.04855,40.52381],[-105.04879,40.52381],[-105.04903,40.52381],[-105.04932,40.52381],[-105.04964,40.52381],[-105.05002,40.52381],[-105.05022,40.52382],[-105.05042,40.52383],[-105.05064,40.52384],[-105.05084,40.52385],[-105.05101,40.52385],[-105.05133,40.52386],[-105.05153,40.52387],[-105.05165,40.52387],[-105.05185,40.52386],[-105.05209,40.52386],[-105.05236,40.52386],[-105.05272,40.52385],[-105.05292,40.52385],[-105.0531,40.52385],[-105.0533,40.52385],[-105.05352,40.52385],[-105.05371,40.52385],[-105.05393,40.52385],[-105.05415,40.52385],[-105.05435,40.52385],[-105.05459,40.52385],[-105.05479,40.52385],[-105.05501,40.52385],[-105.05522,40.52386],[-105.05542,40.52386],[-105.05564,40.52387],[-105.05586,40.52387],[-105.0561,40.52388],[-105.0563,40.52388],[-105.05654,40.52388],[-105.05674,40.52388],[-105.05696,40.52388],[-105.05719,40.52388],[-105.05741,40.52388],[-105.05761,40.52388],[-105.05783,40.52388],[-105.05803,40.52388],[-105.05824,40.52388],[-105.05845,40.52388],[-105.05864,40.52388],[-105.05882,40.52388],[-105.05918,40.52389],[-105.05946,40.5239],[-105.05966,40.5239],[-105.05966,40.5239],[-105.05985,40.52388],[-105.06011,40.52388],[-105.06045,40.52387],[-105.06065,40.52387],[-105.06085,40.52387],[-105.06105,40.52387],[-105.06127,40.52387],[-105.06146,40.52387],[-105.06168,40.52387],[-105.0619,40.52387],[-105.06212,40.52387],[-105.06234,40.52387],[-105.06254,40.52386],[-105.06274,40.52385],[-105.06296,40.52385],[-105.06317,40.52384],[-105.06337,40.52384],[-105.06353,40.52384],[-105.06371,40.52384],[-105.06405,40.52384],[-105.06435,40.52383],[-105.06458,40.52381],[-105.06478,40.52381],[-105.06496,40.52377],[-105.06522,40.52374],[-105.06546,40.52372],[-105.06572,40.5237],[-105.06601,40.52368],[-105.06631,40.52367],[-105.06657,40.52367],[-105.06681,40.52368],[-105.06695,40.52368],[-105.06713,40.52356],[-105.06717,40.52356],[-105.06735,40.52356],[-105.06748,40.52356],[-105.06766,40.52356],[-105.06784,40.52356],[-105.06802,40.52357],[-105.0682,40.52357],[-105.06825,40.52357],[-105.06843,40.52357],[-105.06861,40.52357],[-105.06864,40.52357],[-105.06871,40.52357],[-105.06889,40.52357],[-105.06907,40.52358],[-105.06921,40.52358],[-105.06939,40.52358],[-105.06957,40.52359],[-105.06962,40.52359],[-105.0698,40.52359],[-105.06998,40.52359],[-105.07016,40.52359],[-105.07034,40.52359],[-105.07052,40.52359],[-105.07057,40.52359],[-105.07062,40.52359],[-105.07066,40.5236],[-105.07071,40.52361],[-105.07089,40.52361],[-105.07107,40.52361],[-105.07125,40.52361],[-105.07143,40.52361],[-105.07161,40.52361],[-105.07179,40.52361],[-105.07192,40.52361],[-105.0721,40.52361],[-105.07218,40.52361],[-105.07236,40.52361],[-105.0725,40.52361],[-105.07268,40.52361],[-105.07286,40.52361],[-105.07304,40.52361],[-105.07322,40.52361],[-105.0734,40.52361],[-105.07358,40.52361],[-105.07376,40.52361],[-105.07394,40.52361],[-105.07403,40.52361],[-105.07416,40.52361],[-105.07434,40.52361],[-105.07452,40.52361],[-105.07456,40.52361],[-105.07474,40.52361],[-105.07492,40.52361],[-105.07508,40.52361],[-105.07526,40.52361],[-105.07543,40.52361],[-105.07561,40.52361],[-105.07564,40.52361],[-105.07582,40.52361],[-105.076,40.52361],[-105.07602,40.52361],[-105.0762,40.52361],[-105.07627,40.52361],[-105.07645,40.52361],[-105.0765,40.52361],[-105.07668,40.52361],[-105.07672,40.52361],[-105.0769,40.52362],[-105.077,40.52362],[-105.07718,40.52362],[-105.07718,40.52347],[-105.07719,40.52333],[-105.07719,40.52327],[-105.07719,40.52319],[-105.07719,40.52309],[-105.07719,40.52295],[-105.07719,40.52282],[-105.07718,40.52268],[-105.07718,40.52255],[-105.0772,40.52244],[-105.0772,40.52229],[-105.0772,40.52212],[-105.07718,40.52193],[-105.07718,40.52172],[-105.07718,40.52149],[-105.07718,40.52125],[-105.07718,40.521],[-105.07718,40.52074],[-105.0772,40.52047],[-105.0772,40.5202],[-105.0772,40.52006],[-105.0772,40.51992],[-105.0772,40.51978],[-105.0772,40.51964],[-105.0772,40.51949],[-105.0772,40.51935],[-105.0772,40.51922],[-105.0772,40.51907],[-105.07722,40.51881],[-105.07724,40.51855],[-105.07724,40.51831],[-105.07726,40.51808],[-105.07728,40.51789],[-105.07728,40.51775],[-105.0773,40.51759],[-105.0775,40.51754],[-105.07768,40.51754],[-105.07793,40.51754],[-105.07819,40.51754],[-105.07839,40.51754],[-105.07865,40.51754],[-105.07891,40.51755],[-105.07909,40.51756],[-105.07935,40.51756],[-105.07958,40.51758],[-105.07966,40.51769],[-105.07966,40.51783],[-105.07964,40.51798],[-105.07966,40.51815],[-105.0798,40.51826],[-105.08002,40.51828],[-105.08018,40.51831],[-105.08026,40.51832]]}},{"type":"Feature","properties":{"name":"16:52"},"geometry":{"type":"LineString","coordinates":[[-104.99649,40.52421],[-104.99649,40.52421],[-104.99654,40.52423],[-104.9966,40.52423],[-104.99677,40.52423],[-104.99683,40.52421],[-104.99686,40.52415],[-104.9969,40.52406],[-104.99695,40.52403],[-104.99707,40.52401],[-104.99728,40.52401],[-104.99746,40.524],[-104.99757,40.52394],[-104.99762,40.52386],[-104.99764,40.52374],[-104.99764,40.52366],[-104.99764,40.52357],[-104.99767,40.52348],[-104.99779,40.52343],[-104.9979,40.52341],[-104.99801,40.52339],[-104.99812,40.52339],[-104.99823,40.52339],[-104.99834,40.52339],[-104.99845,40.52339],[-104.99856,40.52339],[-104.99867,40.52339],[-104.99879,40.52339],[-104.9989,40.52338],[-104.99901,40.52338],[-104.99912,40.52338],[-104.99923,40.52338],[-104.99934,40.52338],[-104.99945,40.52338],[-104.99957,40.52338],[-104.99968,40.52337],[-104.99979,40.52337],[-104.9999,40.52337],[-105.00001,40.52337],[-105.00012,40.52337],[-105.00023,40.52337],[-105.00044,40.52337],[-105.00065,40.52337],[-105.00086,40.52338],[-105.00106,40.52338],[-105.00127,40.52339],[-105.00148,40.52339],[-105.00169,40.52339],[-105.0019,40.5234],[-105.00211,40.5234],[-105.00233,40.5234],[-105.00254,40.5234],[-105.00276,40.5234],[-105.00298,40.5234],[-105.0032,40.5234],[-105.00341,40.52341],[-105.00363,40.52341],[-105.00384,40.52341],[-105.00406,40.52341],[-105.00428,40.52341],[-105.00449,40.52341],[-105.00471,40.52341],[-105.00493,40.52341],[-105.00514,40.52341],[-105.00536,40.52342],[-105.0055,40.52342],[-105.00564,40.52342],[-105.00578,40.52342],[-105.00592,40.52342],[-105.00605,40.52343],[-105.00619,40.52343],[-105.00633,40.52343],[-105.00647,40.52343],[-105.00661,40.52343],[-105.00675,40.52343],[-105.00689,40.52344],[-105.00703,40.52344],[-105.00717,40.52344],[-105.0073,40.52344],[-105.00744,40.52345],[-105.00758,40.52345],[-105.00772,40.52345],[-105.00786,40.52345],[-105.008,40.52345],[-105.00814,40.52345],[-105.00827,40.52346],[-105.00841,40.52346],[-105.00855,40.52346],[-105.00869,40.52346],[-105.00883,40.52346],[-105.00897,40.52347],[-105.00911,40.52347],[-105.00925,40.52347],[-105.00939,40.52347],[-105.00952,40.52347],[-105.00966,40.52347],[-105.0098,40.52348],[-105.00993,40.52348],[-105.01006,40.52348],[-105.01019,40.52348],[-105.01032,40.52348],[-105.01044,40.52348],[-105.01057,40.52348],[-105.0107,40.52348],[-105.01083,40.52348],[-105.01096,40.52348],[-105.01109,40.52348],[-105.01122,40.52348],[-105.01134,40.52348],[-105.01147,40.52348],[-105.0116,40.52348],[-105.01173,40.52348],[-105.01186,40.52348],[-105.01198,40.52348],[-105.01211,40.52348],[-105.01224,40.52348],[-105.01237,40.52348],[-105.0125,40.52348],[-105.01263,40.52348],[-105.01276,40.52348],[-105.01288,40.52348],[-105.01301,40.52348],[-105.01314,40.52348],[-105.01327,40.52348],[-105.0134,40.52348],[-105.01353,40.52348],[-105.01365,40.52348],[-105.01378,40.52348],[-105.01391,40.52348],[-105.0141,40.52348],[-105.0143,40.52349],[-105.01449,40.52349],[-105.01468,40.52349],[-105.01487,40.52349],[-105.01506,40.5235],[-105.01525,40.5235],[-105.01545,40.5235],[-105.01559,40.52353],[-105.01574,40.52355],[-105.01586,40.52356],[-105.01597,40.52357],[-105.01609,40.52358],[-105.0162,40.52358],[-105.01644,40.52358],[-105.01668,40.52357],[-105.01694,40.52357],[-105.01728,40.52355],[-105.01756,40.52355],[-105.01787,40.52353],[-105.01817,40.52352],[-105.01849,40.5235],[-105.01877,40.52349],[-105.01909,40.52349],[-105.01936,40.52348],[-105.01958,40.52346],[-105.01978,40.52346],[-105.01998,40.52346],[-105.02018,40.52344],[-105.02036,40.52343],[-105.02057,40.52343],[-105.02087,40.52342],[-105.02117,40.52343],[-105.02149,40.52343],[-105.02181,40.52344],[-105.02209,40.52345],[-105.02224,40.52345],[-105.02244,40.52343],[-105.02264,40.52342],[-105.02292,40.52342],[-105.02324,40.52341],[-105.0236,40.52339],[-105.0238,40.52339],[-105.02401,40.52338],[-105.02419,40.52338],[-105.02439,40.52338],[-105.02459,40.52338],[-105.02477,40.52338],[-105.02495,40.52338],[-105.0253,40.52337],[-105.0256,40.52338],[-105.02584,40.52338],[-105.02608,40.52338],[-105.02626,40.52338],[-105.0265,40.52338],[-105.02674,40.52339],[-105.02697,40.52339],[-105.02729,40.5234],[-105.02765,40.52341],[-105.02801,40.52343],[-105.02831,40.52346],[-105.0285,40.52347],[-105.0286,40.52347],[-105.02886,40.52346],[-105.02908,40.52345],[-105.02938,40.52344],[-105.02966,40.52344],[-105.02997,40.52344],[-105.03031,40.52344],[-105.03059,40.52344],[-105.03085,40.52344],[-105.03109,40.52344],[-105.03127,40.52345],[-105.03146,40.52345],[-105.03168,40.52345],[-105.03186,40.52346],[-105.0321,40.52346],[-105.03232,40.52348],[-105.03252,40.52348],[-105.03254,40.52348],[-105.03281,40.52347],[-105.03309,40.52347],[-105.03341,40.52346],[-105.03377,40.52346],[-105.03397,40.52346],[-105.03414,40.52346],[-105.03436,40.52346],[-105.03456,40.52346],[-105.03476,40.52346],[-105.03496,40.52346],[-105.03514,40.52346],[-105.03532,40.52346],[-105.0355,40.52346],[-105.0357,40.52346],[-105.03603,40.52347],[-105.03635,40.52348],[-105.03657,40.52349],[-105.03673,40.52349],[-105.03697,40.52349],[-105.03724,40.52347],[-105.03754,40.52346],[-105.03786,40.52346],[-105.03814,40.52346],[-105.03836,40.52346],[-105.03854,40.52346],[-105.03875,40.52346],[-105.03895,40.52346],[-105.03919,40.52346],[-105.03941,40.52346],[-105.03969,40.52347],[-105.03995,40.52348],[-105.04021,40.5235],[-105.0404,40.52352],[-105.04052,40.52353],[-105.04074,40.52352],[-105.04096,40.5235],[-105.0412,40.5235],[-105.04146,40.52349],[-105.04167,40.5235],[-105.04189,40.52351],[-105.04213,40.52352],[-105.04241,40.52354],[-105.04273,40.52357],[-105.04305,40.52359],[-105.04336,40.52361],[-105.04372,40.52365],[-105.04408,40.52371],[-105.04426,40.52373],[-105.04446,40.52373],[-105.04466,40.52375],[-105.04485,40.52376],[-105.04505,40.52377],[-105.04525,40.52377],[-105.04549,40.52378],[-105.04569,40.52379],[-105.04593,40.5238],[-105.04611,40.52381],[-105.04631,40.52381],[-105.04666,40.52382],[-105.04684,40.52383],[-105.04694,40.52383],[-105.0472,40.52381],[-105.0474,40.52381],[-105.04766,40.52381],[-105.04789,40.52381],[-105.04813,40.52381],[-105.04835,40.52381],[-105.04855,40.52381],[-105.04879,40.52381],[-105.04903,40.52381],[-105.04932,40.52381],[-105.04964,40.52381],[-105.05002,40.52381],[-105.05022,40.52382],[-105.05042,40.52383],[-105.05064,40.52384],[-105.05084,40.52385],[-105.05101,40.52385],[-105.05133,40.52386],[-105.05153,40.52387],[-105.05165,40.52387],[-105.05185,40.52386],[-105.05209,40.52386],[-105.05236,40.52386],[-105.05272,40.52385],[-105.05292,40.52385],[-105.0531,40.52385],[-105.0533,40.52385],[-105.05352,40.52385],[-105.05371,40.52385],[-105.05393,40.52385],[-105.05415,40.52385],[-105.05435,40.52385],[-105.05459,40.52385],[-105.05479,40.52385],[-105.05501,40.52385],[-105.05522,40.52386],[-105.05542,40.52386],[-105.05564,40.52387],[-105.05586,40.52387],[-105.0561,40.52388],[-105.0563,40.52388],[-105.05654,40.52388],[-105.05674,40.52388],[-105.05696,40.52388],[-105.05719,40.52388],[-105.05741,40.52388],[-105.05761,40.52388],[-105.05783,40.52388],[-105.05803,40.52388],[-105.05824,40.52388],[-105.05845,40.52388],[-105.05864,40.52388],[-105.05882,40.52388],[-105.05918,40.52389],[-105.05946,40.5239],[-105.05966,40.5239],[-105.05966,40.5239],[-105.05985,40.52388],[-105.06011,40.52388],[-105.06045,40.52387],[-105.06065,40.52387],[-105.06085,40.52387],[-105.06105,40.52387],[-105.06127,40.52387],[-105.06146,40.52387],[-105.06168,40.52387],[-105.0619,40.52387],[-105.06212,40.52387],[-105.06234,40.52387],[-105.06254,40.52386],[-105.06274,40.52385],[-105.06296,40.52385],[-105.06317,40.52384],[-105.06337,40.52384],[-105.06353,40.52384],[-105.06371,40.52384],[-105.06405,40.52384],[-105.06435,40.52383],[-105.06458,40.52381],[-105.06478,40.52381],[-105.06496,40.52377],[-105.06522,40.52374],[-105.06546,40.52372],[-105.06572,40.5237],[-105.06601,40.52368],[-105.06631,40.52367],[-105.06657,40.52367],[-105.06681,40.52368],[-105.06695,40.52368],[-105.06713,40.52356],[-105.06717,40.52356],[-105.06735,40.52356],[-105.06748,40.52356],[-105.06766,40.52356],[-105.06784,40.52356],[-105.06802,40.52357],[-105.0682,40.52357],[-105.06825,40.52357],[-105.06843,40.52357],[-105.06861,40.52357],[-105.06864,40.52357],[-105.06871,40.52357],[-105.06889,40.52357],[-105.06907,40.52358],[-105.06921,40.52358],[-105.06939,40.52358],[-105.06957,40.52359],[-105.06962,40.52359],[-105.0698,40.52359],[-105.06998,40.52359],[-105.07016,40.52359],[-105.07034,40.52359],[-105.07052,40.52359],[-105.07057,40.52359],[-105.07062,40.52359],[-105.07066,40.5236],[-105.07071,40.52361],[-105.07089,40.52361],[-105.07107,40.52361],[-105.07125,40.52361],[-105.07143,40.52361],[-105.07161,40.52361],[-105.07179,40.52361],[-105.07192,40.52361],[-105.0721,40.52361],[-105.07218,40.52361],[-105.07236,40.52361],[-105.0725,40.52361],[-105.07268,40.52361],[-105.07286,40.52361],[-105.07304,40.52361],[-105.07322,40.52361],[-105.0734,40.52361],[-105.07358,40.52361],[-105.07376,40.52361],[-105.07394,40.52361],[-105.07403,40.52361],[-105.07416,40.52361],[-105.07434,40.52361],[-105.07452,40.52361],[-105.07456,40.52361],[-105.07474,40.52361],[-105.07492,40.52361],[-105.07508,40.52361],[-105.07526,40.52361],[-105.07543,40.52361],[-105.07561,40.52361],[-105.07564,40.52361],[-105.07582,40.52361],[-105.076,40.52361],[-105.07602,40.52361],[-105.0762,40.52361],[-105.07627,40.52361],[-105.07645,40.52361],[-105.0765,40.52361],[-105.07668,40.52361],[-105.07672,40.52361],[-105.0769,40.52362],[-105.077,40.52362],[-105.07718,40.52362],[-105.07718,40.52347],[-105.07719,40.52333],[-105.07719,40.52327],[-105.07719,40.52319],[-105.07719,40.52309],[-105.07719,40.52295],[-105.07719,40.52282],[-105.07718,40.52268],[-105.07718,40.52255],[-105.0772,40.52244],[-105.0772,40.52229],[-105.0772,40.52212],[-105.07718,40.52193],[-105.07718,40.52172],[-105.07718,40.52149],[-105.07718,40.52125],[-105.07718,40.521],[-105.07718,40.52074],[-105.0772,40.52047],[-105.0772,40.5202],[-105.0772,40.52006],[-105.0772,40.51992],[-105.0772,40.51978],[-105.0772,40.51964],[-105.0772,40.51949],[-105.0772,40.51935],[-105.0772,40.51922],[-105.0772,40.51907],[-105.07722,40.51881],[-105.07724,40.51855],[-105.07724,40.51831],[-105.07726,40.51808],[-105.07728,40.51789],[-105.07728,40.51775],[-105.0773,40.51759],[-105.0775,40.51754],[-105.07768,40.51754],[-105.07793,40.51754],[-105.07819,40.51754],[-105.07839,40.51754],[-105.07865,40.51754],[-105.07891,40.51755],[-105.07909,40.51756],[-105.07935,40.51756],[-105.07958,40.51758],[-105.07966,40.51769],[-105.07966,40.51783],[-105.07964,40.51798],[-105.07966,40.51815],[-105.0798,40.51826],[-105.08002,40.51828],[-105.08018,40.51831],[-105.08026,40.51832]]}},{"type":"Feature","properties":{"name":"18:01"},"geometry":{"type":"LineString","coordinates":[[-105.03353,40.56573],[-105.03359,40.56593],[-105.03359,40.56609],[-105.03359,40.56627],[-105.03361,40.56646],[-105.03361,40.5666],[-105.03361,40.56674],[-105.03361,40.56693],[-105.03359,40.56709],[-105.03359,40.56723],[-105.03365,40.56737],[-105.03383,40.56743],[-105.03403,40.56744],[-105.03427,40.56746],[-105.03452,40.56747],[-105.03482,40.56748],[-105.03512,40.56748],[-105.03544,40.56749],[-105.03579,40.5675],[-105.03611,40.56752],[-105.03647,40.56752],[-105.03679,40.56753],[-105.03709,40.56752],[-105.03738,40.56751],[-105.03762,40.56748],[-105.0379,40.56744],[-105.03814,40.56741],[-105.03834,40.56739],[-105.03856,40.56737],[-105.03878,40.56734],[-105.03899,40.56731],[-105.03919,40.56728],[-105.03941,40.56727],[-105.03965,40.56724],[-105.03995,40.56724],[-105.04021,40.56723],[-105.04046,40.56723],[-105.04074,40.56723],[-105.04096,40.56723],[-105.0412,40.56723],[-105.04144,40.56722],[-105.04167,40.56722],[-105.04193,40.56722],[-105.04211,40.56722],[-105.04235,40.56722],[-105.04241,40.56722],[-105.04261,40.56721],[-105.04283,40.5672],[-105.04311,40.5672],[-105.04331,40.56719],[-105.04354,40.56718],[-105.04376,40.56718],[-105.04402,40.56718],[-105.0443,40.56717],[-105.04456,40.56717],[-105.04485,40.56717],[-105.04511,40.56717],[-105.04531,40.56717],[-105.04549,40.56718],[-105.04557,40.56718],[-105.04581,40.56717],[-105.04605,40.56717],[-105.04621,40.56717],[-105.04642,40.56717],[-105.04666,40.56716],[-105.0469,40.56716],[-105.04716,40.56716],[-105.04744,40.56715],[-105.04771,40.56715],[-105.04799,40.56715],[-105.04827,40.56715],[-105.04855,40.56714],[-105.04885,40.56714],[-105.04913,40.56714],[-105.04939,40.56714],[-105.04966,40.56714],[-105.04992,40.56714],[-105.05022,40.56714],[-105.0505,40.56714],[-105.05079,40.56714],[-105.05107,40.56714],[-105.05135,40.56714],[-105.05161,40.56714],[-105.05183,40.56714],[-105.05205,40.56714],[-105.05219,40.56714],[-105.0524,40.56713],[-105.05266,40.56713],[-105.05288,40.56713],[-105.0531,40.56713],[-105.0534,40.56713],[-105.05366,40.56713],[-105.05395,40.56713],[-105.05427,40.56713],[-105.05455,40.56713],[-105.05485,40.56713],[-105.05517,40.56714],[-105.05548,40.56714],[-105.05578,40.56714],[-105.05608,40.56714],[-105.05636,40.56714],[-105.05664,40.56714],[-105.05688,40.56714],[-105.05713,40.56714],[-105.05733,40.56714],[-105.05751,40.56714],[-105.05771,40.56714],[-105.05791,40.56714],[-105.05813,40.56714],[-105.0584,40.56714],[-105.0586,40.56714],[-105.05882,40.56714],[-105.05906,40.56714],[-105.05924,40.56714],[-105.05942,40.56714],[-105.05942,40.56714],[-105.05966,40.56714],[-105.05992,40.56714],[-105.06013,40.56714],[-105.06039,40.56714],[-105.06067,40.56714],[-105.06095,40.56714],[-105.06127,40.56714],[-105.06156,40.56714],[-105.06186,40.56714],[-105.06218,40.56714],[-105.06248,40.56714],[-105.06282,40.56715],[-105.06313,40.56715],[-105.06343,40.56715],[-105.06371,40.56714],[-105.06403,40.56714],[-105.06432,40.56715],[-105.06462,40.56715],[-105.06494,40.56715],[-105.06522,40.56715],[-105.06554,40.56715],[-105.06584,40.56715],[-105.06611,40.56715],[-105.06635,40.56714],[-105.06657,40.56714],[-105.06677,40.56715],[-105.06695,40.56719],[-105.06699,40.56737],[-105.06697,40.56755],[-105.06697,40.5677],[-105.06697,40.56779],[-105.06697,40.56796],[-105.06697,40.56814],[-105.06697,40.56829],[-105.06697,40.56845],[-105.06697,40.56863],[-105.06697,40.56881],[-105.06695,40.56901],[-105.06695,40.5692],[-105.06695,40.56939],[-105.06695,40.56958],[-105.06695,40.56976],[-105.06695,40.56994],[-105.06695,40.57012],[-105.06695,40.5703],[-105.06695,40.57046],[-105.06695,40.57062],[-105.06695,40.57077],[-105.06693,40.57093],[-105.06695,40.5711],[-105.06695,40.57126],[-105.06691,40.57143],[-105.06687,40.57158],[-105.06683,40.57175],[-105.06675,40.57192],[-105.06669,40.5721],[-105.06667,40.57229],[-105.06663,40.57248],[-105.06663,40.57268],[-105.06663,40.57289],[-105.06663,40.57309],[-105.06663,40.57328],[-105.06663,40.57346],[-105.06663,40.57364],[-105.06663,40.57379],[-105.06663,40.57394],[-105.06663,40.5741],[-105.06663,40.57424],[-105.06669,40.57436],[-105.06691,40.57436],[-105.06693,40.57436],[-105.06711,40.57436],[-105.06732,40.57436],[-105.06752,40.57436],[-105.06772,40.57436],[-105.06794,40.57436],[-105.0682,40.57436],[-105.06844,40.57436],[-105.06868,40.57436],[-105.06893,40.57436],[-105.06917,40.57436],[-105.06939,40.57436],[-105.06963,40.57436],[-105.06981,40.57437],[-105.07001,40.57437],[-105.07021,40.57441],[-105.07025,40.57454],[-105.07025,40.57465],[-105.07025,40.5748],[-105.07025,40.57496],[-105.07025,40.57517],[-105.07025,40.57534],[-105.07025,40.57549],[-105.07025,40.57566],[-105.07025,40.57584],[-105.07025,40.57602],[-105.07023,40.57621],[-105.07023,40.57641],[-105.07023,40.57661],[-105.07023,40.5768],[-105.07023,40.577],[-105.07023,40.5772],[-105.07023,40.57738],[-105.07023,40.57755],[-105.07023,40.57771],[-105.07023,40.57788],[-105.07021,40.57802],[-105.07021,40.5782],[-105.07021,40.57834],[-105.07021,40.57841],[-105.07021,40.5786],[-105.07021,40.5788],[-105.07021,40.57896],[-105.07021,40.57912],[-105.07021,40.57928],[-105.07021,40.57945],[-105.07021,40.57962],[-105.07019,40.57979],[-105.07019,40.57997],[-105.07019,40.58016],[-105.07019,40.58033],[-105.07019,40.58052],[-105.07019,40.58071],[-105.07019,40.5809],[-105.07019,40.58105],[-105.07017,40.58122],[-105.07017,40.58136],[-105.07015,40.58154],[-105.07015,40.58172],[-105.07015,40.58192],[-105.07015,40.58206],[-105.07015,40.58206],[-105.07015,40.58221],[-105.07015,40.58239],[-105.07015,40.5826],[-105.07015,40.58274],[-105.07015,40.5829],[-105.07015,40.58305],[-105.07015,40.58322],[-105.07013,40.5834],[-105.07013,40.58355],[-105.07013,40.58371],[-105.07015,40.58386],[-105.07017,40.58405],[-105.07019,40.5842],[-105.07035,40.58429],[-105.07058,40.58429],[-105.07076,40.58429],[-105.07098,40.5843],[-105.0712,40.5843],[-105.07138,40.5843],[-105.07162,40.58431],[-105.07179,40.58431],[-105.07203,40.58431],[-105.07223,40.5843],[-105.07231,40.5843],[-105.07253,40.58429],[-105.07277,40.58429],[-105.07301,40.58429],[-105.07327,40.58429],[-105.07345,40.58429],[-105.0737,40.5843],[-105.0739,40.5843],[-105.07412,40.5843],[-105.07434,40.5843],[-105.0746,40.5843],[-105.07478,40.5843],[-105.07506,40.5843],[-105.07523,40.5843],[-105.07541,40.58431],[-105.07565,40.58431],[-105.07585,40.58431],[-105.07593,40.58431],[-105.07601,40.58424],[-105.07625,40.58425],[-105.07645,40.58425],[-105.07668,40.58425],[-105.07684,40.58425],[-105.07706,40.58425],[-105.0773,40.58425],[-105.07752,40.58425],[-105.07772,40.58425],[-105.07792,40.58425],[-105.07809,40.58425],[-105.07831,40.58429],[-105.07849,40.58431],[-105.07853,40.58431],[-105.07873,40.58429],[-105.07887,40.58438],[-105.07889,40.58457],[-105.07889,40.58472],[-105.07887,40.58487],[-105.07887,40.58501],[-105.07887,40.58518],[-105.07887,40.58532],[-105.07887,40.5855],[-105.07887,40.58567],[-105.07887,40.58587],[-105.07887,40.58605],[-105.07887,40.58624],[-105.07887,40.58637],[-105.07887,40.58657],[-105.07887,40.58671],[-105.07887,40.58687],[-105.07887,40.58704],[-105.07887,40.58724],[-105.07887,40.58738],[-105.07887,40.58754],[-105.07887,40.5877],[-105.07887,40.58786],[-105.07887,40.58803],[-105.07887,40.58822],[-105.07887,40.58839],[-105.07887,40.58858],[-105.07887,40.58874],[-105.07887,40.58892],[-105.07887,40.58908],[-105.07887,40.58922],[-105.07881,40.58938],[-105.07867,40.5895],[-105.07865,40.58964],[-105.07863,40.58982],[-105.07859,40.58996],[-105.07859,40.59001]]}},{"type":"Feature","properties":{"name":"18:51"},"geometry":{"type":"LineString","coordinates":[[-105.07861,40.59002],[-105.07859,40.59012],[-105.07859,40.59024],[-105.07857,40.59029],[-105.07852,40.59036],[-105.07843,40.59042],[-105.07841,40.59047],[-105.0784,40.59051],[-105.07841,40.59065],[-105.07841,40.59078],[-105.07841,40.59081],[-105.07823,40.59081],[-105.07814,40.59081],[-105.07803,40.5908],[-105.07785,40.5908],[-105.07767,40.5908],[-105.07761,40.5908],[-105.0774,40.5908],[-105.07722,40.59079],[-105.07708,40.59079],[-105.07708,40.59065],[-105.07709,40.59052],[-105.07709,40.59043],[-105.07708,40.59029],[-105.07708,40.59026],[-105.07708,40.59021],[-105.07714,40.59005],[-105.07714,40.58991],[-105.07714,40.58975],[-105.07714,40.58958],[-105.07714,40.58939],[-105.07714,40.58917],[-105.07714,40.58902],[-105.07714,40.58888],[-105.07714,40.58873],[-105.07714,40.5887],[-105.07714,40.58856],[-105.07714,40.58838],[-105.07714,40.58822],[-105.07714,40.58803],[-105.07714,40.58789],[-105.07714,40.58772],[-105.07714,40.58755],[-105.07714,40.58736],[-105.07714,40.58719],[-105.07714,40.58701],[-105.07714,40.58686],[-105.07714,40.58668],[-105.07714,40.58649],[-105.07714,40.58629],[-105.07714,40.58608],[-105.07716,40.58588],[-105.07718,40.5857],[-105.0772,40.58554],[-105.0772,40.58541],[-105.0772,40.58537],[-105.07714,40.58527],[-105.07714,40.58513],[-105.0771,40.58495],[-105.0771,40.58477],[-105.0771,40.5846],[-105.0771,40.58445],[-105.0771,40.58431],[-105.07694,40.58423],[-105.07672,40.58425],[-105.07646,40.58425],[-105.07621,40.58425],[-105.07601,40.58425],[-105.07583,40.58425],[-105.07559,40.58425],[-105.07537,40.58425],[-105.07511,40.58425],[-105.07489,40.58425],[-105.07476,40.58425],[-105.07456,40.58425],[-105.07434,40.58424],[-105.07414,40.58423],[-105.0739,40.58423],[-105.0737,40.58422],[-105.0735,40.58422],[-105.07332,40.58422],[-105.07313,40.58421],[-105.07293,40.58422],[-105.07277,40.58422],[-105.07253,40.58422],[-105.07235,40.58422],[-105.07225,40.58422],[-105.07205,40.58422],[-105.07185,40.58422],[-105.0716,40.58422],[-105.07138,40.58421],[-105.07116,40.58422],[-105.07094,40.58422],[-105.07072,40.58422],[-105.07053,40.58422],[-105.07035,40.58422],[-105.07019,40.58418],[-105.07015,40.58402],[-105.07015,40.58387],[-105.07015,40.58371],[-105.07015,40.58352],[-105.07015,40.58333],[-105.07015,40.58312],[-105.07015,40.58293],[-105.07015,40.58274],[-105.07015,40.58256],[-105.07015,40.58238],[-105.07017,40.58219],[-105.07017,40.58203],[-105.07017,40.58187],[-105.07017,40.58172],[-105.07019,40.58157],[-105.07019,40.58141],[-105.07019,40.58123],[-105.07019,40.58109],[-105.07019,40.58109],[-105.07019,40.58095],[-105.07019,40.58077],[-105.07019,40.58057],[-105.07019,40.58042],[-105.07019,40.58026],[-105.07019,40.58009],[-105.07019,40.5799],[-105.07019,40.57972],[-105.07019,40.57954],[-105.07019,40.57934],[-105.07019,40.57916],[-105.07019,40.57897],[-105.07019,40.57879],[-105.07019,40.57862],[-105.07021,40.57847],[-105.07021,40.57831],[-105.07021,40.57816],[-105.07021,40.57799],[-105.07021,40.57782],[-105.07021,40.5777],[-105.07021,40.57754],[-105.07021,40.57734],[-105.07021,40.57719],[-105.07021,40.57702],[-105.07021,40.57684],[-105.07021,40.57664],[-105.07021,40.57644],[-105.07021,40.57624],[-105.07021,40.57603],[-105.07021,40.57584],[-105.07021,40.57565],[-105.07021,40.57545],[-105.07021,40.57526],[-105.07021,40.57507],[-105.07021,40.57488],[-105.07023,40.57471],[-105.07023,40.57453],[-105.07023,40.57438],[-105.07011,40.57426],[-105.06989,40.57425],[-105.06981,40.57425],[-105.06959,40.57426],[-105.06937,40.57428],[-105.06919,40.57428],[-105.06897,40.57428],[-105.06874,40.57428],[-105.06846,40.57428],[-105.06822,40.57427],[-105.06794,40.57427],[-105.06768,40.57427],[-105.06745,40.57426],[-105.06719,40.57426],[-105.06699,40.57426],[-105.06679,40.57425],[-105.06659,40.57417],[-105.06657,40.57403],[-105.06657,40.57383],[-105.06657,40.57368],[-105.06657,40.57351],[-105.06657,40.57334],[-105.06659,40.5732],[-105.06659,40.5731],[-105.06659,40.57294],[-105.06657,40.57275],[-105.06657,40.57259],[-105.06657,40.57241],[-105.06659,40.57223],[-105.06663,40.57205],[-105.06673,40.57186],[-105.06679,40.5717],[-105.06683,40.57153],[-105.06685,40.57139],[-105.06685,40.57126],[-105.06687,40.57107],[-105.06687,40.57088],[-105.06685,40.57072],[-105.06685,40.57051],[-105.06685,40.57035],[-105.06685,40.57017],[-105.06685,40.56999],[-105.06685,40.56981],[-105.06687,40.56963],[-105.06685,40.56944],[-105.06687,40.56925],[-105.06687,40.56906],[-105.06687,40.56886],[-105.06687,40.56865],[-105.06687,40.56845],[-105.06687,40.56824],[-105.06687,40.56804],[-105.06687,40.56783],[-105.06687,40.56764],[-105.06687,40.56747],[-105.06687,40.56728],[-105.06689,40.56714],[-105.06671,40.56705],[-105.06647,40.56704],[-105.06631,40.56703],[-105.06627,40.56703],[-105.06605,40.56704],[-105.06588,40.56704],[-105.06564,40.56704],[-105.06538,40.56704],[-105.06508,40.56704],[-105.06476,40.56704],[-105.06442,40.56705],[-105.06411,40.56704],[-105.06375,40.56704],[-105.06341,40.56705],[-105.06307,40.56705],[-105.06278,40.56704],[-105.06254,40.56704],[-105.0623,40.56701],[-105.06222,40.56701],[-105.062,40.56703],[-105.06174,40.56703],[-105.06149,40.56703],[-105.06121,40.56703],[-105.06091,40.56703],[-105.06061,40.56703],[-105.06027,40.56703],[-105.05997,40.56703],[-105.05966,40.56703],[-105.05936,40.56703],[-105.05906,40.56703],[-105.0588,40.56703],[-105.05856,40.56703],[-105.05832,40.56703],[-105.05815,40.56702],[-105.05793,40.56702],[-105.05771,40.56702],[-105.05745,40.56701],[-105.05727,40.567],[-105.05709,40.567],[-105.05689,40.56701],[-105.05668,40.56702],[-105.05648,40.56702],[-105.05628,40.56702],[-105.05604,40.56702],[-105.05574,40.56702],[-105.05548,40.56702],[-105.05522,40.56702],[-105.05495,40.56702],[-105.05465,40.56702],[-105.05439,40.56702],[-105.05413,40.56702],[-105.05393,40.56702],[-105.05366,40.56702],[-105.05346,40.56702],[-105.05324,40.56702],[-105.053,40.56702],[-105.05274,40.56702],[-105.0525,40.56702],[-105.05232,40.56702],[-105.05213,40.56701],[-105.05211,40.56701],[-105.05191,40.56702],[-105.05167,40.56702],[-105.05145,40.56703],[-105.05121,40.56702],[-105.05093,40.56702],[-105.05066,40.56702],[-105.05038,40.56702],[-105.05006,40.56702],[-105.04974,40.56702],[-105.04942,40.56702],[-105.04909,40.56702],[-105.04877,40.56702],[-105.04843,40.56702],[-105.04809,40.56702],[-105.04778,40.56701],[-105.04748,40.56701],[-105.04716,40.56701],[-105.04688,40.56701],[-105.0466,40.567],[-105.04636,40.567],[-105.04635,40.567],[-105.04611,40.56701],[-105.04585,40.56701],[-105.04567,40.56701],[-105.04543,40.56701],[-105.04521,40.56701],[-105.04497,40.56701],[-105.04478,40.56702],[-105.04456,40.56702],[-105.04432,40.56702],[-105.04404,40.56702],[-105.04376,40.56703],[-105.04346,40.56703],[-105.04317,40.56704],[-105.04289,40.56705],[-105.04257,40.56705],[-105.04227,40.56705],[-105.04193,40.56706],[-105.04163,40.56706],[-105.04134,40.56706],[-105.04104,40.56706],[-105.0408,40.56706],[-105.04054,40.56706],[-105.04032,40.56707],[-105.04009,40.56707],[-105.03989,40.56707],[-105.03969,40.56707],[-105.03943,40.56707],[-105.03919,40.56709],[-105.03895,40.5671],[-105.03866,40.56714],[-105.03836,40.56718],[-105.03802,40.56723],[-105.0377,40.56728],[-105.03736,40.56733],[-105.03703,40.56736],[-105.03667,40.56736],[-105.03635,40.56736],[-105.03605,40.56734],[-105.03574,40.56734],[-105.03536,40.56733],[-105.03518,40.56732],[-105.035,40.56732],[-105.0348,40.56732],[-105.03462,40.56732],[-105.03442,40.56731],[-105.03424,40.56731],[-105.03391,40.5673],[-105.03359,40.56728],[-105.03339,40.56728],[-105.03319,40.56727],[-105.03315,40.56727],[-105.03295,40.56732],[-105.03278,40.5673],[-105.03248,40.56728],[-105.0323,40.56728],[-105.03206,40.56725],[-105.03182,40.56723],[-105.03156,40.56722],[-105.03131,40.56721],[-105.03107,40.56718],[-105.03083,40.56716],[-105.03059,40.56714],[-105.03037,40.56714],[-105.03017,40.56712],[-105.02991,40.5671],[-105.02974,40.56704],[-105.02967,40.5669],[-105.02967,40.56671],[-105.02967,40.56655],[-105.02967,40.56639],[-105.02967,40.56621],[-105.02967,40.56604],[-105.02967,40.56587],[-105.0297,40.56571],[-105.0297,40.56553],[-105.0297,40.56542],[-105.0297,40.56524],[-105.0297,40.56508],[-105.0297,40.56487],[-105.0297,40.56471],[-105.0297,40.56457],[-105.0297,40.56442],[-105.0297,40.56426],[-105.0297,40.56412],[-105.02966,40.56396],[-105.0296,40.56382],[-105.0295,40.56368],[-105.02938,40.56356],[-105.02924,40.56346],[-105.02908,40.56337],[-105.02908,40.56335],[-105.02896,40.56326],[-105.02878,40.56317],[-105.02856,40.56305],[-105.02842,40.56296],[-105.02827,40.56286],[-105.02813,40.56276],[-105.02797,40.56264],[-105.02783,40.5625],[-105.02771,40.56236],[-105.02761,40.5622],[-105.02749,40.56204],[-105.02741,40.56186],[-105.02729,40.5617],[-105.02719,40.56152],[-105.02709,40.56136],[-105.02703,40.56118],[-105.02697,40.56101],[-105.02693,40.56083],[-105.02689,40.56064],[-105.02689,40.56046],[-105.02689,40.56027],[-105.02689,40.56013],[-105.02689,40.55997],[-105.02693,40.55983],[-105.02715,40.55978],[-105.02737,40.55983],[-105.02763,40.55989],[-105.02781,40.55992],[-105.02803,40.55996],[-105.02824,40.56001],[-105.02846,40.56005],[-105.02866,40.56011],[-105.02888,40.56016],[-105.02908,40.56024],[-105.02928,40.56035],[-105.02948,40.56047],[-105.02963,40.56063],[-105.02981,40.56077],[-105.02997,40.5609],[-105.03017,40.56106],[-105.03033,40.5612],[-105.03047,40.56133],[-105.03065,40.56146],[-105.03081,40.56159],[-105.03095,40.56171],[-105.03107,40.56182],[-105.0312,40.56195],[-105.03131,40.56206],[-105.03131,40.56206],[-105.03146,40.56218],[-105.03158,40.56231],[-105.03166,40.56244],[-105.03178,40.56261],[-105.03184,40.56281],[-105.0319,40.56295],[-105.03194,40.56311],[-105.03196,40.56326],[-105.03196,40.56343],[-105.03196,40.56359],[-105.03196,40.56374],[-105.03198,40.56392],[-105.032,40.5641],[-105.03206,40.56426],[-105.03214,40.56442],[-105.03222,40.56457],[-105.03232,40.56472],[-105.03248,40.56487],[-105.03258,40.56496],[-105.03274,40.56505],[-105.03293,40.56514],[-105.03319,40.56523],[-105.03341,40.56528],[-105.03357,40.56538],[-105.03359,40.56553],[-105.03359,40.56567],[-105.03359,40.56575]]}},{"type":"Feature","properties":{"name":"19:02"},"geometry":{"type":"LineString","coordinates":[[-105.08028,40.5184],[-105.08046,40.51833],[-105.08054,40.51846],[-105.08054,40.51861],[-105.08054,40.51877],[-105.08054,40.51893],[-105.08054,40.51908],[-105.08052,40.51924],[-105.08048,40.5194],[-105.08032,40.5195],[-105.08012,40.51942],[-105.0801,40.51928],[-105.08012,40.51915],[-105.08012,40.519],[-105.08014,40.51886],[-105.08016,40.5187],[-105.08016,40.51854],[-105.08016,40.51839],[-105.08006,40.51828],[-105.07986,40.51826],[-105.0797,40.51817],[-105.07966,40.518],[-105.07968,40.51781],[-105.07974,40.51768],[-105.07964,40.51754],[-105.0794,40.51752],[-105.07919,40.51752],[-105.07897,40.51752],[-105.07873,40.51752],[-105.07849,40.51753],[-105.07823,40.51754],[-105.078,40.51754],[-105.07776,40.51754],[-105.07754,40.51754],[-105.07734,40.51754],[-105.07722,40.51768],[-105.0772,40.51783],[-105.0772,40.51804],[-105.0772,40.51829],[-105.07718,40.51843],[-105.07716,40.51857],[-105.07716,40.51872],[-105.07716,40.51886],[-105.07716,40.51901],[-105.07716,40.51917],[-105.07714,40.51932],[-105.07714,40.51948],[-105.07714,40.51964],[-105.07714,40.51981],[-105.07714,40.51997],[-105.07714,40.52013],[-105.07714,40.52029],[-105.07714,40.52044],[-105.07714,40.5206],[-105.07714,40.52075],[-105.07714,40.5209],[-105.07714,40.52106],[-105.07714,40.52121],[-105.0771,40.52136],[-105.0771,40.5215],[-105.0771,40.52164],[-105.0771,40.52179],[-105.0771,40.52192],[-105.0771,40.52219],[-105.0771,40.52244],[-105.0771,40.52266],[-105.0771,40.52287],[-105.0771,40.52303],[-105.0771,40.52318],[-105.0771,40.52334],[-105.07714,40.5235],[-105.07726,40.52365],[-105.07746,40.52367],[-105.0777,40.52367],[-105.07796,40.52367],[-105.07823,40.52367],[-105.07855,40.52367],[-105.07883,40.52368],[-105.07913,40.52369],[-105.07935,40.5237],[-105.07954,40.5237],[-105.07954,40.5237],[-105.07976,40.52372],[-105.08002,40.5237],[-105.08026,40.5237],[-105.08054,40.5237],[-105.08088,40.5237],[-105.08121,40.5237],[-105.08139,40.5237],[-105.08159,40.5237],[-105.08177,40.5237],[-105.08197,40.5237],[-105.08217,40.5237],[-105.08236,40.5237],[-105.0827,40.5237],[-105.08298,40.5237],[-105.0832,40.52371],[-105.08324,40.52371],[-105.08344,40.5237],[-105.08366,40.52369],[-105.08392,40.52369],[-105.08423,40.52369],[-105.08459,40.52369],[-105.08479,40.52369],[-105.08495,40.5237],[-105.08515,40.5237],[-105.08535,40.5237],[-105.08554,40.5237],[-105.08574,40.5237],[-105.0859,40.5237],[-105.08626,40.5237],[-105.08654,40.52371],[-105.08674,40.52371],[-105.08682,40.52371],[-105.08704,40.52364],[-105.08727,40.52364],[-105.08757,40.52364],[-105.08793,40.52364],[-105.08809,40.52365],[-105.08831,40.52364],[-105.0885,40.52364],[-105.08872,40.52364],[-105.08892,40.52364],[-105.08914,40.52364],[-105.08938,40.52364],[-105.0896,40.52364],[-105.08982,40.52364],[-105.09001,40.52364],[-105.09023,40.52364],[-105.09045,40.52364],[-105.09065,40.52364],[-105.09085,40.52364],[-105.09101,40.52364],[-105.09131,40.52364],[-105.09154,40.52365],[-105.09172,40.52365],[-105.09198,40.52365],[-105.0922,40.52366],[-105.0923,40.52367],[-105.0925,40.52365],[-105.0927,40.52365],[-105.09297,40.52365],[-105.09333,40.52365],[-105.09365,40.52365],[-105.09385,40.52365],[-105.09423,40.52365],[-105.09439,40.52365],[-105.09457,40.52366],[-105.09492,40.52368],[-105.09522,40.5237],[-105.09548,40.5237],[-105.09568,40.52369],[-105.09586,40.52369],[-105.09606,40.52371],[-105.09611,40.52388],[-105.09611,40.52405],[-105.09611,40.52413],[-105.09611,40.52428],[-105.09611,40.52444],[-105.09611,40.52465],[-105.09611,40.52487],[-105.09611,40.5251],[-105.09611,40.52535],[-105.09611,40.52561],[-105.09611,40.52588],[-105.09611,40.52613],[-105.09611,40.5264],[-105.09611,40.52665],[-105.09611,40.5269],[-105.09611,40.52717],[-105.0961,40.52743],[-105.0961,40.52757],[-105.0961,40.52771],[-105.0961,40.52785],[-105.09607,40.528],[-105.09607,40.52814],[-105.09607,40.52829],[-105.0961,40.52844],[-105.0961,40.52859],[-105.0961,40.52874],[-105.0961,40.52888],[-105.0961,40.52903],[-105.09607,40.5293],[-105.09607,40.5295],[-105.09607,40.52964],[-105.09607,40.52971],[-105.09606,40.52989],[-105.09606,40.53007],[-105.09606,40.53022],[-105.09607,40.5304],[-105.09607,40.53059],[-105.09606,40.53081],[-105.09606,40.53105],[-105.09606,40.53131],[-105.09606,40.53157],[-105.09606,40.53171],[-105.09606,40.53185],[-105.09606,40.53199],[-105.09606,40.53213],[-105.09606,40.53226],[-105.09606,40.5324],[-105.09606,40.53255],[-105.09606,40.53268],[-105.09604,40.53296],[-105.09604,40.53323],[-105.09604,40.5335],[-105.09604,40.53377],[-105.09604,40.53402],[-105.09604,40.53426],[-105.09601,40.53446],[-105.09601,40.53464],[-105.09601,40.53471],[-105.09601,40.53488],[-105.09604,40.53507],[-105.09604,40.53523],[-105.09604,40.53541],[-105.09604,40.53561],[-105.09604,40.53584],[-105.09606,40.53609],[-105.09606,40.53634],[-105.09606,40.53659],[-105.09606,40.53683],[-105.09606,40.53708],[-105.09606,40.53732],[-105.09606,40.53751],[-105.09606,40.5377],[-105.09606,40.53784],[-105.09606,40.53798],[-105.09606,40.53818],[-105.09606,40.53833],[-105.09606,40.53851],[-105.09606,40.5387],[-105.09606,40.53892],[-105.09606,40.53914],[-105.09606,40.53936],[-105.09604,40.53955],[-105.09604,40.53973],[-105.09601,40.53981],[-105.09606,40.53995],[-105.09606,40.54015],[-105.09606,40.54032],[-105.09606,40.54052],[-105.09606,40.54074],[-105.09606,40.54098],[-105.09606,40.54123],[-105.09606,40.54148],[-105.09606,40.54174],[-105.09606,40.54197],[-105.09604,40.54219],[-105.09604,40.54238],[-105.09604,40.54251],[-105.09604,40.5426],[-105.09604,40.54275],[-105.09604,40.54296],[-105.09604,40.54314],[-105.09606,40.54335],[-105.09606,40.54359],[-105.09606,40.54384],[-105.09606,40.54412],[-105.09606,40.54426],[-105.09606,40.5444],[-105.09606,40.54455],[-105.09604,40.54467],[-105.09601,40.54495],[-105.09601,40.54521],[-105.09601,40.54545],[-105.09601,40.54563],[-105.09601,40.54579],[-105.096,40.54593],[-105.09601,40.54608],[-105.096,40.54622],[-105.096,40.54643],[-105.096,40.54657],[-105.09597,40.54673],[-105.09597,40.5468],[-105.096,40.54696],[-105.096,40.54715],[-105.09601,40.54732],[-105.09604,40.54751],[-105.09604,40.54774],[-105.09606,40.54799],[-105.09606,40.54827],[-105.09606,40.54839],[-105.09606,40.54854],[-105.09604,40.54868],[-105.09604,40.54882],[-105.09604,40.54897],[-105.09601,40.54912],[-105.09601,40.54926],[-105.09601,40.5494],[-105.09601,40.54955],[-105.09601,40.5497],[-105.09601,40.54984],[-105.09601,40.54998],[-105.09601,40.55012],[-105.09601,40.55026],[-105.09601,40.5504],[-105.096,40.55054],[-105.096,40.55069],[-105.096,40.55083],[-105.096,40.55109],[-105.096,40.5513],[-105.096,40.55147],[-105.096,40.55165],[-105.096,40.5518],[-105.096,40.55196],[-105.096,40.55217],[-105.096,40.55235],[-105.096,40.55256],[-105.096,40.55275],[-105.09597,40.55293],[-105.09597,40.55308],[-105.09597,40.55324],[-105.096,40.55328],[-105.09601,40.55346],[-105.09601,40.55359],[-105.09604,40.55378],[-105.09604,40.55398],[-105.09604,40.5542],[-105.09604,40.55445],[-105.09604,40.5547],[-105.09601,40.55494],[-105.096,40.55518],[-105.09597,40.5554],[-105.09597,40.55559],[-105.09596,40.55574],[-105.09593,40.55592],[-105.09592,40.55605],[-105.09593,40.5561],[-105.09593,40.5563],[-105.09593,40.55649],[-105.09593,40.5567],[-105.09596,40.55693],[-105.09596,40.55718],[-105.09597,40.55742],[-105.09597,40.55767],[-105.09597,40.55792],[-105.09597,40.55815],[-105.09597,40.55834],[-105.09597,40.55848],[-105.09597,40.55868],[-105.09597,40.55882],[-105.09597,40.55897],[-105.09596,40.55914],[-105.09596,40.55921],[-105.09597,40.55942],[-105.096,40.55959],[-105.096,40.55979],[-105.096,40.56],[-105.096,40.56024],[-105.096,40.56047],[-105.09597,40.56071],[-105.09597,40.56094],[-105.09597,40.56116],[-105.09597,40.56134],[-105.09596,40.56148],[-105.09596,40.56162],[-105.096,40.56186],[-105.096,40.56199],[-105.096,40.56218],[-105.096,40.56237],[-105.096,40.56259],[-105.09597,40.56281],[-105.09597,40.56303],[-105.09596,40.56324],[-105.09596,40.56341],[-105.09596,40.56362],[-105.09596,40.56376],[-105.09593,40.56392],[-105.09593,40.56408],[-105.0959,40.56422],[-105.0959,40.56438],[-105.09588,40.56445],[-105.09592,40.56462],[-105.09596,40.56482],[-105.09596,40.565],[-105.09596,40.56521],[-105.09596,40.56543],[-105.09597,40.56568],[-105.09597,40.56593],[-105.09596,40.56619],[-105.09596,40.56645],[-105.09596,40.56672],[-105.09596,40.56697],[-105.09596,40.56721],[-105.09596,40.56744],[-105.09596,40.56767],[-105.09593,40.5679],[-105.09593,40.56813],[-105.09593,40.56834],[-105.09593,40.56856],[-105.09593,40.56874],[-105.09592,40.56891],[-105.0959,40.56907],[-105.0959,40.56911],[-105.09592,40.5693],[-105.09592,40.5695],[-105.09592,40.56967],[-105.09592,40.56987],[-105.09592,40.57009],[-105.09592,40.57032],[-105.09592,40.57056],[-105.0959,40.57081],[-105.0959,40.57106],[-105.0959,40.57129],[-105.09588,40.57153],[-105.09588,40.57178],[-105.09588,40.57203],[-105.09588,40.57228],[-105.09588,40.57253],[-105.09586,40.57279],[-105.09586,40.57305],[-105.09586,40.57331],[-105.09586,40.57355],[-105.09584,40.57375],[-105.09584,40.57391],[-105.09584,40.57408],[-105.09584,40.57418],[-105.09586,40.57432],[-105.09586,40.57446],[-105.09586,40.57464],[-105.09586,40.57478],[-105.09586,40.57496],[-105.09584,40.57514],[-105.09584,40.57535],[-105.09584,40.57557],[-105.09584,40.5758],[-105.09584,40.57603],[-105.09584,40.57626],[-105.09584,40.57648],[-105.09584,40.57672],[-105.09584,40.57695],[-105.09584,40.5772],[-105.09584,40.57743],[-105.09584,40.57769],[-105.09584,40.57789],[-105.09582,40.57805],[-105.09574,40.5782],[-105.09552,40.57821],[-105.09536,40.5782],[-105.09528,40.5782],[-105.0951,40.5782],[-105.09484,40.57821],[-105.09462,40.57821],[-105.09439,40.5782],[-105.09413,40.57821],[-105.09383,40.5782],[-105.09351,40.5782],[-105.09319,40.5782],[-105.09289,40.57819],[-105.0926,40.57819],[-105.09232,40.57818],[-105.0921,40.57817],[-105.09184,40.57817],[-105.09166,40.57817],[-105.09166,40.57817],[-105.0915,40.57809],[-105.09125,40.5781],[-105.09103,40.5781],[-105.09079,40.5781],[-105.09051,40.5781],[-105.09023,40.57809],[-105.08996,40.57809],[-105.08966,40.57809],[-105.08938,40.57809],[-105.08912,40.57809],[-105.08886,40.57809],[-105.08861,40.57809],[-105.0884,40.57809],[-105.08817,40.57809],[-105.08801,40.57804],[-105.08799,40.57785],[-105.08797,40.57771],[-105.08795,40.57754],[-105.08795,40.57735],[-105.08795,40.57715],[-105.08797,40.57697],[-105.08797,40.57679],[-105.08797,40.57661],[-105.08793,40.57646],[-105.08773,40.57642],[-105.08757,40.57642],[-105.08735,40.57642],[-105.0871,40.57642],[-105.08688,40.57642],[-105.08664,40.57642],[-105.08642,40.57642],[-105.08622,40.57634],[-105.08604,40.57617],[-105.08594,40.57605],[-105.08578,40.57589],[-105.08564,40.57576],[-105.08549,40.57573],[-105.08529,40.57581],[-105.08519,40.57586]]}},{"type":"Feature","properties":{"name":"19:51"},"geometry":{"type":"LineString","coordinates":[[-105.08519,40.57587],[-105.08501,40.57599],[-105.08487,40.57608],[-105.08479,40.57619],[-105.08487,40.57635],[-105.08509,40.57639],[-105.08527,40.5764],[-105.08549,40.57642],[-105.08568,40.57642],[-105.0859,40.57643],[-105.08612,40.57644],[-105.08634,40.57644],[-105.08656,40.57644],[-105.0868,40.57644],[-105.08704,40.57644],[-105.08727,40.57644],[-105.08747,40.57644],[-105.08771,40.57645],[-105.08791,40.5765],[-105.08793,40.57667],[-105.08795,40.57682],[-105.08795,40.577],[-105.08793,40.57721],[-105.08793,40.57742],[-105.08793,40.57761],[-105.08793,40.57778],[-105.08793,40.57793],[-105.08799,40.57809],[-105.08817,40.57818],[-105.08837,40.57819],[-105.08861,40.5782],[-105.0889,40.5782],[-105.0892,40.5782],[-105.08948,40.57821],[-105.08978,40.57821],[-105.09011,40.57821],[-105.09039,40.57821],[-105.09067,40.57821],[-105.09091,40.57823],[-105.09109,40.57824],[-105.09125,40.57824],[-105.09143,40.57824],[-105.0917,40.57823],[-105.09194,40.57823],[-105.0922,40.57823],[-105.0925,40.57824],[-105.0928,40.57825],[-105.09307,40.57825],[-105.09337,40.57825],[-105.09367,40.57825],[-105.09397,40.57825],[-105.09423,40.57825],[-105.0945,40.57825],[-105.09476,40.57825],[-105.09498,40.57825],[-105.09518,40.57825],[-105.09542,40.57826],[-105.09562,40.57826],[-105.09582,40.57826],[-105.09597,40.57817],[-105.096,40.57804],[-105.096,40.57787],[-105.096,40.57769],[-105.096,40.57751],[-105.096,40.57732],[-105.096,40.57712],[-105.096,40.5769],[-105.09601,40.57667],[-105.09601,40.57645],[-105.09601,40.57623],[-105.09601,40.57602],[-105.09601,40.57579],[-105.09601,40.57557],[-105.09601,40.57537],[-105.09601,40.57523],[-105.09601,40.57507],[-105.09601,40.57491],[-105.09601,40.57476],[-105.09601,40.5746],[-105.09601,40.57443],[-105.09601,40.57426],[-105.09601,40.5741],[-105.09604,40.57395],[-105.09604,40.57376],[-105.09606,40.57364],[-105.09604,40.5735],[-105.09604,40.5733],[-105.09601,40.57314],[-105.09601,40.57294],[-105.09604,40.57272],[-105.09604,40.57248],[-105.09604,40.57223],[-105.09604,40.57197],[-105.09604,40.57171],[-105.09604,40.57146],[-105.09604,40.5712],[-105.09604,40.57096],[-105.09604,40.5707],[-105.09606,40.57043],[-105.09606,40.57016],[-105.09606,40.5699],[-105.09606,40.56965],[-105.09607,40.56939],[-105.09607,40.56915],[-105.09607,40.56891],[-105.09607,40.56867],[-105.09607,40.56843],[-105.09607,40.56818],[-105.09607,40.56795],[-105.09607,40.56771],[-105.09607,40.56748],[-105.0961,40.56727],[-105.09611,40.56709],[-105.09615,40.56693],[-105.09617,40.56679],[-105.09617,40.56678],[-105.09615,40.56662],[-105.09611,40.56641],[-105.09611,40.56624],[-105.09611,40.56603],[-105.09611,40.5658],[-105.09611,40.56555],[-105.09611,40.56527],[-105.09611,40.56514],[-105.09611,40.565],[-105.09611,40.56486],[-105.0961,40.56472],[-105.09611,40.56446],[-105.09611,40.56419],[-105.09611,40.56395],[-105.09611,40.56373],[-105.09611,40.56356],[-105.09611,40.5634],[-105.09611,40.56338],[-105.09611,40.56319],[-105.09611,40.56303],[-105.09611,40.56286],[-105.09611,40.56266],[-105.09611,40.56244],[-105.09611,40.5622],[-105.09615,40.56195],[-105.09615,40.5617],[-105.09615,40.56144],[-105.09615,40.56119],[-105.09615,40.56093],[-105.09615,40.56067],[-105.09615,40.56043],[-105.09617,40.56021],[-105.09617,40.56005],[-105.09619,40.55989],[-105.09619,40.55985],[-105.09619,40.55971],[-105.09617,40.55952],[-105.09617,40.55937],[-105.09617,40.5592],[-105.09615,40.55901],[-105.09615,40.5588],[-105.09611,40.5586],[-105.09611,40.55839],[-105.09611,40.55818],[-105.09611,40.55798],[-105.09607,40.55777],[-105.09604,40.55758],[-105.09601,40.55738],[-105.096,40.55718],[-105.09597,40.55698],[-105.096,40.55677],[-105.09604,40.55656],[-105.09607,40.55635],[-105.0961,40.55615],[-105.09611,40.55598],[-105.09611,40.55579],[-105.09611,40.55564],[-105.09615,40.55548],[-105.09617,40.55529],[-105.09619,40.55513],[-105.09621,40.5551],[-105.09621,40.55494],[-105.09621,40.55474],[-105.09621,40.55456],[-105.09621,40.55437],[-105.09621,40.55418],[-105.09621,40.554],[-105.09621,40.55379],[-105.09621,40.55358],[-105.09621,40.55337],[-105.09619,40.55315],[-105.09617,40.55292],[-105.09617,40.55268],[-105.09617,40.55244],[-105.09617,40.55221],[-105.09617,40.55199],[-105.09617,40.55177],[-105.09619,40.55159],[-105.09619,40.55145],[-105.09619,40.55135],[-105.09617,40.55117],[-105.09617,40.55097],[-105.09617,40.55079],[-105.09617,40.5506],[-105.09617,40.55037],[-105.09617,40.55013],[-105.09617,40.54989],[-105.09617,40.54964],[-105.09617,40.54937],[-105.09617,40.54912],[-105.09617,40.54891],[-105.09617,40.5487],[-105.09619,40.54857],[-105.09621,40.54847],[-105.09621,40.54829],[-105.09619,40.54814],[-105.09619,40.54795],[-105.09619,40.54774],[-105.09619,40.5475],[-105.09619,40.54725],[-105.09619,40.547],[-105.09619,40.54676],[-105.09619,40.54656],[-105.09619,40.54642],[-105.09619,40.54628],[-105.09619,40.5461],[-105.09619,40.54596],[-105.09619,40.54579],[-105.09619,40.54559],[-105.09619,40.54538],[-105.09619,40.5452],[-105.09621,40.54504],[-105.09621,40.54488],[-105.09623,40.54482],[-105.09621,40.54464],[-105.09619,40.54442],[-105.09619,40.54425],[-105.09619,40.54406],[-105.09619,40.54384],[-105.09619,40.5436],[-105.09619,40.54336],[-105.09619,40.54314],[-105.09619,40.54291],[-105.09621,40.54269],[-105.09621,40.54248],[-105.09623,40.54226],[-105.09625,40.54207],[-105.09625,40.54193],[-105.09627,40.54179],[-105.09627,40.54165],[-105.09625,40.54147],[-105.09623,40.54131],[-105.09623,40.54114],[-105.09621,40.54094],[-105.09623,40.54072],[-105.09623,40.54047],[-105.09623,40.54021],[-105.09623,40.53995],[-105.09623,40.53967],[-105.09623,40.5394],[-105.09623,40.53913],[-105.09623,40.53889],[-105.09623,40.5387],[-105.09623,40.53855],[-105.09623,40.53839],[-105.09623,40.53824],[-105.09623,40.53803],[-105.09625,40.53788],[-105.09627,40.53775],[-105.09627,40.53771],[-105.09625,40.53754],[-105.09623,40.53733],[-105.09623,40.53716],[-105.09623,40.53697],[-105.09623,40.53675],[-105.09623,40.53652],[-105.09623,40.53628],[-105.09621,40.53603],[-105.09621,40.53577],[-105.09621,40.53549],[-105.09621,40.53535],[-105.09621,40.53522],[-105.09621,40.53496],[-105.09621,40.53474],[-105.09621,40.53454],[-105.09621,40.53434],[-105.09623,40.53415],[-105.09623,40.53397],[-105.09623,40.53382],[-105.09623,40.5338],[-105.09625,40.53366],[-105.09623,40.53345],[-105.09623,40.53319],[-105.09623,40.53305],[-105.09623,40.53289],[-105.09623,40.53272],[-105.09623,40.53255],[-105.09623,40.53237],[-105.09623,40.53219],[-105.09623,40.532],[-105.09623,40.53182],[-105.09623,40.53162],[-105.09623,40.53145],[-105.09623,40.53127],[-105.09623,40.53108],[-105.09623,40.5309],[-105.09623,40.53073],[-105.09623,40.53056],[-105.09625,40.53039],[-105.09627,40.53023],[-105.09627,40.53007],[-105.09627,40.52991],[-105.09627,40.52977],[-105.09627,40.52962],[-105.09627,40.52938],[-105.09627,40.52919],[-105.09627,40.52906],[-105.09627,40.52891],[-105.09627,40.52873],[-105.09623,40.52851],[-105.09621,40.52826],[-105.09621,40.5281],[-105.09621,40.52796],[-105.09621,40.52781],[-105.09619,40.52766],[-105.09621,40.52751],[-105.09621,40.52737],[-105.09621,40.52722],[-105.09621,40.52707],[-105.09621,40.52692],[-105.09621,40.52678],[-105.09621,40.52663],[-105.09621,40.52648],[-105.09621,40.52633],[-105.09621,40.52617],[-105.09621,40.52602],[-105.09621,40.52587],[-105.09621,40.52572],[-105.09621,40.52557],[-105.09621,40.52542],[-105.09623,40.52528],[-105.09623,40.52513],[-105.09625,40.525],[-105.09625,40.52486],[-105.09625,40.52459],[-105.09625,40.52435],[-105.09625,40.52417],[-105.09625,40.52399],[-105.09625,40.52382],[-105.09623,40.52363],[-105.09611,40.52348],[-105.09596,40.52344],[-105.09572,40.52344],[-105.0955,40.52343],[-105.09532,40.52343],[-105.09528,40.52343],[-105.09506,40.52343],[-105.09484,40.52344],[-105.09464,40.52345],[-105.09444,40.52346],[-105.09427,40.52346],[-105.09405,40.52346],[-105.09379,40.52347],[-105.09359,40.52347],[-105.09335,40.52348],[-105.09314,40.52348],[-105.09289,40.52348],[-105.09266,40.52349],[-105.09246,40.52349],[-105.09226,40.52349],[-105.09206,40.52349],[-105.09184,40.52348],[-105.09164,40.52347],[-105.09157,40.52347],[-105.09137,40.52348],[-105.09117,40.52348],[-105.09093,40.52348],[-105.09063,40.52349],[-105.09027,40.52349],[-105.09007,40.52349],[-105.08989,40.52349],[-105.08968,40.52349],[-105.08948,40.52349],[-105.08926,40.52348],[-105.08904,40.52348],[-105.08882,40.52348],[-105.08864,40.52348],[-105.08843,40.52348],[-105.08821,40.52348],[-105.08803,40.52348],[-105.08769,40.52348],[-105.08745,40.52348],[-105.08725,40.52347],[-105.08721,40.52347],[-105.08704,40.52351],[-105.08682,40.52351],[-105.08654,40.52351],[-105.08622,40.52351],[-105.08586,40.5235],[-105.08568,40.52351],[-105.08549,40.52351],[-105.08531,40.52351],[-105.08511,40.52351],[-105.08491,40.52351],[-105.08475,40.52351],[-105.08455,40.52351],[-105.08435,40.52351],[-105.08415,40.52351],[-105.08396,40.52351],[-105.08376,40.52351],[-105.0836,40.52351],[-105.0834,40.52351],[-105.0832,40.52351],[-105.08302,40.52351],[-105.08282,40.52351],[-105.08262,40.52351],[-105.08243,40.52351],[-105.08225,40.52351],[-105.08207,40.52351],[-105.08187,40.52351],[-105.08171,40.52351],[-105.08153,40.52352],[-105.08117,40.52351],[-105.08088,40.52351],[-105.0806,40.52351],[-105.08034,40.52349],[-105.08012,40.52348],[-105.07996,40.52348],[-105.07976,40.52352],[-105.07958,40.52352],[-105.07933,40.52352],[-105.07907,40.52352],[-105.07875,40.52352],[-105.07847,40.5235],[-105.07817,40.52349],[-105.07792,40.52346],[-105.07768,40.52346],[-105.07746,40.52343],[-105.07728,40.52336],[-105.0772,40.52322],[-105.07722,40.52307],[-105.07722,40.52291],[-105.07722,40.52276],[-105.07722,40.52261],[-105.07722,40.5226],[-105.0772,40.52244],[-105.0772,40.52229],[-105.0772,40.52212],[-105.07718,40.52193],[-105.07718,40.52172],[-105.07718,40.52149],[-105.07718,40.52125],[-105.07718,40.521],[-105.07718,40.52074],[-105.0772,40.52047],[-105.0772,40.5202],[-105.0772,40.52006],[-105.0772,40.51992],[-105.0772,40.51978],[-105.0772,40.51964],[-105.0772,40.51949],[-105.0772,40.51935],[-105.0772,40.51922],[-105.0772,40.51907],[-105.07722,40.51881],[-105.07724,40.51855],[-105.07724,40.51831],[-105.07726,40.51808],[-105.07728,40.51789],[-105.07728,40.51775],[-105.0773,40.51759],[-105.0775,40.51754],[-105.07768,40.51754],[-105.07793,40.51754],[-105.07819,40.51754],[-105.07839,40.51754],[-105.07865,40.51754],[-105.07891,40.51755],[-105.07909,40.51756],[-105.07935,40.51756],[-105.07958,40.51758],[-105.07966,40.51769],[-105.07966,40.51783],[-105.07964,40.51798],[-105.07966,40.51815],[-105.0798,40.51826],[-105.08002,40.51828],[-105.08018,40.51831],[-105.08026,40.51832]]}},{"type":"Feature","properties":{"name":"2:01"},"geometry":{"type":"LineString","coordinates":[[-105.11568,40.56752],[-105.1159,40.56752],[-105.1162,40.56752],[-105.11642,40.56752],[-105.11668,40.56752],[-105.11696,40.56753],[-105.11726,40.56753],[-105.11755,40.56753],[-105.11783,40.56754],[-105.11813,40.56754],[-105.11837,40.56754],[-105.11858,40.56755],[-105.11876,40.56755],[-105.1188,40.56755],[-105.11898,40.56756],[-105.11916,40.56756],[-105.1194,40.56757],[-105.11964,40.56758],[-105.11992,40.56759],[-105.12026,40.56759],[-105.12059,40.5676],[-105.12095,40.56761],[-105.12131,40.56761],[-105.12165,40.56762],[-105.12198,40.56763],[-105.12224,40.56764],[-105.12242,40.56764],[-105.12256,40.56764],[-105.12276,40.56765],[-105.12304,40.56764],[-105.12326,40.56765],[-105.12349,40.56765],[-105.12377,40.56765],[-105.12409,40.56766],[-105.12439,40.56766],[-105.12471,40.56767],[-105.12502,40.56767],[-105.12528,40.56768],[-105.12548,40.56768],[-105.1257,40.56768],[-105.12574,40.56768],[-105.12596,40.56768],[-105.12623,40.56766],[-105.12647,40.56764],[-105.12675,40.56764],[-105.12703,40.56764],[-105.12735,40.56764],[-105.12766,40.56766],[-105.12796,40.56767],[-105.12826,40.56768],[-105.12854,40.56769],[-105.12876,40.5677],[-105.12894,40.56771],[-105.12896,40.56771],[-105.12914,40.56771],[-105.12939,40.56771],[-105.12961,40.56771],[-105.12985,40.56771],[-105.13013,40.56771],[-105.13043,40.56771],[-105.13075,40.56772],[-105.13104,40.56772],[-105.13138,40.56773],[-105.1317,40.56775],[-105.132,40.56775],[-105.13232,40.56775],[-105.13257,40.56777],[-105.13277,40.56778],[-105.13295,40.56779],[-105.13299,40.56779],[-105.13327,40.56779],[-105.13351,40.56779],[-105.13371,40.56779],[-105.13388,40.56782],[-105.13398,40.56796],[-105.13398,40.56811],[-105.13398,40.56829],[-105.13398,40.5685],[-105.13398,40.56873],[-105.13396,40.56897],[-105.13396,40.56921],[-105.13396,40.56944],[-105.13392,40.56965],[-105.1339,40.56981],[-105.1339,40.56995],[-105.1339,40.56996],[-105.1339,40.57012],[-105.13392,40.57026],[-105.13392,40.57044],[-105.13392,40.57064],[-105.13392,40.57086],[-105.13392,40.57109],[-105.13392,40.57133],[-105.13392,40.57158],[-105.13392,40.57184],[-105.1339,40.57211],[-105.1339,40.57225],[-105.1339,40.57239],[-105.1339,40.57253],[-105.1339,40.57267],[-105.1339,40.57282],[-105.1339,40.57297],[-105.13388,40.57311],[-105.13388,40.57326],[-105.13388,40.57342],[-105.13388,40.57357],[-105.13386,40.57372],[-105.13383,40.57388],[-105.13383,40.57404],[-105.1338,40.57418],[-105.13379,40.57432],[-105.13376,40.57456],[-105.13376,40.57476],[-105.13376,40.57495],[-105.13362,40.57503],[-105.13339,40.57503],[-105.13313,40.57502],[-105.13293,40.57502],[-105.13283,40.57501],[-105.13263,40.57501],[-105.13245,40.57501],[-105.13222,40.575],[-105.13198,40.575],[-105.13172,40.57499],[-105.13144,40.57499],[-105.1312,40.57499],[-105.13094,40.57499],[-105.13065,40.57499],[-105.13039,40.57499],[-105.13009,40.57499],[-105.12979,40.57498],[-105.12949,40.57497],[-105.12922,40.57497],[-105.12894,40.57496],[-105.12866,40.57496],[-105.12838,40.57494],[-105.12808,40.57493],[-105.12776,40.57491],[-105.12749,40.57491],[-105.12721,40.57491],[-105.12693,40.57491],[-105.12663,40.57489],[-105.12637,40.57489],[-105.12615,40.57488],[-105.12594,40.57487],[-105.12586,40.57487],[-105.12566,40.57487],[-105.12538,40.57487],[-105.12516,40.57488],[-105.1249,40.57488],[-105.12462,40.57488],[-105.12437,40.57487],[-105.12409,40.57486],[-105.12391,40.57486],[-105.12367,40.57485],[-105.12359,40.57484],[-105.12341,40.57484],[-105.12318,40.57484],[-105.12298,40.57484],[-105.12274,40.57484],[-105.12246,40.57484],[-105.1222,40.57483],[-105.12192,40.57482],[-105.12161,40.57481],[-105.12131,40.5748],[-105.12101,40.5748],[-105.12071,40.5748],[-105.12041,40.5748],[-105.1201,40.57478],[-105.1198,40.57478],[-105.11948,40.57477],[-105.11918,40.57477],[-105.11888,40.57476],[-105.11858,40.57476],[-105.11829,40.57475],[-105.11803,40.57475],[-105.11779,40.57475],[-105.11755,40.57473],[-105.11737,40.57473],[-105.11722,40.57472],[-105.117,40.57473],[-105.11674,40.57473],[-105.11654,40.57472],[-105.11634,40.57472],[-105.11612,40.57472],[-105.11594,40.5747],[-105.11575,40.57468],[-105.11554,40.57463],[-105.11533,40.5746],[-105.11515,40.57459],[-105.11489,40.57457],[-105.11465,40.57456],[-105.11453,40.57456],[-105.11431,40.57455],[-105.11414,40.57456],[-105.11396,40.57456],[-105.11372,40.57456],[-105.1135,40.57454],[-105.11326,40.57454],[-105.11304,40.57453],[-105.11284,40.57453],[-105.11262,40.57453],[-105.11253,40.57452],[-105.11229,40.57453],[-105.11205,40.57453],[-105.11183,40.57454],[-105.11159,40.57456],[-105.11133,40.57459],[-105.11107,40.57461],[-105.11082,40.57462],[-105.11054,40.57464],[-105.1103,40.57463],[-105.11006,40.57462],[-105.10986,40.57461],[-105.10967,40.57461],[-105.10961,40.57461],[-105.10939,40.57461],[-105.10913,40.57461],[-105.10893,40.5746],[-105.10867,40.5746],[-105.10839,40.5746],[-105.1081,40.57459],[-105.1078,40.57459],[-105.1075,40.57459],[-105.10718,40.57459],[-105.10688,40.57458],[-105.10657,40.57457],[-105.10631,40.57457],[-105.10605,40.57457],[-105.10585,40.57456],[-105.10563,40.57456],[-105.10557,40.57456],[-105.10535,40.57456],[-105.1051,40.57456],[-105.10486,40.57456],[-105.10462,40.57456],[-105.10436,40.57456],[-105.10408,40.57455],[-105.10378,40.57454],[-105.1035,40.57454],[-105.10323,40.57454],[-105.10291,40.57453],[-105.10263,40.57453],[-105.10233,40.57453],[-105.1021,40.57453],[-105.10184,40.57452],[-105.10162,40.57452],[-105.10142,40.57452],[-105.10118,40.57452],[-105.10098,40.57451],[-105.10072,40.5745],[-105.10053,40.57449],[-105.10031,40.57449],[-105.10009,40.57449],[-105.09985,40.57449],[-105.09975,40.57449],[-105.09953,40.57452],[-105.09925,40.57456],[-105.09901,40.57459],[-105.09878,40.57461],[-105.09852,40.57461],[-105.09828,40.57461],[-105.098,40.57461],[-105.09776,40.57461],[-105.0975,40.5746],[-105.09725,40.5746],[-105.09701,40.5746],[-105.09679,40.5746],[-105.09661,40.57459],[-105.09641,40.57459],[-105.09617,40.57459],[-105.09596,40.57462],[-105.09586,40.57477],[-105.09586,40.57491],[-105.09584,40.57507],[-105.09584,40.57525],[-105.09584,40.57543],[-105.09584,40.57561],[-105.09584,40.57579],[-105.09584,40.57597],[-105.09584,40.57615],[-105.09584,40.5763],[-105.09578,40.57644],[-105.09562,40.57649],[-105.09536,40.57649],[-105.09518,40.57648],[-105.09498,40.57646],[-105.09478,40.57644],[-105.09458,40.57644],[-105.09437,40.57643],[-105.09417,40.57642],[-105.09397,40.57642],[-105.09397,40.57642],[-105.09375,40.57644],[-105.09345,40.57644],[-105.09325,40.57644],[-105.09306,40.57644],[-105.09286,40.57644],[-105.09266,40.57644],[-105.09246,40.57644],[-105.09228,40.57644],[-105.09206,40.57644],[-105.09188,40.57644],[-105.0917,40.57644],[-105.09144,40.57644],[-105.09121,40.57644],[-105.09105,40.57643],[-105.09081,40.57643],[-105.09063,40.5764],[-105.09045,40.57639],[-105.09027,40.57642],[-105.09001,40.57642],[-105.08986,40.57642],[-105.08966,40.57642],[-105.08946,40.57642],[-105.08926,40.57642],[-105.08906,40.57642],[-105.08886,40.57642],[-105.08866,40.57642],[-105.08846,40.57642],[-105.08823,40.57642],[-105.08803,40.57642],[-105.08783,40.57642],[-105.08757,40.57642],[-105.08737,40.57642],[-105.08715,40.57642],[-105.08696,40.57642],[-105.08678,40.57642],[-105.08658,40.57642],[-105.08636,40.5764],[-105.08618,40.5763],[-105.08604,40.57616],[-105.0859,40.57602],[-105.08578,40.57589],[-105.08564,40.57578],[-105.08553,40.57569],[-105.08539,40.57575],[-105.08521,40.57583],[-105.08513,40.57585]]}},{"type":"Feature","properties":{"name":"2:02"},"geometry":{"type":"LineString","coordinates":[[-105.08519,40.57587],[-105.08501,40.57596],[-105.08485,40.57605],[-105.08473,40.57618],[-105.08475,40.57633],[-105.08489,40.57639],[-105.08509,40.57639],[-105.08531,40.57639],[-105.0855,40.5764],[-105.08568,40.57642],[-105.0859,40.57643],[-105.08614,40.57643],[-105.08638,40.57643],[-105.08664,40.57643],[-105.08684,40.57643],[-105.08704,40.57643],[-105.08729,40.57643],[-105.08753,40.57643],[-105.08771,40.57643],[-105.08789,40.5764],[-105.08793,40.57623],[-105.08795,40.57604],[-105.08797,40.57585],[-105.08803,40.57571],[-105.08815,40.57559],[-105.08827,40.57548],[-105.08839,40.57537],[-105.08844,40.57523],[-105.08846,40.57508],[-105.08849,40.57493],[-105.0885,40.57477],[-105.0885,40.57462],[-105.08854,40.57448],[-105.08857,40.57428],[-105.08857,40.57412],[-105.08857,40.57398],[-105.08861,40.57379],[-105.08857,40.57363],[-105.08857,40.57352],[-105.08846,40.57359],[-105.08846,40.57343],[-105.08846,40.57326],[-105.08846,40.57311],[-105.08846,40.57296],[-105.08846,40.57281],[-105.08843,40.57266],[-105.08844,40.57249],[-105.08844,40.57232],[-105.08844,40.57213],[-105.08846,40.57194],[-105.08846,40.57175],[-105.08846,40.57155],[-105.08846,40.57139],[-105.08846,40.57125],[-105.08846,40.5711],[-105.08846,40.57096],[-105.08849,40.57081],[-105.08849,40.57064],[-105.0885,40.57046],[-105.0885,40.57027],[-105.08849,40.57008],[-105.0884,40.56991],[-105.08821,40.56979],[-105.08793,40.56976],[-105.08777,40.56976],[-105.08747,40.56978],[-105.08725,40.56977],[-105.08707,40.56971],[-105.08693,40.56955],[-105.08693,40.56939],[-105.08696,40.5693],[-105.08697,40.56908],[-105.08697,40.56894],[-105.08696,40.56877],[-105.08693,40.56863],[-105.08693,40.56844],[-105.08693,40.56831],[-105.08693,40.56815],[-105.08693,40.56799],[-105.08693,40.56783],[-105.08693,40.56768],[-105.08696,40.5675],[-105.087,40.56734],[-105.08704,40.56721],[-105.08723,40.56721],[-105.08731,40.56721],[-105.08757,40.56721],[-105.08773,40.56721],[-105.08795,40.56721],[-105.08821,40.56721],[-105.08849,40.56721],[-105.08876,40.56721],[-105.08908,40.56721],[-105.0894,40.56721],[-105.08972,40.56721],[-105.09001,40.56722],[-105.09035,40.56722],[-105.09067,40.56723],[-105.09099,40.56723],[-105.09131,40.56723],[-105.09161,40.56723],[-105.09188,40.56723],[-105.0921,40.56723],[-105.0923,40.56723],[-105.09242,40.56723],[-105.09268,40.56724],[-105.09297,40.56724],[-105.09319,40.56724],[-105.09345,40.56724],[-105.09371,40.56725],[-105.09399,40.56726],[-105.09427,40.56727],[-105.09453,40.56728],[-105.09478,40.56728],[-105.09502,40.56728],[-105.09528,40.56728],[-105.09548,40.56728],[-105.0957,40.56728],[-105.09593,40.5673],[-105.09615,40.5673],[-105.09633,40.5673],[-105.09653,40.5673],[-105.09675,40.56731],[-105.09683,40.56731],[-105.09701,40.56731],[-105.09721,40.56732],[-105.09743,40.56732],[-105.09768,40.56732],[-105.09798,40.56732],[-105.09828,40.56732],[-105.0986,40.56732],[-105.09893,40.56732],[-105.09925,40.56732],[-105.09959,40.56732],[-105.09993,40.56732],[-105.10027,40.56734],[-105.10058,40.56734],[-105.1009,40.56734],[-105.10122,40.56736],[-105.10152,40.56736],[-105.10174,40.56736],[-105.10194,40.56737],[-105.10214,40.56738],[-105.10233,40.56738],[-105.10261,40.56737],[-105.10283,40.56738],[-105.10307,40.56738],[-105.10335,40.56738],[-105.10362,40.56739],[-105.10392,40.56739],[-105.10424,40.5674],[-105.10456,40.56741],[-105.10486,40.56741],[-105.10518,40.56741],[-105.10551,40.56741],[-105.10583,40.56742],[-105.10615,40.56743],[-105.10643,40.56744],[-105.10672,40.56744],[-105.107,40.56744],[-105.1072,40.56744],[-105.1074,40.56744],[-105.1074,40.56744],[-105.10766,40.56744],[-105.10794,40.56744],[-105.10815,40.56744],[-105.10841,40.56744],[-105.10869,40.56744],[-105.10897,40.56744],[-105.10923,40.56746],[-105.10949,40.56746],[-105.10968,40.56746],[-105.10986,40.56746],[-105.11008,40.56747],[-105.11036,40.56748],[-105.1106,40.56748],[-105.11086,40.56748],[-105.11111,40.56747],[-105.11143,40.56746],[-105.11177,40.56746],[-105.11209,40.56747],[-105.11241,40.56747],[-105.11276,40.56748],[-105.11312,40.56748],[-105.11344,40.56748],[-105.11376,40.56748],[-105.11407,40.56749],[-105.11439,40.5675],[-105.11469,40.5675],[-105.11497,40.5675],[-105.11523,40.56751],[-105.11543,40.56752],[-105.11561,40.56752],[-105.11568,40.56752],[-105.1159,40.56752],[-105.1162,40.56752],[-105.11642,40.56752],[-105.11668,40.56752],[-105.11696,40.56753],[-105.11726,40.56753],[-105.11755,40.56753],[-105.11783,40.56754],[-105.11813,40.56754],[-105.11837,40.56754],[-105.11858,40.56755],[-105.11876,40.56755],[-105.1188,40.56755],[-105.11898,40.56756],[-105.11916,40.56756],[-105.1194,40.56757],[-105.11964,40.56758],[-105.11992,40.56759],[-105.12026,40.56759],[-105.12059,40.5676],[-105.12095,40.56761],[-105.12131,40.56761],[-105.12165,40.56762],[-105.12198,40.56763],[-105.12224,40.56764],[-105.12242,40.56764],[-105.12256,40.56764],[-105.12276,40.56765],[-105.12304,40.56764],[-105.12326,40.56765],[-105.12349,40.56765],[-105.12377,40.56765],[-105.12409,40.56766],[-105.12439,40.56766],[-105.12471,40.56767],[-105.12502,40.56767],[-105.12528,40.56768],[-105.12548,40.56768],[-105.1257,40.56768],[-105.12574,40.56768],[-105.12596,40.56768],[-105.12623,40.56766],[-105.12647,40.56764],[-105.12675,40.56764],[-105.12703,40.56764],[-105.12735,40.56764],[-105.12766,40.56766],[-105.12796,40.56767],[-105.12826,40.56768],[-105.12854,40.56769],[-105.12876,40.5677],[-105.12894,40.56771],[-105.12896,40.56771],[-105.12914,40.56771],[-105.12939,40.56771],[-105.12961,40.56771],[-105.12985,40.56771],[-105.13013,40.56771],[-105.13043,40.56771],[-105.13075,40.56772],[-105.13104,40.56772],[-105.13138,40.56773],[-105.1317,40.56775],[-105.132,40.56775],[-105.13232,40.56775],[-105.13257,40.56777],[-105.13277,40.56778],[-105.13295,40.56779],[-105.13299,40.56779],[-105.13327,40.56779],[-105.13351,40.56779],[-105.13371,40.56779],[-105.13388,40.56782],[-105.13398,40.56796],[-105.13398,40.56811],[-105.13398,40.56829],[-105.13398,40.5685],[-105.13398,40.56873],[-105.13396,40.56897],[-105.13396,40.56921],[-105.13396,40.56944],[-105.13392,40.56965],[-105.1339,40.56981],[-105.1339,40.56995],[-105.1339,40.56996],[-105.1339,40.57012],[-105.13392,40.57026],[-105.13392,40.57044],[-105.13392,40.57064],[-105.13392,40.57086],[-105.13392,40.57109],[-105.13392,40.57133],[-105.13392,40.57158],[-105.13392,40.57184],[-105.1339,40.57211],[-105.1339,40.57225],[-105.1339,40.57239],[-105.1339,40.57253],[-105.1339,40.57267],[-105.1339,40.57282],[-105.1339,40.57297],[-105.13388,40.57311],[-105.13388,40.57326],[-105.13388,40.57342],[-105.13388,40.57357],[-105.13386,40.57372],[-105.13383,40.57388],[-105.13383,40.57404],[-105.1338,40.57418],[-105.13379,40.57432],[-105.13376,40.57456],[-105.13376,40.57476],[-105.13376,40.57495],[-105.13362,40.57503],[-105.13339,40.57503],[-105.13313,40.57502],[-105.13293,40.57502],[-105.13283,40.57501],[-105.13263,40.57501],[-105.13245,40.57501],[-105.13222,40.575],[-105.13198,40.575],[-105.13172,40.57499],[-105.13144,40.57499],[-105.1312,40.57499],[-105.13094,40.57499],[-105.13065,40.57499],[-105.13039,40.57499],[-105.13009,40.57499],[-105.12979,40.57498],[-105.12949,40.57497],[-105.12922,40.57497],[-105.12894,40.57496],[-105.12866,40.57496],[-105.12838,40.57494],[-105.12808,40.57493],[-105.12776,40.57491],[-105.12749,40.57491],[-105.12721,40.57491],[-105.12693,40.57491],[-105.12663,40.57489],[-105.12637,40.57489],[-105.12615,40.57488],[-105.12594,40.57487],[-105.12586,40.57487],[-105.12566,40.57487],[-105.12538,40.57487],[-105.12516,40.57488],[-105.1249,40.57488],[-105.12462,40.57488],[-105.12437,40.57487],[-105.12409,40.57486],[-105.12391,40.57486],[-105.12367,40.57485],[-105.12359,40.57484],[-105.12341,40.57484],[-105.12318,40.57484],[-105.12298,40.57484],[-105.12274,40.57484],[-105.12246,40.57484],[-105.1222,40.57483],[-105.12192,40.57482],[-105.12161,40.57481],[-105.12131,40.5748],[-105.12101,40.5748],[-105.12071,40.5748],[-105.12041,40.5748],[-105.1201,40.57478],[-105.1198,40.57478],[-105.11948,40.57477],[-105.11918,40.57477],[-105.11888,40.57476],[-105.11858,40.57476],[-105.11829,40.57475],[-105.11803,40.57475],[-105.11779,40.57475],[-105.11755,40.57473],[-105.11737,40.57473],[-105.11722,40.57472],[-105.117,40.57473],[-105.11674,40.57473],[-105.11654,40.57472],[-105.11634,40.57472],[-105.11612,40.57472],[-105.11594,40.5747],[-105.11575,40.57468],[-105.11554,40.57463],[-105.11533,40.5746],[-105.11515,40.57459],[-105.11489,40.57457],[-105.11465,40.57456],[-105.11453,40.57456],[-105.11431,40.57455],[-105.11414,40.57456],[-105.11396,40.57456],[-105.11372,40.57456],[-105.1135,40.57454],[-105.11326,40.57454],[-105.11304,40.57453],[-105.11284,40.57453],[-105.11262,40.57453],[-105.11253,40.57452],[-105.11229,40.57453],[-105.11205,40.57453],[-105.11183,40.57454],[-105.11159,40.57456],[-105.11133,40.57459],[-105.11107,40.57461],[-105.11082,40.57462],[-105.11054,40.57464],[-105.1103,40.57463],[-105.11006,40.57462],[-105.10986,40.57461],[-105.10967,40.57461],[-105.10961,40.57461],[-105.10939,40.57461],[-105.10913,40.57461],[-105.10893,40.5746],[-105.10867,40.5746],[-105.10839,40.5746],[-105.1081,40.57459],[-105.1078,40.57459],[-105.1075,40.57459],[-105.10718,40.57459],[-105.10688,40.57458],[-105.10657,40.57457],[-105.10631,40.57457],[-105.10605,40.57457],[-105.10585,40.57456],[-105.10563,40.57456],[-105.10557,40.57456],[-105.10535,40.57456],[-105.1051,40.57456],[-105.10486,40.57456],[-105.10462,40.57456],[-105.10436,40.57456],[-105.10408,40.57455],[-105.10378,40.57454],[-105.1035,40.57454],[-105.10323,40.57454],[-105.10291,40.57453],[-105.10263,40.57453],[-105.10233,40.57453],[-105.1021,40.57453],[-105.10184,40.57452],[-105.10162,40.57452],[-105.10142,40.57452],[-105.10118,40.57452],[-105.10098,40.57451],[-105.10072,40.5745],[-105.10053,40.57449],[-105.10031,40.57449],[-105.10009,40.57449],[-105.09985,40.57449],[-105.09975,40.57449],[-105.09953,40.57452],[-105.09925,40.57456],[-105.09901,40.57459],[-105.09878,40.57461],[-105.09852,40.57461],[-105.09828,40.57461],[-105.098,40.57461],[-105.09776,40.57461],[-105.0975,40.5746],[-105.09725,40.5746],[-105.09701,40.5746],[-105.09679,40.5746],[-105.09661,40.57459],[-105.09641,40.57459],[-105.09617,40.57459],[-105.09596,40.57462],[-105.09586,40.57477],[-105.09586,40.57491],[-105.09584,40.57507],[-105.09584,40.57525],[-105.09584,40.57543],[-105.09584,40.57561],[-105.09584,40.57579],[-105.09584,40.57597],[-105.09584,40.57615],[-105.09584,40.5763],[-105.09578,40.57644],[-105.09562,40.57649],[-105.09536,40.57649],[-105.09518,40.57648],[-105.09498,40.57646],[-105.09478,40.57644],[-105.09458,40.57644],[-105.09437,40.57643],[-105.09417,40.57642],[-105.09397,40.57642],[-105.09397,40.57642],[-105.09375,40.57644],[-105.09345,40.57644],[-105.09325,40.57644],[-105.09306,40.57644],[-105.09286,40.57644],[-105.09266,40.57644],[-105.09246,40.57644],[-105.09228,40.57644],[-105.09206,40.57644],[-105.09188,40.57644],[-105.0917,40.57644],[-105.09144,40.57644],[-105.09121,40.57644],[-105.09105,40.57643],[-105.09081,40.57643],[-105.09063,40.5764],[-105.09045,40.57639],[-105.09027,40.57642],[-105.09001,40.57642],[-105.08986,40.57642],[-105.08966,40.57642],[-105.08946,40.57642],[-105.08926,40.57642],[-105.08906,40.57642],[-105.08886,40.57642],[-105.08866,40.57642],[-105.08846,40.57642],[-105.08823,40.57642],[-105.08803,40.57642],[-105.08783,40.57642],[-105.08757,40.57642],[-105.08737,40.57642],[-105.08715,40.57642],[-105.08696,40.57642],[-105.08678,40.57642],[-105.08658,40.57642],[-105.08636,40.5764],[-105.08618,40.5763],[-105.08604,40.57616],[-105.0859,40.57602],[-105.08578,40.57589],[-105.08564,40.57578],[-105.08553,40.57569],[-105.08539,40.57575],[-105.08521,40.57583],[-105.08513,40.57585]]}},{"type":"Feature","properties":{"name":"2:03"},"geometry":{"type":"LineString","coordinates":[[-105.13283,40.57501],[-105.13263,40.57501],[-105.13245,40.57501],[-105.13222,40.575],[-105.13198,40.575],[-105.13172,40.57499],[-105.13144,40.57499],[-105.1312,40.57499],[-105.13094,40.57499],[-105.13065,40.57499],[-105.13039,40.57499],[-105.13009,40.57499],[-105.12979,40.57498],[-105.12949,40.57497],[-105.12922,40.57497],[-105.12894,40.57496],[-105.12866,40.57496],[-105.12838,40.57494],[-105.12808,40.57493],[-105.12776,40.57491],[-105.12749,40.57491],[-105.12721,40.57491],[-105.12693,40.57491],[-105.12663,40.57489],[-105.12637,40.57489],[-105.12615,40.57488],[-105.12594,40.57487],[-105.12586,40.57487],[-105.12566,40.57487],[-105.12538,40.57487],[-105.12516,40.57488],[-105.1249,40.57488],[-105.12462,40.57488],[-105.12437,40.57487],[-105.12409,40.57486],[-105.12391,40.57486],[-105.12367,40.57485],[-105.12359,40.57484],[-105.12341,40.57484],[-105.12318,40.57484],[-105.12298,40.57484],[-105.12274,40.57484],[-105.12246,40.57484],[-105.1222,40.57483],[-105.12192,40.57482],[-105.12161,40.57481],[-105.12131,40.5748],[-105.12101,40.5748],[-105.12071,40.5748],[-105.12041,40.5748],[-105.1201,40.57478],[-105.1198,40.57478],[-105.11948,40.57477],[-105.11918,40.57477],[-105.11888,40.57476],[-105.11858,40.57476],[-105.11829,40.57475],[-105.11803,40.57475],[-105.11779,40.57475],[-105.11755,40.57473],[-105.11737,40.57473],[-105.11722,40.57472],[-105.117,40.57473],[-105.11674,40.57473],[-105.11654,40.57472],[-105.11634,40.57472],[-105.11612,40.57472],[-105.11594,40.5747],[-105.11575,40.57468],[-105.11554,40.57463],[-105.11533,40.5746],[-105.11515,40.57459],[-105.11489,40.57457],[-105.11465,40.57456],[-105.11453,40.57456],[-105.11431,40.57455],[-105.11414,40.57456],[-105.11396,40.57456],[-105.11372,40.57456],[-105.1135,40.57454],[-105.11326,40.57454],[-105.11304,40.57453],[-105.11284,40.57453],[-105.11262,40.57453],[-105.11253,40.57452],[-105.11229,40.57453],[-105.11205,40.57453],[-105.11183,40.57454],[-105.11159,40.57456],[-105.11133,40.57459],[-105.11107,40.57461],[-105.11082,40.57462],[-105.11054,40.57464],[-105.1103,40.57463],[-105.11006,40.57462],[-105.10986,40.57461],[-105.10967,40.57461],[-105.10961,40.57461],[-105.10939,40.57461],[-105.10913,40.57461],[-105.10893,40.5746],[-105.10867,40.5746],[-105.10839,40.5746],[-105.1081,40.57459],[-105.1078,40.57459],[-105.1075,40.57459],[-105.10718,40.57459],[-105.10688,40.57458],[-105.10657,40.57457],[-105.10631,40.57457],[-105.10605,40.57457],[-105.10585,40.57456],[-105.10563,40.57456],[-105.10557,40.57456],[-105.10535,40.57456],[-105.1051,40.57456],[-105.10486,40.57456],[-105.10462,40.57456],[-105.10436,40.57456],[-105.10408,40.57455],[-105.10378,40.57454],[-105.1035,40.57454],[-105.10323,40.57454],[-105.10291,40.57453],[-105.10263,40.57453],[-105.10233,40.57453],[-105.1021,40.57453],[-105.10184,40.57452],[-105.10162,40.57452],[-105.10142,40.57452],[-105.10118,40.57452],[-105.10098,40.57451],[-105.10072,40.5745],[-105.10053,40.57449],[-105.10031,40.57449],[-105.10009,40.57449],[-105.09985,40.57449],[-105.09975,40.57449],[-105.09953,40.57452],[-105.09925,40.57456],[-105.09901,40.57459],[-105.09878,40.57461],[-105.09852,40.57461],[-105.09828,40.57461],[-105.098,40.57461],[-105.09776,40.57461],[-105.0975,40.5746],[-105.09725,40.5746],[-105.09701,40.5746],[-105.09679,40.5746],[-105.09661,40.57459],[-105.09641,40.57459],[-105.09617,40.57459],[-105.09596,40.57462],[-105.09586,40.57477],[-105.09586,40.57491],[-105.09584,40.57507],[-105.09584,40.57525],[-105.09584,40.57543],[-105.09584,40.57561],[-105.09584,40.57579],[-105.09584,40.57597],[-105.09584,40.57615],[-105.09584,40.5763],[-105.09578,40.57644],[-105.09562,40.57649],[-105.09536,40.57649],[-105.09518,40.57648],[-105.09498,40.57646],[-105.09478,40.57644],[-105.09458,40.57644],[-105.09437,40.57643],[-105.09417,40.57642],[-105.09397,40.57642],[-105.09397,40.57642],[-105.09375,40.57644],[-105.09345,40.57644],[-105.09325,40.57644],[-105.09306,40.57644],[-105.09286,40.57644],[-105.09266,40.57644],[-105.09246,40.57644],[-105.09228,40.57644],[-105.09206,40.57644],[-105.09188,40.57644],[-105.0917,40.57644],[-105.09144,40.57644],[-105.09121,40.57644],[-105.09105,40.57643],[-105.09081,40.57643],[-105.09063,40.5764],[-105.09045,40.57639],[-105.09027,40.57642],[-105.09001,40.57642],[-105.08986,40.57642],[-105.08966,40.57642],[-105.08946,40.57642],[-105.08926,40.57642],[-105.08906,40.57642],[-105.08886,40.57642],[-105.08866,40.57642],[-105.08846,40.57642],[-105.08823,40.57642],[-105.08803,40.57642],[-105.08783,40.57642],[-105.08757,40.57642],[-105.08737,40.57642],[-105.08715,40.57642],[-105.08696,40.57642],[-105.08678,40.57642],[-105.08658,40.57642],[-105.08636,40.5764],[-105.08618,40.5763],[-105.08604,40.57616],[-105.0859,40.57602],[-105.08578,40.57589],[-105.08564,40.57578],[-105.08553,40.57569],[-105.08539,40.57575],[-105.08521,40.57583],[-105.08513,40.57585]]}},{"type":"Feature","properties":{"name":"2:04"},"geometry":{"type":"LineString","coordinates":[[-105.08519,40.57587],[-105.08501,40.57596],[-105.08485,40.57605],[-105.08473,40.57618],[-105.08475,40.57633],[-105.08489,40.57639],[-105.08509,40.57639],[-105.08531,40.57639],[-105.0855,40.5764],[-105.08568,40.57642],[-105.0859,40.57643],[-105.08614,40.57643],[-105.08638,40.57643],[-105.08664,40.57643],[-105.08684,40.57643],[-105.08704,40.57643],[-105.08729,40.57643],[-105.08753,40.57643],[-105.08771,40.57643],[-105.08789,40.5764],[-105.08793,40.57623],[-105.08795,40.57604],[-105.08797,40.57585],[-105.08803,40.57571],[-105.08815,40.57559],[-105.08827,40.57548],[-105.08839,40.57537],[-105.08844,40.57523],[-105.08846,40.57508],[-105.08849,40.57493],[-105.0885,40.57477],[-105.0885,40.57462],[-105.08854,40.57448],[-105.08857,40.57428],[-105.08857,40.57412],[-105.08857,40.57398],[-105.08861,40.57379],[-105.08857,40.57363],[-105.08857,40.57352],[-105.08846,40.57359],[-105.08846,40.57343],[-105.08846,40.57326],[-105.08846,40.57311],[-105.08846,40.57296],[-105.08846,40.57281],[-105.08843,40.57266],[-105.08844,40.57249],[-105.08844,40.57232],[-105.08844,40.57213],[-105.08846,40.57194],[-105.08846,40.57175],[-105.08846,40.57155],[-105.08846,40.57139],[-105.08846,40.57125],[-105.08846,40.5711],[-105.08846,40.57096],[-105.08849,40.57081],[-105.08849,40.57064],[-105.0885,40.57046],[-105.0885,40.57027],[-105.08849,40.57008],[-105.0884,40.56991],[-105.08821,40.56979],[-105.08793,40.56976],[-105.08777,40.56976],[-105.08747,40.56978],[-105.08725,40.56977],[-105.08707,40.56971],[-105.08693,40.56955],[-105.08693,40.56939],[-105.08696,40.5693],[-105.08697,40.56908],[-105.08697,40.56894],[-105.08696,40.56877],[-105.08693,40.56863],[-105.08693,40.56844],[-105.08693,40.56831],[-105.08693,40.56815],[-105.08693,40.56799],[-105.08693,40.56783],[-105.08693,40.56768],[-105.08696,40.5675],[-105.087,40.56734],[-105.08704,40.56721],[-105.08723,40.56721],[-105.08731,40.56721],[-105.08757,40.56721],[-105.08773,40.56721],[-105.08795,40.56721],[-105.08821,40.56721],[-105.08849,40.56721],[-105.08876,40.56721],[-105.08908,40.56721],[-105.0894,40.56721],[-105.08972,40.56721],[-105.09001,40.56722],[-105.09035,40.56722],[-105.09067,40.56723],[-105.09099,40.56723],[-105.09131,40.56723],[-105.09161,40.56723],[-105.09188,40.56723],[-105.0921,40.56723],[-105.0923,40.56723],[-105.09242,40.56723],[-105.09268,40.56724],[-105.09297,40.56724],[-105.09319,40.56724],[-105.09345,40.56724],[-105.09371,40.56725],[-105.09399,40.56726],[-105.09427,40.56727],[-105.09453,40.56728],[-105.09478,40.56728],[-105.09502,40.56728],[-105.09528,40.56728],[-105.09548,40.56728],[-105.0957,40.56728],[-105.09593,40.5673],[-105.09615,40.5673],[-105.09633,40.5673],[-105.09653,40.5673],[-105.09675,40.56731],[-105.09683,40.56731],[-105.09701,40.56731],[-105.09721,40.56732],[-105.09743,40.56732],[-105.09768,40.56732],[-105.09798,40.56732],[-105.09828,40.56732],[-105.0986,40.56732],[-105.09893,40.56732],[-105.09925,40.56732],[-105.09959,40.56732],[-105.09993,40.56732],[-105.10027,40.56734],[-105.10058,40.56734],[-105.1009,40.56734],[-105.10122,40.56736],[-105.10152,40.56736],[-105.10174,40.56736],[-105.10194,40.56737],[-105.10214,40.56738],[-105.10233,40.56738],[-105.10261,40.56737],[-105.10283,40.56738],[-105.10307,40.56738],[-105.10335,40.56738],[-105.10362,40.56739],[-105.10392,40.56739],[-105.10424,40.5674],[-105.10456,40.56741],[-105.10486,40.56741],[-105.10518,40.56741],[-105.10551,40.56741],[-105.10583,40.56742],[-105.10615,40.56743],[-105.10643,40.56744],[-105.10672,40.56744],[-105.107,40.56744],[-105.1072,40.56744],[-105.1074,40.56744],[-105.1074,40.56744],[-105.10766,40.56744],[-105.10794,40.56744],[-105.10815,40.56744],[-105.10841,40.56744],[-105.10869,40.56744],[-105.10897,40.56744],[-105.10923,40.56746],[-105.10949,40.56746],[-105.10968,40.56746],[-105.10986,40.56746],[-105.11008,40.56747],[-105.11036,40.56748],[-105.1106,40.56748],[-105.11086,40.56748],[-105.11111,40.56747],[-105.11143,40.56746],[-105.11177,40.56746],[-105.11209,40.56747],[-105.11241,40.56747],[-105.11276,40.56748],[-105.11312,40.56748],[-105.11344,40.56748],[-105.11376,40.56748],[-105.11407,40.56749],[-105.11439,40.5675],[-105.11469,40.5675],[-105.11497,40.5675],[-105.11523,40.56751],[-105.11543,40.56752],[-105.11561,40.56752],[-105.11568,40.56752],[-105.1159,40.56752],[-105.1162,40.56752],[-105.11642,40.56752],[-105.11668,40.56752],[-105.11696,40.56753],[-105.11726,40.56753],[-105.11755,40.56753],[-105.11783,40.56754],[-105.11813,40.56754],[-105.11837,40.56754],[-105.11858,40.56755],[-105.11876,40.56755],[-105.1188,40.56755],[-105.11898,40.56756],[-105.11916,40.56756],[-105.1194,40.56757],[-105.11964,40.56758],[-105.11992,40.56759],[-105.12026,40.56759],[-105.12059,40.5676],[-105.12095,40.56761],[-105.12131,40.56761],[-105.12165,40.56762],[-105.12198,40.56763],[-105.12224,40.56764],[-105.12242,40.56764],[-105.12256,40.56764],[-105.12276,40.56765],[-105.12304,40.56764],[-105.12326,40.56765],[-105.12349,40.56765],[-105.12377,40.56765],[-105.12409,40.56766],[-105.12439,40.56766],[-105.12471,40.56767],[-105.12502,40.56767],[-105.12528,40.56768],[-105.12548,40.56768],[-105.1257,40.56768],[-105.12574,40.56768],[-105.12596,40.56768],[-105.12623,40.56766],[-105.12647,40.56764],[-105.12675,40.56764],[-105.12703,40.56764],[-105.12735,40.56764],[-105.12766,40.56766],[-105.12796,40.56767],[-105.12826,40.56768],[-105.12854,40.56769],[-105.12876,40.5677],[-105.12894,40.56771],[-105.12896,40.56771],[-105.12914,40.56771],[-105.12939,40.56771],[-105.12961,40.56771],[-105.12985,40.56771],[-105.13013,40.56771],[-105.13043,40.56771],[-105.13075,40.56772],[-105.13104,40.56772],[-105.13138,40.56773],[-105.1317,40.56775],[-105.132,40.56775],[-105.13232,40.56775],[-105.13257,40.56777],[-105.13277,40.56778],[-105.13295,40.56779],[-105.13299,40.56779],[-105.13327,40.56779],[-105.13351,40.56779],[-105.13371,40.56779],[-105.13388,40.56782],[-105.13398,40.56796],[-105.13398,40.56811],[-105.13398,40.56829],[-105.13398,40.5685],[-105.13398,40.56873],[-105.13396,40.56897],[-105.13396,40.56921],[-105.13396,40.56944],[-105.13392,40.56965],[-105.1339,40.56981],[-105.1339,40.56995],[-105.1339,40.56996],[-105.1339,40.57012],[-105.13392,40.57026],[-105.13392,40.57044],[-105.13392,40.57064],[-105.13392,40.57086],[-105.13392,40.57109],[-105.13392,40.57133],[-105.13392,40.57158],[-105.13392,40.57184],[-105.1339,40.57211],[-105.1339,40.57225],[-105.1339,40.57239],[-105.1339,40.57253],[-105.1339,40.57267],[-105.1339,40.57282],[-105.1339,40.57297],[-105.13388,40.57311],[-105.13388,40.57326],[-105.13388,40.57342],[-105.13388,40.57357],[-105.13386,40.57372],[-105.13383,40.57388],[-105.13383,40.57404],[-105.1338,40.57418],[-105.13379,40.57432],[-105.13376,40.57456],[-105.13376,40.57476],[-105.13376,40.57495],[-105.13362,40.57503],[-105.13339,40.57503],[-105.13313,40.57502],[-105.13293,40.57502],[-105.13283,40.57501],[-105.13263,40.57501],[-105.13245,40.57501],[-105.13222,40.575],[-105.13198,40.575],[-105.13172,40.57499],[-105.13144,40.57499],[-105.1312,40.57499],[-105.13094,40.57499],[-105.13065,40.57499],[-105.13039,40.57499],[-105.13009,40.57499],[-105.12979,40.57498],[-105.12949,40.57497],[-105.12922,40.57497],[-105.12894,40.57496],[-105.12866,40.57496],[-105.12838,40.57494],[-105.12808,40.57493],[-105.12776,40.57491],[-105.12749,40.57491],[-105.12721,40.57491],[-105.12693,40.57491],[-105.12663,40.57489],[-105.12637,40.57489],[-105.12615,40.57488],[-105.12594,40.57487],[-105.12586,40.57487],[-105.12566,40.57487],[-105.12538,40.57487],[-105.12516,40.57488],[-105.1249,40.57488],[-105.12462,40.57488],[-105.12437,40.57487],[-105.12409,40.57486],[-105.12391,40.57486],[-105.12367,40.57485],[-105.12359,40.57484],[-105.12341,40.57484],[-105.12318,40.57484],[-105.12298,40.57484],[-105.12274,40.57484],[-105.12246,40.57484],[-105.1222,40.57483],[-105.12192,40.57482],[-105.12161,40.57481],[-105.12131,40.5748],[-105.12101,40.5748],[-105.12071,40.5748],[-105.12041,40.5748],[-105.1201,40.57478],[-105.1198,40.57478],[-105.11948,40.57477],[-105.11918,40.57477],[-105.11888,40.57476],[-105.11858,40.57476],[-105.11829,40.57475],[-105.11803,40.57475],[-105.11779,40.57475],[-105.11755,40.57473],[-105.11737,40.57473],[-105.11722,40.57472],[-105.117,40.57473],[-105.11674,40.57473],[-105.11654,40.57472],[-105.11634,40.57472],[-105.11612,40.57472],[-105.11594,40.5747],[-105.11575,40.57468],[-105.11554,40.57463],[-105.11533,40.5746],[-105.11515,40.57459],[-105.11489,40.57457],[-105.11465,40.57456],[-105.11453,40.57456],[-105.11431,40.57455],[-105.11414,40.57456],[-105.11396,40.57456],[-105.11372,40.57456],[-105.1135,40.57454],[-105.11326,40.57454],[-105.11304,40.57453],[-105.11284,40.57453],[-105.11262,40.57453],[-105.11253,40.57452],[-105.11229,40.57453],[-105.11205,40.57453],[-105.11183,40.57454],[-105.11159,40.57456],[-105.11133,40.57459],[-105.11107,40.57461],[-105.11082,40.57462],[-105.11054,40.57464],[-105.1103,40.57463],[-105.11006,40.57462],[-105.10986,40.57461],[-105.10967,40.57461],[-105.10961,40.57461],[-105.10939,40.57461],[-105.10913,40.57461],[-105.10893,40.5746],[-105.10867,40.5746],[-105.10839,40.5746],[-105.1081,40.57459],[-105.1078,40.57459],[-105.1075,40.57459],[-105.10718,40.57459],[-105.10688,40.57458],[-105.10657,40.57457],[-105.10631,40.57457],[-105.10605,40.57457],[-105.10585,40.57456],[-105.10563,40.57456],[-105.10557,40.57456],[-105.10535,40.57456],[-105.1051,40.57456],[-105.10486,40.57456],[-105.10462,40.57456],[-105.10436,40.57456],[-105.10408,40.57455],[-105.10378,40.57454],[-105.1035,40.57454],[-105.10323,40.57454],[-105.10291,40.57453],[-105.10263,40.57453],[-105.10233,40.57453],[-105.1021,40.57453],[-105.10184,40.57452],[-105.10162,40.57452],[-105.10142,40.57452],[-105.10118,40.57452],[-105.10098,40.57451],[-105.10072,40.5745],[-105.10053,40.57449],[-105.10031,40.57449],[-105.10009,40.57449],[-105.09985,40.57449],[-105.09975,40.57449]]}},{"type":"Feature","properties":{"name":"31:01"},"geometry":{"type":"LineString","coordinates":[[-105.08519,40.57587],[-105.08501,40.57596],[-105.08485,40.57605],[-105.08475,40.57619],[-105.08489,40.57634],[-105.08509,40.57637],[-105.08536,40.57639],[-105.08561,40.5764],[-105.0858,40.57642],[-105.08598,40.57642],[-105.08624,40.57643],[-105.0865,40.57643],[-105.0867,40.57643],[-105.08689,40.57643],[-105.0871,40.57643],[-105.08727,40.57643],[-105.08751,40.57643],[-105.08773,40.57643],[-105.08795,40.57643],[-105.08817,40.57643],[-105.0884,40.57643],[-105.08861,40.57643],[-105.08876,40.57643],[-105.08898,40.57643],[-105.0892,40.57643],[-105.0894,40.57643],[-105.0896,40.57643],[-105.08982,40.57643],[-105.09001,40.57644],[-105.09021,40.57644],[-105.09039,40.57644],[-105.09059,40.57644],[-105.09081,40.57644],[-105.09099,40.57644],[-105.09117,40.57646],[-105.09133,40.57648],[-105.09121,40.57646],[-105.09138,40.57647],[-105.09155,40.57647],[-105.09173,40.57647],[-105.0919,40.57647],[-105.09208,40.57647],[-105.09225,40.57647],[-105.09242,40.57648],[-105.0926,40.57648],[-105.09276,40.57648],[-105.09292,40.57649],[-105.09308,40.57649],[-105.09325,40.5765],[-105.09341,40.5765],[-105.09357,40.57651],[-105.09373,40.57651],[-105.0939,40.57652],[-105.09408,40.57653],[-105.09427,40.57654],[-105.09446,40.57655],[-105.09464,40.57656],[-105.09468,40.57646],[-105.09478,40.57647],[-105.09493,40.57649],[-105.09509,40.57651],[-105.09523,40.57652],[-105.09537,40.57653],[-105.09555,40.57653],[-105.09573,40.57653],[-105.09577,40.57653],[-105.09592,40.57653],[-105.09604,40.57652],[-105.09622,40.57652],[-105.09636,40.57652],[-105.09654,40.57652],[-105.09672,40.57653],[-105.0969,40.57653],[-105.09697,40.57653],[-105.09715,40.57653],[-105.09733,40.57653],[-105.09751,40.57653],[-105.09769,40.57653],[-105.09773,40.57653],[-105.09788,40.57654],[-105.09798,40.57654],[-105.09815,40.57655],[-105.09833,40.57655],[-105.09851,40.57656],[-105.09869,40.57656],[-105.09878,40.57656],[-105.09892,40.57656],[-105.0991,40.57656],[-105.09928,40.57657],[-105.09946,40.57657],[-105.09964,40.57657],[-105.09968,40.57657],[-105.09986,40.57657],[-105.10004,40.57657],[-105.10011,40.57657],[-105.10029,40.57657],[-105.10047,40.57657],[-105.10065,40.57657],[-105.10068,40.57657],[-105.10067,40.57653],[-105.10067,40.57637],[-105.10069,40.57627],[-105.10078,40.57613],[-105.10074,40.57594],[-105.10074,40.57575],[-105.10078,40.57561],[-105.10078,40.57545],[-105.10078,40.5753],[-105.10078,40.57514],[-105.10078,40.57499],[-105.10078,40.57483],[-105.10082,40.57468],[-105.10098,40.57464],[-105.10104,40.57464],[-105.10104,40.57464],[-105.10123,40.57464],[-105.10143,40.57464],[-105.10162,40.57464],[-105.10181,40.57464],[-105.10196,40.57464],[-105.1021,40.57464],[-105.10225,40.57464],[-105.10239,40.57464],[-105.10253,40.57464],[-105.10268,40.57464],[-105.10282,40.57464],[-105.10297,40.57464],[-105.10311,40.57464],[-105.10325,40.57464],[-105.1034,40.57464],[-105.10354,40.57464],[-105.10369,40.57464],[-105.10383,40.57464],[-105.10398,40.57464],[-105.10412,40.57464],[-105.10432,40.57464],[-105.10451,40.57464],[-105.10471,40.57464],[-105.10491,40.57464],[-105.10491,40.57464],[-105.10511,40.57465],[-105.10532,40.57466],[-105.10545,40.57467],[-105.10557,40.57467],[-105.1057,40.57467],[-105.10582,40.57467],[-105.10599,40.57469],[-105.10604,40.57477],[-105.10604,40.5749],[-105.10603,40.57503],[-105.10602,40.57511],[-105.10601,40.57519],[-105.10605,40.57534],[-105.10607,40.57549],[-105.10605,40.57567],[-105.10605,40.57581],[-105.10605,40.57596],[-105.10601,40.57613],[-105.10591,40.57629],[-105.10581,40.57643],[-105.10563,40.57654],[-105.10541,40.57661],[-105.10518,40.57662],[-105.10501,40.57661],[-105.10482,40.5766],[-105.10476,40.5766],[-105.10458,40.57661],[-105.10455,40.57661],[-105.10437,40.5766],[-105.10426,40.5766],[-105.10408,40.5766],[-105.10399,40.5766],[-105.10383,40.5766],[-105.10365,40.5766],[-105.10347,40.5766],[-105.10329,40.57659],[-105.10311,40.57659],[-105.10293,40.57659],[-105.10275,40.57659],[-105.10273,40.57659],[-105.10255,40.57658],[-105.10237,40.57658],[-105.10219,40.57657],[-105.10216,40.57657],[-105.10198,40.57658],[-105.10195,40.57658],[-105.10193,40.57658],[-105.10177,40.57658],[-105.10159,40.57658],[-105.10141,40.57658],[-105.10138,40.57658],[-105.1012,40.57658],[-105.10102,40.57657],[-105.10087,40.57657],[-105.10069,40.57657],[-105.10068,40.57657],[-105.1005,40.57657],[-105.10032,40.57657],[-105.10014,40.57657],[-105.09996,40.57657],[-105.09978,40.57657],[-105.09968,40.57657],[-105.0995,40.57657],[-105.09932,40.57657],[-105.09914,40.57656],[-105.09896,40.57656],[-105.09878,40.57656],[-105.0986,40.57656],[-105.09842,40.57655],[-105.09824,40.57655],[-105.09815,40.57655],[-105.09798,40.57654],[-105.09788,40.57654],[-105.09782,40.57654],[-105.09761,40.57652],[-105.09741,40.57652],[-105.09711,40.57652],[-105.09693,40.57652],[-105.09671,40.57651],[-105.09647,40.57651],[-105.09627,40.57651],[-105.09607,40.57651],[-105.09588,40.5765],[-105.09564,40.57651],[-105.09538,40.5765],[-105.09516,40.57649],[-105.09496,40.57647],[-105.09476,40.57645],[-105.09454,40.57644],[-105.09433,40.57643],[-105.09417,40.57642],[-105.09397,40.57642],[-105.09383,40.57642],[-105.09375,40.57644],[-105.09345,40.57644],[-105.09325,40.57644],[-105.09306,40.57644],[-105.09286,40.57644],[-105.09266,40.57644],[-105.09246,40.57644],[-105.09228,40.57644],[-105.09206,40.57644],[-105.09188,40.57644],[-105.0917,40.57644],[-105.09144,40.57644],[-105.09121,40.57644],[-105.09105,40.57643],[-105.09081,40.57643],[-105.09063,40.5764],[-105.09045,40.57639],[-105.09027,40.57642],[-105.09001,40.57642],[-105.08986,40.57642],[-105.08966,40.57642],[-105.08946,40.57642],[-105.08926,40.57642],[-105.08906,40.57642],[-105.08886,40.57642],[-105.08866,40.57642],[-105.08846,40.57642],[-105.08823,40.57642],[-105.08803,40.57642],[-105.08783,40.57642],[-105.08757,40.57642],[-105.08737,40.57642],[-105.08715,40.57642],[-105.08696,40.57642],[-105.08678,40.57642],[-105.08658,40.57642],[-105.08636,40.5764],[-105.08618,40.5763],[-105.08604,40.57616],[-105.0859,40.57602],[-105.08578,40.57589],[-105.08564,40.57578],[-105.08553,40.57569],[-105.08539,40.57575],[-105.08521,40.57583],[-105.08513,40.57585]]}},{"type":"Feature","properties":{"name":"31:02"},"geometry":{"type":"LineString","coordinates":[[-105.10601,40.57519],[-105.10605,40.57534],[-105.10607,40.57549],[-105.10605,40.57567],[-105.10605,40.57581],[-105.10605,40.57596],[-105.10601,40.57613],[-105.10591,40.57629],[-105.10581,40.57643],[-105.10563,40.57654],[-105.10541,40.57661],[-105.10518,40.57662],[-105.10501,40.57661],[-105.10482,40.5766],[-105.10476,40.5766],[-105.10458,40.57661],[-105.10455,40.57661],[-105.10437,40.5766],[-105.10426,40.5766],[-105.10408,40.5766],[-105.10399,40.5766],[-105.10383,40.5766],[-105.10365,40.5766],[-105.10347,40.5766],[-105.10329,40.57659],[-105.10311,40.57659],[-105.10293,40.57659],[-105.10275,40.57659],[-105.10273,40.57659],[-105.10255,40.57658],[-105.10237,40.57658],[-105.10219,40.57657],[-105.10216,40.57657],[-105.10198,40.57658],[-105.10195,40.57658],[-105.10193,40.57658],[-105.10177,40.57658],[-105.10159,40.57658],[-105.10141,40.57658],[-105.10138,40.57658],[-105.1012,40.57658],[-105.10102,40.57657],[-105.10087,40.57657],[-105.10069,40.57657],[-105.10068,40.57657],[-105.1005,40.57657],[-105.10032,40.57657],[-105.10014,40.57657],[-105.09996,40.57657],[-105.09978,40.57657],[-105.09968,40.57657],[-105.0995,40.57657],[-105.09932,40.57657],[-105.09914,40.57656],[-105.09896,40.57656],[-105.09878,40.57656],[-105.0986,40.57656],[-105.09842,40.57655],[-105.09824,40.57655],[-105.09815,40.57655],[-105.09798,40.57654],[-105.09788,40.57654],[-105.09782,40.57654],[-105.09761,40.57652],[-105.09741,40.57652],[-105.09711,40.57652],[-105.09693,40.57652],[-105.09671,40.57651],[-105.09647,40.57651],[-105.09627,40.57651],[-105.09607,40.57651],[-105.09588,40.5765],[-105.09564,40.57651],[-105.09538,40.5765],[-105.09516,40.57649],[-105.09496,40.57647],[-105.09476,40.57645],[-105.09454,40.57644],[-105.09433,40.57643],[-105.09417,40.57642],[-105.09397,40.57642],[-105.09383,40.57642],[-105.09375,40.57644],[-105.09345,40.57644],[-105.09325,40.57644],[-105.09306,40.57644],[-105.09286,40.57644],[-105.09266,40.57644],[-105.09246,40.57644],[-105.09228,40.57644],[-105.09206,40.57644],[-105.09188,40.57644],[-105.0917,40.57644],[-105.09144,40.57644],[-105.09121,40.57644],[-105.09105,40.57643],[-105.09081,40.57643],[-105.09063,40.5764],[-105.09045,40.57639],[-105.09027,40.57642],[-105.09001,40.57642],[-105.08986,40.57642],[-105.08966,40.57642],[-105.08946,40.57642],[-105.08926,40.57642],[-105.08906,40.57642],[-105.08886,40.57642],[-105.08866,40.57642],[-105.08846,40.57642],[-105.08823,40.57642],[-105.08803,40.57642],[-105.08783,40.57642],[-105.08757,40.57642],[-105.08737,40.57642],[-105.08715,40.57642],[-105.08696,40.57642],[-105.08678,40.57642],[-105.08658,40.57642],[-105.08636,40.5764],[-105.08618,40.5763],[-105.08604,40.57616],[-105.0859,40.57602],[-105.08578,40.57589],[-105.08564,40.57578],[-105.08553,40.57569],[-105.08539,40.57575],[-105.08521,40.57583],[-105.08513,40.57585]]}},{"type":"Feature","properties":{"name":"31:03"},"geometry":{"type":"LineString","coordinates":[[-105.08519,40.57587],[-105.08501,40.57596],[-105.08485,40.57605],[-105.08475,40.57619],[-105.08489,40.57634],[-105.08509,40.57637],[-105.08536,40.57639],[-105.08561,40.5764],[-105.0858,40.57642],[-105.08598,40.57642],[-105.08624,40.57643],[-105.0865,40.57643],[-105.0867,40.57643],[-105.08689,40.57643],[-105.0871,40.57643],[-105.08727,40.57643],[-105.08751,40.57643],[-105.08773,40.57643],[-105.08795,40.57643],[-105.08817,40.57643],[-105.0884,40.57643],[-105.08861,40.57643],[-105.08876,40.57643],[-105.08898,40.57643],[-105.0892,40.57643],[-105.0894,40.57643],[-105.0896,40.57643],[-105.08982,40.57643],[-105.09001,40.57644],[-105.09021,40.57644],[-105.09039,40.57644],[-105.09059,40.57644],[-105.09081,40.57644],[-105.09099,40.57644],[-105.09117,40.57646],[-105.09133,40.57648],[-105.09121,40.57646],[-105.09138,40.57647],[-105.09155,40.57647],[-105.09173,40.57647],[-105.0919,40.57647],[-105.09208,40.57647],[-105.09225,40.57647],[-105.09242,40.57648],[-105.0926,40.57648],[-105.09276,40.57648],[-105.09292,40.57649],[-105.09308,40.57649],[-105.09325,40.5765],[-105.09341,40.5765],[-105.09357,40.57651],[-105.09373,40.57651],[-105.0939,40.57652],[-105.09408,40.57653],[-105.09427,40.57654],[-105.09446,40.57655],[-105.09464,40.57656],[-105.09468,40.57646],[-105.09478,40.57647],[-105.09493,40.57649],[-105.09509,40.57651],[-105.09523,40.57652],[-105.09537,40.57653],[-105.09555,40.57653],[-105.09573,40.57653],[-105.09577,40.57653],[-105.09592,40.57653],[-105.09604,40.57652],[-105.09622,40.57652],[-105.09636,40.57652],[-105.09654,40.57652],[-105.09672,40.57653],[-105.0969,40.57653],[-105.09697,40.57653],[-105.09715,40.57653],[-105.09733,40.57653],[-105.09751,40.57653],[-105.09769,40.57653],[-105.09773,40.57653],[-105.09788,40.57654],[-105.09798,40.57654],[-105.09815,40.57655],[-105.09833,40.57655],[-105.09851,40.57656],[-105.09869,40.57656],[-105.09878,40.57656],[-105.09892,40.57656],[-105.0991,40.57656],[-105.09928,40.57657],[-105.09946,40.57657],[-105.09964,40.57657],[-105.09968,40.57657],[-105.09986,40.57657],[-105.10004,40.57657],[-105.10011,40.57657],[-105.10029,40.57657],[-105.10047,40.57657],[-105.10065,40.57657],[-105.10068,40.57657],[-105.10067,40.57653],[-105.10067,40.57637],[-105.10069,40.57627],[-105.10078,40.57613],[-105.10074,40.57594],[-105.10074,40.57575],[-105.10078,40.57561],[-105.10078,40.57545],[-105.10078,40.5753],[-105.10078,40.57514],[-105.10078,40.57499],[-105.10078,40.57483],[-105.10082,40.57468],[-105.10098,40.57464],[-105.10104,40.57464],[-105.10104,40.57464],[-105.10123,40.57464],[-105.10143,40.57464],[-105.10162,40.57464],[-105.10181,40.57464],[-105.10196,40.57464],[-105.1021,40.57464],[-105.10225,40.57464],[-105.10239,40.57464],[-105.10253,40.57464],[-105.10268,40.57464],[-105.10282,40.57464],[-105.10297,40.57464],[-105.10311,40.57464],[-105.10325,40.57464],[-105.1034,40.57464],[-105.10354,40.57464],[-105.10369,40.57464],[-105.10383,40.57464],[-105.10398,40.57464],[-105.10412,40.57464],[-105.10432,40.57464],[-105.10451,40.57464],[-105.10471,40.57464],[-105.10491,40.57464],[-105.10491,40.57464],[-105.10511,40.57465],[-105.10532,40.57466],[-105.10545,40.57467],[-105.10557,40.57467],[-105.1057,40.57467],[-105.10582,40.57467],[-105.10599,40.57469],[-105.10604,40.57477],[-105.10604,40.5749],[-105.10603,40.57503],[-105.10602,40.57511],[-105.10601,40.57519],[-105.10605,40.57534],[-105.10607,40.57549],[-105.10605,40.57567],[-105.10605,40.57581],[-105.10605,40.57596],[-105.10601,40.57613],[-105.10591,40.57629],[-105.10581,40.57643],[-105.10563,40.57654],[-105.10541,40.57661],[-105.10518,40.57662],[-105.10501,40.57661],[-105.10482,40.5766],[-105.10476,40.5766],[-105.10458,40.57661],[-105.10455,40.57661],[-105.10437,40.5766],[-105.10426,40.5766],[-105.10408,40.5766],[-105.10399,40.5766],[-105.10383,40.5766],[-105.10365,40.5766],[-105.10347,40.5766],[-105.10329,40.57659],[-105.10311,40.57659],[-105.10293,40.57659],[-105.10275,40.57659],[-105.10273,40.57659],[-105.10255,40.57658],[-105.10237,40.57658],[-105.10219,40.57657],[-105.10216,40.57657],[-105.10198,40.57658],[-105.10195,40.57658]]}},{"type":"Feature","properties":{"name":"31:04"},"geometry":{"type":"LineString","coordinates":[[-105.09782,40.57651],[-105.09761,40.57652],[-105.09741,40.57652],[-105.09711,40.57652],[-105.09693,40.57652],[-105.09671,40.57651],[-105.09647,40.57651],[-105.09627,40.57651],[-105.09607,40.57651],[-105.09588,40.5765],[-105.09564,40.57651],[-105.09538,40.5765],[-105.09516,40.57649],[-105.09496,40.57647],[-105.09476,40.57645],[-105.09454,40.57644],[-105.09433,40.57643],[-105.09417,40.57642],[-105.09397,40.57642],[-105.09383,40.57642],[-105.09375,40.57644],[-105.09345,40.57644],[-105.09325,40.57644],[-105.09306,40.57644],[-105.09286,40.57644],[-105.09266,40.57644],[-105.09246,40.57644],[-105.09228,40.57644],[-105.09206,40.57644],[-105.09188,40.57644],[-105.0917,40.57644],[-105.09144,40.57644],[-105.09121,40.57644],[-105.09105,40.57643],[-105.09081,40.57643],[-105.09063,40.5764],[-105.09045,40.57639],[-105.09027,40.57642],[-105.09001,40.57642],[-105.08986,40.57642],[-105.08966,40.57642],[-105.08946,40.57642],[-105.08926,40.57642],[-105.08906,40.57642],[-105.08886,40.57642],[-105.08866,40.57642],[-105.08846,40.57642],[-105.08823,40.57642],[-105.08803,40.57642],[-105.08783,40.57642],[-105.08757,40.57642],[-105.08737,40.57642],[-105.08715,40.57642],[-105.08696,40.57642],[-105.08678,40.57642],[-105.08658,40.57642],[-105.08636,40.5764],[-105.08618,40.5763],[-105.08604,40.57616],[-105.0859,40.57602],[-105.08578,40.57589],[-105.08564,40.57578],[-105.08553,40.57569],[-105.08539,40.57575],[-105.08521,40.57583],[-105.08513,40.57585]]}},{"type":"Feature","properties":{"name":"32:01"},"geometry":{"type":"LineString","coordinates":[[-105.08519,40.57587],[-105.08501,40.57596],[-105.08485,40.57605],[-105.08475,40.57619],[-105.08489,40.57634],[-105.08509,40.57637],[-105.08536,40.57639],[-105.08561,40.5764],[-105.0858,40.57642],[-105.08598,40.57642],[-105.08624,40.57643],[-105.0865,40.57643],[-105.0867,40.57643],[-105.08689,40.57643],[-105.0871,40.57643],[-105.08727,40.57643],[-105.08751,40.57643],[-105.08773,40.57643],[-105.08795,40.57643],[-105.08817,40.57643],[-105.0884,40.57643],[-105.08861,40.57643],[-105.08876,40.57643],[-105.08898,40.57643],[-105.0892,40.57643],[-105.0894,40.57643],[-105.0896,40.57643],[-105.08982,40.57643],[-105.09001,40.57644],[-105.09021,40.57644],[-105.09039,40.57644],[-105.09059,40.57644],[-105.09081,40.57644],[-105.09099,40.57644],[-105.09117,40.57646],[-105.09133,40.57648],[-105.09121,40.57646],[-105.09138,40.57647],[-105.09155,40.57647],[-105.09173,40.57647],[-105.0919,40.57647],[-105.09208,40.57647],[-105.09225,40.57647],[-105.09242,40.57648],[-105.0926,40.57648],[-105.09276,40.57648],[-105.09292,40.57649],[-105.09308,40.57649],[-105.09325,40.5765],[-105.09341,40.5765],[-105.09357,40.57651],[-105.09373,40.57651],[-105.0939,40.57652],[-105.09408,40.57653],[-105.09427,40.57654],[-105.09446,40.57655],[-105.09464,40.57656],[-105.09468,40.57646],[-105.09478,40.57647],[-105.09493,40.57649],[-105.09509,40.57651],[-105.09523,40.57652],[-105.09537,40.57653],[-105.09555,40.57653],[-105.09573,40.57653],[-105.09577,40.57653],[-105.09592,40.57653],[-105.09604,40.57652],[-105.09622,40.57652],[-105.09636,40.57652],[-105.09654,40.57652],[-105.09672,40.57653],[-105.0969,40.57653],[-105.09697,40.57653],[-105.09715,40.57653],[-105.09733,40.57653],[-105.09751,40.57653],[-105.09769,40.57653],[-105.09773,40.57653],[-105.09788,40.57654],[-105.09798,40.57654],[-105.09815,40.57655],[-105.09833,40.57655],[-105.09851,40.57656],[-105.09869,40.57656],[-105.09878,40.57656],[-105.09892,40.57656],[-105.0991,40.57656],[-105.09928,40.57657],[-105.09946,40.57657],[-105.09964,40.57657],[-105.09968,40.57657],[-105.09986,40.57657],[-105.10004,40.57657],[-105.10022,40.57657],[-105.1004,40.57657],[-105.10058,40.57657],[-105.10068,40.57657],[-105.10086,40.57657],[-105.10104,40.57657],[-105.10122,40.57658],[-105.10138,40.57658],[-105.10156,40.57658],[-105.10174,40.57658],[-105.10177,40.57658],[-105.10195,40.57657],[-105.10213,40.57657],[-105.10216,40.57657],[-105.10234,40.57658],[-105.10252,40.57658],[-105.10266,40.57659],[-105.10283,40.57672],[-105.10309,40.57672],[-105.10333,40.57672],[-105.10353,40.57672],[-105.10374,40.57672],[-105.10396,40.57672],[-105.10422,40.57672],[-105.10448,40.57673],[-105.10472,40.57673],[-105.10497,40.57673],[-105.10521,40.57673],[-105.10543,40.5767],[-105.10565,40.57663],[-105.10583,40.57652],[-105.10595,40.57638],[-105.10605,40.57621],[-105.10607,40.57605],[-105.10607,40.57589],[-105.10607,40.57576],[-105.10607,40.57573],[-105.10605,40.57555],[-105.10605,40.57538],[-105.10601,40.57517],[-105.10605,40.57503],[-105.10605,40.57484],[-105.10617,40.57473],[-105.10645,40.57472],[-105.10671,40.57472],[-105.107,40.57472],[-105.1073,40.57472],[-105.1076,40.57473],[-105.10792,40.57474],[-105.10823,40.57475],[-105.10853,40.57475],[-105.10883,40.57476],[-105.10915,40.57477],[-105.10943,40.57477],[-105.10968,40.57478],[-105.10986,40.5748],[-105.11008,40.57481],[-105.11022,40.57483],[-105.11042,40.5748],[-105.11062,40.57478],[-105.11086,40.57477],[-105.11105,40.57476],[-105.11131,40.57474],[-105.11153,40.57472],[-105.11181,40.57469],[-105.11209,40.57468],[-105.11237,40.57469],[-105.11261,40.5747],[-105.11282,40.57472],[-105.113,40.57472],[-105.11306,40.57472],[-105.11324,40.57472],[-105.1135,40.5747],[-105.11372,40.5747],[-105.11396,40.57471],[-105.11418,40.5747],[-105.11437,40.5747],[-105.11459,40.57471],[-105.11481,40.57472],[-105.11499,40.57472],[-105.11529,40.57473],[-105.11549,40.57476],[-105.11571,40.57481],[-105.1159,40.57486],[-105.11612,40.57491],[-105.11628,40.57494],[-105.1165,40.57491],[-105.11674,40.57489],[-105.11704,40.57489],[-105.11723,40.57489],[-105.11749,40.57489],[-105.11777,40.57491],[-105.11803,40.57491],[-105.11829,40.57491],[-105.11853,40.57493],[-105.11876,40.57496],[-105.11896,40.57496],[-105.11902,40.57496],[-105.11922,40.57491],[-105.11942,40.57491],[-105.1196,40.57491],[-105.11984,40.57491],[-105.12005,40.57491],[-105.12031,40.57491],[-105.12057,40.57491],[-105.12085,40.57492],[-105.12115,40.57493],[-105.12145,40.57493],[-105.12176,40.57493],[-105.12206,40.57494],[-105.12236,40.57494],[-105.12266,40.57495],[-105.1229,40.57496],[-105.1231,40.57496],[-105.12328,40.57496],[-105.12328,40.57496],[-105.12351,40.57497],[-105.12377,40.57497],[-105.12397,40.57498],[-105.12419,40.57498],[-105.12443,40.57499],[-105.12471,40.57499],[-105.125,40.57499],[-105.12532,40.575],[-105.12562,40.575],[-105.12594,40.57501],[-105.12623,40.57502],[-105.12657,40.57502],[-105.12687,40.57503],[-105.12715,40.57505],[-105.12739,40.57507],[-105.12757,40.57507],[-105.12776,40.57508],[-105.12786,40.57508],[-105.12806,40.57506],[-105.12826,40.57504],[-105.12854,40.57505],[-105.12872,40.57506],[-105.12896,40.57506],[-105.12919,40.57506],[-105.12947,40.57505],[-105.12973,40.57505],[-105.13001,40.57507],[-105.13033,40.57507],[-105.13061,40.57507],[-105.13088,40.57509],[-105.13118,40.57511],[-105.13146,40.57511],[-105.13172,40.57511],[-105.13198,40.57512],[-105.13219,40.57513],[-105.13239,40.57514],[-105.13261,40.57515],[-105.13271,40.57515],[-105.13293,40.57513],[-105.13317,40.57512],[-105.13341,40.57512],[-105.13362,40.57512],[-105.1338,40.57511],[-105.13392,40.57502],[-105.13396,40.57487],[-105.13396,40.57468],[-105.13396,40.57444],[-105.13396,40.57417],[-105.13398,40.57403],[-105.13398,40.57389],[-105.13398,40.57374],[-105.13398,40.57358],[-105.13398,40.57342],[-105.13398,40.57327],[-105.13398,40.57311],[-105.13402,40.57294],[-105.13402,40.57279],[-105.13402,40.57263],[-105.13402,40.57247],[-105.13402,40.57231],[-105.13402,40.57215],[-105.13402,40.57199],[-105.13402,40.57183],[-105.13402,40.57168],[-105.13402,40.57152],[-105.13402,40.57137],[-105.13402,40.57122],[-105.13404,40.57108],[-105.13404,40.57081],[-105.13406,40.5706],[-105.13406,40.57044],[-105.1341,40.57028],[-105.13408,40.57023],[-105.13404,40.57008],[-105.13404,40.56988],[-105.13404,40.56971],[-105.13404,40.56952],[-105.13404,40.56931],[-105.13404,40.56907],[-105.13404,40.56884],[-105.13402,40.5686],[-105.13398,40.56837],[-105.13402,40.56817],[-105.13402,40.56802],[-105.13398,40.56783],[-105.13383,40.56775],[-105.13359,40.56775],[-105.13331,40.56773],[-105.13305,40.56771],[-105.13293,40.56771],[-105.13273,40.56772],[-105.13255,40.56772],[-105.13232,40.56771],[-105.13204,40.56771],[-105.13174,40.56771],[-105.13138,40.56771],[-105.13106,40.56771],[-105.13072,40.5677],[-105.13035,40.5677],[-105.13017,40.56769],[-105.12999,40.56769],[-105.12965,40.56768],[-105.12937,40.56767],[-105.12914,40.56766],[-105.12894,40.56764],[-105.12888,40.56764],[-105.1287,40.56764],[-105.12854,40.56764],[-105.12828,40.56764],[-105.12802,40.56763],[-105.12771,40.56763],[-105.12737,40.56762],[-105.12703,40.56762],[-105.12669,40.56762],[-105.12637,40.56762],[-105.12615,40.56762],[-105.12594,40.56762],[-105.1259,40.56762],[-105.1257,40.56764],[-105.12542,40.56764],[-105.12518,40.56764],[-105.12492,40.56764],[-105.12461,40.56764],[-105.12429,40.56764],[-105.12397,40.56763],[-105.12361,40.56762],[-105.12328,40.56761],[-105.12294,40.56761],[-105.1226,40.56759],[-105.1223,40.56759],[-105.1221,40.56758],[-105.12188,40.56756],[-105.1218,40.56756],[-105.12158,40.56758],[-105.12141,40.56758],[-105.12115,40.56758],[-105.12085,40.56758],[-105.12055,40.56756],[-105.12022,40.56756],[-105.11986,40.56755],[-105.11952,40.56755],[-105.11918,40.56754],[-105.11886,40.56752],[-105.11858,40.56751],[-105.11837,40.5675],[-105.11817,40.56749],[-105.11815,40.56749],[-105.11789,40.5675],[-105.11771,40.5675],[-105.11747,40.56748],[-105.11722,40.56748],[-105.1169,40.56747],[-105.11664,40.56747],[-105.11634,40.56746],[-105.11608,40.56746],[-105.11586,40.56746],[-105.11561,40.56746],[-105.11543,40.56746],[-105.11519,40.56744],[-105.11491,40.56744],[-105.11469,40.56744],[-105.11451,40.56744],[-105.11429,40.56744],[-105.114,40.56744],[-105.11376,40.56744],[-105.1135,40.56744],[-105.1132,40.56742],[-105.11286,40.56742],[-105.11254,40.56741],[-105.11221,40.56741],[-105.11187,40.56741],[-105.11147,40.56741],[-105.11111,40.56741],[-105.11096,40.5674],[-105.11078,40.5674],[-105.11058,40.56739],[-105.11038,40.56739],[-105.1102,40.56739],[-105.11,40.56739],[-105.10982,40.56739],[-105.10949,40.56738],[-105.10921,40.56737],[-105.10899,40.56737],[-105.10879,40.56737],[-105.10875,40.56737],[-105.10857,40.5674],[-105.10839,40.56739],[-105.10821,40.56739],[-105.10803,40.56739],[-105.10798,40.56739],[-105.1078,40.56739],[-105.10762,40.56739],[-105.10744,40.56739],[-105.10726,40.56739],[-105.10708,40.56739],[-105.1069,40.56739],[-105.10672,40.56739],[-105.10654,40.56738],[-105.10636,40.56738],[-105.10635,40.56738],[-105.10617,40.56738],[-105.10599,40.56737],[-105.10591,40.56737],[-105.10573,40.56737],[-105.10555,40.56736],[-105.10537,40.56736],[-105.10528,40.56736],[-105.1051,40.56736],[-105.10498,40.56736],[-105.1048,40.56736],[-105.10462,40.56735],[-105.10444,40.56735],[-105.10426,40.56735],[-105.10408,40.56735],[-105.1039,40.56734],[-105.10372,40.56734],[-105.10354,40.56734],[-105.10336,40.56733],[-105.10318,40.56733],[-105.10302,40.56733],[-105.10284,40.56732],[-105.10268,40.56732],[-105.1026,40.56732],[-105.10242,40.56732],[-105.10224,40.56732],[-105.10217,40.56732],[-105.10199,40.56732],[-105.10181,40.56731],[-105.10164,40.56731],[-105.10142,40.56728],[-105.10122,40.56728],[-105.101,40.56728],[-105.10072,40.56728],[-105.10043,40.56727],[-105.10009,40.56727],[-105.09975,40.56726],[-105.09943,40.56724],[-105.09915,40.56724],[-105.099,40.56723],[-105.09882,40.56723],[-105.09862,40.56723],[-105.09836,40.56724],[-105.0981,40.56726],[-105.09782,40.56726],[-105.09753,40.56726],[-105.09723,40.56727],[-105.09695,40.56728],[-105.09671,40.56728],[-105.09651,40.56728],[-105.09627,40.56728],[-105.09611,40.56726],[-105.0959,40.56732],[-105.09586,40.56752],[-105.09586,40.56768],[-105.09586,40.56786],[-105.09586,40.56807],[-105.09586,40.56828],[-105.09584,40.56849],[-105.09584,40.56868],[-105.09584,40.56884],[-105.09584,40.56901],[-105.09584,40.56907],[-105.09584,40.56926],[-105.09584,40.56945],[-105.09584,40.56962],[-105.09584,40.56982],[-105.09584,40.57003],[-105.09584,40.57026],[-105.09584,40.57049],[-105.09584,40.5707],[-105.09582,40.57088],[-105.0957,40.57098],[-105.09544,40.57098],[-105.09524,40.57098],[-105.09502,40.57099],[-105.09478,40.571],[-105.09457,40.571],[-105.09437,40.571],[-105.09417,40.57099],[-105.09405,40.57099],[-105.09385,40.57098],[-105.09359,40.57098],[-105.09339,40.57097],[-105.09315,40.57097],[-105.09292,40.57097],[-105.09268,40.57097],[-105.09246,40.57097],[-105.09224,40.57097],[-105.09204,40.57096],[-105.09186,40.57096],[-105.09161,40.57096],[-105.0914,40.57095],[-105.09121,40.57094],[-105.09095,40.57094],[-105.09073,40.57094],[-105.09047,40.57094],[-105.09021,40.57094],[-105.09,40.57094],[-105.08976,40.57093],[-105.08956,40.57093],[-105.08938,40.57092],[-105.0892,40.5709],[-105.08908,40.5709],[-105.08903,40.5709],[-105.08885,40.5709],[-105.08867,40.57089],[-105.08857,40.57089],[-105.08845,40.57089],[-105.08845,40.57095],[-105.08844,40.57109],[-105.08844,40.57122],[-105.08843,40.57136],[-105.08843,40.5714],[-105.08843,40.57154],[-105.08842,40.57167],[-105.08841,40.57181],[-105.08841,40.57195],[-105.08841,40.57196],[-105.08841,40.5721],[-105.08841,40.57224],[-105.08841,40.57238],[-105.08841,40.57252],[-105.08841,40.57256],[-105.08841,40.57271],[-105.08841,40.57286],[-105.08841,40.57301],[-105.08841,40.57315],[-105.08841,40.5733],[-105.08841,40.57345],[-105.08841,40.5736],[-105.08841,40.57375],[-105.0884,40.57389],[-105.0884,40.57392],[-105.08841,40.57406],[-105.08841,40.57409],[-105.0884,40.57436],[-105.0884,40.57454],[-105.08843,40.57468],[-105.08843,40.57481],[-105.08843,40.57502],[-105.0884,40.57515],[-105.08837,40.57529],[-105.08829,40.57542],[-105.08817,40.57553],[-105.08805,40.57565],[-105.08799,40.57578],[-105.08795,40.57591],[-105.08793,40.5761],[-105.08793,40.57624],[-105.08793,40.57638],[-105.08771,40.57642],[-105.08747,40.57642],[-105.08729,40.57642],[-105.0871,40.57643],[-105.08693,40.57643],[-105.08668,40.57642],[-105.08644,40.57642],[-105.08624,40.57636],[-105.0861,40.57622],[-105.08594,40.57608],[-105.08584,40.57595],[-105.0857,40.57583],[-105.08558,40.57572],[-105.08539,40.57576],[-105.08523,40.57584],[-105.08515,40.57586]]}},{"type":"Feature","properties":{"name":"32:02"},"geometry":{"type":"LineString","coordinates":[[-105.10607,40.57573],[-105.10605,40.57555],[-105.10605,40.57538],[-105.10601,40.57517],[-105.10605,40.57503],[-105.10605,40.57484],[-105.10617,40.57473],[-105.10645,40.57472],[-105.10671,40.57472],[-105.107,40.57472],[-105.1073,40.57472],[-105.1076,40.57473],[-105.10792,40.57474],[-105.10823,40.57475],[-105.10853,40.57475],[-105.10883,40.57476],[-105.10915,40.57477],[-105.10943,40.57477],[-105.10968,40.57478],[-105.10986,40.5748],[-105.11008,40.57481],[-105.11022,40.57483],[-105.11042,40.5748],[-105.11062,40.57478],[-105.11086,40.57477],[-105.11105,40.57476],[-105.11131,40.57474],[-105.11153,40.57472],[-105.11181,40.57469],[-105.11209,40.57468],[-105.11237,40.57469],[-105.11261,40.5747],[-105.11282,40.57472],[-105.113,40.57472],[-105.11306,40.57472],[-105.11324,40.57472],[-105.1135,40.5747],[-105.11372,40.5747],[-105.11396,40.57471],[-105.11418,40.5747],[-105.11437,40.5747],[-105.11459,40.57471],[-105.11481,40.57472],[-105.11499,40.57472],[-105.11529,40.57473],[-105.11549,40.57476],[-105.11571,40.57481],[-105.1159,40.57486],[-105.11612,40.57491],[-105.11628,40.57494],[-105.1165,40.57491],[-105.11674,40.57489],[-105.11704,40.57489],[-105.11723,40.57489],[-105.11749,40.57489],[-105.11777,40.57491],[-105.11803,40.57491],[-105.11829,40.57491],[-105.11853,40.57493],[-105.11876,40.57496],[-105.11896,40.57496],[-105.11902,40.57496],[-105.11922,40.57491],[-105.11942,40.57491],[-105.1196,40.57491],[-105.11984,40.57491],[-105.12005,40.57491],[-105.12031,40.57491],[-105.12057,40.57491],[-105.12085,40.57492],[-105.12115,40.57493],[-105.12145,40.57493],[-105.12176,40.57493],[-105.12206,40.57494],[-105.12236,40.57494],[-105.12266,40.57495],[-105.1229,40.57496],[-105.1231,40.57496],[-105.12328,40.57496],[-105.12328,40.57496],[-105.12351,40.57497],[-105.12377,40.57497],[-105.12397,40.57498],[-105.12419,40.57498],[-105.12443,40.57499],[-105.12471,40.57499],[-105.125,40.57499],[-105.12532,40.575],[-105.12562,40.575],[-105.12594,40.57501],[-105.12623,40.57502],[-105.12657,40.57502],[-105.12687,40.57503],[-105.12715,40.57505],[-105.12739,40.57507],[-105.12757,40.57507],[-105.12776,40.57508],[-105.12786,40.57508],[-105.12806,40.57506],[-105.12826,40.57504],[-105.12854,40.57505],[-105.12872,40.57506],[-105.12896,40.57506],[-105.12919,40.57506],[-105.12947,40.57505],[-105.12973,40.57505],[-105.13001,40.57507],[-105.13033,40.57507],[-105.13061,40.57507],[-105.13088,40.57509],[-105.13118,40.57511],[-105.13146,40.57511],[-105.13172,40.57511],[-105.13198,40.57512],[-105.13219,40.57513],[-105.13239,40.57514],[-105.13261,40.57515],[-105.13271,40.57515],[-105.13293,40.57513],[-105.13317,40.57512],[-105.13341,40.57512],[-105.13362,40.57512],[-105.1338,40.57511],[-105.13392,40.57502],[-105.13396,40.57487],[-105.13396,40.57468],[-105.13396,40.57444],[-105.13396,40.57417],[-105.13398,40.57403],[-105.13398,40.57389],[-105.13398,40.57374],[-105.13398,40.57358],[-105.13398,40.57342],[-105.13398,40.57327],[-105.13398,40.57311],[-105.13402,40.57294],[-105.13402,40.57279],[-105.13402,40.57263],[-105.13402,40.57247],[-105.13402,40.57231],[-105.13402,40.57215],[-105.13402,40.57199],[-105.13402,40.57183],[-105.13402,40.57168],[-105.13402,40.57152],[-105.13402,40.57137],[-105.13402,40.57122],[-105.13404,40.57108],[-105.13404,40.57081],[-105.13406,40.5706],[-105.13406,40.57044],[-105.1341,40.57028],[-105.13408,40.57023],[-105.13404,40.57008],[-105.13404,40.56988],[-105.13404,40.56971],[-105.13404,40.56952],[-105.13404,40.56931],[-105.13404,40.56907],[-105.13404,40.56884],[-105.13402,40.5686],[-105.13398,40.56837],[-105.13402,40.56817],[-105.13402,40.56802],[-105.13398,40.56783],[-105.13383,40.56775],[-105.13359,40.56775],[-105.13331,40.56773],[-105.13305,40.56771],[-105.13293,40.56771],[-105.13273,40.56772],[-105.13255,40.56772],[-105.13232,40.56771],[-105.13204,40.56771],[-105.13174,40.56771],[-105.13138,40.56771],[-105.13106,40.56771],[-105.13072,40.5677],[-105.13035,40.5677],[-105.13017,40.56769],[-105.12999,40.56769],[-105.12965,40.56768],[-105.12937,40.56767],[-105.12914,40.56766],[-105.12894,40.56764],[-105.12888,40.56764],[-105.1287,40.56764],[-105.12854,40.56764],[-105.12828,40.56764],[-105.12802,40.56763],[-105.12771,40.56763],[-105.12737,40.56762],[-105.12703,40.56762],[-105.12669,40.56762],[-105.12637,40.56762],[-105.12615,40.56762],[-105.12594,40.56762],[-105.1259,40.56762],[-105.1257,40.56764],[-105.12542,40.56764],[-105.12518,40.56764],[-105.12492,40.56764],[-105.12461,40.56764],[-105.12429,40.56764],[-105.12397,40.56763],[-105.12361,40.56762],[-105.12328,40.56761],[-105.12294,40.56761],[-105.1226,40.56759],[-105.1223,40.56759],[-105.1221,40.56758],[-105.12188,40.56756],[-105.1218,40.56756],[-105.12158,40.56758],[-105.12141,40.56758],[-105.12115,40.56758],[-105.12085,40.56758],[-105.12055,40.56756],[-105.12022,40.56756],[-105.11986,40.56755],[-105.11952,40.56755],[-105.11918,40.56754],[-105.11886,40.56752],[-105.11858,40.56751],[-105.11837,40.5675],[-105.11817,40.56749],[-105.11815,40.56749],[-105.11789,40.5675],[-105.11771,40.5675],[-105.11747,40.56748],[-105.11722,40.56748],[-105.1169,40.56747],[-105.11664,40.56747],[-105.11634,40.56746],[-105.11608,40.56746],[-105.11586,40.56746],[-105.11561,40.56746],[-105.11543,40.56746],[-105.11519,40.56744],[-105.11491,40.56744],[-105.11469,40.56744],[-105.11451,40.56744],[-105.11429,40.56744],[-105.114,40.56744],[-105.11376,40.56744],[-105.1135,40.56744],[-105.1132,40.56742],[-105.11286,40.56742],[-105.11254,40.56741],[-105.11221,40.56741],[-105.11187,40.56741],[-105.11147,40.56741],[-105.11111,40.56741],[-105.11096,40.5674],[-105.11078,40.5674],[-105.11058,40.56739],[-105.11038,40.56739],[-105.1102,40.56739],[-105.11,40.56739],[-105.10982,40.56739],[-105.10949,40.56738],[-105.10921,40.56737],[-105.10899,40.56737],[-105.10879,40.56737],[-105.10875,40.56737],[-105.10857,40.5674],[-105.10839,40.56739],[-105.10821,40.56739],[-105.10803,40.56739],[-105.10798,40.56739],[-105.1078,40.56739],[-105.10762,40.56739],[-105.10744,40.56739],[-105.10726,40.56739],[-105.10708,40.56739],[-105.1069,40.56739],[-105.10672,40.56739],[-105.10654,40.56738],[-105.10636,40.56738],[-105.10635,40.56738],[-105.10617,40.56738],[-105.10599,40.56737],[-105.10591,40.56737],[-105.10573,40.56737],[-105.10555,40.56736],[-105.10537,40.56736],[-105.10528,40.56736],[-105.1051,40.56736],[-105.10498,40.56736],[-105.1048,40.56736],[-105.10462,40.56735],[-105.10444,40.56735],[-105.10426,40.56735],[-105.10408,40.56735],[-105.1039,40.56734],[-105.10372,40.56734],[-105.10354,40.56734],[-105.10336,40.56733],[-105.10318,40.56733],[-105.10302,40.56733],[-105.10284,40.56732],[-105.10268,40.56732],[-105.1026,40.56732],[-105.10242,40.56732],[-105.10224,40.56732],[-105.10217,40.56732],[-105.10199,40.56732],[-105.10181,40.56731],[-105.10164,40.56731],[-105.10142,40.56728],[-105.10122,40.56728],[-105.101,40.56728],[-105.10072,40.56728],[-105.10043,40.56727],[-105.10009,40.56727],[-105.09975,40.56726],[-105.09943,40.56724],[-105.09915,40.56724],[-105.099,40.56723],[-105.09882,40.56723],[-105.09862,40.56723],[-105.09836,40.56724],[-105.0981,40.56726],[-105.09782,40.56726],[-105.09753,40.56726],[-105.09723,40.56727],[-105.09695,40.56728],[-105.09671,40.56728],[-105.09651,40.56728],[-105.09627,40.56728],[-105.09611,40.56726],[-105.0959,40.56732],[-105.09586,40.56752],[-105.09586,40.56768],[-105.09586,40.56786],[-105.09586,40.56807],[-105.09586,40.56828],[-105.09584,40.56849],[-105.09584,40.56868],[-105.09584,40.56884],[-105.09584,40.56901],[-105.09584,40.56907],[-105.09584,40.56926],[-105.09584,40.56945],[-105.09584,40.56962],[-105.09584,40.56982],[-105.09584,40.57003],[-105.09584,40.57026],[-105.09584,40.57049],[-105.09584,40.5707],[-105.09582,40.57088],[-105.0957,40.57098],[-105.09544,40.57098],[-105.09524,40.57098],[-105.09502,40.57099],[-105.09478,40.571],[-105.09457,40.571],[-105.09437,40.571],[-105.09417,40.57099],[-105.09405,40.57099],[-105.09385,40.57098],[-105.09359,40.57098],[-105.09339,40.57097],[-105.09315,40.57097],[-105.09292,40.57097],[-105.09268,40.57097],[-105.09246,40.57097],[-105.09224,40.57097],[-105.09204,40.57096],[-105.09186,40.57096],[-105.09161,40.57096],[-105.0914,40.57095],[-105.09121,40.57094],[-105.09095,40.57094],[-105.09073,40.57094],[-105.09047,40.57094],[-105.09021,40.57094],[-105.09,40.57094],[-105.08976,40.57093],[-105.08956,40.57093],[-105.08938,40.57092],[-105.0892,40.5709],[-105.08908,40.5709],[-105.08903,40.5709],[-105.08885,40.5709],[-105.08867,40.57089],[-105.08857,40.57089],[-105.08845,40.57089],[-105.08845,40.57095],[-105.08844,40.57109],[-105.08844,40.57122],[-105.08843,40.57136],[-105.08843,40.5714],[-105.08843,40.57154],[-105.08842,40.57167],[-105.08841,40.57181],[-105.08841,40.57195],[-105.08841,40.57196],[-105.08841,40.5721],[-105.08841,40.57224],[-105.08841,40.57238],[-105.08841,40.57252],[-105.08841,40.57256],[-105.08841,40.57271],[-105.08841,40.57286],[-105.08841,40.57301],[-105.08841,40.57315],[-105.08841,40.5733],[-105.08841,40.57345],[-105.08841,40.5736],[-105.08841,40.57375],[-105.0884,40.57389],[-105.0884,40.57392],[-105.08841,40.57406],[-105.08841,40.57409],[-105.0884,40.57436],[-105.0884,40.57454],[-105.08843,40.57468],[-105.08843,40.57481],[-105.08843,40.57502],[-105.0884,40.57515],[-105.08837,40.57529],[-105.08829,40.57542],[-105.08817,40.57553],[-105.08805,40.57565],[-105.08799,40.57578],[-105.08795,40.57591],[-105.08793,40.5761],[-105.08793,40.57624],[-105.08793,40.57638],[-105.08771,40.57642],[-105.08747,40.57642],[-105.08729,40.57642],[-105.0871,40.57643],[-105.08693,40.57643],[-105.08668,40.57642],[-105.08644,40.57642],[-105.08624,40.57636],[-105.0861,40.57622],[-105.08594,40.57608],[-105.08584,40.57595],[-105.0857,40.57583],[-105.08558,40.57572],[-105.08539,40.57576],[-105.08523,40.57584],[-105.08515,40.57586]]}},{"type":"Feature","properties":{"name":"32:03"},"geometry":{"type":"LineString","coordinates":[[-105.13293,40.56771],[-105.13273,40.56772],[-105.13255,40.56772],[-105.13232,40.56771],[-105.13204,40.56771],[-105.13174,40.56771],[-105.13138,40.56771],[-105.13106,40.56771],[-105.13072,40.5677],[-105.13035,40.5677],[-105.13017,40.56769],[-105.12999,40.56769],[-105.12965,40.56768],[-105.12937,40.56767],[-105.12914,40.56766],[-105.12894,40.56764],[-105.12888,40.56764],[-105.1287,40.56764],[-105.12854,40.56764],[-105.12828,40.56764],[-105.12802,40.56763],[-105.12771,40.56763],[-105.12737,40.56762],[-105.12703,40.56762],[-105.12669,40.56762],[-105.12637,40.56762],[-105.12615,40.56762],[-105.12594,40.56762],[-105.1259,40.56762],[-105.1257,40.56764],[-105.12542,40.56764],[-105.12518,40.56764],[-105.12492,40.56764],[-105.12461,40.56764],[-105.12429,40.56764],[-105.12397,40.56763],[-105.12361,40.56762],[-105.12328,40.56761],[-105.12294,40.56761],[-105.1226,40.56759],[-105.1223,40.56759],[-105.1221,40.56758],[-105.12188,40.56756],[-105.1218,40.56756],[-105.12158,40.56758],[-105.12141,40.56758],[-105.12115,40.56758],[-105.12085,40.56758],[-105.12055,40.56756],[-105.12022,40.56756],[-105.11986,40.56755],[-105.11952,40.56755],[-105.11918,40.56754],[-105.11886,40.56752],[-105.11858,40.56751],[-105.11837,40.5675],[-105.11817,40.56749],[-105.11815,40.56749],[-105.11789,40.5675],[-105.11771,40.5675],[-105.11747,40.56748],[-105.11722,40.56748],[-105.1169,40.56747],[-105.11664,40.56747],[-105.11634,40.56746],[-105.11608,40.56746],[-105.11586,40.56746],[-105.11561,40.56746],[-105.11543,40.56746],[-105.11519,40.56744],[-105.11491,40.56744],[-105.11469,40.56744],[-105.11451,40.56744],[-105.11429,40.56744],[-105.114,40.56744],[-105.11376,40.56744],[-105.1135,40.56744],[-105.1132,40.56742],[-105.11286,40.56742],[-105.11254,40.56741],[-105.11221,40.56741],[-105.11187,40.56741],[-105.11147,40.56741],[-105.11111,40.56741],[-105.11096,40.5674],[-105.11078,40.5674],[-105.11058,40.56739],[-105.11038,40.56739],[-105.1102,40.56739],[-105.11,40.56739],[-105.10982,40.56739],[-105.10949,40.56738],[-105.10921,40.56737],[-105.10899,40.56737],[-105.10879,40.56737],[-105.10875,40.56737],[-105.10857,40.5674],[-105.10839,40.56739],[-105.10821,40.56739],[-105.10803,40.56739],[-105.10798,40.56739],[-105.1078,40.56739],[-105.10762,40.56739],[-105.10744,40.56739],[-105.10726,40.56739],[-105.10708,40.56739],[-105.1069,40.56739],[-105.10672,40.56739],[-105.10654,40.56738],[-105.10636,40.56738],[-105.10635,40.56738],[-105.10617,40.56738],[-105.10599,40.56737],[-105.10591,40.56737],[-105.10573,40.56737],[-105.10555,40.56736],[-105.10537,40.56736],[-105.10528,40.56736],[-105.1051,40.56736],[-105.10498,40.56736],[-105.1048,40.56736],[-105.10462,40.56735],[-105.10444,40.56735],[-105.10426,40.56735],[-105.10408,40.56735],[-105.1039,40.56734],[-105.10372,40.56734],[-105.10354,40.56734],[-105.10336,40.56733],[-105.10318,40.56733],[-105.10302,40.56733],[-105.10284,40.56732],[-105.10268,40.56732],[-105.1026,40.56732],[-105.10242,40.56732],[-105.10224,40.56732],[-105.10217,40.56732],[-105.10199,40.56732],[-105.10181,40.56731],[-105.10164,40.56731],[-105.10142,40.56728],[-105.10122,40.56728],[-105.101,40.56728],[-105.10072,40.56728],[-105.10043,40.56727],[-105.10009,40.56727],[-105.09975,40.56726],[-105.09943,40.56724],[-105.09915,40.56724],[-105.099,40.56723],[-105.09882,40.56723],[-105.09862,40.56723],[-105.09836,40.56724],[-105.0981,40.56726],[-105.09782,40.56726],[-105.09753,40.56726],[-105.09723,40.56727],[-105.09695,40.56728],[-105.09671,40.56728],[-105.09651,40.56728],[-105.09627,40.56728],[-105.09611,40.56726],[-105.0959,40.56732],[-105.09586,40.56752],[-105.09586,40.56768],[-105.09586,40.56786],[-105.09586,40.56807],[-105.09586,40.56828],[-105.09584,40.56849],[-105.09584,40.56868],[-105.09584,40.56884],[-105.09584,40.56901],[-105.09584,40.56907],[-105.09584,40.56926],[-105.09584,40.56945],[-105.09584,40.56962],[-105.09584,40.56982],[-105.09584,40.57003],[-105.09584,40.57026],[-105.09584,40.57049],[-105.09584,40.5707],[-105.09582,40.57088],[-105.0957,40.57098],[-105.09544,40.57098],[-105.09524,40.57098],[-105.09502,40.57099],[-105.09478,40.571],[-105.09457,40.571],[-105.09437,40.571],[-105.09417,40.57099],[-105.09405,40.57099],[-105.09385,40.57098],[-105.09359,40.57098],[-105.09339,40.57097],[-105.09315,40.57097],[-105.09292,40.57097],[-105.09268,40.57097],[-105.09246,40.57097],[-105.09224,40.57097],[-105.09204,40.57096],[-105.09186,40.57096],[-105.09161,40.57096],[-105.0914,40.57095],[-105.09121,40.57094],[-105.09095,40.57094],[-105.09073,40.57094],[-105.09047,40.57094],[-105.09021,40.57094],[-105.09,40.57094],[-105.08976,40.57093],[-105.08956,40.57093],[-105.08938,40.57092],[-105.0892,40.5709],[-105.08908,40.5709],[-105.08903,40.5709],[-105.08885,40.5709],[-105.08867,40.57089],[-105.08857,40.57089],[-105.08845,40.57089],[-105.08845,40.57095],[-105.08844,40.57109],[-105.08844,40.57122],[-105.08843,40.57136],[-105.08843,40.5714],[-105.08843,40.57154],[-105.08842,40.57167],[-105.08841,40.57181],[-105.08841,40.57195],[-105.08841,40.57196],[-105.08841,40.5721],[-105.08841,40.57224],[-105.08841,40.57238],[-105.08841,40.57252],[-105.08841,40.57256],[-105.08841,40.57271],[-105.08841,40.57286],[-105.08841,40.57301],[-105.08841,40.57315],[-105.08841,40.5733],[-105.08841,40.57345],[-105.08841,40.5736],[-105.08841,40.57375],[-105.0884,40.57389],[-105.0884,40.57392],[-105.08841,40.57406],[-105.08841,40.57409],[-105.0884,40.57436],[-105.0884,40.57454],[-105.08843,40.57468],[-105.08843,40.57481],[-105.08843,40.57502],[-105.0884,40.57515],[-105.08837,40.57529],[-105.08829,40.57542],[-105.08817,40.57553],[-105.08805,40.57565],[-105.08799,40.57578],[-105.08795,40.57591],[-105.08793,40.5761],[-105.08793,40.57624],[-105.08793,40.57638],[-105.08771,40.57642],[-105.08747,40.57642],[-105.08729,40.57642],[-105.0871,40.57643],[-105.08693,40.57643],[-105.08668,40.57642],[-105.08644,40.57642],[-105.08624,40.57636],[-105.0861,40.57622],[-105.08594,40.57608],[-105.08584,40.57595],[-105.0857,40.57583],[-105.08558,40.57572],[-105.08539,40.57576],[-105.08523,40.57584],[-105.08515,40.57586]]}},{"type":"Feature","properties":{"name":"33:01"},"geometry":{"type":"LineString","coordinates":[[-105.14588,40.57693],[-105.14588,40.57693],[-105.14578,40.5769],[-105.14569,40.5769],[-105.14562,40.57691],[-105.14557,40.57694],[-105.14558,40.57699],[-105.14564,40.57703],[-105.14574,40.57705],[-105.14585,40.57708],[-105.14597,40.57711],[-105.1461,40.57714],[-105.14618,40.57716],[-105.14622,40.57721],[-105.14617,40.5773],[-105.14612,40.57739],[-105.14606,40.57748],[-105.14601,40.57758],[-105.14596,40.57767],[-105.14591,40.57775],[-105.14586,40.57783],[-105.14581,40.57791],[-105.14576,40.578],[-105.14571,40.57808],[-105.14566,40.57816],[-105.14561,40.57825],[-105.14556,40.57833],[-105.14551,40.57841],[-105.14546,40.57849],[-105.14541,40.57858],[-105.14536,40.57866],[-105.1453,40.57876],[-105.14524,40.57886],[-105.14518,40.57896],[-105.14511,40.57906],[-105.14504,40.57916],[-105.14495,40.57923],[-105.14486,40.57929],[-105.14472,40.57937],[-105.1446,40.57941],[-105.14448,40.57946],[-105.14428,40.57949],[-105.14414,40.5795],[-105.144,40.57952],[-105.14386,40.57953],[-105.14372,40.57954],[-105.14358,40.57955],[-105.14343,40.57957],[-105.14329,40.57958],[-105.14315,40.57959],[-105.14315,40.57959],[-105.14296,40.5796],[-105.14277,40.57961],[-105.14263,40.57961],[-105.1425,40.57962],[-105.14237,40.57963],[-105.14223,40.57964],[-105.1421,40.57965],[-105.14197,40.57966],[-105.14184,40.57966],[-105.1417,40.57967],[-105.1415,40.57969],[-105.1413,40.5797],[-105.1411,40.57971],[-105.14091,40.57973],[-105.14071,40.57974],[-105.14051,40.57975],[-105.14031,40.57977],[-105.14011,40.57978],[-105.13991,40.57979],[-105.13971,40.57981],[-105.13951,40.57982],[-105.13931,40.57983],[-105.13911,40.57984],[-105.13891,40.57986],[-105.13871,40.57987],[-105.13851,40.57988],[-105.1384,40.57989],[-105.13829,40.57989],[-105.13818,40.57989],[-105.13807,40.5799],[-105.13793,40.57989],[-105.13779,40.57988],[-105.13765,40.57988],[-105.13751,40.57987],[-105.13751,40.57987],[-105.13739,40.57988],[-105.13727,40.57989],[-105.13715,40.5799],[-105.13703,40.5799],[-105.13681,40.57991],[-105.1366,40.57993],[-105.13639,40.57993],[-105.13618,40.57995],[-105.13599,40.57995],[-105.1358,40.57996],[-105.13561,40.57997],[-105.13542,40.57998],[-105.13523,40.57998],[-105.13504,40.57999],[-105.13485,40.58],[-105.13466,40.58001],[-105.13447,40.58001],[-105.13429,40.58001],[-105.1341,40.58001],[-105.13392,40.58001],[-105.13385,40.57999],[-105.13383,40.57984],[-105.13383,40.57968],[-105.13384,40.57952],[-105.13384,40.57936],[-105.13384,40.5792],[-105.13385,40.57906],[-105.13385,40.57891],[-105.13385,40.57876],[-105.13385,40.57862],[-105.13384,40.57846],[-105.13384,40.5783],[-105.13384,40.57814],[-105.13383,40.57799],[-105.13384,40.5779],[-105.13384,40.57781],[-105.13384,40.57772],[-105.13384,40.57763],[-105.13384,40.57754],[-105.13385,40.57746],[-105.13385,40.57737],[-105.13385,40.57728],[-105.13385,40.57728],[-105.13383,40.57719],[-105.13381,40.5771],[-105.1338,40.57694],[-105.1338,40.57678],[-105.1338,40.57664],[-105.1338,40.5765],[-105.1338,40.57635],[-105.13381,40.57621],[-105.13381,40.5761],[-105.13381,40.57598],[-105.13381,40.57587],[-105.13381,40.57576],[-105.13381,40.57565],[-105.13381,40.57553],[-105.13381,40.57542],[-105.13381,40.57531],[-105.13381,40.5752],[-105.13381,40.57509],[-105.13379,40.57504],[-105.1337,40.57501],[-105.13348,40.57501],[-105.13326,40.57501],[-105.13305,40.57501],[-105.13283,40.57501],[-105.13263,40.57501],[-105.13245,40.57501],[-105.13222,40.575],[-105.13198,40.575],[-105.13172,40.57499],[-105.13144,40.57499],[-105.1312,40.57499],[-105.13094,40.57499],[-105.13065,40.57499],[-105.13039,40.57499],[-105.13009,40.57499],[-105.12979,40.57498],[-105.12949,40.57497],[-105.12922,40.57497],[-105.12894,40.57496],[-105.12866,40.57496],[-105.12838,40.57494],[-105.12808,40.57493],[-105.12776,40.57491],[-105.12749,40.57491],[-105.12721,40.57491],[-105.12693,40.57491],[-105.12663,40.57489],[-105.12637,40.57489],[-105.12615,40.57488],[-105.12594,40.57487],[-105.12586,40.57487],[-105.12566,40.57487],[-105.12538,40.57487],[-105.12516,40.57488],[-105.1249,40.57488],[-105.12462,40.57488],[-105.12437,40.57487],[-105.12409,40.57486],[-105.12391,40.57486],[-105.12367,40.57485],[-105.12359,40.57484],[-105.12341,40.57484],[-105.12318,40.57484],[-105.12298,40.57484],[-105.12274,40.57484],[-105.12246,40.57484],[-105.1222,40.57483],[-105.12192,40.57482],[-105.12161,40.57481],[-105.12131,40.5748],[-105.12101,40.5748],[-105.12071,40.5748],[-105.12041,40.5748],[-105.1201,40.57478],[-105.1198,40.57478],[-105.11948,40.57477],[-105.11918,40.57477],[-105.11888,40.57476],[-105.11858,40.57476],[-105.11829,40.57475],[-105.11803,40.57475],[-105.11779,40.57475],[-105.11755,40.57473],[-105.11737,40.57473],[-105.11722,40.57472],[-105.117,40.57473],[-105.11674,40.57473],[-105.11654,40.57472],[-105.11634,40.57472],[-105.11612,40.57472],[-105.11594,40.5747],[-105.11575,40.57468],[-105.11554,40.57463],[-105.11533,40.5746],[-105.11515,40.57459],[-105.11489,40.57457],[-105.11465,40.57456],[-105.11453,40.57456],[-105.11431,40.57455],[-105.11414,40.57456],[-105.11396,40.57456],[-105.11372,40.57456],[-105.1135,40.57454],[-105.11326,40.57454],[-105.11304,40.57453],[-105.11284,40.57453],[-105.11262,40.57453],[-105.11253,40.57452],[-105.11229,40.57453],[-105.11205,40.57453],[-105.11183,40.57454],[-105.11159,40.57456],[-105.11133,40.57459],[-105.11107,40.57461],[-105.11082,40.57462],[-105.11054,40.57464],[-105.1103,40.57463],[-105.11006,40.57462],[-105.10986,40.57461],[-105.10967,40.57461],[-105.10961,40.57461],[-105.10939,40.57461],[-105.10913,40.57461],[-105.10893,40.5746],[-105.10867,40.5746],[-105.10839,40.5746],[-105.1081,40.57459],[-105.1078,40.57459],[-105.1075,40.57459],[-105.10718,40.57459],[-105.10688,40.57458],[-105.10657,40.57457],[-105.10631,40.57457],[-105.10605,40.57457],[-105.10585,40.57456],[-105.10563,40.57456],[-105.10557,40.57456],[-105.10535,40.57456],[-105.1051,40.57456],[-105.10486,40.57456],[-105.10462,40.57456],[-105.10436,40.57456],[-105.10408,40.57455],[-105.10378,40.57454],[-105.1035,40.57454],[-105.10323,40.57454],[-105.10291,40.57453],[-105.10263,40.57453],[-105.10233,40.57453],[-105.1021,40.57453],[-105.10184,40.57452],[-105.10162,40.57452],[-105.10142,40.57452],[-105.10118,40.57452],[-105.10098,40.57451],[-105.10072,40.5745],[-105.10053,40.57449],[-105.10031,40.57449],[-105.10009,40.57449],[-105.09985,40.57449],[-105.09975,40.57449],[-105.09953,40.57452],[-105.09925,40.57456],[-105.09901,40.57459],[-105.09878,40.57461],[-105.09852,40.57461],[-105.09828,40.57461],[-105.098,40.57461],[-105.09776,40.57461],[-105.0975,40.5746],[-105.09725,40.5746],[-105.09701,40.5746],[-105.09679,40.5746],[-105.09661,40.57459],[-105.09641,40.57459],[-105.09617,40.57459],[-105.09596,40.57462],[-105.09586,40.57477],[-105.09586,40.57491],[-105.09584,40.57507],[-105.09584,40.57525],[-105.09584,40.57543],[-105.09584,40.57561],[-105.09584,40.57579],[-105.09584,40.57597],[-105.09584,40.57615],[-105.09584,40.5763],[-105.09578,40.57644],[-105.09562,40.57649],[-105.09536,40.57649],[-105.09518,40.57648],[-105.09498,40.57646],[-105.09478,40.57644],[-105.09458,40.57644],[-105.09437,40.57643],[-105.09417,40.57642],[-105.09397,40.57642],[-105.09397,40.57642],[-105.09375,40.57644],[-105.09345,40.57644],[-105.09325,40.57644],[-105.09306,40.57644],[-105.09286,40.57644],[-105.09266,40.57644],[-105.09246,40.57644],[-105.09228,40.57644],[-105.09206,40.57644],[-105.09188,40.57644],[-105.0917,40.57644],[-105.09144,40.57644],[-105.09121,40.57644],[-105.09105,40.57643],[-105.09081,40.57643],[-105.09063,40.5764],[-105.09045,40.57639],[-105.09027,40.57642],[-105.09001,40.57642],[-105.08986,40.57642],[-105.08966,40.57642],[-105.08946,40.57642],[-105.08926,40.57642],[-105.08906,40.57642],[-105.08886,40.57642],[-105.08866,40.57642],[-105.08846,40.57642],[-105.08823,40.57642],[-105.08803,40.57642],[-105.08783,40.57642],[-105.08757,40.57642],[-105.08737,40.57642],[-105.08715,40.57642],[-105.08696,40.57642],[-105.08678,40.57642],[-105.08658,40.57642],[-105.08636,40.5764],[-105.08618,40.5763],[-105.08604,40.57616],[-105.0859,40.57602],[-105.08578,40.57589],[-105.08564,40.57578],[-105.08553,40.57569],[-105.08539,40.57575],[-105.08521,40.57583],[-105.08513,40.57585]]}},{"type":"Feature","properties":{"name":"33:51"},"geometry":{"type":"LineString","coordinates":[[-105.08519,40.57587],[-105.08501,40.57596],[-105.08485,40.57605],[-105.08475,40.57619],[-105.08489,40.57634],[-105.08509,40.57637],[-105.08536,40.57639],[-105.08561,40.5764],[-105.0858,40.57642],[-105.08598,40.57642],[-105.08624,40.57643],[-105.0865,40.57643],[-105.0867,40.57643],[-105.08689,40.57643],[-105.0871,40.57643],[-105.08727,40.57643],[-105.08751,40.57643],[-105.08773,40.57643],[-105.08795,40.57643],[-105.08817,40.57643],[-105.0884,40.57643],[-105.08861,40.57643],[-105.08876,40.57643],[-105.08898,40.57643],[-105.0892,40.57643],[-105.0894,40.57643],[-105.0896,40.57643],[-105.08982,40.57643],[-105.09001,40.57644],[-105.09021,40.57644],[-105.09039,40.57644],[-105.09059,40.57644],[-105.09081,40.57644],[-105.09099,40.57644],[-105.09117,40.57646],[-105.09133,40.57648],[-105.09121,40.57646],[-105.09138,40.57647],[-105.09155,40.57647],[-105.09173,40.57647],[-105.0919,40.57647],[-105.09208,40.57647],[-105.09225,40.57647],[-105.09242,40.57648],[-105.0926,40.57648],[-105.09276,40.57648],[-105.09292,40.57649],[-105.09308,40.57649],[-105.09325,40.5765],[-105.09341,40.5765],[-105.09357,40.57651],[-105.09373,40.57651],[-105.0939,40.57652],[-105.09408,40.57653],[-105.09427,40.57654],[-105.09446,40.57655],[-105.09464,40.57656],[-105.09464,40.57656],[-105.09483,40.57657],[-105.09502,40.57657],[-105.09521,40.57658],[-105.09539,40.57659],[-105.09559,40.57659],[-105.09579,40.57658],[-105.09596,40.57656],[-105.096,40.57648],[-105.09603,40.57639],[-105.09603,40.57628],[-105.09603,40.57617],[-105.09604,40.57606],[-105.09604,40.57595],[-105.09604,40.57584],[-105.09604,40.57573],[-105.09604,40.57561],[-105.09604,40.5755],[-105.09604,40.57541],[-105.09604,40.57532],[-105.09604,40.57522],[-105.09604,40.57513],[-105.09604,40.57504],[-105.09604,40.57494],[-105.09604,40.57485],[-105.09604,40.57476],[-105.09608,40.5747],[-105.09623,40.5747],[-105.09638,40.5747],[-105.09652,40.5747],[-105.09666,40.5747],[-105.0968,40.5747],[-105.09693,40.5747],[-105.09707,40.5747],[-105.09721,40.5747],[-105.09735,40.5747],[-105.09749,40.5747],[-105.09762,40.5747],[-105.09776,40.57471],[-105.09789,40.57471],[-105.09802,40.57471],[-105.09816,40.57471],[-105.09829,40.57472],[-105.09842,40.57472],[-105.09856,40.57472],[-105.09871,40.57472],[-105.09886,40.57471],[-105.09906,40.57469],[-105.09925,40.57468],[-105.09946,40.57465],[-105.09967,40.57463],[-105.09986,40.57463],[-105.10004,40.57463],[-105.10023,40.57463],[-105.10041,40.57463],[-105.10057,40.57463],[-105.10073,40.57463],[-105.10088,40.57463],[-105.10104,40.57464],[-105.10104,40.57464],[-105.10123,40.57464],[-105.10143,40.57464],[-105.10162,40.57464],[-105.10181,40.57464],[-105.10196,40.57464],[-105.1021,40.57464],[-105.10225,40.57464],[-105.10239,40.57464],[-105.10253,40.57464],[-105.10268,40.57464],[-105.10282,40.57464],[-105.10297,40.57464],[-105.10311,40.57464],[-105.10325,40.57464],[-105.1034,40.57464],[-105.10354,40.57464],[-105.10369,40.57464],[-105.10383,40.57464],[-105.10398,40.57464],[-105.10412,40.57464],[-105.10432,40.57464],[-105.10451,40.57464],[-105.10471,40.57464],[-105.10491,40.57464],[-105.10491,40.57464],[-105.10508,40.57465],[-105.10525,40.57466],[-105.10543,40.57467],[-105.1056,40.57468],[-105.10573,40.57468],[-105.10585,40.57469],[-105.10598,40.57469],[-105.1061,40.57469],[-105.10623,40.57469],[-105.10636,40.57469],[-105.10648,40.57469],[-105.10661,40.5747],[-105.10675,40.5747],[-105.10689,40.5747],[-105.10703,40.57471],[-105.10717,40.57471],[-105.10732,40.57471],[-105.10746,40.57471],[-105.1076,40.57471],[-105.10774,40.57472],[-105.10787,40.57472],[-105.108,40.57472],[-105.10813,40.57472],[-105.10825,40.57472],[-105.10838,40.57472],[-105.10851,40.57472],[-105.10864,40.57473],[-105.10877,40.57473],[-105.10889,40.57473],[-105.10901,40.57473],[-105.10913,40.57474],[-105.10926,40.57474],[-105.10938,40.57474],[-105.1095,40.57475],[-105.10962,40.57475],[-105.10975,40.57475],[-105.10991,40.57478],[-105.11008,40.57481],[-105.11022,40.57483],[-105.11042,40.5748],[-105.11062,40.57478],[-105.11086,40.57477],[-105.11105,40.57476],[-105.11131,40.57474],[-105.11153,40.57472],[-105.11181,40.57469],[-105.11209,40.57468],[-105.11237,40.57469],[-105.11261,40.5747],[-105.11282,40.57472],[-105.113,40.57472],[-105.11306,40.57472],[-105.11324,40.57472],[-105.1135,40.5747],[-105.11372,40.5747],[-105.11396,40.57471],[-105.11418,40.5747],[-105.11437,40.5747],[-105.11459,40.57471],[-105.11481,40.57472],[-105.11499,40.57472],[-105.11529,40.57473],[-105.11549,40.57476],[-105.11571,40.57481],[-105.1159,40.57486],[-105.11612,40.57491],[-105.11628,40.57494],[-105.1165,40.57491],[-105.11674,40.57489],[-105.11704,40.57489],[-105.11723,40.57489],[-105.11749,40.57489],[-105.11777,40.57491],[-105.11803,40.57491],[-105.11829,40.57491],[-105.11853,40.57493],[-105.11876,40.57496],[-105.11896,40.57496],[-105.11902,40.57496],[-105.11922,40.57491],[-105.11942,40.57491],[-105.1196,40.57491],[-105.11984,40.57491],[-105.12005,40.57491],[-105.12031,40.57491],[-105.12057,40.57491],[-105.12085,40.57492],[-105.12115,40.57493],[-105.12145,40.57493],[-105.12176,40.57493],[-105.12206,40.57494],[-105.12236,40.57494],[-105.12266,40.57495],[-105.1229,40.57496],[-105.1231,40.57496],[-105.12328,40.57496],[-105.12328,40.57496],[-105.12351,40.57497],[-105.12377,40.57497],[-105.12397,40.57498],[-105.12419,40.57498],[-105.12443,40.57499],[-105.12471,40.57499],[-105.125,40.57499],[-105.12532,40.575],[-105.12562,40.575],[-105.12594,40.57501],[-105.12623,40.57502],[-105.12657,40.57502],[-105.12687,40.57503],[-105.12715,40.57505],[-105.12739,40.57507],[-105.12757,40.57507],[-105.12776,40.57508],[-105.12786,40.57508],[-105.12806,40.57506],[-105.12826,40.57504],[-105.12854,40.57505],[-105.12872,40.57506],[-105.12896,40.57506],[-105.12919,40.57506],[-105.12947,40.57505],[-105.12973,40.57505],[-105.13001,40.57507],[-105.13033,40.57507],[-105.13061,40.57507],[-105.13088,40.57509],[-105.13118,40.57511],[-105.13146,40.57511],[-105.13172,40.57511],[-105.13198,40.57512],[-105.13219,40.57513],[-105.13239,40.57514],[-105.13261,40.57515],[-105.13271,40.57515],[-105.13271,40.57515],[-105.13284,40.57515],[-105.13298,40.57514],[-105.13311,40.57514],[-105.13324,40.57513],[-105.13345,40.57511],[-105.13366,40.5751],[-105.13374,40.57512],[-105.13376,40.57523],[-105.13378,40.57534],[-105.13378,40.57546],[-105.13377,40.57558],[-105.13377,40.5757],[-105.13376,40.57582],[-105.13376,40.57595],[-105.13376,40.57607],[-105.13375,40.57619],[-105.13375,40.57631],[-105.13375,40.5764],[-105.13375,40.57649],[-105.13375,40.57657],[-105.13375,40.57666],[-105.13375,40.57682],[-105.13376,40.57699],[-105.13375,40.57714],[-105.13375,40.57728],[-105.13374,40.57743],[-105.13374,40.57758],[-105.13374,40.57769],[-105.13374,40.57781],[-105.13374,40.57792],[-105.13374,40.57803],[-105.13374,40.57815],[-105.13374,40.57827],[-105.13374,40.5784],[-105.13375,40.57852],[-105.13375,40.57864],[-105.13375,40.57876],[-105.13376,40.57888],[-105.13376,40.57901],[-105.13376,40.57912],[-105.13376,40.57922],[-105.13376,40.57933],[-105.13376,40.57944],[-105.13376,40.57954],[-105.13377,40.57965],[-105.13377,40.57976],[-105.13377,40.57986],[-105.13379,40.57997],[-105.13388,40.58002],[-105.13406,40.58003],[-105.13424,40.58004],[-105.13441,40.58004],[-105.13458,40.58003],[-105.13475,40.58003],[-105.13492,40.58002],[-105.13509,40.58002],[-105.13527,40.58001],[-105.13544,40.58001],[-105.13561,40.58],[-105.13579,40.58],[-105.13597,40.57999],[-105.13615,40.57999],[-105.13632,40.57998],[-105.1365,40.57998],[-105.13668,40.57997],[-105.13686,40.57997],[-105.13704,40.57997],[-105.13719,40.57996],[-105.13733,40.57996],[-105.13748,40.57996],[-105.13762,40.57996],[-105.13762,40.57996],[-105.13775,40.57995],[-105.13788,40.57994],[-105.13807,40.57993],[-105.13826,40.57991],[-105.13845,40.5799],[-105.13863,40.57989],[-105.13882,40.57988],[-105.13901,40.57986],[-105.1392,40.57985],[-105.13938,40.57984],[-105.13956,40.57983],[-105.13974,40.57981],[-105.13992,40.5798],[-105.14009,40.57979],[-105.14027,40.57978],[-105.14045,40.57977],[-105.14062,40.57976],[-105.1408,40.57975],[-105.14091,40.57974],[-105.14102,40.57974],[-105.14113,40.57973],[-105.14124,40.57973],[-105.14135,40.57973],[-105.14146,40.57972],[-105.14157,40.57972],[-105.14168,40.57972],[-105.14179,40.57971],[-105.1419,40.57971],[-105.14201,40.57971],[-105.14212,40.5797],[-105.14223,40.5797],[-105.14234,40.5797],[-105.14245,40.57969],[-105.14256,40.57969],[-105.14273,40.57968],[-105.1429,40.57968],[-105.14308,40.57968],[-105.14325,40.57967],[-105.14325,40.57967],[-105.14342,40.57965],[-105.14359,40.57963],[-105.1437,40.57961],[-105.14381,40.5796],[-105.14392,40.57958],[-105.14404,40.57956],[-105.14415,40.57955],[-105.14426,40.57953],[-105.14437,40.57952],[-105.14449,40.5795],[-105.14459,40.57946],[-105.1447,40.57942],[-105.14485,40.57933],[-105.145,40.57924],[-105.14509,40.57913],[-105.14518,40.57902],[-105.14524,40.57892],[-105.1453,40.57881],[-105.14537,40.5787],[-105.14543,40.5786],[-105.14551,40.57847],[-105.14559,40.57833],[-105.14567,40.5782],[-105.14575,40.57807],[-105.14582,40.57795],[-105.14589,40.57783],[-105.14596,40.57771],[-105.14603,40.57759],[-105.14612,40.57744],[-105.14621,40.57729],[-105.14624,40.57721],[-105.14622,40.57716],[-105.14615,40.57713],[-105.14609,40.57705],[-105.14598,40.57698],[-105.14588,40.57693]]}},{"type":"Feature","properties":{"name":"34:01"},"geometry":{"type":"LineString","coordinates":[[-105.08385,40.55372],[-105.08388,40.55367],[-105.08389,40.55367],[-105.08391,40.55367],[-105.08392,40.55366],[-105.08395,40.55365],[-105.08396,40.55365],[-105.08398,40.55363],[-105.08399,40.55361],[-105.084,40.55359],[-105.084,40.5535],[-105.08401,40.55345],[-105.08402,40.55344],[-105.08404,40.5534],[-105.08406,40.55335],[-105.08411,40.5533],[-105.08413,40.55328],[-105.08415,40.55326],[-105.08424,40.5533],[-105.08426,40.55331],[-105.08439,40.55338],[-105.08449,40.55345],[-105.08455,40.55351],[-105.08457,40.55353],[-105.08462,40.55358],[-105.08463,40.5536],[-105.0847,40.55368],[-105.0847,40.55369],[-105.08477,40.55382],[-105.08485,40.55394],[-105.08488,40.554],[-105.08496,40.55412],[-105.08503,40.55424],[-105.0851,40.55437],[-105.08512,40.5544],[-105.08519,40.5545],[-105.08526,40.55463],[-105.08529,40.55467],[-105.08534,40.55477],[-105.08537,40.55484],[-105.0854,40.55492],[-105.08542,40.55497],[-105.08543,40.55502],[-105.08545,40.55511],[-105.08546,40.55512],[-105.08546,40.55519],[-105.08547,40.55527],[-105.08547,40.5553],[-105.08547,40.55537],[-105.08547,40.55543],[-105.08546,40.55546],[-105.08545,40.55557],[-105.08543,40.55562],[-105.08542,40.55569],[-105.08538,40.55582],[-105.08538,40.55583],[-105.08537,40.55586],[-105.08537,40.55588],[-105.08535,40.55597],[-105.08531,40.5561],[-105.0853,40.55616],[-105.08527,40.55629],[-105.08523,40.55643],[-105.08523,40.55644],[-105.0852,40.55658],[-105.08517,40.55671],[-105.08515,40.5568],[-105.08511,40.55693],[-105.08508,40.55707],[-105.08504,40.5572],[-105.08503,40.55725],[-105.08502,40.55731],[-105.08499,40.55745],[-105.08496,40.55758],[-105.08494,40.55765],[-105.08493,40.55773],[-105.08493,40.55782],[-105.08493,40.55785],[-105.08493,40.55794],[-105.08496,40.55808],[-105.08499,40.55821],[-105.08501,40.55835],[-105.08502,40.55837],[-105.08505,40.5585],[-105.08506,40.55857],[-105.08524,40.55858],[-105.08537,40.55858],[-105.08543,40.55859],[-105.08561,40.55859],[-105.08579,40.55859],[-105.08597,40.55859],[-105.08615,40.5586],[-105.08633,40.5586],[-105.08642,40.5586],[-105.0866,40.55861],[-105.08672,40.55861],[-105.0868,40.55861],[-105.08686,40.55863],[-105.08702,40.55869],[-105.08712,40.55873],[-105.08708,40.55879],[-105.08699,40.55891],[-105.08696,40.55894],[-105.08686,40.55905],[-105.08681,40.5591],[-105.08671,40.55918],[-105.08659,40.55928],[-105.08647,40.55938],[-105.08642,40.55942],[-105.0863,40.55952],[-105.08617,40.55962],[-105.08605,40.55972],[-105.08593,40.55982],[-105.08581,40.55992],[-105.08568,40.56002],[-105.08556,40.56012],[-105.08555,40.56013],[-105.08539,40.56028],[-105.08523,40.56041],[-105.08501,40.56057],[-105.08481,40.56075],[-105.08459,40.56092],[-105.08439,40.56109],[-105.08419,40.56126],[-105.084,40.56144],[-105.08378,40.56163],[-105.08362,40.56182],[-105.08346,40.56204],[-105.08334,40.56227],[-105.08326,40.56249],[-105.0832,40.56271],[-105.08318,40.56294],[-105.08316,40.56315],[-105.08318,40.56338],[-105.08324,40.5636],[-105.0833,40.56382],[-105.08338,40.56404],[-105.08344,40.56426],[-105.08352,40.5645],[-105.0836,40.56472],[-105.08366,40.56494],[-105.0837,40.56511],[-105.0837,40.56524],[-105.0837,40.56524],[-105.0837,40.56538],[-105.08369,40.56553],[-105.08369,40.56567],[-105.08369,40.56581],[-105.08369,40.56595],[-105.08369,40.56609],[-105.08368,40.56623],[-105.08368,40.56637],[-105.08368,40.56653],[-105.08369,40.56669],[-105.08369,40.56684],[-105.08369,40.567],[-105.08369,40.56709],[-105.08368,40.56718],[-105.08368,40.56727],[-105.08367,40.56736],[-105.08367,40.56745],[-105.08366,40.56754],[-105.08365,40.56764],[-105.08365,40.56773],[-105.08364,40.56781],[-105.08363,40.56789],[-105.08362,40.56798],[-105.08361,40.56806],[-105.08361,40.56806],[-105.08364,40.56821],[-105.08364,40.56835],[-105.08365,40.56848],[-105.08365,40.5686],[-105.08365,40.56871],[-105.08368,40.56875],[-105.08375,40.56877],[-105.08386,40.56877],[-105.08398,40.56877],[-105.08409,40.56877],[-105.08421,40.56877],[-105.08432,40.56877],[-105.08444,40.56877],[-105.08455,40.56877],[-105.08467,40.56877],[-105.08485,40.56877],[-105.08503,40.56877],[-105.08521,40.56877],[-105.08539,40.56877],[-105.08556,40.56878],[-105.08574,40.56878],[-105.08592,40.56878],[-105.0861,40.56878],[-105.08629,40.56878],[-105.08647,40.56878],[-105.08666,40.56878],[-105.08685,40.56878],[-105.0869,40.5688],[-105.08691,40.56885],[-105.08691,40.56899],[-105.08691,40.56914],[-105.08691,40.56928],[-105.08692,40.56942],[-105.08693,40.56952],[-105.08704,40.56962],[-105.08721,40.56972],[-105.08741,40.56975],[-105.08757,40.56976],[-105.08773,40.56976],[-105.08788,40.56976],[-105.08803,40.56976],[-105.08814,40.56978],[-105.08825,40.56981],[-105.08838,40.5699],[-105.08844,40.57001],[-105.08846,40.57013],[-105.08845,40.57025],[-105.08845,40.57036],[-105.08845,40.57048],[-105.08845,40.57059],[-105.08845,40.57071],[-105.08844,40.57083],[-105.08844,40.57095],[-105.08843,40.57108],[-105.08843,40.57121],[-105.08842,40.57135],[-105.08842,40.57148],[-105.08841,40.57161],[-105.08841,40.57172],[-105.08841,40.57183],[-105.0884,40.57194],[-105.0884,40.57205],[-105.0884,40.57216],[-105.0884,40.57227],[-105.08839,40.57238],[-105.08839,40.57249],[-105.08839,40.57259],[-105.08839,40.57268],[-105.08839,40.57278],[-105.08839,40.57287],[-105.08839,40.57297],[-105.0884,40.57306],[-105.0884,40.57316],[-105.0884,40.57325],[-105.08839,40.57341],[-105.08839,40.57358],[-105.08839,40.57374],[-105.08838,40.57391],[-105.08835,40.57396],[-105.08835,40.57409],[-105.0884,40.57436],[-105.0884,40.57454],[-105.08843,40.57468],[-105.08843,40.57481],[-105.08843,40.57502],[-105.0884,40.57515],[-105.08837,40.57529],[-105.08829,40.57542],[-105.08817,40.57553],[-105.08805,40.57565],[-105.08799,40.57578],[-105.08795,40.57591],[-105.08793,40.5761],[-105.08793,40.57624],[-105.08793,40.57638],[-105.08771,40.57642],[-105.08747,40.57642],[-105.08729,40.57642],[-105.0871,40.57643],[-105.08693,40.57643],[-105.08668,40.57642],[-105.08644,40.57642],[-105.08624,40.57636],[-105.0861,40.57622],[-105.08594,40.57608],[-105.08584,40.57595],[-105.0857,40.57583],[-105.08558,40.57572],[-105.08539,40.57576],[-105.08523,40.57584],[-105.08515,40.57586]]}},{"type":"Feature","properties":{"name":"34:51"},"geometry":{"type":"LineString","coordinates":[[-105.08519,40.57587],[-105.08501,40.57596],[-105.08485,40.57605],[-105.08473,40.57618],[-105.08475,40.57633],[-105.08489,40.57639],[-105.08509,40.57639],[-105.08531,40.57639],[-105.0855,40.5764],[-105.08568,40.57642],[-105.0859,40.57643],[-105.08614,40.57643],[-105.08638,40.57643],[-105.08664,40.57643],[-105.08684,40.57643],[-105.08704,40.57643],[-105.08729,40.57643],[-105.08753,40.57643],[-105.08771,40.57643],[-105.08789,40.5764],[-105.08793,40.57623],[-105.08795,40.57604],[-105.08797,40.57585],[-105.08803,40.57571],[-105.08815,40.57559],[-105.08827,40.57548],[-105.08839,40.57537],[-105.08844,40.57523],[-105.08846,40.57508],[-105.08849,40.57493],[-105.0885,40.57477],[-105.0885,40.57462],[-105.08854,40.57448],[-105.08857,40.57428],[-105.08857,40.57412],[-105.08857,40.57398],[-105.08861,40.57379],[-105.08857,40.57363],[-105.08857,40.57352],[-105.08846,40.57359],[-105.08846,40.57343],[-105.08846,40.57326],[-105.08846,40.57311],[-105.08846,40.57296],[-105.08846,40.57281],[-105.08843,40.57266],[-105.08844,40.57249],[-105.08844,40.57232],[-105.08844,40.57213],[-105.08846,40.57194],[-105.08846,40.57175],[-105.08846,40.57155],[-105.08846,40.57139],[-105.08846,40.57125],[-105.08846,40.5711],[-105.08846,40.57096],[-105.08849,40.57081],[-105.08849,40.57064],[-105.0885,40.57046],[-105.0885,40.57027],[-105.08849,40.57008],[-105.0884,40.56991],[-105.08821,40.56979],[-105.08793,40.56976],[-105.08777,40.56976],[-105.08747,40.56978],[-105.08725,40.56977],[-105.08707,40.56971],[-105.08693,40.56955],[-105.08693,40.56939],[-105.08696,40.5693],[-105.08701,40.56925],[-105.087,40.56916],[-105.08699,40.56907],[-105.08697,40.56897],[-105.08696,40.56887],[-105.08695,40.56878],[-105.08689,40.56875],[-105.08669,40.56875],[-105.08649,40.56875],[-105.08634,40.56875],[-105.0862,40.56875],[-105.08605,40.56875],[-105.08591,40.56875],[-105.08577,40.56875],[-105.08562,40.56875],[-105.08548,40.56875],[-105.08533,40.56875],[-105.08522,40.56875],[-105.0851,40.56875],[-105.08499,40.56875],[-105.08487,40.56874],[-105.08476,40.56874],[-105.08464,40.56874],[-105.08453,40.56874],[-105.08441,40.56874],[-105.08424,40.56868],[-105.08424,40.56868],[-105.08407,40.56872],[-105.08394,40.56872],[-105.0838,40.56872],[-105.08375,40.56871],[-105.08373,40.56867],[-105.08373,40.56858],[-105.08372,40.56848],[-105.08373,40.56832],[-105.08373,40.56816],[-105.08374,40.56799],[-105.08374,40.56783],[-105.08374,40.56768],[-105.08374,40.56753],[-105.08374,40.56738],[-105.08374,40.56723],[-105.08374,40.56712],[-105.08373,40.56701],[-105.08373,40.5669],[-105.08373,40.56679],[-105.08373,40.56667],[-105.08373,40.56655],[-105.08373,40.56643],[-105.08374,40.56631],[-105.08374,40.56619],[-105.08374,40.56607],[-105.08374,40.56595],[-105.08374,40.56583],[-105.08374,40.56569],[-105.08374,40.56556],[-105.08374,40.56542],[-105.08375,40.56529],[-105.08375,40.56519],[-105.08375,40.56509],[-105.08375,40.56499],[-105.08376,40.56489],[-105.08376,40.56489],[-105.08368,40.56475],[-105.08364,40.56466],[-105.0836,40.56457],[-105.08355,40.56442],[-105.0835,40.56428],[-105.08345,40.56414],[-105.0834,40.564],[-105.08337,40.56391],[-105.08334,40.56381],[-105.08331,40.56372],[-105.08328,40.56363],[-105.08326,40.56353],[-105.08324,40.56342],[-105.08321,40.5633],[-105.08319,40.56318],[-105.08319,40.56305],[-105.08319,40.56293],[-105.08321,40.56278],[-105.08324,40.56264],[-105.08328,40.56249],[-105.08332,40.56234],[-105.08338,40.56218],[-105.08344,40.56207],[-105.08351,40.56196],[-105.08359,40.56184],[-105.08368,40.56173],[-105.08374,40.56165],[-105.08382,40.56158],[-105.08388,40.56151],[-105.08395,40.56144],[-105.08406,40.56135],[-105.08417,40.56126],[-105.08428,40.56118],[-105.08438,40.56109],[-105.08449,40.56101],[-105.08459,40.56092],[-105.0847,40.56083],[-105.08481,40.56075],[-105.08496,40.56065],[-105.08511,40.56056],[-105.08526,40.56046],[-105.0854,40.56036],[-105.08552,40.56027],[-105.08552,40.56027],[-105.08565,40.56015],[-105.08578,40.56003],[-105.08588,40.55994],[-105.08599,40.55986],[-105.08609,40.55977],[-105.0862,40.55968],[-105.08628,40.55961],[-105.08636,40.55954],[-105.08644,40.55947],[-105.08653,40.5594],[-105.08661,40.55933],[-105.08669,40.55926],[-105.08678,40.55919],[-105.08686,40.55912],[-105.08694,40.55904],[-105.08703,40.55894],[-105.08712,40.55884],[-105.08715,40.55877],[-105.08712,40.55872],[-105.08707,40.55866],[-105.08687,40.55859],[-105.08671,40.55858],[-105.08655,40.55857],[-105.08643,40.55857],[-105.08632,40.55856],[-105.08621,40.55856],[-105.08609,40.55856],[-105.08598,40.55856],[-105.08587,40.55856],[-105.08575,40.55855],[-105.08564,40.55855],[-105.08542,40.55855],[-105.0852,40.55854],[-105.08513,40.55853],[-105.08506,40.55848],[-105.08504,40.55837],[-105.08502,40.55825],[-105.085,40.55816],[-105.08498,40.55807],[-105.08496,40.55797],[-105.08495,40.55788],[-105.08495,40.55777],[-105.08494,40.55766],[-105.08496,40.55758],[-105.08499,40.55749],[-105.08501,40.5574],[-105.08503,40.55731],[-105.08506,40.55723],[-105.08508,40.55714],[-105.0851,40.55705],[-105.08513,40.55696],[-105.08515,40.55687],[-105.08517,40.55679],[-105.0852,40.5567],[-105.08522,40.55661],[-105.08526,40.55647],[-105.0853,40.55633],[-105.08533,40.55618],[-105.08537,40.55604],[-105.08541,40.5559],[-105.08545,40.55576],[-105.08542,40.55569],[-105.08545,40.55557],[-105.08546,40.55546],[-105.08547,40.55543],[-105.08547,40.55537],[-105.08547,40.55527],[-105.08546,40.55519],[-105.08545,40.55511],[-105.08545,40.55508],[-105.08543,40.55502],[-105.0854,40.55492],[-105.08537,40.55484],[-105.08534,40.55477],[-105.08529,40.55467],[-105.08521,40.55455],[-105.08513,40.55442],[-105.08512,40.5544],[-105.08508,40.55433],[-105.08501,40.55421],[-105.08493,40.55408],[-105.08486,40.55396],[-105.08479,40.55383],[-105.08471,40.5537],[-105.0847,40.55368],[-105.08463,40.5536],[-105.08457,40.55353],[-105.08454,40.5535],[-105.08449,40.55345],[-105.08439,40.55338],[-105.08426,40.55331],[-105.08415,40.55326],[-105.08406,40.55324],[-105.08394,40.55321],[-105.0838,40.55319],[-105.08362,40.55316],[-105.08345,40.55314],[-105.08327,40.55311],[-105.0832,40.5531],[-105.08309,40.55309],[-105.08297,40.55311],[-105.08284,40.55317],[-105.0828,40.55321],[-105.08274,40.55326],[-105.08264,40.55337],[-105.08258,40.55344],[-105.08269,40.5535],[-105.08271,40.55351],[-105.08275,40.55353],[-105.08276,40.55354],[-105.08278,40.55356],[-105.08282,40.5536],[-105.08287,40.55363],[-105.08291,40.55365],[-105.08293,40.55365],[-105.08298,40.55367],[-105.08304,40.55368],[-105.08322,40.55368],[-105.0834,40.55368],[-105.08342,40.55368],[-105.0836,40.55368],[-105.08378,40.55367],[-105.08385,40.55367]]}},{"type":"Feature","properties":{"name":"5:01"},"geometry":{"type":"LineString","coordinates":[[-105.06929,40.54392],[-105.06935,40.54407],[-105.06933,40.54412],[-105.06928,40.54425],[-105.06923,40.54437],[-105.06919,40.54449],[-105.06916,40.54459],[-105.06915,40.54464],[-105.06912,40.54472],[-105.06911,40.5448],[-105.06909,40.54494],[-105.06909,40.54496],[-105.06907,40.5451],[-105.06907,40.5451],[-105.06907,40.54524],[-105.06907,40.54538],[-105.06906,40.54551],[-105.06906,40.54565],[-105.06906,40.54576],[-105.06888,40.54576],[-105.06873,40.54576],[-105.06855,40.54576],[-105.06837,40.54576],[-105.06819,40.54576],[-105.06803,40.54576],[-105.06785,40.54576],[-105.06777,40.54576],[-105.06759,40.54576],[-105.06752,40.54576],[-105.06747,40.54576],[-105.06728,40.54572],[-105.06707,40.54576],[-105.06689,40.54579],[-105.06669,40.54583],[-105.06653,40.54588],[-105.06631,40.54596],[-105.06611,40.54603],[-105.06596,40.54609],[-105.06578,40.54616],[-105.06558,40.54623],[-105.06538,40.5463],[-105.06516,40.54638],[-105.06496,40.54646],[-105.06474,40.54654],[-105.0645,40.54662],[-105.06427,40.54669],[-105.06403,40.54675],[-105.06377,40.54679],[-105.06349,40.54682],[-105.06325,40.54684],[-105.06299,40.54686],[-105.06274,40.54685],[-105.06246,40.54684],[-105.06222,40.5468],[-105.06196,40.54676],[-105.06168,40.54669],[-105.06142,40.54662],[-105.06119,40.54652],[-105.06095,40.54642],[-105.06071,40.54632],[-105.06047,40.54623],[-105.06027,40.54615],[-105.06013,40.54607],[-105.05997,40.54599],[-105.05982,40.54593],[-105.05948,40.54587],[-105.05928,40.54583],[-105.05906,40.54577],[-105.05882,40.54574],[-105.05864,40.54572],[-105.05846,40.54572],[-105.05827,40.54572],[-105.05807,40.54572],[-105.05789,40.5458],[-105.05787,40.54599],[-105.05783,40.54618],[-105.05783,40.54624],[-105.05793,40.5465],[-105.05793,40.54669],[-105.05793,40.54692],[-105.05793,40.54717],[-105.05793,40.54744],[-105.05793,40.54759],[-105.05793,40.54773],[-105.05793,40.54787],[-105.05793,40.54801],[-105.05793,40.54816],[-105.05793,40.54842],[-105.05793,40.54864],[-105.05793,40.54879],[-105.05793,40.54883],[-105.05793,40.54905],[-105.05795,40.54924],[-105.05795,40.54947],[-105.05795,40.54971],[-105.05795,40.54996],[-105.05795,40.55022],[-105.05795,40.55047],[-105.05795,40.55071],[-105.05795,40.55094],[-105.05793,40.55115],[-105.05793,40.55137],[-105.05793,40.55159],[-105.05793,40.55181],[-105.05793,40.55203],[-105.05795,40.55226],[-105.05793,40.5525],[-105.05793,40.55273],[-105.05793,40.55289],[-105.05793,40.55298],[-105.05793,40.55298],[-105.05793,40.55306],[-105.05794,40.55315],[-105.05794,40.55323],[-105.05795,40.55332],[-105.05795,40.55348],[-105.05795,40.55365],[-105.05795,40.55381],[-105.05795,40.55397],[-105.05796,40.55413],[-105.05796,40.5543],[-105.05796,40.55446],[-105.05796,40.55462],[-105.05796,40.55478],[-105.05796,40.55493],[-105.05796,40.55509],[-105.05796,40.55524],[-105.05797,40.5554],[-105.05797,40.55555],[-105.05797,40.55571],[-105.05797,40.55586],[-105.05797,40.55602],[-105.05797,40.55617],[-105.05798,40.55633],[-105.05798,40.55648],[-105.05798,40.55664],[-105.05798,40.55679],[-105.05798,40.55695],[-105.05799,40.5571],[-105.05798,40.55726],[-105.05797,40.55742],[-105.05797,40.55757],[-105.05796,40.55773],[-105.05796,40.55789],[-105.05795,40.55804],[-105.05794,40.5582],[-105.05794,40.55836],[-105.05793,40.55849],[-105.05793,40.55863],[-105.05793,40.55863],[-105.05793,40.55873],[-105.05794,40.55884],[-105.05794,40.55897],[-105.05794,40.5591],[-105.05794,40.55923],[-105.05794,40.55935],[-105.05793,40.55948],[-105.05793,40.55961],[-105.05793,40.55974],[-105.05793,40.55987],[-105.05793,40.55998],[-105.05793,40.5601],[-105.05793,40.56021],[-105.05793,40.56032],[-105.05793,40.56044],[-105.05793,40.56055],[-105.05793,40.56067],[-105.05792,40.56078],[-105.05792,40.56089],[-105.05792,40.56101],[-105.05792,40.56112],[-105.05792,40.56124],[-105.05792,40.56135],[-105.05792,40.56146],[-105.05792,40.56158],[-105.05792,40.56169],[-105.05792,40.56183],[-105.05791,40.56196],[-105.05791,40.5621],[-105.05791,40.56224],[-105.05791,40.56237],[-105.0579,40.56251],[-105.0579,40.56265],[-105.05789,40.56278],[-105.05788,40.56292],[-105.05787,40.56305],[-105.05787,40.56319],[-105.05787,40.56335],[-105.05787,40.56354],[-105.05787,40.56376],[-105.05789,40.564],[-105.05789,40.56426],[-105.05789,40.56454],[-105.05789,40.56469],[-105.05789,40.56482],[-105.05789,40.56497],[-105.05789,40.56511],[-105.05789,40.56526],[-105.05789,40.56553],[-105.05789,40.56575],[-105.05789,40.56595],[-105.05789,40.56609],[-105.05789,40.56624],[-105.05787,40.56639],[-105.05787,40.56656],[-105.05787,40.56671],[-105.05787,40.56686],[-105.05787,40.56702],[-105.05787,40.56717],[-105.05783,40.56732],[-105.05783,40.56746],[-105.05783,40.56746],[-105.05783,40.56764],[-105.05783,40.56782],[-105.05783,40.56804],[-105.05783,40.56829],[-105.05783,40.56854],[-105.05783,40.5688],[-105.05783,40.56906],[-105.05783,40.56931],[-105.05783,40.56958],[-105.05783,40.56985],[-105.05783,40.57012],[-105.05783,40.57039],[-105.05783,40.57066],[-105.05783,40.57093],[-105.05783,40.57118],[-105.05783,40.57142],[-105.05781,40.57158],[-105.05781,40.57167],[-105.05781,40.57182],[-105.05783,40.572],[-105.05783,40.57223],[-105.05783,40.57247],[-105.05783,40.57271],[-105.05783,40.57297],[-105.05783,40.57322],[-105.05781,40.57346],[-105.05781,40.57372],[-105.05781,40.57396],[-105.05779,40.57418],[-105.05779,40.57438],[-105.05779,40.57457],[-105.05777,40.57472],[-105.05777,40.5748],[-105.05779,40.57494],[-105.05779,40.57509],[-105.05779,40.57528],[-105.05779,40.57549],[-105.05779,40.57573],[-105.05779,40.57599],[-105.05777,40.57624],[-105.05777,40.5765],[-105.05777,40.57677],[-105.05777,40.57704],[-105.05777,40.5773],[-105.05777,40.57758],[-105.05777,40.57782],[-105.05773,40.57805],[-105.05767,40.57825],[-105.05761,40.5784],[-105.05753,40.57855],[-105.05751,40.57857],[-105.05747,40.57878],[-105.05741,40.57894],[-105.05735,40.57914],[-105.05729,40.57936],[-105.05721,40.57958],[-105.05713,40.5798],[-105.05705,40.58004],[-105.05696,40.58028],[-105.05689,40.5805],[-105.05682,40.58071],[-105.05678,40.58088],[-105.05674,40.58106],[-105.05674,40.58122],[-105.05674,40.58141],[-105.05674,40.58159],[-105.05671,40.58182],[-105.0567,40.58208],[-105.0567,40.58234],[-105.05668,40.58261],[-105.05668,40.58274],[-105.05668,40.58288],[-105.05668,40.58302],[-105.05666,40.58317],[-105.05666,40.58331],[-105.05666,40.58347],[-105.05664,40.58362],[-105.05664,40.58378],[-105.05662,40.58393],[-105.05662,40.58409],[-105.05662,40.58425],[-105.05662,40.5844],[-105.05658,40.58455],[-105.05656,40.58479],[-105.0565,40.58501],[-105.05648,40.58515],[-105.05648,40.58516],[-105.05648,40.5853],[-105.0565,40.58549],[-105.05652,40.58572],[-105.0565,40.58596],[-105.0565,40.58619],[-105.05648,40.58642],[-105.05648,40.58664],[-105.05654,40.58687],[-105.05662,40.58711],[-105.05668,40.58735],[-105.05678,40.58758],[-105.05689,40.58781],[-105.05703,40.58802],[-105.05719,40.58823],[-105.05731,40.58844],[-105.05741,40.58863],[-105.05751,40.58878],[-105.05771,40.58886],[-105.05791,40.58888],[-105.05813,40.58888],[-105.05835,40.58889],[-105.05854,40.5889],[-105.05856,40.5889],[-105.05886,40.58888],[-105.05904,40.58888],[-105.05928,40.58885],[-105.0596,40.58885],[-105.05992,40.58884],[-105.06027,40.58884],[-105.06047,40.58885],[-105.06065,40.58885],[-105.06101,40.58885],[-105.06119,40.58885],[-105.06136,40.58885],[-105.06172,40.58885],[-105.06208,40.58885],[-105.06244,40.58885],[-105.06279,40.58885],[-105.06313,40.58885],[-105.06333,40.58885],[-105.06351,40.58886],[-105.06371,40.58886],[-105.06389,40.58886],[-105.06407,40.58886],[-105.06427,40.58886],[-105.06445,40.58886],[-105.06462,40.58887],[-105.06482,40.58887],[-105.06502,40.58888],[-105.06522,40.58888],[-105.06538,40.58888],[-105.06558,40.58888],[-105.06578,40.58888],[-105.06596,40.58888],[-105.06615,40.58888],[-105.06633,40.58888],[-105.06651,40.58888],[-105.06669,40.58888],[-105.06703,40.58888],[-105.06732,40.58886],[-105.06754,40.58885],[-105.06776,40.58884],[-105.06778,40.58883],[-105.06796,40.58881],[-105.06818,40.58878],[-105.06842,40.58874],[-105.0687,40.5887],[-105.06901,40.58865],[-105.06933,40.58858],[-105.06963,40.58851],[-105.06991,40.58843],[-105.07019,40.58836],[-105.0704,40.58827],[-105.07058,40.58818],[-105.0707,40.58808],[-105.07084,40.58799],[-105.07086,40.58788],[-105.071,40.58777],[-105.07114,40.58767],[-105.07132,40.58754],[-105.07144,40.58743],[-105.07162,40.58735],[-105.07179,40.58746],[-105.07193,40.58757],[-105.07209,40.58767],[-105.07221,40.58777],[-105.07225,40.58779],[-105.07239,40.58789],[-105.07257,40.588],[-105.07277,40.58813],[-105.07301,40.58829],[-105.07323,40.58845],[-105.07346,40.58861],[-105.0737,40.58876],[-105.07386,40.58889],[-105.07402,40.58901],[-105.07418,40.58913],[-105.07434,40.58923],[-105.07448,40.58932],[-105.07464,40.58943],[-105.07482,40.58956],[-105.07496,40.58965],[-105.07513,40.58977],[-105.07531,40.58989],[-105.07549,40.59002],[-105.07569,40.59013],[-105.07585,40.59026],[-105.07605,40.59039],[-105.07625,40.59051],[-105.07643,40.59061],[-105.07662,40.59071],[-105.07682,40.59078],[-105.077,40.59078],[-105.07714,40.59065],[-105.07714,40.59045],[-105.0772,40.59029],[-105.0772,40.59023],[-105.07714,40.59001],[-105.07714,40.58982],[-105.07714,40.58968],[-105.07714,40.58954],[-105.07714,40.5894],[-105.07714,40.58924],[-105.0773,40.58913],[-105.07756,40.58913],[-105.0778,40.58914],[-105.07803,40.58913],[-105.07827,40.58912],[-105.07847,40.58908],[-105.07867,40.58906],[-105.07883,40.5891],[-105.07887,40.58928],[-105.07877,40.58943],[-105.07867,40.58954],[-105.07865,40.5897],[-105.07863,40.58987],[-105.07859,40.59001],[-105.07859,40.59002]]}},{"type":"Feature","properties":{"name":"5:51"},"geometry":{"type":"LineString","coordinates":[[-105.07861,40.59002],[-105.07859,40.59012],[-105.07859,40.59024],[-105.07857,40.59029],[-105.07852,40.59036],[-105.07843,40.59042],[-105.07841,40.59047],[-105.0784,40.59051],[-105.07841,40.59065],[-105.07841,40.59078],[-105.07841,40.59081],[-105.07823,40.59081],[-105.07814,40.59081],[-105.07803,40.5908],[-105.07785,40.5908],[-105.07767,40.5908],[-105.07758,40.5908],[-105.0774,40.5908],[-105.07722,40.59079],[-105.07708,40.59079],[-105.07692,40.5908],[-105.07676,40.59073],[-105.07669,40.5907],[-105.07659,40.59066],[-105.07645,40.59057],[-105.07645,40.59057],[-105.07631,40.59048],[-105.07624,40.59043],[-105.07611,40.59034],[-105.07597,40.59025],[-105.07584,40.59015],[-105.07571,40.59006],[-105.07558,40.58997],[-105.07551,40.58992],[-105.07537,40.58983],[-105.07524,40.58974],[-105.0751,40.58965],[-105.07497,40.58956],[-105.07483,40.58947],[-105.07469,40.58938],[-105.07456,40.58929],[-105.07442,40.5892],[-105.07429,40.58911],[-105.07419,40.58905],[-105.07406,40.58896],[-105.07398,40.58891],[-105.07388,40.58873],[-105.0737,40.58864],[-105.0735,40.58852],[-105.07331,40.58837],[-105.07305,40.5882],[-105.07277,40.58802],[-105.07265,40.58793],[-105.07251,40.58784],[-105.07225,40.58765],[-105.07201,40.58751],[-105.07183,40.58738],[-105.0717,40.58729],[-105.07154,40.58718],[-105.07134,40.58725],[-105.07116,40.58738],[-105.071,40.58754],[-105.07084,40.58772],[-105.07064,40.5879],[-105.07049,40.58805],[-105.07027,40.58819],[-105.07001,40.58829],[-105.06973,40.58837],[-105.06939,40.58844],[-105.06907,40.58851],[-105.06874,40.58858],[-105.0684,40.58862],[-105.0682,40.58866],[-105.06802,40.58867],[-105.06782,40.58869],[-105.06762,40.58871],[-105.06746,40.58872],[-105.06728,40.58873],[-105.06695,40.58874],[-105.06663,40.58873],[-105.06643,40.58873],[-105.06641,40.58873],[-105.06621,40.58873],[-105.06601,40.58874],[-105.06574,40.58873],[-105.06542,40.58872],[-105.06504,40.58872],[-105.06484,40.58873],[-105.06464,40.58873],[-105.06446,40.58873],[-105.06425,40.58873],[-105.06403,40.58873],[-105.06383,40.58873],[-105.06359,40.58873],[-105.06339,40.58873],[-105.06319,40.58873],[-105.06296,40.58873],[-105.06274,40.58873],[-105.06254,40.58873],[-105.0623,40.58873],[-105.0621,40.58873],[-105.06188,40.58873],[-105.06164,40.58873],[-105.06142,40.58873],[-105.06121,40.58873],[-105.06097,40.58872],[-105.06075,40.58872],[-105.06051,40.58872],[-105.06031,40.58872],[-105.06007,40.58872],[-105.05985,40.58872],[-105.05966,40.5887],[-105.05948,40.5887],[-105.05914,40.58869],[-105.05888,40.58867],[-105.0587,40.58867],[-105.05854,40.58866],[-105.0584,40.5887],[-105.05821,40.58869],[-105.05799,40.58869],[-105.05779,40.58869],[-105.05757,40.58866],[-105.05745,40.58847],[-105.05735,40.58829],[-105.05721,40.58806],[-105.05705,40.58781],[-105.05699,40.58769],[-105.05689,40.58755],[-105.05688,40.58741],[-105.05682,40.58727],[-105.05678,40.58711],[-105.05674,40.58696],[-105.05674,40.5868],[-105.05671,40.58664],[-105.05671,40.58648],[-105.05671,40.58632],[-105.05674,40.58616],[-105.05674,40.58599],[-105.05674,40.58584],[-105.05674,40.58567],[-105.05674,40.58552],[-105.05678,40.58537],[-105.05678,40.58521],[-105.05678,40.58506],[-105.05678,40.58491],[-105.05679,40.58477],[-105.05679,40.58463],[-105.05684,40.58437],[-105.05684,40.58418],[-105.05688,40.58407],[-105.05688,40.58393],[-105.05684,40.58374],[-105.05684,40.58358],[-105.05684,40.58342],[-105.05688,40.58324],[-105.05688,40.58304],[-105.05688,40.58284],[-105.05689,40.58265],[-105.05689,40.58245],[-105.05689,40.58227],[-105.05689,40.58211],[-105.05689,40.58195],[-105.05693,40.58181],[-105.05693,40.58165],[-105.05693,40.58151],[-105.05696,40.58135],[-105.05696,40.58116],[-105.05699,40.58096],[-105.05701,40.5808],[-105.05703,40.58065],[-105.05703,40.58065],[-105.05703,40.5805],[-105.05705,40.58034],[-105.05713,40.58015],[-105.05721,40.57995],[-105.05729,40.57972],[-105.05735,40.57948],[-105.05745,40.57928],[-105.05755,40.5791],[-105.05761,40.57896],[-105.05765,40.57883],[-105.05771,40.57867],[-105.05777,40.57853],[-105.05783,40.57832],[-105.05787,40.57816],[-105.05791,40.57797],[-105.05791,40.57775],[-105.05791,40.57751],[-105.05793,40.57725],[-105.05793,40.577],[-105.05793,40.57676],[-105.05797,40.57656],[-105.05799,40.57642],[-105.05799,40.57642],[-105.05793,40.57626],[-105.05795,40.5761],[-105.05795,40.57591],[-105.05795,40.57573],[-105.05795,40.57551],[-105.05795,40.57528],[-105.05795,40.57503],[-105.05795,40.57477],[-105.05795,40.57452],[-105.05795,40.57425],[-105.05795,40.57399],[-105.05795,40.57371],[-105.05795,40.57357],[-105.05795,40.57329],[-105.05795,40.57316],[-105.05797,40.57289],[-105.05797,40.57261],[-105.05799,40.57235],[-105.05799,40.57209],[-105.05799,40.57187],[-105.05801,40.57171],[-105.05801,40.57163],[-105.05799,40.57146],[-105.05799,40.57131],[-105.05801,40.57111],[-105.05801,40.57094],[-105.05801,40.57073],[-105.05799,40.5705],[-105.05799,40.57024],[-105.05799,40.56998],[-105.05799,40.56984],[-105.05799,40.56956],[-105.05799,40.56929],[-105.05799,40.56915],[-105.05799,40.56887],[-105.05799,40.56862],[-105.05799,40.56837],[-105.05799,40.56815],[-105.05801,40.56795],[-105.05801,40.56778],[-105.05801,40.56764],[-105.05801,40.56747],[-105.05801,40.56728],[-105.05801,40.56709],[-105.05801,40.56692],[-105.05803,40.56677],[-105.05803,40.56665],[-105.05803,40.56643],[-105.05803,40.56621],[-105.05803,40.56597],[-105.05803,40.56571],[-105.05803,40.56557],[-105.05803,40.56543],[-105.05803,40.56529],[-105.05803,40.56514],[-105.05803,40.565],[-105.05803,40.56486],[-105.05803,40.56472],[-105.05803,40.56445],[-105.05803,40.56421],[-105.05803,40.56399],[-105.05803,40.56383],[-105.05803,40.56369],[-105.05805,40.56353],[-105.05805,40.56334],[-105.05807,40.56315],[-105.05807,40.56308],[-105.05805,40.56286],[-105.05805,40.56265],[-105.05805,40.56239],[-105.05805,40.56211],[-105.05805,40.56198],[-105.05805,40.56182],[-105.05805,40.56168],[-105.05805,40.56153],[-105.05805,40.56138],[-105.05805,40.56122],[-105.05805,40.56106],[-105.05805,40.5609],[-105.05805,40.56076],[-105.05805,40.56061],[-105.05805,40.56045],[-105.05805,40.5603],[-105.05805,40.56014],[-105.05805,40.55999],[-105.05807,40.55983],[-105.05807,40.55967],[-105.05807,40.55951],[-105.05807,40.55935],[-105.05807,40.5592],[-105.05807,40.55904],[-105.05807,40.55888],[-105.05807,40.55873],[-105.05807,40.55857],[-105.05807,40.5584],[-105.05807,40.55824],[-105.05807,40.55808],[-105.05807,40.55792],[-105.05807,40.55777],[-105.05807,40.5576],[-105.05807,40.55745],[-105.05807,40.55729],[-105.05807,40.55713],[-105.05807,40.55698],[-105.05807,40.55683],[-105.05807,40.55668],[-105.05807,40.55644],[-105.05809,40.55628],[-105.05809,40.55618],[-105.05809,40.55598],[-105.05807,40.55578],[-105.05809,40.55552],[-105.05807,40.55525],[-105.05807,40.55499],[-105.05807,40.55472],[-105.05807,40.55445],[-105.05807,40.5542],[-105.05807,40.55394],[-105.05807,40.55369],[-105.05807,40.5535],[-105.05807,40.55332],[-105.05807,40.55314],[-105.05809,40.553],[-105.05809,40.55282],[-105.05809,40.55265],[-105.05809,40.55245],[-105.05809,40.55222],[-105.05809,40.55199],[-105.05809,40.55179],[-105.05809,40.55165],[-105.05809,40.55151],[-105.05809,40.55151],[-105.05809,40.55138],[-105.05809,40.55123],[-105.05809,40.55107],[-105.05809,40.5509],[-105.05809,40.55073],[-105.05809,40.55052],[-105.05809,40.5503],[-105.05809,40.55006],[-105.05809,40.54981],[-105.05809,40.54955],[-105.05809,40.54928],[-105.05809,40.54902],[-105.05809,40.54876],[-105.05809,40.5485],[-105.05809,40.54828],[-105.05809,40.5481],[-105.05809,40.54796],[-105.05809,40.54787],[-105.05813,40.54778],[-105.05813,40.54763],[-105.05813,40.54746],[-105.05813,40.54725],[-105.05813,40.54702],[-105.05813,40.54679],[-105.05813,40.54655],[-105.05813,40.54632],[-105.05813,40.54611],[-105.05813,40.54595],[-105.05817,40.54579],[-105.05839,40.54577],[-105.05856,40.54577],[-105.05876,40.54577],[-105.05896,40.54579],[-105.05914,40.54582],[-105.05936,40.54588],[-105.05952,40.54592],[-105.05975,40.54599],[-105.05997,40.54607],[-105.06017,40.54615],[-105.06037,40.54624],[-105.06059,40.54632],[-105.06081,40.54642],[-105.06105,40.54652],[-105.06127,40.54662],[-105.06152,40.54669],[-105.06178,40.54676],[-105.06204,40.54681],[-105.0623,40.54686],[-105.06258,40.54689],[-105.06284,40.5469],[-105.06309,40.5469],[-105.06337,40.54689],[-105.06361,40.54686],[-105.06387,40.54683],[-105.06411,40.54678],[-105.06432,40.54673],[-105.06452,40.54667],[-105.06472,40.54662],[-105.0649,40.54655],[-105.06512,40.54648],[-105.06528,40.54644],[-105.06532,40.54635],[-105.06548,40.54629],[-105.06562,40.54623],[-105.06578,40.54617],[-105.06594,40.54611],[-105.06599,40.54609],[-105.06615,40.54603],[-105.06631,40.54597],[-105.06645,40.54592],[-105.06662,40.54588],[-105.06668,40.54586],[-105.06685,40.54583],[-105.06693,40.54581],[-105.06711,40.54578],[-105.06713,40.54578],[-105.06731,40.54577],[-105.06732,40.54577],[-105.0675,40.54576],[-105.06752,40.54576],[-105.0677,40.54576],[-105.06777,40.54576],[-105.06795,40.54576],[-105.06803,40.54576],[-105.06821,40.54576],[-105.06839,40.54576],[-105.06857,40.54576],[-105.06873,40.54576],[-105.06891,40.54576],[-105.06906,40.54576],[-105.06924,40.54576],[-105.06942,40.54576],[-105.0696,40.54577],[-105.06978,40.54577],[-105.06996,40.54577],[-105.07002,40.54577],[-105.0702,40.54577],[-105.07038,40.54577],[-105.07056,40.54577],[-105.07074,40.54578],[-105.07092,40.54578],[-105.07107,40.54578],[-105.07125,40.54578],[-105.07143,40.54578],[-105.07161,40.54577],[-105.07179,40.54577],[-105.07197,40.54577],[-105.07215,40.54577],[-105.0722,40.54577],[-105.07238,40.54577],[-105.07256,40.54577],[-105.07274,40.54577],[-105.07292,40.54577],[-105.0731,40.54578],[-105.07328,40.54578],[-105.07346,40.54578],[-105.07364,40.54578],[-105.0737,40.54578],[-105.07388,40.54578],[-105.07406,40.54578],[-105.07424,40.54578],[-105.07442,40.54578],[-105.0746,40.54578],[-105.07478,40.54579],[-105.07496,40.54579],[-105.07514,40.54579],[-105.07532,40.54579],[-105.0755,40.54579],[-105.07568,40.54579],[-105.07582,40.54579],[-105.076,40.54579],[-105.07605,40.54579],[-105.07615,40.54579],[-105.07625,40.54579],[-105.07643,40.54579],[-105.07649,40.54579],[-105.07667,40.54579],[-105.07685,40.54579],[-105.07686,40.54579],[-105.07697,40.54579],[-105.07715,40.54579],[-105.07733,40.54579],[-105.07736,40.54579],[-105.07754,40.54579],[-105.07772,40.5458],[-105.0779,40.5458],[-105.07808,40.54581],[-105.07811,40.54581],[-105.07829,40.54582],[-105.07847,40.54583],[-105.07856,40.54583],[-105.07862,40.54583],[-105.07872,40.54583],[-105.07879,40.54582],[-105.07885,40.54581],[-105.07894,40.54579],[-105.07902,40.54577],[-105.07917,40.54572],[-105.07923,40.54572],[-105.07932,40.54569],[-105.07948,40.54564],[-105.07965,40.54559],[-105.0797,40.54557],[-105.07986,40.54553],[-105.07987,40.54545],[-105.07988,40.54531],[-105.07988,40.54518],[-105.07988,40.54517],[-105.07988,40.54507],[-105.07988,40.54497],[-105.07988,40.54483],[-105.07988,40.54474],[-105.07988,40.54465],[-105.07988,40.54455],[-105.07988,40.54446],[-105.07989,40.54432],[-105.07989,40.54419],[-105.07989,40.54405],[-105.0799,40.54391],[-105.0799,40.54378],[-105.07991,40.54364],[-105.07991,40.5435],[-105.07991,40.54337],[-105.07992,40.54323],[-105.07992,40.54309],[-105.07992,40.54296],[-105.07992,40.54292],[-105.07992,40.54286],[-105.07993,40.54272],[-105.07993,40.5426],[-105.07995,40.54246],[-105.07997,40.54233],[-105.07997,40.5423],[-105.07997,40.5422],[-105.07998,40.54218],[-105.08001,40.54209],[-105.08005,40.542],[-105.08011,40.54187],[-105.08013,40.54184],[-105.08015,40.54177],[-105.08017,40.54167],[-105.08017,40.54153],[-105.08018,40.5414],[-105.08018,40.54126],[-105.08019,40.54112],[-105.08019,40.54106],[-105.08019,40.54092],[-105.0802,40.54079],[-105.0802,40.54065],[-105.08021,40.54051],[-105.08021,40.5404],[-105.08021,40.54026],[-105.08021,40.54013],[-105.08022,40.53999],[-105.08022,40.53985],[-105.08022,40.53972],[-105.08022,40.53968],[-105.08022,40.53954],[-105.08022,40.53941],[-105.08022,40.53927],[-105.08023,40.53913],[-105.08023,40.539],[-105.08023,40.53888],[-105.08025,40.53874],[-105.08026,40.53868],[-105.08026,40.53854],[-105.08026,40.53841],[-105.08027,40.53827],[-105.08027,40.53815],[-105.08027,40.53803],[-105.08009,40.53803],[-105.07991,40.53803],[-105.07973,40.53803],[-105.07966,40.53803],[-105.07961,40.53803],[-105.07943,40.53803],[-105.07925,40.53803],[-105.07907,40.53803],[-105.07898,40.53803],[-105.0788,40.53803],[-105.07862,40.53803],[-105.07861,40.53803],[-105.07843,40.53803],[-105.07825,40.53802],[-105.07812,40.53802],[-105.07794,40.53802],[-105.07776,40.53802],[-105.07768,40.53802],[-105.07756,40.53802],[-105.07738,40.53802],[-105.0772,40.53802],[-105.07717,40.53802],[-105.07699,40.53802],[-105.07681,40.53802],[-105.07663,40.53802],[-105.07645,40.53802],[-105.07627,40.53802],[-105.07622,40.53802],[-105.07604,40.53802],[-105.07586,40.53802],[-105.07568,40.53802],[-105.07554,40.53802],[-105.07536,40.53802],[-105.07518,40.53802],[-105.07503,40.53802],[-105.07485,40.53802],[-105.07467,40.53802],[-105.07452,40.53802],[-105.07434,40.53802],[-105.07433,40.53802],[-105.07415,40.53802],[-105.07412,40.53802],[-105.07394,40.53802],[-105.07376,40.53802],[-105.07361,40.53802],[-105.07343,40.53802],[-105.07325,40.53802],[-105.07323,40.53802],[-105.07305,40.53802],[-105.07287,40.53801],[-105.07284,40.53801],[-105.07266,40.53801],[-105.07248,40.53801],[-105.07245,40.53801],[-105.07227,40.53802],[-105.07223,40.53802],[-105.07205,40.53802],[-105.07187,40.53801],[-105.07179,40.53801],[-105.07161,40.53802],[-105.07149,40.53802],[-105.07131,40.53804],[-105.07114,40.53805],[-105.07096,40.53805],[-105.07078,40.53805],[-105.0706,40.53805],[-105.07055,40.53805],[-105.07056,40.53815],[-105.07055,40.53827],[-105.07055,40.53838],[-105.07052,40.53849],[-105.07048,40.5386],[-105.07044,40.53867],[-105.07038,40.53875],[-105.07033,40.5388],[-105.07031,40.53882],[-105.07026,40.53886],[-105.07021,40.53891],[-105.07013,40.53901],[-105.07009,40.5391],[-105.07006,40.53918],[-105.07005,40.53926],[-105.07004,40.53935],[-105.07004,40.5394],[-105.07003,40.53954],[-105.07003,40.53967],[-105.07002,40.53981],[-105.07001,40.53995],[-105.07001,40.54001],[-105.07001,40.54015],[-105.07002,40.54028],[-105.07002,40.54042],[-105.07003,40.54056],[-105.07003,40.54069],[-105.07003,40.54072],[-105.07004,40.54086],[-105.07004,40.54099],[-105.07004,40.54113],[-105.07005,40.54127],[-105.07005,40.54127],[-105.07005,40.54141],[-105.07005,40.54154],[-105.07004,40.54168],[-105.07004,40.54182],[-105.07004,40.54191],[-105.07004,40.54201],[-105.07003,40.54206],[-105.07001,40.5422],[-105.07,40.54229],[-105.06997,40.54243],[-105.06996,40.54249],[-105.06993,40.54257],[-105.06992,40.54262],[-105.06986,40.54275],[-105.06981,40.54288],[-105.06978,40.54297],[-105.06973,40.5431],[-105.06968,40.54323],[-105.06963,40.54337],[-105.06958,40.5435],[-105.06958,40.5435],[-105.06956,40.54354],[-105.06951,40.54367],[-105.06948,40.54373],[-105.06943,40.54386],[-105.0694,40.54394]]}},{"type":"Feature","properties":{"name":"5:52"},"geometry":{"type":"LineString","coordinates":[[-105.05952,40.54592],[-105.05975,40.54599],[-105.05997,40.54607],[-105.06017,40.54615],[-105.06037,40.54624],[-105.06059,40.54632],[-105.06081,40.54642],[-105.06105,40.54652],[-105.06127,40.54662],[-105.06152,40.54669],[-105.06178,40.54676],[-105.06204,40.54681],[-105.0623,40.54686],[-105.06258,40.54689],[-105.06284,40.5469],[-105.06309,40.5469],[-105.06337,40.54689],[-105.06361,40.54686],[-105.06387,40.54683],[-105.06411,40.54678],[-105.06432,40.54673],[-105.06452,40.54667],[-105.06472,40.54662],[-105.0649,40.54655],[-105.06512,40.54648],[-105.06528,40.54644],[-105.06532,40.54635],[-105.06548,40.54629],[-105.06562,40.54623],[-105.06578,40.54617],[-105.06594,40.54611],[-105.06599,40.54609],[-105.06615,40.54603],[-105.06631,40.54597],[-105.06645,40.54592],[-105.06662,40.54588],[-105.06668,40.54586],[-105.06685,40.54583],[-105.06693,40.54581],[-105.06711,40.54578],[-105.06713,40.54578],[-105.06731,40.54577],[-105.06732,40.54577],[-105.0675,40.54576],[-105.06752,40.54576],[-105.0677,40.54576],[-105.06777,40.54576],[-105.06795,40.54576],[-105.06803,40.54576],[-105.06821,40.54576],[-105.06839,40.54576],[-105.06857,40.54576],[-105.06873,40.54576],[-105.06891,40.54576],[-105.06906,40.54576],[-105.06924,40.54576],[-105.06942,40.54576],[-105.0696,40.54577],[-105.06978,40.54577],[-105.06996,40.54577],[-105.07002,40.54577],[-105.0702,40.54577],[-105.07038,40.54577],[-105.07056,40.54577],[-105.07074,40.54578],[-105.07092,40.54578],[-105.07107,40.54578],[-105.07125,40.54578],[-105.07143,40.54578],[-105.07161,40.54577],[-105.07179,40.54577],[-105.07197,40.54577],[-105.07215,40.54577],[-105.0722,40.54577],[-105.07238,40.54577],[-105.07256,40.54577],[-105.07274,40.54577],[-105.07292,40.54577],[-105.0731,40.54578],[-105.07328,40.54578],[-105.07346,40.54578],[-105.07364,40.54578],[-105.0737,40.54578],[-105.07388,40.54578],[-105.07406,40.54578],[-105.07424,40.54578],[-105.07442,40.54578],[-105.0746,40.54578],[-105.07478,40.54579],[-105.07496,40.54579],[-105.07514,40.54579],[-105.07532,40.54579],[-105.0755,40.54579],[-105.07568,40.54579],[-105.07582,40.54579],[-105.076,40.54579],[-105.07605,40.54579],[-105.07615,40.54579],[-105.07625,40.54579],[-105.07643,40.54579],[-105.07649,40.54579],[-105.07667,40.54579],[-105.07685,40.54579],[-105.07686,40.54579],[-105.07697,40.54579],[-105.07715,40.54579],[-105.07733,40.54579],[-105.07736,40.54579],[-105.07754,40.54579],[-105.07772,40.5458],[-105.0779,40.5458],[-105.07808,40.54581],[-105.07811,40.54581],[-105.07829,40.54582],[-105.07847,40.54583],[-105.07856,40.54583],[-105.07862,40.54583],[-105.07872,40.54583],[-105.07879,40.54582],[-105.07885,40.54581],[-105.07894,40.54579],[-105.07902,40.54577],[-105.07917,40.54572],[-105.07923,40.54572],[-105.07932,40.54569],[-105.07948,40.54564],[-105.07965,40.54559],[-105.0797,40.54557],[-105.07986,40.54553],[-105.07987,40.54545],[-105.07988,40.54531],[-105.07988,40.54518],[-105.07988,40.54517],[-105.07988,40.54507],[-105.07988,40.54497],[-105.07988,40.54483],[-105.07988,40.54474],[-105.07988,40.54465],[-105.07988,40.54455],[-105.07988,40.54446],[-105.07989,40.54432],[-105.07989,40.54419],[-105.07989,40.54405],[-105.0799,40.54391],[-105.0799,40.54378],[-105.07991,40.54364],[-105.07991,40.5435],[-105.07991,40.54337],[-105.07992,40.54323],[-105.07992,40.54309],[-105.07992,40.54296],[-105.07992,40.54292],[-105.07992,40.54286],[-105.07993,40.54272],[-105.07993,40.5426],[-105.07995,40.54246],[-105.07997,40.54233],[-105.07997,40.5423],[-105.07997,40.5422],[-105.07998,40.54218],[-105.08001,40.54209],[-105.08005,40.542],[-105.08011,40.54187],[-105.08013,40.54184],[-105.08015,40.54177],[-105.08017,40.54167],[-105.08017,40.54153],[-105.08018,40.5414],[-105.08018,40.54126],[-105.08019,40.54112],[-105.08019,40.54106],[-105.08019,40.54092],[-105.0802,40.54079],[-105.0802,40.54065],[-105.08021,40.54051],[-105.08021,40.5404],[-105.08021,40.54026],[-105.08021,40.54013],[-105.08022,40.53999],[-105.08022,40.53985],[-105.08022,40.53972],[-105.08022,40.53968],[-105.08022,40.53954],[-105.08022,40.53941],[-105.08022,40.53927],[-105.08023,40.53913],[-105.08023,40.539],[-105.08023,40.53888],[-105.08025,40.53874],[-105.08026,40.53868],[-105.08026,40.53854],[-105.08026,40.53841],[-105.08027,40.53827],[-105.08027,40.53815],[-105.08027,40.53803],[-105.08009,40.53803],[-105.07991,40.53803],[-105.07973,40.53803],[-105.07966,40.53803],[-105.07961,40.53803],[-105.07943,40.53803],[-105.07925,40.53803],[-105.07907,40.53803],[-105.07898,40.53803],[-105.0788,40.53803],[-105.07862,40.53803],[-105.07861,40.53803],[-105.07843,40.53803],[-105.07825,40.53802],[-105.07812,40.53802],[-105.07794,40.53802],[-105.07776,40.53802],[-105.07768,40.53802],[-105.07756,40.53802],[-105.07738,40.53802],[-105.0772,40.53802],[-105.07717,40.53802],[-105.07699,40.53802],[-105.07681,40.53802],[-105.07663,40.53802],[-105.07645,40.53802],[-105.07627,40.53802],[-105.07622,40.53802],[-105.07604,40.53802],[-105.07586,40.53802],[-105.07568,40.53802],[-105.07554,40.53802],[-105.07536,40.53802],[-105.07518,40.53802],[-105.07503,40.53802],[-105.07485,40.53802],[-105.07467,40.53802],[-105.07452,40.53802],[-105.07434,40.53802],[-105.07433,40.53802],[-105.07415,40.53802],[-105.07412,40.53802],[-105.07394,40.53802],[-105.07376,40.53802],[-105.07361,40.53802],[-105.07343,40.53802],[-105.07325,40.53802],[-105.07323,40.53802],[-105.07305,40.53802],[-105.07287,40.53801],[-105.07284,40.53801],[-105.07266,40.53801],[-105.07248,40.53801],[-105.07245,40.53801],[-105.07227,40.53802],[-105.07223,40.53802],[-105.07205,40.53802],[-105.07187,40.53801],[-105.07179,40.53801],[-105.07161,40.53802],[-105.07149,40.53802],[-105.07131,40.53804],[-105.07114,40.53805],[-105.07096,40.53805],[-105.07078,40.53805],[-105.0706,40.53805],[-105.07055,40.53805],[-105.07056,40.53815],[-105.07055,40.53827],[-105.07055,40.53838],[-105.07052,40.53849],[-105.07048,40.5386],[-105.07044,40.53867],[-105.07038,40.53875],[-105.07033,40.5388],[-105.07031,40.53882],[-105.07026,40.53886],[-105.07021,40.53891],[-105.07013,40.53901],[-105.07009,40.5391],[-105.07006,40.53918],[-105.07005,40.53926],[-105.07004,40.53935],[-105.07004,40.5394],[-105.07003,40.53954],[-105.07003,40.53967],[-105.07002,40.53981],[-105.07001,40.53995],[-105.07001,40.54001],[-105.07001,40.54015],[-105.07002,40.54028],[-105.07002,40.54042],[-105.07003,40.54056],[-105.07003,40.54069],[-105.07003,40.54072],[-105.07004,40.54086],[-105.07004,40.54099],[-105.07004,40.54113],[-105.07005,40.54127],[-105.07005,40.54127],[-105.07005,40.54141],[-105.07005,40.54154],[-105.07004,40.54168],[-105.07004,40.54182],[-105.07004,40.54191],[-105.07004,40.54201],[-105.07003,40.54206],[-105.07001,40.5422],[-105.07,40.54229],[-105.06997,40.54243],[-105.06996,40.54249],[-105.06993,40.54257],[-105.06992,40.54262],[-105.06986,40.54275],[-105.06981,40.54288],[-105.06978,40.54297],[-105.06973,40.5431],[-105.06968,40.54323],[-105.06963,40.54337],[-105.06958,40.5435],[-105.06958,40.5435],[-105.06956,40.54354],[-105.06951,40.54367],[-105.06948,40.54373],[-105.06943,40.54386],[-105.0694,40.54394]]}},{"type":"Feature","properties":{"name":"6:01"},"geometry":{"type":"LineString","coordinates":[[-105.08028,40.5184],[-105.08032,40.51837],[-105.08035,40.51835],[-105.08036,40.51834],[-105.08037,40.5183],[-105.08036,40.51822],[-105.08031,40.5182],[-105.08027,40.51819],[-105.08022,40.51818],[-105.08014,40.51817],[-105.07996,40.51816],[-105.07982,40.51816],[-105.07966,40.51816],[-105.07966,40.51802],[-105.07967,40.51789],[-105.07967,40.51775],[-105.07968,40.51761],[-105.07968,40.51751],[-105.0795,40.51751],[-105.07932,40.51751],[-105.07925,40.51751],[-105.07907,40.51751],[-105.07889,40.51751],[-105.07871,40.51751],[-105.07853,40.51751],[-105.07835,40.51751],[-105.07817,40.51751],[-105.07799,40.51751],[-105.07781,40.51751],[-105.07776,40.51751],[-105.07758,40.51751],[-105.0774,40.51751],[-105.07725,40.51751],[-105.07711,40.51751],[-105.07711,40.51765],[-105.07711,40.51778],[-105.0771,40.51792],[-105.0771,40.51806],[-105.0771,40.5181],[-105.07715,40.51823],[-105.07716,40.51826],[-105.07716,40.51839],[-105.07716,40.51851],[-105.07716,40.51865],[-105.07716,40.51878],[-105.07715,40.51892],[-105.07715,40.51906],[-105.07715,40.51919],[-105.07715,40.51933],[-105.07714,40.51947],[-105.07714,40.51958],[-105.07714,40.51972],[-105.07713,40.51985],[-105.07713,40.51999],[-105.07713,40.52013],[-105.07712,40.52026],[-105.07712,40.5204],[-105.07712,40.52054],[-105.07711,40.52067],[-105.07711,40.5208],[-105.07711,40.52089],[-105.07711,40.52103],[-105.07711,40.52116],[-105.0771,40.5213],[-105.0771,40.52144],[-105.0771,40.52154],[-105.07703,40.52167],[-105.07703,40.52167],[-105.07703,40.52181],[-105.07703,40.52194],[-105.07702,40.52208],[-105.07702,40.52222],[-105.07702,40.52223],[-105.07702,40.5223],[-105.07702,40.52244],[-105.07701,40.52255],[-105.07701,40.52268],[-105.07701,40.52282],[-105.07701,40.52298],[-105.07701,40.52313],[-105.07694,40.52324],[-105.07692,40.52328],[-105.07691,40.5233],[-105.0769,40.52332],[-105.07689,40.52334],[-105.07687,40.52335],[-105.07686,40.52336],[-105.07684,40.52337],[-105.07682,40.52338],[-105.0768,40.52339],[-105.07663,40.52343],[-105.07652,40.52346],[-105.07634,40.52346],[-105.07616,40.52346],[-105.07598,40.52346],[-105.07594,40.52346],[-105.07578,40.52346],[-105.0756,40.52346],[-105.07554,40.52346],[-105.07536,40.52345],[-105.07518,40.52345],[-105.07514,40.52345],[-105.0751,40.52345],[-105.07492,40.52345],[-105.07474,40.52345],[-105.07456,40.52345],[-105.07438,40.52345],[-105.0742,40.52345],[-105.07402,40.52345],[-105.07389,40.52345],[-105.07371,40.52345],[-105.07353,40.52345],[-105.07342,40.52345],[-105.07324,40.52345],[-105.07306,40.52345],[-105.07288,40.52345],[-105.0727,40.52346],[-105.07252,40.52346],[-105.07234,40.52346],[-105.07218,40.52346],[-105.072,40.52346],[-105.07182,40.52345],[-105.07164,40.52345],[-105.07146,40.52345],[-105.07144,40.52345],[-105.07126,40.52345],[-105.07108,40.52345],[-105.0709,40.52346],[-105.07072,40.52346],[-105.07071,40.52346],[-105.07071,40.52361],[-105.07071,40.52375],[-105.07071,40.52388],[-105.07072,40.52402],[-105.07072,40.52416],[-105.07072,40.52422],[-105.07074,40.5243],[-105.07074,40.52433],[-105.07076,40.52441],[-105.07079,40.52448],[-105.0708,40.52452],[-105.07082,40.52457],[-105.07068,40.52463],[-105.07078,40.52477],[-105.0709,40.52493],[-105.07106,40.52512],[-105.07124,40.52533],[-105.07146,40.52555],[-105.07154,40.52568],[-105.07164,40.52581],[-105.07178,40.52593],[-105.07188,40.52606],[-105.072,40.5262],[-105.07211,40.52632],[-105.07221,40.52645],[-105.07231,40.52659],[-105.07245,40.52672],[-105.07253,40.52685],[-105.07261,40.52699],[-105.07271,40.52714],[-105.07275,40.52729],[-105.07281,40.52744],[-105.07287,40.52758],[-105.07293,40.52772],[-105.07297,40.52787],[-105.07303,40.528],[-105.07309,40.52814],[-105.07319,40.52836],[-105.07325,40.52856],[-105.07332,40.52869],[-105.07339,40.52886],[-105.07345,40.52904],[-105.0735,40.52922],[-105.07353,40.52927],[-105.07364,40.52947],[-105.0737,40.52965],[-105.0738,40.52987],[-105.0739,40.53011],[-105.07402,40.53037],[-105.07406,40.53051],[-105.07412,40.53065],[-105.07418,40.53077],[-105.07424,40.53091],[-105.0743,40.53105],[-105.07434,40.53119],[-105.07438,40.53144],[-105.07438,40.53167],[-105.07436,40.53186],[-105.07432,40.53202],[-105.07426,40.53218],[-105.07422,40.53234],[-105.07418,40.53249],[-105.07414,40.5326],[-105.07412,40.53276],[-105.0741,40.53295],[-105.07406,40.53317],[-105.07402,40.53342],[-105.07396,40.53368],[-105.07392,40.53383],[-105.0739,40.53397],[-105.07388,40.53411],[-105.07386,40.53426],[-105.07384,40.5344],[-105.07384,40.53455],[-105.07384,40.53469],[-105.07384,40.53484],[-105.07386,40.53498],[-105.07386,40.53513],[-105.07386,40.53527],[-105.07386,40.53541],[-105.07376,40.53554],[-105.07376,40.53568],[-105.07376,40.53583],[-105.07376,40.53596],[-105.07374,40.53623],[-105.0737,40.53646],[-105.07366,40.53663],[-105.07366,40.53674],[-105.07366,40.53674],[-105.07365,40.53686],[-105.07363,40.53698],[-105.07363,40.5371],[-105.07363,40.53722],[-105.07363,40.53734],[-105.07362,40.53746],[-105.07362,40.53757],[-105.07362,40.53769],[-105.07362,40.53781],[-105.07361,40.53792],[-105.07354,40.53799],[-105.07345,40.53801],[-105.07334,40.538],[-105.07323,40.53798],[-105.07305,40.53802],[-105.07287,40.53801],[-105.07284,40.53801],[-105.07266,40.53801],[-105.07248,40.53801],[-105.07245,40.53801],[-105.07227,40.53802],[-105.07223,40.53802],[-105.07205,40.53802],[-105.07187,40.53801],[-105.07179,40.53801],[-105.07161,40.53802],[-105.07149,40.53802],[-105.07131,40.53804],[-105.07114,40.53805],[-105.07096,40.53805],[-105.07078,40.53805],[-105.0706,40.53805],[-105.07055,40.53805],[-105.07056,40.53815],[-105.07055,40.53827],[-105.07055,40.53838],[-105.07052,40.53849],[-105.07048,40.5386],[-105.07044,40.53867],[-105.07038,40.53875],[-105.07033,40.5388],[-105.07031,40.53882],[-105.07026,40.53886],[-105.07021,40.53891],[-105.07013,40.53901],[-105.07009,40.5391],[-105.07006,40.53918],[-105.07005,40.53926],[-105.07004,40.53935],[-105.07004,40.5394],[-105.07003,40.53954],[-105.07003,40.53967],[-105.07002,40.53981],[-105.07001,40.53995],[-105.07001,40.54001],[-105.07001,40.54015],[-105.07002,40.54028],[-105.07002,40.54042],[-105.07003,40.54056],[-105.07003,40.54069],[-105.07003,40.54072],[-105.07004,40.54086],[-105.07004,40.54099],[-105.07004,40.54113],[-105.07005,40.54127],[-105.07005,40.54127],[-105.07005,40.54141],[-105.07005,40.54154],[-105.07004,40.54168],[-105.07004,40.54182],[-105.07004,40.54191],[-105.07004,40.54201],[-105.07003,40.54206],[-105.07001,40.5422],[-105.07,40.54229],[-105.06997,40.54243],[-105.06996,40.54249],[-105.06993,40.54257],[-105.06992,40.54262],[-105.06986,40.54275],[-105.06981,40.54288],[-105.06978,40.54297],[-105.06973,40.5431],[-105.06968,40.54323],[-105.06963,40.54337],[-105.06958,40.5435],[-105.06958,40.5435],[-105.06956,40.54354],[-105.06951,40.54367],[-105.06948,40.54373],[-105.06943,40.54386],[-105.0694,40.54394],[-105.06935,40.54407],[-105.06933,40.54412],[-105.06928,40.54425],[-105.06923,40.54437],[-105.06919,40.54449],[-105.06916,40.54459],[-105.06915,40.54464],[-105.06912,40.54472],[-105.06911,40.5448],[-105.06909,40.54494],[-105.06909,40.54496],[-105.06907,40.5451],[-105.06907,40.5451],[-105.06907,40.54524],[-105.06907,40.54538],[-105.06906,40.54551],[-105.06906,40.54565],[-105.06906,40.54576],[-105.06921,40.54576],[-105.06939,40.54576],[-105.06957,40.54576],[-105.06975,40.54577],[-105.06993,40.54577],[-105.07002,40.54577],[-105.0702,40.54577],[-105.07038,40.54577],[-105.07056,40.54577],[-105.07074,40.54578],[-105.07092,40.54578],[-105.07107,40.54578],[-105.07125,40.54578],[-105.07143,40.54578],[-105.07161,40.54577],[-105.07179,40.54577],[-105.07197,40.54577],[-105.07215,40.54577],[-105.0722,40.54577],[-105.07238,40.54577],[-105.07256,40.54577],[-105.07274,40.54577],[-105.07292,40.54577],[-105.0731,40.54578],[-105.07328,40.54578],[-105.07346,40.54578],[-105.07364,40.54578],[-105.0737,40.54578],[-105.07388,40.54578],[-105.07406,40.54578],[-105.07424,40.54578],[-105.07442,40.54578],[-105.0746,40.54578],[-105.07478,40.54579],[-105.07496,40.54579],[-105.07514,40.54579],[-105.07532,40.54579],[-105.0755,40.54579],[-105.07568,40.54579],[-105.07582,40.54579],[-105.076,40.54579],[-105.07605,40.54579],[-105.07615,40.54579],[-105.07649,40.5459],[-105.07666,40.5459],[-105.07688,40.5459],[-105.077,40.54593],[-105.077,40.54614],[-105.077,40.54634],[-105.077,40.54658],[-105.077,40.54686],[-105.07698,40.547],[-105.07698,40.54714],[-105.07698,40.54728],[-105.07698,40.54743],[-105.07698,40.54757],[-105.07698,40.54771],[-105.07698,40.54797],[-105.07698,40.5482],[-105.07698,40.54838],[-105.07698,40.54852],[-105.07696,40.54873],[-105.07696,40.54889],[-105.07696,40.54903],[-105.07696,40.54912],[-105.07694,40.54927],[-105.07694,40.54948],[-105.07694,40.54964],[-105.07694,40.54982],[-105.07694,40.54998],[-105.07694,40.55016],[-105.07696,40.55036],[-105.07698,40.55056],[-105.07698,40.55074],[-105.07698,40.55092],[-105.077,40.5511],[-105.07704,40.55128],[-105.07704,40.55146],[-105.07706,40.55165],[-105.07708,40.55182],[-105.07708,40.55197],[-105.0771,40.55216],[-105.0771,40.5523],[-105.07708,40.55244],[-105.07714,40.55258],[-105.07728,40.55266],[-105.07748,40.55268],[-105.07768,40.55269],[-105.07788,40.55269],[-105.07813,40.55269],[-105.07835,40.55269],[-105.07861,40.5527],[-105.07877,40.55272],[-105.07881,40.55272],[-105.07909,40.55273],[-105.07929,40.55272],[-105.07953,40.55272],[-105.07974,40.55272],[-105.07992,40.55272],[-105.08014,40.55272],[-105.08038,40.55272],[-105.08068,40.55272],[-105.08097,40.55272],[-105.08127,40.55272],[-105.08159,40.55272],[-105.08187,40.55272],[-105.08217,40.55273],[-105.08243,40.55273],[-105.08264,40.55273],[-105.08276,40.55274],[-105.08298,40.55273],[-105.0832,40.55273],[-105.08346,40.55273],[-105.08378,40.55273],[-105.08411,40.55273],[-105.08443,40.55273],[-105.08479,40.55273],[-105.08509,40.55273],[-105.08533,40.55273],[-105.08554,40.55274],[-105.08578,40.55274],[-105.08598,40.55275],[-105.0862,40.55276],[-105.08638,40.55277],[-105.08648,40.55277],[-105.08674,40.55276],[-105.087,40.55277],[-105.08727,40.55277],[-105.08757,40.55277],[-105.08787,40.55277],[-105.08817,40.55277],[-105.08846,40.55277],[-105.08876,40.55278],[-105.08904,40.55278],[-105.08936,40.55278],[-105.08966,40.5528],[-105.08992,40.5528],[-105.09021,40.5528],[-105.09047,40.5528],[-105.09073,40.55282],[-105.09093,40.55284],[-105.09095,40.55284],[-105.09121,40.55283],[-105.09146,40.55282],[-105.0918,40.55282],[-105.09214,40.55282],[-105.09246,40.55282],[-105.09284,40.55282],[-105.09317,40.55282],[-105.09351,40.55283],[-105.09381,40.55284],[-105.09403,40.55284],[-105.09417,40.55285],[-105.09443,40.5528],[-105.09462,40.55278],[-105.09484,40.55278],[-105.09508,40.55278],[-105.09532,40.55278],[-105.0955,40.55278],[-105.0957,40.55278],[-105.09588,40.5528],[-105.09615,40.5528],[-105.09637,40.5528],[-105.09663,40.5528],[-105.09695,40.5528],[-105.09729,40.5528],[-105.09762,40.5528],[-105.09794,40.55281],[-105.0983,40.55282],[-105.09862,40.55283],[-105.0989,40.55284],[-105.09914,40.55284],[-105.09929,40.55286],[-105.09929,40.55285],[-105.09939,40.55284],[-105.09967,40.55284],[-105.09989,40.55284],[-105.10013,40.55285],[-105.10039,40.55286],[-105.10068,40.55286],[-105.10094,40.55286],[-105.10128,40.55286],[-105.10158,40.55286],[-105.1019,40.55287],[-105.10221,40.55288],[-105.10253,40.55288],[-105.10283,40.55288],[-105.10313,40.55288],[-105.10345,40.55288],[-105.10372,40.55289],[-105.10396,40.55289],[-105.10416,40.55289],[-105.10438,40.55289],[-105.10458,40.55289],[-105.10476,40.55289],[-105.10505,40.55289],[-105.10521,40.5529],[-105.10545,40.55292],[-105.10557,40.55292],[-105.10575,40.55291],[-105.10605,40.55291],[-105.10627,40.55292],[-105.1065,40.55292],[-105.10678,40.55292],[-105.10704,40.55292],[-105.1073,40.55292],[-105.10756,40.55292],[-105.10776,40.55292],[-105.10796,40.55292],[-105.10819,40.55292],[-105.10841,40.55292],[-105.10863,40.55292],[-105.10887,40.55293],[-105.10909,40.55293],[-105.10927,40.55294],[-105.10939,40.55294],[-105.10961,40.55293],[-105.10986,40.55293],[-105.11008,40.55293],[-105.11032,40.55293],[-105.11058,40.55293],[-105.11084,40.55293],[-105.11111,40.55294],[-105.11137,40.55294],[-105.11167,40.55294],[-105.11197,40.55294],[-105.11227,40.55294],[-105.11254,40.55294],[-105.11284,40.55295],[-105.11312,40.55296],[-105.1134,40.55296],[-105.11368,40.55297],[-105.11396,40.55297],[-105.11419,40.55299],[-105.11439,40.553],[-105.11465,40.553],[-105.11485,40.553],[-105.11503,40.55304],[-105.11505,40.55317],[-105.11503,40.55332],[-105.11503,40.55336],[-105.11499,40.55357],[-105.11499,40.55371],[-105.11501,40.55389],[-105.11501,40.55409],[-105.11503,40.55429],[-105.11503,40.55451],[-105.11503,40.5547],[-105.11503,40.5549],[-105.11503,40.55509],[-105.11503,40.55529],[-105.11503,40.55551],[-105.11503,40.55576],[-105.11503,40.55602],[-105.11503,40.55628],[-105.11505,40.55655],[-105.11505,40.55681],[-105.11505,40.55708],[-105.11503,40.55733],[-105.11503,40.55755],[-105.11503,40.55771],[-105.11503,40.5578],[-105.11503,40.55799],[-105.11503,40.55815],[-105.11503,40.55834],[-105.11503,40.55856],[-105.11503,40.55879],[-105.11503,40.55903],[-105.11503,40.55927],[-105.11503,40.55954],[-105.11505,40.55979],[-105.11505,40.56005],[-105.11505,40.5603],[-105.11505,40.56055],[-105.11505,40.56075],[-105.11503,40.5609],[-105.11503,40.56102],[-105.11503,40.56121],[-105.11503,40.56139],[-105.11505,40.5616],[-105.11505,40.56182],[-105.11505,40.56208],[-105.11505,40.56233],[-105.11505,40.5626],[-105.11505,40.56287],[-105.11505,40.56315],[-105.11507,40.56341],[-105.11509,40.5637],[-105.11509,40.56384],[-105.11509,40.56398],[-105.11509,40.56412],[-105.11509,40.56427],[-105.11509,40.56442],[-105.11509,40.56457],[-105.11509,40.56472],[-105.11509,40.56487],[-105.11509,40.56502],[-105.11509,40.56516],[-105.11507,40.56531],[-105.11507,40.56546],[-105.11507,40.56561],[-105.11505,40.56575],[-105.11505,40.56589],[-105.11505,40.56603],[-105.11503,40.5663],[-105.11503,40.56652],[-105.11503,40.56667],[-105.11501,40.56679],[-105.11503,40.56693],[-105.11503,40.56707],[-105.11503,40.56724],[-105.11503,40.56739],[-105.11503,40.56755],[-105.11503,40.56773],[-105.11503,40.56793],[-105.11503,40.56815],[-105.11503,40.56837],[-105.11503,40.56858],[-105.11503,40.56881],[-105.11503,40.56905],[-105.11503,40.56928],[-105.11503,40.56951],[-105.11503,40.56975],[-105.11503,40.56999],[-105.11503,40.57024],[-105.11503,40.57048],[-105.11503,40.57072],[-105.11501,40.57094],[-105.11501,40.57115],[-105.11499,40.57132],[-105.11499,40.57143],[-105.11501,40.57159],[-105.11501,40.57175],[-105.11501,40.57196],[-105.11501,40.57219],[-105.11501,40.57244],[-105.11501,40.5727],[-105.11501,40.57297],[-105.11501,40.57324],[-105.11499,40.5735],[-105.11499,40.57375],[-105.11499,40.574],[-105.11499,40.57426],[-105.11499,40.57448],[-105.11497,40.57468],[-105.11499,40.57486],[-105.11497,40.57504],[-105.11497,40.57522],[-105.11497,40.57538],[-105.11497,40.57556],[-105.11497,40.57559],[-105.11497,40.57573],[-105.11497,40.57589],[-105.11497,40.57608],[-105.11497,40.57629],[-105.11497,40.57652],[-105.11497,40.57676],[-105.11497,40.577],[-105.11499,40.57724],[-105.11499,40.57747],[-105.11497,40.57771],[-105.11497,40.57796],[-105.11497,40.5782],[-105.11497,40.57845],[-105.11497,40.5787],[-105.11497,40.57894],[-105.11495,40.57918],[-105.11495,40.57939],[-105.11495,40.57955],[-105.11495,40.57965],[-105.11495,40.57986],[-105.11495,40.58004],[-105.11495,40.58026],[-105.11495,40.58047],[-105.11495,40.5807],[-105.11495,40.58093],[-105.11495,40.58116],[-105.11495,40.58139],[-105.11491,40.58161],[-105.11491,40.58179],[-105.11491,40.58197],[-105.11471,40.58204],[-105.11453,40.58202],[-105.11449,40.58202],[-105.11423,40.58203],[-105.11404,40.58203],[-105.11376,40.58203],[-105.11346,40.58203],[-105.11318,40.58203],[-105.11286,40.58203],[-105.11254,40.58203],[-105.11221,40.58201],[-105.11187,40.58201],[-105.11155,40.58201],[-105.11122,40.58201],[-105.11086,40.58201],[-105.11052,40.58201],[-105.11016,40.582],[-105.1098,40.582],[-105.10947,40.58199],[-105.10915,40.58199],[-105.10887,40.58199],[-105.10857,40.58199],[-105.10831,40.58199],[-105.1081,40.58199],[-105.10792,40.582],[-105.10768,40.582],[-105.10754,40.58199],[-105.10734,40.58199],[-105.10714,40.58199],[-105.10688,40.58199],[-105.10665,40.58196],[-105.10641,40.58188],[-105.10621,40.58177],[-105.10601,40.58167],[-105.10575,40.58157],[-105.10551,40.58147],[-105.10531,40.58137],[-105.10514,40.58129],[-105.10497,40.58124],[-105.10474,40.58121],[-105.10454,40.58122],[-105.1043,40.58124],[-105.10406,40.5813],[-105.10378,40.58138],[-105.1035,40.58149],[-105.10323,40.58158],[-105.10293,40.58169],[-105.10265,40.58179],[-105.10235,40.58187],[-105.10206,40.5819],[-105.1018,40.5819],[-105.10158,40.58189],[-105.10142,40.58188],[-105.1012,40.58188],[-105.10096,40.58188],[-105.10078,40.58188],[-105.10057,40.58187],[-105.10035,40.58185],[-105.10019,40.58185],[-105.10019,40.58185],[-105.09999,40.58185],[-105.09979,40.58185],[-105.09951,40.58185],[-105.09921,40.58184],[-105.09893,40.58184],[-105.09862,40.58183],[-105.09834,40.58183],[-105.09804,40.58183],[-105.09776,40.58182],[-105.09746,40.58182],[-105.09719,40.58182],[-105.09695,40.58181],[-105.09675,40.58181],[-105.09653,40.58179],[-105.09631,40.58176],[-105.09606,40.58176],[-105.09586,40.58176],[-105.09562,40.58175],[-105.09538,40.58174],[-105.09516,40.58174],[-105.095,40.58172],[-105.09474,40.58172],[-105.09449,40.58172],[-105.09423,40.58172],[-105.09393,40.58172],[-105.09361,40.58172],[-105.09333,40.58172],[-105.09304,40.58172],[-105.09274,40.58171],[-105.09244,40.58171],[-105.09214,40.58171],[-105.09184,40.5817],[-105.09158,40.58169],[-105.09137,40.58167],[-105.09115,40.58165],[-105.09111,40.58165],[-105.09087,40.58165],[-105.09065,40.58165],[-105.09039,40.58165],[-105.09007,40.58166],[-105.08978,40.58165],[-105.08948,40.58165],[-105.08914,40.58165],[-105.0888,40.58165],[-105.08844,40.58165],[-105.08809,40.58163],[-105.08777,40.58163],[-105.08743,40.58163],[-105.0871,40.58163],[-105.08674,40.58163],[-105.08642,40.58162],[-105.08612,40.58159],[-105.08584,40.58154],[-105.08554,40.58151],[-105.08525,40.58151],[-105.08491,40.58151],[-105.08459,40.5815],[-105.08429,40.58149],[-105.08397,40.58149],[-105.08366,40.58149],[-105.08332,40.58149],[-105.08304,40.58149],[-105.08282,40.58149],[-105.08264,40.58149],[-105.0825,40.58141],[-105.08253,40.58131],[-105.0826,40.58114],[-105.0826,40.581],[-105.0826,40.58084],[-105.0826,40.58065],[-105.0826,40.58049],[-105.0826,40.58032],[-105.0826,40.58017],[-105.0826,40.57998],[-105.0826,40.57984],[-105.0826,40.57964],[-105.0826,40.57943],[-105.0826,40.57929],[-105.0826,40.57928],[-105.08254,40.57905],[-105.08254,40.57892],[-105.08254,40.57877],[-105.08254,40.57862],[-105.08257,40.57847],[-105.0826,40.57831],[-105.0826,40.57812],[-105.0826,40.57796],[-105.08266,40.57776],[-105.08276,40.57762],[-105.08286,40.5775],[-105.08292,40.57735],[-105.08302,40.57718],[-105.08312,40.57704],[-105.08334,40.577],[-105.08352,40.577],[-105.08372,40.57702],[-105.08389,40.57702],[-105.08411,40.57703],[-105.08429,40.57697],[-105.08439,40.57684],[-105.08453,40.57671],[-105.08465,40.57659],[-105.08479,40.57646],[-105.08503,40.57639],[-105.08523,40.57638],[-105.08544,40.57639],[-105.08564,40.5764],[-105.08584,40.57642],[-105.08606,40.57643],[-105.08618,40.57633],[-105.08604,40.57617],[-105.08594,40.57604],[-105.08582,40.57594],[-105.08568,40.57581],[-105.08554,40.57572],[-105.08536,40.57578],[-105.08519,40.57585],[-105.08517,40.57586]]}},{"type":"Feature","properties":{"name":"6:51"},"geometry":{"type":"LineString","coordinates":[[-105.08519,40.57587],[-105.08519,40.57587],[-105.08508,40.57593],[-105.08498,40.576],[-105.08487,40.57606],[-105.08476,40.57613],[-105.08479,40.57617],[-105.08484,40.5763],[-105.08481,40.5764],[-105.08479,40.57649],[-105.08471,40.57656],[-105.08464,40.57663],[-105.08457,40.57669],[-105.0845,40.57676],[-105.08442,40.57682],[-105.08435,40.57689],[-105.08428,40.57696],[-105.08421,40.57702],[-105.08405,40.57702],[-105.08389,40.57702],[-105.08373,40.57702],[-105.08357,40.57702],[-105.08342,40.57702],[-105.08326,40.57702],[-105.0831,40.57702],[-105.08294,40.57702],[-105.08284,40.57713],[-105.08274,40.57724],[-105.08264,40.57734],[-105.08254,40.57745],[-105.08252,40.57757],[-105.0825,40.57769],[-105.08251,40.57785],[-105.08251,40.57801],[-105.08252,40.57817],[-105.08252,40.57833],[-105.08252,40.57848],[-105.08252,40.57863],[-105.08252,40.57878],[-105.08252,40.57892],[-105.08252,40.57907],[-105.08252,40.57922],[-105.08252,40.57937],[-105.08253,40.57952],[-105.08246,40.5797],[-105.08246,40.57988],[-105.08246,40.58004],[-105.08246,40.58018],[-105.08246,40.58038],[-105.08246,40.58059],[-105.08246,40.58079],[-105.08246,40.58093],[-105.08246,40.58107],[-105.0825,40.58127],[-105.0825,40.58141],[-105.08257,40.58154],[-105.0828,40.58158],[-105.08304,40.58158],[-105.08324,40.58158],[-105.08346,40.58158],[-105.0837,40.58158],[-105.08374,40.58158],[-105.08404,40.58158],[-105.08425,40.58158],[-105.08451,40.58158],[-105.08479,40.58158],[-105.08509,40.58158],[-105.08539,40.58158],[-105.08564,40.58159],[-105.08594,40.58163],[-105.0862,40.58168],[-105.08648,40.58169],[-105.08674,40.5817],[-105.08704,40.58171],[-105.08731,40.58171],[-105.08761,40.58171],[-105.08793,40.58172],[-105.08829,40.58172],[-105.08864,40.58172],[-105.08882,40.58172],[-105.08916,40.58172],[-105.0895,40.58172],[-105.08986,40.58174],[-105.09017,40.58174],[-105.09047,40.58174],[-105.09075,40.58175],[-105.09099,40.58175],[-105.09117,40.58176],[-105.09117,40.58176],[-105.09137,40.58176],[-105.09164,40.58177],[-105.09188,40.58179],[-105.09216,40.58179],[-105.09246,40.58179],[-105.09276,40.5818],[-105.09301,40.5818],[-105.09329,40.5818],[-105.09359,40.58181],[-105.09389,40.58181],[-105.09419,40.58181],[-105.09449,40.58181],[-105.09476,40.58182],[-105.09502,40.58183],[-105.09524,40.58183],[-105.09544,40.58183],[-105.09564,40.58184],[-105.09586,40.58185],[-105.09604,40.58185],[-105.09627,40.58185],[-105.09657,40.58185],[-105.09685,40.58186],[-105.09717,40.58186],[-105.09744,40.58187],[-105.09772,40.58187],[-105.09794,40.58188],[-105.09806,40.58188],[-105.0983,40.58186],[-105.09852,40.58187],[-105.09878,40.58188],[-105.09906,40.58188],[-105.09935,40.58188],[-105.09965,40.5819],[-105.09997,40.58191],[-105.10027,40.58192],[-105.10053,40.58194],[-105.10072,40.58195],[-105.1009,40.58195],[-105.10114,40.58195],[-105.10138,40.58195],[-105.10164,40.58195],[-105.10194,40.58194],[-105.10219,40.58192],[-105.10251,40.58188],[-105.10277,40.58181],[-105.10305,40.58169],[-105.10335,40.58161],[-105.10362,40.5815],[-105.1039,40.5814],[-105.10418,40.58131],[-105.1045,40.58127],[-105.10478,40.58127],[-105.10507,40.58131],[-105.10535,40.5814],[-105.10561,40.58152],[-105.10587,40.58165],[-105.10615,40.58177],[-105.10639,40.58188],[-105.10662,40.58196],[-105.10688,40.58199],[-105.1071,40.58199],[-105.10732,40.58199],[-105.1074,40.582],[-105.10768,40.582],[-105.10796,40.582],[-105.10825,40.582],[-105.10861,40.58199],[-105.10893,40.58199],[-105.10927,40.58199],[-105.10962,40.58199],[-105.11,40.58199],[-105.11034,40.582],[-105.1107,40.582],[-105.11088,40.582],[-105.11107,40.582],[-105.11125,40.582],[-105.11143,40.582],[-105.11163,40.582],[-105.11183,40.582],[-105.11203,40.582],[-105.11221,40.582],[-105.11239,40.582],[-105.11257,40.582],[-105.11276,40.58201],[-105.11292,40.58201],[-105.11312,40.58201],[-105.1133,40.58201],[-105.1135,40.58201],[-105.11368,40.58201],[-105.11386,40.58202],[-105.11423,40.58202],[-105.11453,40.58202],[-105.11479,40.58202],[-105.11497,40.58203],[-105.11511,40.58191],[-105.11513,40.58176],[-105.11513,40.58159],[-105.11513,40.58143],[-105.11513,40.58126],[-105.11513,40.58121],[-105.11513,40.58106],[-105.11513,40.58089],[-105.11513,40.58069],[-105.11513,40.58045],[-105.11513,40.58023],[-105.11513,40.58],[-105.11513,40.57976],[-105.11513,40.57952],[-105.11513,40.57928],[-105.11513,40.57905],[-105.11513,40.57881],[-105.11513,40.57855],[-105.11513,40.5783],[-105.11513,40.57804],[-105.11515,40.5778],[-105.11515,40.57759],[-105.11515,40.57743],[-105.11517,40.57731],[-105.11515,40.57713],[-105.11515,40.57697],[-105.11515,40.57677],[-105.11515,40.57656],[-105.11517,40.57635],[-105.11517,40.57614],[-105.11519,40.57592],[-105.11519,40.57571],[-105.11519,40.57549],[-105.11517,40.57527],[-105.11517,40.57505],[-105.11517,40.57484],[-105.11519,40.57468],[-105.11519,40.57452],[-105.11519,40.57436],[-105.11519,40.57422],[-105.11519,40.57406],[-105.11519,40.57406],[-105.11519,40.57386],[-105.11519,40.57368],[-105.11519,40.57348],[-105.11519,40.57325],[-105.11517,40.573],[-105.11517,40.57274],[-105.11519,40.57249],[-105.11519,40.57223],[-105.11519,40.57198],[-105.11519,40.57173],[-105.11519,40.57147],[-105.11519,40.5712],[-105.11519,40.57094],[-105.11519,40.57079],[-105.11519,40.57053],[-105.11519,40.57026],[-105.11519,40.57001],[-105.11519,40.56974],[-105.11521,40.56948],[-105.11521,40.56922],[-105.11521,40.56895],[-105.11523,40.56869],[-105.11523,40.56843],[-105.11523,40.56818],[-105.11523,40.56799],[-105.11523,40.56783],[-105.11523,40.56768],[-105.11523,40.56752],[-105.11523,40.56736],[-105.11523,40.56717],[-105.11523,40.56698],[-105.11523,40.56682],[-105.11525,40.56668],[-105.11523,40.56649],[-105.11521,40.56635],[-105.11521,40.56616],[-105.11521,40.56594],[-105.11523,40.56566],[-105.11523,40.56552],[-105.11523,40.56537],[-105.11523,40.56523],[-105.11525,40.56508],[-105.11525,40.56492],[-105.11525,40.56477],[-105.11525,40.56462],[-105.11525,40.56446],[-105.11525,40.5643],[-105.11525,40.56415],[-105.11525,40.56399],[-105.11525,40.56383],[-105.11525,40.56368],[-105.11525,40.56351],[-105.11525,40.56335],[-105.11525,40.56319],[-105.11525,40.56303],[-105.11525,40.56287],[-105.11525,40.56271],[-105.11525,40.56256],[-105.11525,40.5624],[-105.11525,40.56226],[-105.11525,40.56209],[-105.11525,40.56195],[-105.11525,40.56179],[-105.11525,40.56165],[-105.11525,40.56151],[-105.11525,40.56136],[-105.11525,40.56122],[-105.11525,40.56108],[-105.11525,40.56094],[-105.11525,40.56067],[-105.11529,40.56042],[-105.11529,40.56024],[-105.11529,40.56009],[-105.11531,40.56008],[-105.11527,40.55993],[-105.11525,40.55978],[-105.11525,40.55958],[-105.11523,40.55934],[-105.11521,40.55909],[-105.11521,40.55881],[-105.11521,40.55868],[-105.11521,40.5584],[-105.11521,40.55825],[-105.11521,40.55811],[-105.11521,40.55796],[-105.11521,40.55783],[-105.11521,40.55768],[-105.11521,40.55744],[-105.11523,40.55725],[-105.11523,40.55714],[-105.11523,40.55694],[-105.11523,40.55677],[-105.11523,40.55656],[-105.11523,40.55633],[-105.11523,40.55608],[-105.11523,40.55583],[-105.11523,40.55559],[-105.11523,40.55537],[-105.11523,40.55518],[-105.11523,40.55501],[-105.11523,40.55498],[-105.11519,40.55482],[-105.11517,40.55467],[-105.11515,40.55448],[-105.11515,40.55425],[-105.11515,40.55399],[-105.11513,40.55373],[-105.11513,40.55351],[-105.11513,40.55332],[-105.11513,40.55316],[-105.11513,40.55302],[-105.11511,40.55285],[-105.11491,40.55274],[-105.11471,40.55274],[-105.11449,40.55274],[-105.11429,40.55274],[-105.1141,40.55273],[-105.1139,40.55273],[-105.1137,40.55273],[-105.11352,40.55273],[-105.11346,40.55273],[-105.11326,40.55274],[-105.11304,40.55275],[-105.11276,40.55276],[-105.11245,40.55276],[-105.11209,40.55275],[-105.11189,40.55275],[-105.11171,40.55275],[-105.11151,40.55274],[-105.11131,40.55274],[-105.11111,40.55274],[-105.11094,40.55274],[-105.11078,40.55274],[-105.11042,40.55273],[-105.11006,40.55273],[-105.10971,40.55273],[-105.10943,40.55273],[-105.10923,40.55272],[-105.10909,40.55272],[-105.10887,40.55273],[-105.10863,40.55273],[-105.10833,40.55273],[-105.108,40.55273],[-105.10768,40.55273],[-105.10748,40.55273],[-105.1073,40.55273],[-105.1071,40.55273],[-105.1069,40.55273],[-105.10674,40.55273],[-105.10639,40.55273],[-105.10605,40.55273],[-105.10569,40.55273],[-105.10537,40.55273],[-105.1051,40.55273],[-105.10486,40.55272],[-105.10464,40.55272],[-105.10456,40.55272],[-105.10434,40.55273],[-105.10414,40.55273],[-105.10388,40.55273],[-105.10357,40.55273],[-105.10323,40.55273],[-105.10303,40.55272],[-105.10281,40.55272],[-105.10263,40.55272],[-105.10243,40.55272],[-105.10221,40.55272],[-105.10204,40.55272],[-105.10184,40.55272],[-105.10164,40.55272],[-105.10144,40.55271],[-105.10124,40.55271],[-105.10104,40.55271],[-105.10084,40.55271],[-105.10065,40.55271],[-105.10049,40.55271],[-105.10029,40.55271],[-105.10009,40.55271],[-105.09993,40.5527],[-105.09973,40.5527],[-105.09955,40.55269],[-105.09939,40.55269],[-105.09904,40.55267],[-105.09876,40.55266],[-105.09856,40.55266],[-105.09842,40.55265],[-105.0982,40.55266],[-105.09802,40.55266],[-105.09778,40.55266],[-105.09757,40.55266],[-105.09731,40.55266],[-105.09707,40.55266],[-105.09683,40.55265],[-105.09667,40.55265],[-105.09647,40.55265],[-105.09627,40.55265],[-105.09601,40.55264],[-105.09578,40.55263],[-105.09556,40.55262],[-105.09536,40.55262],[-105.09532,40.55262],[-105.09518,40.55262],[-105.09496,40.55264],[-105.09468,40.55264],[-105.09437,40.55263],[-105.09405,40.55262],[-105.09373,40.55262],[-105.09349,40.55261],[-105.09329,40.55261],[-105.09327,40.55261],[-105.093,40.55261],[-105.09276,40.55262],[-105.09244,40.55262],[-105.0921,40.55262],[-105.0918,40.55262],[-105.09146,40.55262],[-105.09111,40.55262],[-105.09081,40.55262],[-105.09047,40.55261],[-105.09021,40.5526],[-105.09001,40.5526],[-105.08996,40.5526],[-105.08976,40.5526],[-105.08952,40.5526],[-105.08924,40.5526],[-105.08892,40.5526],[-105.08857,40.5526],[-105.08839,40.5526],[-105.08821,40.5526],[-105.08801,40.5526],[-105.08767,40.5526],[-105.08741,40.55259],[-105.08719,40.55258],[-105.08689,40.55258],[-105.08672,40.55258],[-105.0865,40.55257],[-105.08632,40.55257],[-105.08612,40.55257],[-105.08594,40.55256],[-105.08574,40.55255],[-105.08574,40.55255],[-105.08549,40.55256],[-105.08521,40.55256],[-105.08495,40.55256],[-105.08471,40.55256],[-105.08449,40.55256],[-105.08429,40.55256],[-105.08404,40.55255],[-105.08385,40.55255],[-105.08366,40.55255],[-105.08346,40.55254],[-105.08328,40.55254],[-105.08308,40.55254],[-105.08288,40.55253],[-105.08264,40.55253],[-105.08243,40.55253],[-105.08225,40.55251],[-105.08225,40.55251],[-105.08207,40.55261],[-105.08189,40.55261],[-105.08171,40.55261],[-105.08169,40.55261],[-105.08158,40.55261],[-105.0814,40.55261],[-105.08122,40.55261],[-105.08104,40.55261],[-105.08086,40.55261],[-105.08068,40.55261],[-105.08059,40.55261],[-105.08047,40.55261],[-105.08033,40.55261],[-105.08017,40.55261],[-105.0801,40.55261],[-105.08003,40.55259],[-105.07998,40.55257],[-105.07981,40.55253],[-105.07981,40.55239],[-105.07981,40.55226],[-105.07982,40.55212],[-105.07982,40.55198],[-105.07982,40.55185],[-105.07982,40.55171],[-105.07982,40.55157],[-105.07983,40.55143],[-105.07983,40.5513],[-105.07983,40.55116],[-105.07983,40.55113],[-105.07984,40.55099],[-105.07984,40.55096],[-105.07985,40.55082],[-105.07985,40.55069],[-105.07986,40.55055],[-105.07986,40.55044],[-105.07985,40.55034],[-105.07981,40.55023],[-105.07974,40.5501],[-105.07974,40.5501],[-105.07974,40.55007],[-105.07974,40.54997],[-105.07974,40.54986],[-105.07974,40.54972],[-105.07975,40.54959],[-105.07975,40.54945],[-105.07975,40.54931],[-105.07976,40.54918],[-105.07976,40.54904],[-105.07976,40.54894],[-105.07976,40.5488],[-105.07977,40.54867],[-105.07977,40.54853],[-105.07978,40.54839],[-105.07978,40.54829],[-105.07978,40.54821],[-105.07979,40.54807],[-105.07979,40.54794],[-105.0798,40.5478],[-105.07981,40.54766],[-105.07981,40.54753],[-105.07982,40.54739],[-105.07983,40.54725],[-105.07984,40.54712],[-105.07984,40.54704],[-105.07985,40.5469],[-105.07985,40.54677],[-105.07986,40.54663],[-105.07986,40.54649],[-105.07987,40.54636],[-105.07987,40.54626],[-105.07988,40.54612],[-105.07988,40.54609],[-105.07988,40.54598],[-105.07987,40.54592],[-105.07987,40.54578],[-105.07986,40.54565],[-105.07986,40.54553],[-105.07987,40.54545],[-105.07988,40.54531],[-105.07988,40.54518],[-105.07988,40.54517],[-105.07988,40.54507],[-105.07988,40.54497],[-105.07988,40.54483],[-105.07988,40.54474],[-105.07988,40.54465],[-105.07988,40.54455],[-105.07988,40.54446],[-105.07989,40.54432],[-105.07989,40.54419],[-105.07989,40.54405],[-105.0799,40.54391],[-105.0799,40.54378],[-105.07991,40.54364],[-105.07991,40.54351],[-105.07991,40.54337],[-105.07991,40.54324],[-105.07991,40.5431],[-105.07992,40.54296],[-105.07992,40.54292],[-105.07992,40.54286],[-105.07993,40.54272],[-105.07993,40.5426],[-105.07975,40.5426],[-105.07957,40.54259],[-105.07939,40.54259],[-105.07921,40.54259],[-105.07903,40.54258],[-105.07898,40.54258],[-105.0789,40.54259],[-105.07889,40.54259],[-105.07881,40.54262],[-105.07872,40.54267],[-105.07869,40.5427],[-105.07867,40.54271],[-105.07858,40.54283],[-105.07849,40.54295],[-105.07849,40.54295],[-105.0784,40.54307],[-105.07839,40.54308],[-105.0783,40.5432],[-105.07827,40.54324],[-105.07824,40.54327],[-105.07821,40.54329],[-105.07819,40.54331],[-105.07814,40.54334],[-105.07808,40.54336],[-105.07798,40.54338],[-105.07784,40.54338],[-105.07768,40.54331],[-105.07767,40.54331],[-105.07757,40.5433],[-105.07739,40.5433],[-105.07738,40.5433],[-105.07726,40.54329],[-105.07717,40.54329],[-105.07699,40.54327],[-105.07696,40.54327],[-105.07678,40.54327],[-105.0766,40.54327],[-105.07647,40.54327],[-105.07629,40.54327],[-105.07611,40.54326],[-105.07595,40.54326],[-105.07582,40.54328],[-105.0757,40.5433],[-105.07556,40.54334],[-105.07542,40.54339],[-105.07527,40.54347],[-105.07525,40.54348],[-105.07512,40.54358],[-105.075,40.54368],[-105.07499,40.54368],[-105.07492,40.54374],[-105.07479,40.54384],[-105.07467,40.54393],[-105.07454,40.54403],[-105.07448,40.54408],[-105.07443,40.54404],[-105.07435,40.54412],[-105.07428,40.54419],[-105.0742,40.54426],[-105.07413,40.54433],[-105.07404,40.5444],[-105.07394,40.54447],[-105.07384,40.54458],[-105.07379,40.54469],[-105.07376,40.5448],[-105.07371,40.54487],[-105.0737,40.54496],[-105.07369,40.54507],[-105.07369,40.54518],[-105.07369,40.54528],[-105.07369,40.54539],[-105.07369,40.54554],[-105.07369,40.5457],[-105.07367,40.54575],[-105.07363,40.54577],[-105.07342,40.54576],[-105.07322,40.54576],[-105.07309,40.54576],[-105.07296,40.54576],[-105.07283,40.54576],[-105.0727,40.54576],[-105.07257,40.54576],[-105.07245,40.54576],[-105.07232,40.54576],[-105.07219,40.54576],[-105.07206,40.54576],[-105.07193,40.54576],[-105.0718,40.54576],[-105.07167,40.54575],[-105.07155,40.54575],[-105.07142,40.54575],[-105.07129,40.54575],[-105.07116,40.54575],[-105.071,40.54575],[-105.07084,40.54576],[-105.07069,40.54575],[-105.07054,40.54575],[-105.07039,40.54575],[-105.07024,40.54575],[-105.07009,40.54575],[-105.06994,40.54575],[-105.06979,40.54575],[-105.06964,40.54575],[-105.06951,40.54575],[-105.06938,40.54575],[-105.06925,40.54575],[-105.06912,40.54575],[-105.06908,40.54572],[-105.06908,40.54561],[-105.06908,40.54551],[-105.06909,40.54536],[-105.06909,40.54522],[-105.0691,40.54506],[-105.06911,40.54491],[-105.06914,40.54477],[-105.06918,40.54461],[-105.06922,40.54446],[-105.06926,40.54434],[-105.06931,40.54421],[-105.06936,40.54409],[-105.0694,40.54397],[-105.06945,40.54383],[-105.0695,40.5437],[-105.0695,40.5437],[-105.06955,40.54359],[-105.0696,40.54348],[-105.06964,40.54336],[-105.06969,40.54325],[-105.06974,40.54314],[-105.0698,40.54302],[-105.06985,40.54291],[-105.06991,40.54279],[-105.06996,40.54263],[-105.07002,40.54248],[-105.07003,40.54236],[-105.07005,40.54225],[-105.07007,40.54214],[-105.07008,40.54202],[-105.07008,40.54194],[-105.07008,40.54186],[-105.07009,40.54177],[-105.07009,40.54169],[-105.07009,40.5416],[-105.07009,40.54152],[-105.07009,40.54144],[-105.07009,40.54135],[-105.07008,40.54119],[-105.07007,40.54103],[-105.07007,40.54086],[-105.07006,40.5407],[-105.07007,40.54054],[-105.07007,40.54038],[-105.07008,40.54022],[-105.07009,40.54007],[-105.07009,40.53998],[-105.07009,40.53989],[-105.07009,40.5398],[-105.0701,40.53971],[-105.0701,40.53962],[-105.0701,40.53953],[-105.0701,40.53944],[-105.0701,40.53935],[-105.07012,40.53924],[-105.07014,40.53914],[-105.07022,40.53901],[-105.0703,40.53888],[-105.0704,40.53877],[-105.0705,40.53866],[-105.07057,40.53853],[-105.07059,40.53843],[-105.07061,40.53833],[-105.07064,40.53818],[-105.07075,40.53813],[-105.07087,40.53813],[-105.07098,40.53814],[-105.0711,40.53814],[-105.07122,40.53815],[-105.07139,40.53814],[-105.07157,40.53814],[-105.07175,40.53814],[-105.07192,40.53813],[-105.0721,40.53813],[-105.07228,40.53813],[-105.07246,40.53813],[-105.07263,40.53813],[-105.07281,40.53813],[-105.07299,40.53813],[-105.07317,40.53813],[-105.07334,40.53813],[-105.07355,40.53814],[-105.07372,40.53811],[-105.07379,40.53806],[-105.0738,40.53796],[-105.0738,40.53787],[-105.0738,40.53779],[-105.07379,40.5377],[-105.07379,40.53761],[-105.07378,40.53753],[-105.07378,40.53744],[-105.07378,40.53735],[-105.07377,40.53726],[-105.07377,40.53718],[-105.07377,40.53706],[-105.07378,40.53694],[-105.07378,40.53683],[-105.07378,40.53671],[-105.07378,40.53657],[-105.07378,40.5364],[-105.0738,40.5362],[-105.07384,40.53597],[-105.07384,40.53572],[-105.07384,40.53547],[-105.07384,40.5352],[-105.07384,40.53494],[-105.07384,40.53466],[-105.07386,40.53439],[-105.0739,40.53413],[-105.07396,40.53387],[-105.07402,40.53362],[-105.07408,40.53342],[-105.07412,40.53326],[-105.07416,40.53312],[-105.07422,40.53294],[-105.07424,40.5328],[-105.0743,40.53264],[-105.07434,40.53245],[-105.07438,40.53229],[-105.07446,40.5321],[-105.0745,40.53193],[-105.07454,40.53178],[-105.07454,40.53178],[-105.07456,40.53162],[-105.07458,40.53146],[-105.07454,40.53124],[-105.0745,40.531],[-105.07438,40.53073],[-105.07434,40.53059],[-105.07428,40.53046],[-105.07422,40.53032],[-105.07416,40.53019],[-105.07406,40.52992],[-105.07396,40.52971],[-105.0739,40.52953],[-105.07384,40.52939],[-105.07378,40.52926],[-105.0737,40.52909],[-105.07366,40.52893],[-105.07358,40.52876],[-105.07353,40.52858],[-105.07346,40.52842],[-105.07346,40.5284],[-105.07339,40.52822],[-105.07331,40.52805],[-105.07323,40.52786],[-105.07313,40.52762],[-105.07303,40.52738],[-105.07291,40.52714],[-105.07279,40.5269],[-105.07267,40.5267],[-105.07259,40.52656],[-105.07251,40.52645],[-105.07235,40.52631],[-105.07221,40.52617],[-105.07211,40.52605],[-105.07197,40.5259],[-105.07183,40.52574],[-105.07168,40.52555],[-105.0715,40.52536],[-105.07134,40.52517],[-105.07118,40.525],[-105.07102,40.52481],[-105.07092,40.52463],[-105.07084,40.52443],[-105.07084,40.52423],[-105.07084,40.52405],[-105.07084,40.52387],[-105.07084,40.52373],[-105.07096,40.52363],[-105.07126,40.52361],[-105.07152,40.52361],[-105.07179,40.52361],[-105.07215,40.5236],[-105.07251,40.52359],[-105.07271,40.52358],[-105.07289,40.52358],[-105.07309,40.52358],[-105.07329,40.52358],[-105.07346,40.52358],[-105.07366,40.52358],[-105.07386,40.52358],[-105.07406,40.52358],[-105.07424,40.52358],[-105.07444,40.52358],[-105.07462,40.52358],[-105.0748,40.52358],[-105.075,40.52358],[-105.07515,40.52357],[-105.07551,40.52357],[-105.07585,40.52355],[-105.07615,40.52355],[-105.07636,40.52355],[-105.07656,40.52355],[-105.07676,40.52356],[-105.077,40.52355],[-105.07716,40.52346],[-105.07722,40.52328],[-105.07724,40.52312],[-105.07726,40.52296],[-105.07726,40.52281],[-105.07726,40.52264],[-105.07726,40.52258],[-105.0772,40.52244],[-105.0772,40.52229],[-105.0772,40.52212],[-105.07718,40.52193],[-105.07718,40.52172],[-105.07718,40.52149],[-105.07718,40.52125],[-105.07718,40.521],[-105.07718,40.52074],[-105.0772,40.52047],[-105.0772,40.5202],[-105.0772,40.52006],[-105.0772,40.51992],[-105.0772,40.51978],[-105.0772,40.51964],[-105.0772,40.51949],[-105.0772,40.51935],[-105.0772,40.51922],[-105.0772,40.51907],[-105.07722,40.51881],[-105.07724,40.51855],[-105.07724,40.51831],[-105.07726,40.51808],[-105.07728,40.51789],[-105.07728,40.51775],[-105.0773,40.51759],[-105.0775,40.51754],[-105.07768,40.51754],[-105.07793,40.51754],[-105.07819,40.51754],[-105.07839,40.51754],[-105.07865,40.51754],[-105.07891,40.51755],[-105.07909,40.51756],[-105.07935,40.51756],[-105.07958,40.51758],[-105.07966,40.51769],[-105.07966,40.51783],[-105.07964,40.51798],[-105.07966,40.51815],[-105.0798,40.51826],[-105.08002,40.51828],[-105.08018,40.51831],[-105.08026,40.51832]]}},{"type":"Feature","properties":{"name":"7:01"},"geometry":{"type":"LineString","coordinates":[[-105.03367,40.55249],[-105.03367,40.55249],[-105.03351,40.55248],[-105.03334,40.55248],[-105.03318,40.55248],[-105.03301,40.55247],[-105.03287,40.55245],[-105.03284,40.55237],[-105.03284,40.55228],[-105.03284,40.5522],[-105.03284,40.55211],[-105.03284,40.55202],[-105.03286,40.5519],[-105.03292,40.55179],[-105.03297,40.55168],[-105.03302,40.5516],[-105.03308,40.55152],[-105.03313,40.55145],[-105.03319,40.55137],[-105.03324,40.5513],[-105.03329,40.55122],[-105.03337,40.55111],[-105.03344,40.551],[-105.03355,40.55087],[-105.03365,40.55074],[-105.03373,40.55059],[-105.03377,40.55045],[-105.03381,40.5503],[-105.03383,40.55014],[-105.03385,40.54999],[-105.03385,40.54986],[-105.03399,40.54975],[-105.03418,40.54976],[-105.03442,40.54977],[-105.0347,40.54977],[-105.0349,40.54978],[-105.03508,40.54979],[-105.03528,40.54979],[-105.03554,40.54979],[-105.03574,40.54979],[-105.03591,40.54979],[-105.03609,40.5498],[-105.03629,40.5498],[-105.03647,40.5498],[-105.03667,40.54981],[-105.03691,40.54982],[-105.03709,40.54982],[-105.03711,40.54982],[-105.03735,40.54981],[-105.03756,40.54982],[-105.0378,40.54982],[-105.03802,40.54982],[-105.03826,40.54982],[-105.03846,40.54982],[-105.03874,40.54982],[-105.03893,40.54984],[-105.03899,40.54998],[-105.03897,40.55013],[-105.03899,40.55033],[-105.03899,40.55056],[-105.03899,40.55081],[-105.03899,40.55105],[-105.03901,40.55128],[-105.03901,40.55149],[-105.03901,40.55167],[-105.03901,40.55185],[-105.03901,40.552],[-105.03901,40.55218],[-105.03901,40.55233],[-105.03901,40.55249],[-105.03911,40.55265],[-105.03935,40.55273],[-105.03961,40.55275],[-105.03979,40.55277],[-105.03985,40.55277],[-105.04003,40.55272],[-105.04005,40.55272],[-105.04023,40.55271],[-105.0403,40.55271],[-105.04048,40.5527],[-105.04051,40.5527],[-105.04069,40.55269],[-105.04087,40.55267],[-105.0409,40.55267],[-105.04104,40.55266],[-105.04122,40.55266],[-105.04131,40.55266],[-105.04149,40.55265],[-105.04162,40.55265],[-105.0418,40.55265],[-105.04198,40.55265],[-105.04205,40.55265],[-105.04223,40.55264],[-105.04232,40.55264],[-105.04241,40.55263],[-105.04246,40.55263],[-105.04264,40.55262],[-105.04282,40.55261],[-105.04289,40.55261],[-105.04304,40.5526],[-105.04322,40.5526],[-105.04327,40.5526],[-105.04345,40.5526],[-105.04347,40.5526],[-105.04364,40.55255],[-105.04368,40.55254],[-105.04386,40.55254],[-105.04394,40.55254],[-105.04412,40.55254],[-105.0443,40.55253],[-105.04447,40.55253],[-105.04465,40.55253],[-105.04483,40.55253],[-105.04501,40.55253],[-105.04519,40.55253],[-105.04537,40.55253],[-105.04555,40.55253],[-105.04568,40.55253],[-105.04579,40.55253],[-105.04597,40.55253],[-105.04615,40.55253],[-105.04633,40.55253],[-105.04651,40.55252],[-105.04669,40.55252],[-105.04684,40.55252],[-105.04697,40.55252],[-105.04715,40.55252],[-105.04733,40.55252],[-105.04736,40.55252],[-105.04758,40.55257],[-105.04788,40.55257],[-105.04807,40.55257],[-105.04833,40.55257],[-105.04857,40.55257],[-105.04885,40.55257],[-105.04913,40.55257],[-105.04942,40.55257],[-105.04974,40.55257],[-105.05008,40.55257],[-105.05042,40.55257],[-105.05075,40.55257],[-105.05111,40.55257],[-105.05145,40.55258],[-105.05177,40.55258],[-105.05209,40.55258],[-105.05235,40.55258],[-105.05252,40.55259],[-105.05272,40.5526],[-105.0528,40.5526],[-105.05304,40.55259],[-105.0532,40.55259],[-105.05344,40.55258],[-105.05371,40.55258],[-105.05401,40.55256],[-105.05431,40.5525],[-105.05461,40.55243],[-105.05495,40.55235],[-105.05527,40.55226],[-105.05558,40.55216],[-105.05594,40.55207],[-105.05624,40.55199],[-105.05658,40.55192],[-105.05688,40.5519],[-105.05717,40.55193],[-105.05741,40.55199],[-105.05761,40.55205],[-105.05781,40.55212],[-105.05801,40.55218],[-105.05827,40.55226],[-105.05846,40.55233],[-105.05866,40.5524],[-105.05882,40.55246],[-105.05902,40.55252],[-105.05902,40.55252],[-105.05922,40.55256],[-105.05946,40.55258],[-105.05966,40.5526],[-105.05989,40.5526],[-105.06015,40.5526],[-105.06043,40.55259],[-105.06071,40.55259],[-105.06101,40.55259],[-105.06131,40.55259],[-105.0616,40.55259],[-105.0619,40.55259],[-105.0622,40.55259],[-105.06246,40.5526],[-105.06278,40.5526],[-105.06303,40.5526],[-105.06325,40.5526],[-105.06347,40.55261],[-105.06367,40.55261],[-105.06387,40.55261],[-105.06407,40.55261],[-105.06432,40.55261],[-105.06442,40.55262],[-105.06462,40.55261],[-105.06482,40.5526],[-105.06502,40.5526],[-105.06532,40.55261],[-105.06558,40.55261],[-105.06589,40.55261],[-105.06619,40.55261],[-105.06647,40.55261],[-105.06673,40.55261],[-105.06695,40.55261],[-105.06719,40.55261],[-105.06736,40.55261],[-105.06762,40.55261],[-105.0679,40.55262],[-105.06808,40.55262],[-105.0681,40.55262],[-105.0682,40.55264],[-105.06846,40.55264],[-105.0687,40.55263],[-105.06893,40.55264],[-105.06915,40.55264],[-105.06939,40.55265],[-105.06961,40.55265],[-105.06985,40.55265],[-105.06991,40.55265],[-105.07011,40.55265],[-105.07035,40.55265],[-105.0706,40.55265],[-105.0709,40.55265],[-105.0712,40.55265],[-105.07148,40.55265],[-105.07179,40.55265],[-105.07211,40.55265],[-105.07241,40.55265],[-105.07271,40.55265],[-105.07297,40.55266],[-105.07317,40.55266],[-105.07329,40.55266],[-105.07353,40.55265],[-105.07374,40.55265],[-105.074,40.55266],[-105.07426,40.55266],[-105.07458,40.55266],[-105.07485,40.55266],[-105.07513,40.55266],[-105.07541,40.55267],[-105.07559,40.55269],[-105.07575,40.55269],[-105.07595,40.55269],[-105.07621,40.55268],[-105.0764,40.55268],[-105.07662,40.55268],[-105.07682,40.55268],[-105.07704,40.55269],[-105.07726,40.5527],[-105.07752,40.55271],[-105.07778,40.55272],[-105.07807,40.55272],[-105.07835,40.55273],[-105.07859,40.55273],[-105.07881,40.55273],[-105.07883,40.55273],[-105.07909,40.55273],[-105.07929,40.55272],[-105.07953,40.55272],[-105.07974,40.55272],[-105.07992,40.55272],[-105.08014,40.55272],[-105.08038,40.55272],[-105.08068,40.55272],[-105.08097,40.55272],[-105.08127,40.55272],[-105.08159,40.55272],[-105.08187,40.55272],[-105.08217,40.55273],[-105.08243,40.55273],[-105.08264,40.55273],[-105.08276,40.55274],[-105.08298,40.55273],[-105.0832,40.55273],[-105.08346,40.55273],[-105.08378,40.55273],[-105.08411,40.55273],[-105.08443,40.55273],[-105.08479,40.55273],[-105.08509,40.55273],[-105.08533,40.55273],[-105.08554,40.55274],[-105.08578,40.55274],[-105.08598,40.55275],[-105.0862,40.55276],[-105.08638,40.55277],[-105.08648,40.55277],[-105.08674,40.55276],[-105.087,40.55277],[-105.08727,40.55277],[-105.08757,40.55277],[-105.08787,40.55277],[-105.08817,40.55277],[-105.08846,40.55277],[-105.08876,40.55278],[-105.08904,40.55278],[-105.08936,40.55278],[-105.08966,40.5528],[-105.08992,40.5528],[-105.09021,40.5528],[-105.09047,40.5528],[-105.09073,40.55282],[-105.09093,40.55284],[-105.09095,40.55284],[-105.09121,40.55283],[-105.09146,40.55282],[-105.0918,40.55282],[-105.09214,40.55282],[-105.09246,40.55282],[-105.09284,40.55282],[-105.09317,40.55282],[-105.09351,40.55283],[-105.09381,40.55284],[-105.09403,40.55284],[-105.09417,40.55285],[-105.09417,40.55285],[-105.09433,40.55284],[-105.09449,40.55283],[-105.09466,40.55282],[-105.09482,40.55281],[-105.09495,40.5528],[-105.09508,40.5528],[-105.09521,40.5528],[-105.09534,40.55279],[-105.09547,40.55279],[-105.0956,40.55279],[-105.09573,40.55278],[-105.09586,40.55278],[-105.09598,40.55278],[-105.0961,40.55278],[-105.09622,40.55278],[-105.09634,40.55278],[-105.09646,40.55278],[-105.09659,40.55278],[-105.09671,40.55278],[-105.09683,40.55278],[-105.09705,40.55279],[-105.09726,40.55279],[-105.09748,40.55279],[-105.0977,40.55279],[-105.09791,40.55279],[-105.09813,40.55279],[-105.09835,40.55279],[-105.09856,40.55279],[-105.09872,40.55281],[-105.09875,40.55286],[-105.09871,40.55296],[-105.09871,40.55296],[-105.09872,40.55307],[-105.09873,40.55317],[-105.09875,40.55328],[-105.09877,40.55339],[-105.09881,40.55353],[-105.09886,40.55366],[-105.09897,40.55378],[-105.09908,40.55389],[-105.09923,40.55398],[-105.09938,40.55408],[-105.09947,40.55416],[-105.09956,40.55424],[-105.09962,40.55436],[-105.09967,40.55448],[-105.09965,40.55461],[-105.09962,40.55475],[-105.09954,40.55488],[-105.09946,40.555],[-105.09934,40.55507],[-105.09923,40.55514],[-105.09912,40.55518],[-105.09901,40.55521],[-105.09886,40.55521],[-105.09872,40.55521],[-105.09858,40.5552],[-105.09844,40.55519],[-105.09828,40.55517],[-105.09812,40.55514],[-105.098,40.55515],[-105.09789,40.55516],[-105.0977,40.55521],[-105.09755,40.55529],[-105.09741,40.55537],[-105.09721,40.55542],[-105.09701,40.55546],[-105.09675,40.55547],[-105.09655,40.55547],[-105.09635,40.55546],[-105.09615,40.55545],[-105.09592,40.55545],[-105.09568,40.55544],[-105.09542,40.55544],[-105.09512,40.55544],[-105.09486,40.55544],[-105.09461,40.55544],[-105.09435,40.55546],[-105.09413,40.55547],[-105.09387,40.55546],[-105.09373,40.55546],[-105.09357,40.55552],[-105.09333,40.55555],[-105.09306,40.55558],[-105.09278,40.55561],[-105.0925,40.55564],[-105.09224,40.55569],[-105.09198,40.55574],[-105.0917,40.55579],[-105.09146,40.55584],[-105.09121,40.55589],[-105.09099,40.55594],[-105.09075,40.556],[-105.09047,40.55607],[-105.09021,40.55615],[-105.08996,40.55623],[-105.0897,40.55632],[-105.08944,40.55641],[-105.0892,40.55653],[-105.08896,40.55665],[-105.08872,40.5568],[-105.0885,40.55692],[-105.08837,40.55703],[-105.08825,40.55709],[-105.08809,40.55722],[-105.08793,40.55735],[-105.08773,40.55755],[-105.08757,40.55777],[-105.08745,40.55801],[-105.08735,40.55826],[-105.08727,40.5585],[-105.08713,40.55873],[-105.087,40.55894],[-105.0868,40.55914],[-105.08658,40.55932],[-105.08636,40.5595],[-105.08612,40.55969],[-105.0859,40.55985],[-105.0857,40.56],[-105.08558,40.56011],[-105.08554,40.56012],[-105.08539,40.56028],[-105.08523,40.56041],[-105.08501,40.56057],[-105.08481,40.56075],[-105.08459,40.56092],[-105.08439,40.56109],[-105.08419,40.56126],[-105.084,40.56144],[-105.08378,40.56163],[-105.08362,40.56182],[-105.08346,40.56204],[-105.08334,40.56227],[-105.08326,40.56249],[-105.0832,40.56271],[-105.08318,40.56294],[-105.08316,40.56315],[-105.08318,40.56338],[-105.08324,40.5636],[-105.0833,40.56382],[-105.08338,40.56404],[-105.08344,40.56426],[-105.08352,40.5645],[-105.0836,40.56472],[-105.08366,40.56494],[-105.0837,40.56511],[-105.0837,40.56524],[-105.0837,40.56524],[-105.0837,40.56538],[-105.08369,40.56553],[-105.08369,40.56567],[-105.08369,40.56581],[-105.08369,40.56595],[-105.08369,40.56609],[-105.08368,40.56623],[-105.08368,40.56637],[-105.08368,40.56653],[-105.08369,40.56669],[-105.08369,40.56684],[-105.08369,40.567],[-105.08369,40.56709],[-105.08368,40.56718],[-105.08368,40.56727],[-105.08367,40.56736],[-105.08367,40.56745],[-105.08366,40.56754],[-105.08365,40.56764],[-105.08365,40.56773],[-105.08364,40.56781],[-105.08363,40.56789],[-105.08362,40.56798],[-105.08361,40.56806],[-105.08361,40.56806],[-105.08364,40.56821],[-105.08364,40.56835],[-105.08365,40.56848],[-105.08365,40.5686],[-105.08365,40.56871],[-105.08368,40.56875],[-105.08375,40.56877],[-105.08386,40.56877],[-105.08398,40.56877],[-105.08409,40.56877],[-105.08421,40.56877],[-105.08432,40.56877],[-105.08444,40.56877],[-105.08455,40.56877],[-105.08467,40.56877],[-105.08485,40.56877],[-105.08503,40.56877],[-105.08521,40.56877],[-105.08539,40.56877],[-105.08556,40.56878],[-105.08574,40.56878],[-105.08592,40.56878],[-105.0861,40.56878],[-105.08629,40.56878],[-105.08647,40.56878],[-105.08666,40.56878],[-105.08685,40.56878],[-105.0869,40.5688],[-105.08691,40.56885],[-105.08691,40.56899],[-105.08691,40.56914],[-105.08691,40.56928],[-105.08692,40.56942],[-105.08693,40.56952],[-105.08704,40.56962],[-105.08721,40.56972],[-105.08741,40.56975],[-105.08757,40.56976],[-105.08773,40.56976],[-105.08788,40.56976],[-105.08803,40.56976],[-105.08814,40.56978],[-105.08825,40.56981],[-105.08838,40.5699],[-105.08844,40.57001],[-105.08846,40.57013],[-105.08845,40.57025],[-105.08845,40.57036],[-105.08845,40.57048],[-105.08845,40.57059],[-105.08845,40.57071],[-105.08844,40.57083],[-105.08844,40.57095],[-105.08843,40.57108],[-105.08843,40.57121],[-105.08842,40.57135],[-105.08842,40.57148],[-105.08841,40.57161],[-105.08841,40.57172],[-105.08841,40.57183],[-105.0884,40.57194],[-105.0884,40.57205],[-105.0884,40.57216],[-105.0884,40.57227],[-105.08839,40.57238],[-105.08839,40.57249],[-105.08839,40.57259],[-105.08839,40.57268],[-105.08839,40.57278],[-105.08839,40.57287],[-105.08839,40.57297],[-105.0884,40.57306],[-105.0884,40.57316],[-105.0884,40.57325],[-105.08839,40.57341],[-105.08839,40.57358],[-105.08839,40.57374],[-105.08838,40.57391],[-105.08835,40.57396],[-105.08835,40.57409],[-105.0884,40.57436],[-105.0884,40.57454],[-105.08843,40.57468],[-105.08843,40.57481],[-105.08843,40.57502],[-105.0884,40.57515],[-105.08837,40.57529],[-105.08829,40.57542],[-105.08817,40.57553],[-105.08805,40.57565],[-105.08799,40.57578],[-105.08795,40.57591],[-105.08793,40.5761],[-105.08793,40.57624],[-105.08793,40.57638],[-105.08771,40.57642],[-105.08747,40.57642],[-105.08729,40.57642],[-105.0871,40.57643],[-105.08693,40.57643],[-105.08668,40.57642],[-105.08644,40.57642],[-105.08624,40.57636],[-105.0861,40.57622],[-105.08594,40.57608],[-105.08584,40.57595],[-105.0857,40.57583],[-105.08558,40.57572],[-105.08539,40.57576],[-105.08523,40.57584],[-105.08515,40.57586]]}},{"type":"Feature","properties":{"name":"7:51"},"geometry":{"type":"LineString","coordinates":[[-105.08519,40.57587],[-105.08501,40.57596],[-105.08485,40.57605],[-105.08473,40.57618],[-105.08475,40.57633],[-105.08489,40.57639],[-105.08509,40.57639],[-105.08531,40.57639],[-105.0855,40.5764],[-105.08568,40.57642],[-105.0859,40.57643],[-105.08614,40.57643],[-105.08638,40.57643],[-105.08664,40.57643],[-105.08684,40.57643],[-105.08704,40.57643],[-105.08729,40.57643],[-105.08753,40.57643],[-105.08771,40.57643],[-105.08789,40.5764],[-105.08793,40.57623],[-105.08795,40.57604],[-105.08797,40.57585],[-105.08803,40.57571],[-105.08815,40.57559],[-105.08827,40.57548],[-105.08839,40.57537],[-105.08844,40.57523],[-105.08846,40.57508],[-105.08849,40.57493],[-105.0885,40.57477],[-105.0885,40.57462],[-105.08854,40.57448],[-105.08857,40.57428],[-105.08857,40.57412],[-105.08857,40.57398],[-105.08861,40.57379],[-105.08857,40.57363],[-105.08857,40.57352],[-105.08846,40.57359],[-105.08846,40.57343],[-105.08846,40.57326],[-105.08846,40.57311],[-105.08846,40.57296],[-105.08846,40.57281],[-105.08843,40.57266],[-105.08844,40.57249],[-105.08844,40.57232],[-105.08844,40.57213],[-105.08846,40.57194],[-105.08846,40.57175],[-105.08846,40.57155],[-105.08846,40.57139],[-105.08846,40.57125],[-105.08846,40.5711],[-105.08846,40.57096],[-105.08849,40.57081],[-105.08849,40.57064],[-105.0885,40.57046],[-105.0885,40.57027],[-105.08849,40.57008],[-105.0884,40.56991],[-105.08821,40.56979],[-105.08793,40.56976],[-105.08777,40.56976],[-105.08747,40.56978],[-105.08725,40.56977],[-105.08707,40.56971],[-105.08693,40.56955],[-105.08693,40.56939],[-105.08696,40.5693],[-105.08701,40.56925],[-105.087,40.56916],[-105.08699,40.56907],[-105.08697,40.56897],[-105.08696,40.56887],[-105.08695,40.56878],[-105.08689,40.56875],[-105.08669,40.56875],[-105.08649,40.56875],[-105.08634,40.56875],[-105.0862,40.56875],[-105.08605,40.56875],[-105.08591,40.56875],[-105.08577,40.56875],[-105.08562,40.56875],[-105.08548,40.56875],[-105.08533,40.56875],[-105.08522,40.56875],[-105.0851,40.56875],[-105.08499,40.56875],[-105.08487,40.56874],[-105.08476,40.56874],[-105.08464,40.56874],[-105.08453,40.56874],[-105.08441,40.56874],[-105.08424,40.56868],[-105.08424,40.56868],[-105.08407,40.56872],[-105.08394,40.56872],[-105.0838,40.56872],[-105.08375,40.56871],[-105.08373,40.56867],[-105.08373,40.56858],[-105.08372,40.56848],[-105.08373,40.56832],[-105.08373,40.56816],[-105.08374,40.56799],[-105.08374,40.56783],[-105.08374,40.56768],[-105.08374,40.56753],[-105.08374,40.56738],[-105.08374,40.56723],[-105.08374,40.56712],[-105.08373,40.56701],[-105.08373,40.5669],[-105.08373,40.56679],[-105.08373,40.56667],[-105.08373,40.56655],[-105.08373,40.56643],[-105.08374,40.56631],[-105.08374,40.56619],[-105.08374,40.56607],[-105.08374,40.56595],[-105.08374,40.56583],[-105.08374,40.56569],[-105.08374,40.56556],[-105.08374,40.56542],[-105.08375,40.56529],[-105.08375,40.56519],[-105.08375,40.56509],[-105.08375,40.56499],[-105.08376,40.56489],[-105.08376,40.56489],[-105.08368,40.56475],[-105.08364,40.56466],[-105.0836,40.56457],[-105.08355,40.56442],[-105.0835,40.56428],[-105.08345,40.56414],[-105.0834,40.564],[-105.08337,40.56391],[-105.08334,40.56381],[-105.08331,40.56372],[-105.08328,40.56363],[-105.08326,40.56353],[-105.08324,40.56342],[-105.08321,40.5633],[-105.08319,40.56318],[-105.08319,40.56305],[-105.08319,40.56293],[-105.08321,40.56278],[-105.08324,40.56264],[-105.08328,40.56249],[-105.08332,40.56234],[-105.08338,40.56218],[-105.08344,40.56207],[-105.08351,40.56196],[-105.08359,40.56184],[-105.08368,40.56173],[-105.08374,40.56165],[-105.08382,40.56158],[-105.08388,40.56151],[-105.08395,40.56144],[-105.08406,40.56135],[-105.08417,40.56126],[-105.08428,40.56118],[-105.08438,40.56109],[-105.08449,40.56101],[-105.08459,40.56092],[-105.0847,40.56083],[-105.08481,40.56075],[-105.08496,40.56065],[-105.08511,40.56056],[-105.08526,40.56046],[-105.0854,40.56036],[-105.08552,40.56027],[-105.08552,40.56027],[-105.08563,40.56018],[-105.08574,40.56008],[-105.08585,40.55998],[-105.08596,40.55988],[-105.08604,40.55981],[-105.08612,40.55974],[-105.0862,40.55967],[-105.08628,40.5596],[-105.08637,40.55953],[-105.08645,40.55946],[-105.08653,40.55939],[-105.08661,40.55932],[-105.08671,40.55924],[-105.08681,40.55916],[-105.08691,40.55908],[-105.08701,40.559],[-105.08708,40.55889],[-105.08716,40.55878],[-105.08723,40.55869],[-105.08728,40.55857],[-105.08732,40.55845],[-105.08736,40.55832],[-105.0874,40.5582],[-105.08744,40.55812],[-105.08747,40.55804],[-105.08751,40.55796],[-105.08754,40.55788],[-105.08762,40.55776],[-105.08769,40.55764],[-105.08776,40.55757],[-105.08782,40.5575],[-105.08789,40.55743],[-105.08795,40.55737],[-105.08804,40.5573],[-105.08813,40.55723],[-105.08822,40.55717],[-105.08831,40.5571],[-105.08844,40.55703],[-105.08861,40.5569],[-105.08876,40.55681],[-105.0889,40.55671],[-105.08906,40.55661],[-105.08928,40.55651],[-105.08948,40.55641],[-105.08972,40.55633],[-105.08996,40.55626],[-105.09017,40.55618],[-105.09039,40.5561],[-105.09061,40.55605],[-105.09085,40.55599],[-105.09111,40.55593],[-105.09137,40.55586],[-105.09166,40.5558],[-105.09198,40.55575],[-105.0923,40.55569],[-105.0926,40.55566],[-105.09284,40.55563],[-105.09304,40.55561],[-105.09304,40.55561],[-105.09307,40.55556],[-105.09325,40.55555],[-105.09337,40.55554],[-105.0934,40.55553],[-105.09358,40.55553],[-105.09376,40.55552],[-105.0938,40.55552],[-105.09398,40.55554],[-105.0941,40.55555],[-105.09428,40.55555],[-105.09446,40.55554],[-105.09447,40.55554],[-105.09461,40.55553],[-105.09479,40.55553],[-105.09497,40.55553],[-105.09514,40.55553],[-105.09532,40.55553],[-105.0955,40.55553],[-105.09568,40.55552],[-105.09586,40.55552],[-105.09604,40.55552],[-105.09606,40.55552],[-105.09619,40.55552],[-105.09637,40.55552],[-105.09655,40.55552],[-105.09658,40.55552],[-105.09676,40.55552],[-105.0968,40.55552],[-105.09695,40.55549],[-105.09703,40.55548],[-105.09717,40.55545],[-105.09722,40.55544],[-105.09731,40.55556],[-105.09732,40.55558],[-105.09734,40.5556],[-105.09737,40.55562],[-105.09741,40.55564],[-105.09743,40.55564],[-105.0975,40.55566],[-105.09758,40.55568],[-105.09763,40.55568],[-105.09775,40.55558],[-105.09776,40.55559],[-105.09786,40.55551],[-105.09795,40.55545],[-105.09807,40.55544],[-105.09822,40.55544],[-105.09837,40.55543],[-105.0984,40.55543],[-105.09842,40.55532],[-105.09844,40.55521],[-105.09843,40.55518],[-105.09828,40.55517],[-105.09813,40.55515],[-105.09799,40.55517],[-105.09784,40.55519],[-105.09769,40.55524],[-105.09754,40.55529],[-105.0974,40.55536],[-105.09726,40.55543],[-105.09711,40.55546],[-105.09696,40.55549],[-105.0968,40.55547],[-105.09665,40.55546],[-105.09651,40.55545],[-105.09637,40.55545],[-105.09622,40.55544],[-105.09615,40.55542],[-105.09614,40.55536],[-105.09615,40.5553],[-105.09618,40.5552],[-105.09621,40.5551],[-105.09623,40.55485],[-105.09621,40.55468],[-105.09619,40.55448],[-105.09619,40.55426],[-105.09619,40.55402],[-105.09619,40.55378],[-105.09617,40.55354],[-105.09615,40.55333],[-105.09611,40.55316],[-105.09611,40.55302],[-105.09611,40.55288],[-105.09601,40.55271],[-105.09586,40.55265],[-105.09568,40.55263],[-105.09548,40.55262],[-105.09538,40.55262],[-105.09518,40.55262],[-105.09496,40.55264],[-105.09468,40.55264],[-105.09437,40.55263],[-105.09405,40.55262],[-105.09373,40.55262],[-105.09349,40.55261],[-105.09329,40.55261],[-105.09327,40.55261],[-105.093,40.55261],[-105.09276,40.55262],[-105.09244,40.55262],[-105.0921,40.55262],[-105.0918,40.55262],[-105.09146,40.55262],[-105.09111,40.55262],[-105.09081,40.55262],[-105.09047,40.55261],[-105.09021,40.5526],[-105.09001,40.5526],[-105.08996,40.5526],[-105.08976,40.5526],[-105.08952,40.5526],[-105.08924,40.5526],[-105.08892,40.5526],[-105.08857,40.5526],[-105.08839,40.5526],[-105.08821,40.5526],[-105.08801,40.5526],[-105.08767,40.5526],[-105.08741,40.55259],[-105.08719,40.55258],[-105.08689,40.55258],[-105.08672,40.55258],[-105.0865,40.55257],[-105.08632,40.55257],[-105.08612,40.55257],[-105.08594,40.55256],[-105.08574,40.55255],[-105.08574,40.55255],[-105.08549,40.55256],[-105.08521,40.55256],[-105.08495,40.55256],[-105.08471,40.55256],[-105.08449,40.55256],[-105.08429,40.55256],[-105.08404,40.55255],[-105.08385,40.55255],[-105.08366,40.55255],[-105.08346,40.55254],[-105.08328,40.55254],[-105.08308,40.55254],[-105.08288,40.55253],[-105.08264,40.55253],[-105.08243,40.55253],[-105.08225,40.55251],[-105.08225,40.55251],[-105.08203,40.55252],[-105.08183,40.55253],[-105.08163,40.55253],[-105.08139,40.55253],[-105.08117,40.55253],[-105.08093,40.55252],[-105.08074,40.55252],[-105.08048,40.55252],[-105.08026,40.55252],[-105.08002,40.55251],[-105.07974,40.5525],[-105.07953,40.5525],[-105.07933,40.5525],[-105.07915,40.55249],[-105.07913,40.55249],[-105.07893,40.5525],[-105.07871,40.5525],[-105.07847,40.55251],[-105.07819,40.55252],[-105.07793,40.55252],[-105.07772,40.55252],[-105.0775,40.55252],[-105.07726,40.55252],[-105.07708,40.5525],[-105.07684,40.5525],[-105.07656,40.5525],[-105.07631,40.55249],[-105.07605,40.55248],[-105.07583,40.55247],[-105.07565,40.55246],[-105.07545,40.55248],[-105.07525,40.55249],[-105.07507,40.5525],[-105.07485,40.5525],[-105.07458,40.5525],[-105.07426,40.5525],[-105.07396,40.5525],[-105.07366,40.5525],[-105.07335,40.5525],[-105.07303,40.5525],[-105.07271,40.5525],[-105.07239,40.5525],[-105.07207,40.5525],[-105.07174,40.5525],[-105.07144,40.55249],[-105.07112,40.55249],[-105.07084,40.55249],[-105.07054,40.55249],[-105.07025,40.55248],[-105.06993,40.55248],[-105.06963,40.55248],[-105.06935,40.55247],[-105.06913,40.55247],[-105.06901,40.55247],[-105.06882,40.5525],[-105.0686,40.5525],[-105.06836,40.55249],[-105.06818,40.55249],[-105.06798,40.55249],[-105.06776,40.55249],[-105.06752,40.55249],[-105.06732,40.55249],[-105.06715,40.55249],[-105.06691,40.55249],[-105.06667,40.55249],[-105.06641,40.55249],[-105.06619,40.55249],[-105.06596,40.55249],[-105.06576,40.55248],[-105.06558,40.55247],[-105.06552,40.55247],[-105.06532,40.55248],[-105.06506,40.55248],[-105.06484,40.55248],[-105.06458,40.55248],[-105.06432,40.55248],[-105.06399,40.55248],[-105.06365,40.55248],[-105.06329,40.55248],[-105.06313,40.55248],[-105.06293,40.55248],[-105.06278,40.55248],[-105.06258,40.55248],[-105.0624,40.55248],[-105.0622,40.55247],[-105.062,40.55247],[-105.06184,40.55248],[-105.06164,40.55248],[-105.06146,40.55248],[-105.06127,40.55248],[-105.06091,40.55247],[-105.06061,40.55247],[-105.06035,40.55247],[-105.06011,40.55248],[-105.05992,40.55246],[-105.05979,40.55246],[-105.05956,40.55246],[-105.05932,40.55246],[-105.05914,40.55242],[-105.05896,40.55238],[-105.05876,40.55232],[-105.05856,40.55225],[-105.05836,40.55218],[-105.05815,40.55211],[-105.05795,40.55204],[-105.05777,40.55199],[-105.05757,40.55192],[-105.05739,40.55184],[-105.05729,40.55181],[-105.05709,40.55179],[-105.05684,40.55178],[-105.05664,40.55178],[-105.05642,40.5518],[-105.05616,40.55187],[-105.0559,40.55194],[-105.05564,40.55201],[-105.05535,40.5521],[-105.05505,40.55218],[-105.05471,40.55226],[-105.05439,40.55235],[-105.05409,40.55242],[-105.05378,40.55246],[-105.0535,40.55246],[-105.05318,40.55247],[-105.05288,40.55247],[-105.05258,40.55247],[-105.05227,40.55247],[-105.05201,40.55247],[-105.05177,40.55247],[-105.05153,40.55246],[-105.05143,40.55245],[-105.05121,40.55246],[-105.05097,40.55246],[-105.05074,40.55246],[-105.0505,40.55246],[-105.05022,40.55246],[-105.04992,40.55246],[-105.04964,40.55246],[-105.04932,40.55246],[-105.04903,40.55246],[-105.04867,40.55246],[-105.04833,40.55246],[-105.04797,40.55246],[-105.04762,40.55246],[-105.04728,40.55247],[-105.04694,40.55247],[-105.04658,40.55248],[-105.04627,40.55248],[-105.04595,40.55248],[-105.04563,40.55249],[-105.04531,40.55249],[-105.04497,40.55249],[-105.0447,40.55249],[-105.04446,40.55249],[-105.04426,40.55248],[-105.04412,40.55247],[-105.04392,40.55249],[-105.04372,40.55249],[-105.0435,40.5525],[-105.04327,40.5525],[-105.04303,40.5525],[-105.04273,40.5525],[-105.04241,40.55252],[-105.04205,40.55253],[-105.04171,40.55253],[-105.04152,40.55253],[-105.04134,40.55253],[-105.04114,40.55254],[-105.04094,40.55254],[-105.04074,40.55255],[-105.04054,40.55256],[-105.04036,40.55256],[-105.04003,40.55256],[-105.03979,40.55257],[-105.03953,40.55257],[-105.03935,40.55256],[-105.03913,40.55256],[-105.03895,40.55256],[-105.03874,40.55255],[-105.0385,40.55255],[-105.03828,40.55255],[-105.03804,40.55254],[-105.03786,40.55253],[-105.03762,40.55253],[-105.03742,40.55252],[-105.03728,40.5525],[-105.03711,40.5525],[-105.03703,40.5525],[-105.03703,40.5525],[-105.03684,40.5525],[-105.03665,40.5525],[-105.03648,40.5525],[-105.03631,40.5525],[-105.03614,40.55249],[-105.03597,40.55249],[-105.03585,40.55249],[-105.03573,40.55249],[-105.03561,40.55249],[-105.03548,40.55248],[-105.03536,40.55248],[-105.03524,40.55248],[-105.03512,40.55248],[-105.035,40.55248],[-105.03483,40.55248],[-105.03467,40.55248],[-105.0345,40.55248],[-105.03433,40.55248],[-105.03417,40.55248],[-105.034,40.55249],[-105.03384,40.55249],[-105.03367,40.55249]]}},{"type":"Feature","properties":{"name":"8:01"},"geometry":{"type":"LineString","coordinates":[[-105.07861,40.59002],[-105.07855,40.59023],[-105.07849,40.59039],[-105.07839,40.59052],[-105.07831,40.59064],[-105.07835,40.59078],[-105.07853,40.59085],[-105.07873,40.59091],[-105.07875,40.59106],[-105.07875,40.59121],[-105.07875,40.59138],[-105.07875,40.59157],[-105.07875,40.59174],[-105.07875,40.59189],[-105.07875,40.59204],[-105.07867,40.59218],[-105.07841,40.5922],[-105.07819,40.5922],[-105.07796,40.5922],[-105.07772,40.5922],[-105.0775,40.5922],[-105.07726,40.5922],[-105.0771,40.59218],[-105.07688,40.59218],[-105.07666,40.59217],[-105.07643,40.59215],[-105.07621,40.5921],[-105.07601,40.59202],[-105.07583,40.59195],[-105.07565,40.59186],[-105.07547,40.59175],[-105.07531,40.59166],[-105.07513,40.59152],[-105.07506,40.59146],[-105.07485,40.59138],[-105.0747,40.59128],[-105.0745,40.59115],[-105.0743,40.59102],[-105.07408,40.59089],[-105.07388,40.59075],[-105.0737,40.59063],[-105.07356,40.59052],[-105.07345,40.59042],[-105.07331,40.5903],[-105.07317,40.59019],[-105.07301,40.59009],[-105.07281,40.5902],[-105.07267,40.59033],[-105.07253,40.59047],[-105.07235,40.59062],[-105.07215,40.59077],[-105.072,40.59089],[-105.07189,40.59099],[-105.07174,40.59114],[-105.07158,40.59128],[-105.07138,40.59144],[-105.07118,40.59162],[-105.07094,40.59181],[-105.07072,40.59202],[-105.07049,40.59222],[-105.07025,40.59242],[-105.07001,40.59262],[-105.06979,40.59282],[-105.06955,40.59301],[-105.06933,40.5932],[-105.06913,40.59338],[-105.06897,40.59355],[-105.06888,40.59367],[-105.06879,40.59376],[-105.06878,40.59392],[-105.06876,40.59407],[-105.06876,40.59427],[-105.06874,40.59449],[-105.06874,40.59473],[-105.06874,40.59497],[-105.06872,40.59521],[-105.06872,40.59542],[-105.0687,40.59555],[-105.0687,40.59571],[-105.0686,40.59585],[-105.06834,40.59589],[-105.06808,40.59589],[-105.06782,40.59589],[-105.06762,40.59589],[-105.06756,40.59589],[-105.06736,40.59589],[-105.06711,40.59591],[-105.06683,40.59592],[-105.06647,40.59592],[-105.06631,40.59592],[-105.06611,40.59592],[-105.06596,40.59592],[-105.06574,40.59593],[-105.06554,40.59593],[-105.06534,40.59593],[-105.06516,40.59593],[-105.06496,40.59593],[-105.06474,40.59594],[-105.06454,40.59594],[-105.06432,40.59595],[-105.06413,40.59595],[-105.06393,40.59595],[-105.06373,40.59595],[-105.06351,40.59596],[-105.06333,40.59596],[-105.06313,40.59597],[-105.06293,40.59597],[-105.06274,40.59597],[-105.06254,40.59598],[-105.06234,40.59598],[-105.06212,40.59598],[-105.06194,40.59598],[-105.06174,40.59598],[-105.06152,40.59598],[-105.06132,40.59599],[-105.06113,40.59599],[-105.06095,40.59599],[-105.06075,40.59599],[-105.06055,40.59599],[-105.06037,40.596],[-105.06015,40.596],[-105.05982,40.596],[-105.05948,40.59601],[-105.05916,40.596],[-105.05892,40.596],[-105.0588,40.596],[-105.0586,40.596],[-105.0584,40.59602],[-105.05815,40.59603],[-105.05793,40.59605],[-105.05777,40.59603],[-105.05761,40.59611],[-105.05761,40.59626],[-105.05761,40.59646],[-105.05761,40.59669],[-105.05761,40.59695],[-105.05761,40.59722],[-105.05761,40.59747],[-105.05757,40.59766],[-105.05757,40.59781],[-105.05757,40.59782],[-105.05761,40.59802],[-105.05761,40.59822],[-105.05757,40.59846],[-105.05757,40.59873],[-105.05757,40.59887],[-105.05757,40.59902],[-105.05757,40.59916],[-105.05757,40.59931],[-105.05757,40.59947],[-105.05757,40.59962],[-105.05757,40.59977],[-105.05757,40.59992],[-105.05757,40.60008],[-105.05757,40.60023],[-105.05757,40.60039],[-105.05757,40.60054],[-105.05757,40.60069],[-105.05757,40.60084],[-105.05757,40.60098],[-105.05757,40.60113],[-105.05755,40.60127],[-105.05755,40.60142],[-105.05755,40.60156],[-105.05755,40.60171],[-105.05755,40.60185],[-105.05755,40.60198],[-105.05755,40.60213],[-105.05755,40.60228],[-105.05755,40.60242],[-105.05753,40.60257],[-105.05753,40.60272],[-105.05751,40.60285],[-105.05753,40.60299],[-105.05755,40.60326],[-105.05755,40.6035],[-105.05755,40.60367],[-105.05755,40.60382],[-105.05763,40.60398],[-105.05789,40.604],[-105.05809,40.60402],[-105.05809,40.60402],[-105.05828,40.604],[-105.05848,40.60398],[-105.05876,40.60398],[-105.05908,40.60398],[-105.05942,40.60398],[-105.05975,40.60398],[-105.06007,40.60398],[-105.06039,40.60399],[-105.06073,40.60399],[-105.06105,40.60399],[-105.06136,40.60399],[-105.06166,40.604],[-105.06194,40.60403],[-105.06216,40.60405],[-105.0623,40.60405],[-105.06254,40.60403],[-105.06278,40.60402],[-105.06303,40.604],[-105.06333,40.604],[-105.06363,40.604],[-105.06397,40.60401],[-105.06427,40.60403],[-105.06449,40.60406],[-105.0647,40.60407],[-105.06474,40.60407],[-105.065,40.604],[-105.06522,40.60392],[-105.06542,40.60379],[-105.06562,40.60364],[-105.06584,40.60349],[-105.06603,40.60337],[-105.06627,40.60333],[-105.06651,40.60333],[-105.06683,40.60334],[-105.06715,40.60334],[-105.06745,40.60336],[-105.06774,40.60336],[-105.06802,40.60334],[-105.06826,40.60331],[-105.06846,40.60325],[-105.06846,40.60325],[-105.06866,40.60318],[-105.06882,40.6031],[-105.06905,40.603],[-105.06933,40.60291],[-105.06963,40.60287],[-105.06993,40.60285],[-105.07023,40.60285],[-105.07054,40.60285],[-105.07084,40.60285],[-105.07116,40.60286],[-105.07144,40.60287],[-105.07164,40.60287],[-105.07183,40.60294],[-105.07183,40.60315],[-105.07183,40.60334],[-105.07179,40.60355],[-105.07179,40.60375],[-105.07178,40.60392],[-105.07178,40.60406],[-105.07178,40.60408],[-105.07179,40.60427],[-105.07179,40.60443],[-105.07179,40.60462],[-105.07179,40.60483],[-105.07179,40.60505],[-105.07179,40.60527],[-105.07179,40.60549],[-105.07179,40.60571],[-105.07179,40.60593],[-105.07179,40.60614],[-105.07179,40.60635],[-105.07179,40.60654],[-105.07178,40.60674],[-105.07178,40.60695],[-105.07174,40.60715],[-105.07172,40.60731],[-105.0717,40.60746],[-105.0717,40.6075],[-105.07172,40.6077],[-105.07174,40.60788],[-105.07174,40.60809],[-105.07174,40.60832],[-105.07174,40.60856],[-105.07174,40.60879],[-105.07172,40.60896],[-105.07168,40.6091],[-105.07168,40.60914],[-105.0717,40.60928],[-105.07172,40.60943],[-105.07172,40.60961],[-105.07172,40.6098],[-105.07172,40.60999],[-105.07172,40.61015],[-105.07172,40.6103],[-105.07172,40.61046],[-105.07193,40.61053],[-105.07219,40.61053],[-105.07247,40.61054],[-105.07275,40.61059],[-105.07297,40.61064],[-105.07319,40.61067],[-105.07323,40.61067],[-105.07345,40.61065],[-105.07364,40.61064],[-105.07386,40.61065],[-105.07406,40.61068],[-105.07422,40.61073],[-105.07438,40.61082],[-105.0746,40.6108],[-105.07485,40.61069],[-105.07506,40.61067],[-105.07523,40.61067],[-105.07545,40.61069],[-105.07569,40.61071],[-105.07593,40.61071],[-105.07617,40.61072],[-105.07636,40.61073],[-105.07643,40.61091],[-105.0764,40.6111],[-105.0764,40.61133],[-105.0764,40.61156],[-105.0764,40.61177],[-105.07636,40.61192],[-105.07631,40.61206],[-105.07631,40.61208],[-105.07636,40.61224],[-105.07636,40.61243],[-105.07636,40.61266],[-105.0764,40.61292],[-105.07643,40.61306],[-105.07643,40.61321],[-105.07643,40.61335],[-105.07643,40.6135],[-105.07643,40.61366],[-105.07643,40.61381],[-105.07643,40.61396],[-105.07645,40.61412],[-105.07646,40.61429],[-105.07649,40.61445],[-105.0765,40.6146],[-105.07656,40.61476],[-105.07662,40.6149],[-105.07668,40.61504],[-105.07674,40.61518],[-105.07684,40.61542],[-105.07694,40.61561],[-105.077,40.61574],[-105.07708,40.61587],[-105.07724,40.61597],[-105.07746,40.61594],[-105.07764,40.61587],[-105.07762,40.61573],[-105.07744,40.61573],[-105.0773,40.61584],[-105.07714,40.61583],[-105.07706,40.61571],[-105.07696,40.61552],[-105.07684,40.6153],[-105.07674,40.61503],[-105.0767,40.61488],[-105.07666,40.61473],[-105.0766,40.61458],[-105.07656,40.61441],[-105.07656,40.61424],[-105.07653,40.61407],[-105.0765,40.6139],[-105.0765,40.61372],[-105.0765,40.61355],[-105.0765,40.61338],[-105.07653,40.61322],[-105.07654,40.61308],[-105.07656,40.61294],[-105.07656,40.61272],[-105.07662,40.61259],[-105.07664,40.61248],[-105.07656,40.61229],[-105.07656,40.61211],[-105.07658,40.61189],[-105.07658,40.61163],[-105.07658,40.6115],[-105.07658,40.61135],[-105.0766,40.61121],[-105.0766,40.61106],[-105.0766,40.61092],[-105.07662,40.61067],[-105.07664,40.61046],[-105.07666,40.61032],[-105.07666,40.61022],[-105.07666,40.61006],[-105.07662,40.6099],[-105.0766,40.6097],[-105.0766,40.60946],[-105.07662,40.60922],[-105.07662,40.60898],[-105.07662,40.60876],[-105.07662,40.6086],[-105.07662,40.60848],[-105.07662,40.60833],[-105.07664,40.60814],[-105.07664,40.60791],[-105.07664,40.60766],[-105.07664,40.6074],[-105.07664,40.60715],[-105.07664,40.60694],[-105.07666,40.60677],[-105.07666,40.60664],[-105.07666,40.60643],[-105.07666,40.60625],[-105.07666,40.60603],[-105.07666,40.60579],[-105.07666,40.60554],[-105.07668,40.60527],[-105.07668,40.605],[-105.07668,40.60485],[-105.07668,40.6047],[-105.07668,40.60456],[-105.07668,40.60441],[-105.07668,40.60426],[-105.0767,40.6041],[-105.0767,40.60396],[-105.07672,40.6038],[-105.07672,40.60366],[-105.07674,40.60351],[-105.07674,40.60337],[-105.07674,40.60322],[-105.07674,40.60307],[-105.07674,40.60294],[-105.07674,40.60279],[-105.07674,40.60253],[-105.07674,40.60231],[-105.07676,40.60215],[-105.07676,40.60203],[-105.07674,40.60185],[-105.07674,40.60166],[-105.07674,40.60141],[-105.07674,40.60115],[-105.07674,40.60101],[-105.07674,40.60088],[-105.07674,40.60073],[-105.07674,40.60059],[-105.07674,40.60044],[-105.07674,40.60029],[-105.07674,40.60015],[-105.07674,40.6],[-105.07674,40.59985],[-105.07674,40.5997],[-105.07676,40.59954],[-105.07676,40.59939],[-105.07676,40.59925],[-105.07676,40.5991],[-105.07676,40.59897],[-105.0768,40.59873],[-105.0768,40.59857],[-105.07682,40.59844],[-105.0768,40.59826],[-105.0768,40.59807],[-105.0768,40.59786],[-105.0768,40.5976],[-105.0768,40.59733],[-105.0768,40.59718],[-105.0768,40.59703],[-105.0768,40.59689],[-105.07682,40.59673],[-105.07682,40.59659],[-105.07682,40.59644],[-105.07682,40.59631],[-105.07684,40.59607],[-105.07688,40.59592],[-105.07688,40.59582],[-105.07688,40.59562],[-105.07684,40.59542],[-105.07684,40.59519],[-105.07684,40.59494],[-105.07684,40.5947],[-105.07688,40.59446],[-105.07688,40.5943],[-105.0769,40.59415],[-105.0769,40.59412],[-105.07688,40.59395],[-105.07684,40.59377],[-105.07684,40.59358],[-105.07684,40.59335],[-105.07688,40.59313],[-105.07692,40.59291],[-105.07696,40.59274],[-105.07698,40.59257],[-105.077,40.59242],[-105.07704,40.59221],[-105.07706,40.59202],[-105.07708,40.59184],[-105.0771,40.59162],[-105.07714,40.5914],[-105.07714,40.59117],[-105.07714,40.59093],[-105.07714,40.59071],[-105.07714,40.59051],[-105.07714,40.59034],[-105.07718,40.5902],[-105.07718,40.59017],[-105.07714,40.59001],[-105.07714,40.58982],[-105.07714,40.58968],[-105.07714,40.58954],[-105.07714,40.5894],[-105.07714,40.58924],[-105.0773,40.58913],[-105.07756,40.58913],[-105.0778,40.58914],[-105.07803,40.58913],[-105.07827,40.58912],[-105.07847,40.58908],[-105.07867,40.58906],[-105.07883,40.5891],[-105.07887,40.58928],[-105.07877,40.58943],[-105.07867,40.58954],[-105.07865,40.5897],[-105.07863,40.58987],[-105.07859,40.59001],[-105.07859,40.59002]]}},{"type":"Feature","properties":{"name":"81:01"},"geometry":{"type":"LineString","coordinates":[[-105.07861,40.59002],[-105.07857,40.59019],[-105.07851,40.59035],[-105.07841,40.59048],[-105.07839,40.59064],[-105.07849,40.59077],[-105.07869,40.59081],[-105.07883,40.59093],[-105.07883,40.5911],[-105.07883,40.59129],[-105.07883,40.59143],[-105.07883,40.59158],[-105.07883,40.59172],[-105.07883,40.59191],[-105.07883,40.59206],[-105.07867,40.59215],[-105.07841,40.59216],[-105.07819,40.59216],[-105.07796,40.59217],[-105.07772,40.59218],[-105.07746,40.59218],[-105.07722,40.59218],[-105.077,40.59218],[-105.07684,40.59224],[-105.07674,40.59236],[-105.07674,40.59252],[-105.07672,40.5927],[-105.07668,40.59287],[-105.07666,40.59307],[-105.07666,40.59327],[-105.07662,40.59348],[-105.07662,40.59368],[-105.0766,40.59384],[-105.0766,40.59401],[-105.0766,40.59408],[-105.07664,40.59423],[-105.07666,40.5944],[-105.07666,40.59462],[-105.07666,40.59486],[-105.07666,40.5951],[-105.07666,40.59537],[-105.07666,40.59551],[-105.07666,40.59565],[-105.07666,40.59579],[-105.07664,40.59606],[-105.07662,40.59631],[-105.07658,40.59649],[-105.07658,40.59663],[-105.07658,40.59664],[-105.0766,40.59685],[-105.07662,40.59705],[-105.07662,40.5973],[-105.07662,40.59757],[-105.07662,40.5977],[-105.07662,40.59784],[-105.07662,40.59798],[-105.07662,40.59811],[-105.0766,40.59838],[-105.0766,40.59865],[-105.0766,40.5988],[-105.07658,40.59894],[-105.07658,40.59909],[-105.07658,40.59922],[-105.07658,40.59938],[-105.07658,40.59952],[-105.07658,40.59967],[-105.07656,40.59981],[-105.07656,40.59996],[-105.07656,40.60011],[-105.07656,40.60026],[-105.07656,40.6004],[-105.07656,40.60054],[-105.07656,40.6007],[-105.07656,40.60084],[-105.07656,40.60097],[-105.07656,40.60124],[-105.07653,40.60146],[-105.07653,40.60161],[-105.07653,40.60171],[-105.07653,40.60187],[-105.07654,40.60204],[-105.07656,40.60222],[-105.07656,40.60237],[-105.07654,40.60252],[-105.07654,40.60267],[-105.07653,40.60283],[-105.07653,40.60302],[-105.07653,40.60325],[-105.07653,40.60348],[-105.07653,40.60375],[-105.07653,40.604],[-105.0765,40.60424],[-105.07649,40.60438],[-105.07649,40.60452],[-105.07649,40.60473],[-105.0765,40.60491],[-105.0765,40.60517],[-105.07649,40.60545],[-105.07649,40.60558],[-105.07649,40.60574],[-105.07649,40.60589],[-105.07649,40.60604],[-105.07649,40.60618],[-105.07649,40.60633],[-105.07649,40.60649],[-105.07649,40.60664],[-105.07649,40.60678],[-105.07649,40.60694],[-105.07646,40.60721],[-105.07646,40.60742],[-105.07643,40.60757],[-105.0764,40.60768],[-105.07643,40.60784],[-105.07643,40.60802],[-105.07643,40.60825],[-105.07643,40.60851],[-105.07643,40.60879],[-105.07643,40.60892],[-105.07643,40.60906],[-105.07643,40.60921],[-105.07643,40.60935],[-105.07643,40.60948],[-105.0764,40.60963],[-105.0764,40.60989],[-105.0764,40.61011],[-105.0764,40.61027],[-105.0764,40.61044],[-105.0764,40.61059],[-105.07636,40.61078],[-105.07636,40.61101],[-105.07636,40.61127],[-105.07636,40.61153],[-105.07636,40.61175],[-105.07631,40.61191],[-105.07631,40.61202],[-105.07636,40.61224],[-105.07636,40.61243],[-105.07636,40.61266],[-105.0764,40.61292],[-105.07643,40.61306],[-105.07643,40.61321],[-105.07643,40.61335],[-105.07643,40.6135],[-105.07643,40.61366],[-105.07643,40.61381],[-105.07643,40.61396],[-105.07645,40.61412],[-105.07646,40.61429],[-105.07649,40.61445],[-105.0765,40.6146],[-105.07656,40.61476],[-105.07662,40.6149],[-105.07668,40.61504],[-105.07674,40.61518],[-105.07684,40.61542],[-105.07694,40.61561],[-105.077,40.61574],[-105.07708,40.61587],[-105.07724,40.61597],[-105.07746,40.61594],[-105.07764,40.61587],[-105.07762,40.61573],[-105.07744,40.61573],[-105.07728,40.61581],[-105.07706,40.61576],[-105.07696,40.6156],[-105.07684,40.61538],[-105.07672,40.6151],[-105.07668,40.61496],[-105.07662,40.6148],[-105.07656,40.61464],[-105.07653,40.61447],[-105.07649,40.6143],[-105.07646,40.61412],[-105.07645,40.61395],[-105.07643,40.61378],[-105.07643,40.6136],[-105.07643,40.61344],[-105.07645,40.61326],[-105.07646,40.61309],[-105.07649,40.61293],[-105.07649,40.61276],[-105.07649,40.61259],[-105.07649,40.61243],[-105.07649,40.61226],[-105.0765,40.6121],[-105.0765,40.61193],[-105.0765,40.61177],[-105.0765,40.61162],[-105.07649,40.61136],[-105.07649,40.61112],[-105.07649,40.61094],[-105.07649,40.61078],[-105.07645,40.61061],[-105.07617,40.61055],[-105.07593,40.61055],[-105.07565,40.61055],[-105.07537,40.61055],[-105.07511,40.61054],[-105.07492,40.61057],[-105.07466,40.61057],[-105.07448,40.61053],[-105.07428,40.61057],[-105.074,40.61057],[-105.07376,40.61055],[-105.07354,40.61053],[-105.07332,40.61051],[-105.07311,40.6105],[-105.07307,40.61049],[-105.07281,40.61049],[-105.07259,40.61048],[-105.07231,40.61046],[-105.07207,40.61046],[-105.07188,40.61046],[-105.07174,40.61034],[-105.07174,40.61019],[-105.07174,40.60999],[-105.07178,40.60978],[-105.07179,40.60958],[-105.07179,40.60944],[-105.07179,40.60936],[-105.07179,40.60921],[-105.07178,40.60905],[-105.07178,40.60883],[-105.07178,40.60859],[-105.07178,40.60833],[-105.07178,40.60808],[-105.07178,40.60782],[-105.07179,40.60758],[-105.07179,40.60739],[-105.07183,40.60723],[-105.07183,40.60719],[-105.07179,40.60701],[-105.07179,40.60683],[-105.07179,40.60662],[-105.07179,40.60636],[-105.07179,40.60611],[-105.07179,40.60584],[-105.07179,40.60558],[-105.07179,40.60532],[-105.07179,40.60507],[-105.07179,40.60484],[-105.07183,40.60463],[-105.07185,40.60446],[-105.07189,40.60432],[-105.07189,40.60427],[-105.07189,40.60427],[-105.07188,40.60418],[-105.07187,40.60408],[-105.07187,40.60395],[-105.07186,40.60383],[-105.07185,40.6037],[-105.07185,40.60357],[-105.07185,40.60348],[-105.07185,40.60339],[-105.07185,40.6033],[-105.07185,40.60321],[-105.07185,40.60313],[-105.07185,40.60304],[-105.07185,40.60295],[-105.07185,40.60286],[-105.07183,40.60279],[-105.07174,40.60277],[-105.07157,40.60277],[-105.07139,40.60277],[-105.07122,40.60277],[-105.07104,40.60277],[-105.07089,40.60276],[-105.07073,40.60276],[-105.07057,40.60276],[-105.07041,40.60276],[-105.07025,40.60276],[-105.0701,40.60276],[-105.06994,40.60276],[-105.06978,40.60277],[-105.06964,40.60278],[-105.0695,40.60279],[-105.06933,40.60283],[-105.06916,40.60288],[-105.06898,40.60292],[-105.06879,40.60297],[-105.06879,40.60297],[-105.06867,40.60302],[-105.06854,40.60307],[-105.06842,40.60311],[-105.06831,40.60314],[-105.06819,40.60318],[-105.06808,40.60322],[-105.06793,40.60325],[-105.06777,40.60328],[-105.06766,40.60328],[-105.06754,40.60327],[-105.06743,40.60327],[-105.06732,40.60327],[-105.06721,40.60327],[-105.06709,40.60327],[-105.06698,40.60327],[-105.06687,40.60327],[-105.0667,40.60326],[-105.06653,40.60326],[-105.06636,40.60326],[-105.06619,40.60325],[-105.06606,40.60328],[-105.06597,40.60334],[-105.06588,40.60339],[-105.06579,40.60345],[-105.06569,40.60351],[-105.06559,40.60358],[-105.06549,40.60365],[-105.06539,40.60372],[-105.06529,40.60379],[-105.06517,40.60383],[-105.06506,40.60386],[-105.06492,40.6039],[-105.06478,40.60393],[-105.06464,40.60393],[-105.0645,40.60393],[-105.06434,40.60392],[-105.06419,40.60391],[-105.06397,40.60394],[-105.06367,40.60395],[-105.06345,40.60395],[-105.06317,40.60395],[-105.06285,40.60395],[-105.06258,40.60395],[-105.0623,40.60395],[-105.062,40.60395],[-105.06168,40.60395],[-105.06139,40.60394],[-105.06107,40.60394],[-105.06079,40.60394],[-105.06045,40.60394],[-105.06011,40.60393],[-105.05979,40.60392],[-105.0595,40.60392],[-105.05924,40.6039],[-105.05904,40.60389],[-105.05882,40.60388],[-105.05874,40.60387],[-105.05848,40.60388],[-105.05827,40.60388],[-105.05803,40.60387],[-105.05781,40.60387],[-105.05763,40.60382],[-105.05757,40.6036],[-105.05757,40.60339],[-105.05757,40.60314],[-105.05757,40.60287],[-105.05757,40.60272],[-105.05757,40.60258],[-105.05757,40.60243],[-105.05757,40.60228],[-105.05757,40.60212],[-105.05757,40.60197],[-105.05757,40.60182],[-105.05757,40.60166],[-105.05757,40.6015],[-105.05757,40.60133],[-105.05757,40.60117],[-105.05761,40.60102],[-105.05761,40.60086],[-105.05761,40.6007],[-105.05761,40.60054],[-105.05761,40.60039],[-105.05761,40.60023],[-105.05761,40.60007],[-105.05761,40.59992],[-105.05761,40.59976],[-105.05761,40.59961],[-105.05761,40.59946],[-105.05761,40.59931],[-105.05761,40.59915],[-105.05761,40.599],[-105.05761,40.59885],[-105.05761,40.5987],[-105.05763,40.59845],[-105.05765,40.59825],[-105.05767,40.59809],[-105.05767,40.59807],[-105.05767,40.59793],[-105.05765,40.59778],[-105.05765,40.59758],[-105.05765,40.59735],[-105.05765,40.59709],[-105.05765,40.59683],[-105.05765,40.5966],[-105.05765,40.59643],[-105.05767,40.59629],[-105.05767,40.5961],[-105.05783,40.59601],[-105.05803,40.59601],[-105.05828,40.596],[-105.0586,40.59599],[-105.0589,40.59599],[-105.05922,40.59598],[-105.05948,40.59598],[-105.0597,40.59598],[-105.05988,40.59597],[-105.05992,40.59597],[-105.06007,40.59598],[-105.06031,40.59597],[-105.06059,40.59597],[-105.06087,40.59597],[-105.06121,40.59595],[-105.06156,40.59595],[-105.0619,40.59595],[-105.06226,40.59594],[-105.06244,40.59594],[-105.06282,40.59593],[-105.06297,40.59593],[-105.06335,40.59593],[-105.06369,40.59593],[-105.06405,40.59592],[-105.06423,40.59592],[-105.06442,40.59592],[-105.0646,40.59592],[-105.06478,40.59592],[-105.06496,40.59592],[-105.06516,40.59591],[-105.06534,40.59591],[-105.06552,40.59591],[-105.06572,40.5959],[-105.06589,40.59589],[-105.06607,40.59589],[-105.06627,40.59589],[-105.06645,40.59589],[-105.06663,40.59589],[-105.06699,40.59589],[-105.06735,40.59589],[-105.06768,40.59588],[-105.06802,40.59587],[-105.06834,40.59587],[-105.06854,40.59587],[-105.06876,40.59583],[-105.06878,40.59566],[-105.06878,40.59549],[-105.06879,40.59528],[-105.06879,40.59504],[-105.06879,40.59481],[-105.06882,40.59456],[-105.06882,40.59432],[-105.06885,40.59413],[-105.06888,40.594],[-105.06888,40.594],[-105.0689,40.59388],[-105.06896,40.59375],[-105.06902,40.59362],[-105.06912,40.59351],[-105.06922,40.59339],[-105.06934,40.59327],[-105.06946,40.59315],[-105.06955,40.59307],[-105.06964,40.59299],[-105.06972,40.59291],[-105.06981,40.59282],[-105.06989,40.59276],[-105.06997,40.59269],[-105.07005,40.59263],[-105.07014,40.59256],[-105.07022,40.59249],[-105.07031,40.59241],[-105.0704,40.59233],[-105.07049,40.59226],[-105.07058,40.59218],[-105.07066,40.5921],[-105.07075,40.59203],[-105.07084,40.59195],[-105.07097,40.59184],[-105.07109,40.59174],[-105.07122,40.59163],[-105.07135,40.59152],[-105.07148,40.59141],[-105.07161,40.59131],[-105.07174,40.5912],[-105.07186,40.59109],[-105.07193,40.59101],[-105.072,40.59093],[-105.072,40.59093],[-105.07209,40.59086],[-105.07217,40.59079],[-105.07225,40.59072],[-105.07233,40.59065],[-105.07241,40.59058],[-105.07248,40.59051],[-105.07256,40.59044],[-105.07264,40.59037],[-105.07272,40.5903],[-105.07279,40.59023],[-105.07288,40.59016],[-105.07297,40.59008],[-105.07305,40.59007],[-105.07312,40.59011],[-105.07318,40.59018],[-105.07325,40.59025],[-105.07332,40.59032],[-105.07338,40.59039],[-105.0735,40.59048],[-105.07363,40.59058],[-105.07379,40.59069],[-105.07395,40.59079],[-105.07411,40.59089],[-105.07427,40.59099],[-105.07443,40.5911],[-105.07459,40.5912],[-105.07475,40.5913],[-105.07492,40.59141],[-105.07507,40.59148],[-105.07523,40.59157],[-105.07541,40.59168],[-105.07559,40.59178],[-105.07575,40.59187],[-105.07595,40.59195],[-105.07611,40.59203],[-105.07629,40.59209],[-105.07646,40.59214],[-105.07666,40.59216],[-105.07684,40.59218],[-105.07704,40.59206],[-105.07708,40.59189],[-105.0771,40.59168],[-105.07714,40.59147],[-105.07714,40.59128],[-105.07714,40.59112],[-105.07714,40.59098],[-105.07714,40.5908],[-105.07714,40.59067],[-105.07714,40.59051],[-105.07714,40.59036],[-105.07718,40.59021],[-105.07718,40.59017],[-105.07714,40.59001],[-105.07714,40.58982],[-105.07714,40.58968],[-105.07714,40.58954],[-105.07714,40.5894],[-105.07714,40.58924],[-105.0773,40.58913],[-105.07756,40.58913],[-105.0778,40.58914],[-105.07803,40.58913],[-105.07827,40.58912],[-105.07847,40.58908],[-105.07867,40.58906],[-105.07883,40.5891],[-105.07887,40.58928],[-105.07877,40.58943],[-105.07867,40.58954],[-105.07865,40.5897],[-105.07863,40.58987],[-105.07859,40.59001],[-105.07859,40.59002]]}},{"type":"Feature","properties":{"name":"9:01"},"geometry":{"type":"LineString","coordinates":[[-105.07861,40.59002],[-105.07857,40.59013],[-105.07855,40.5903],[-105.07843,40.59043],[-105.07835,40.59057],[-105.07839,40.59072],[-105.07857,40.5908],[-105.07875,40.59085],[-105.07883,40.59098],[-105.07881,40.59114],[-105.07881,40.59129],[-105.07881,40.59147],[-105.07883,40.59163],[-105.07887,40.5918],[-105.07887,40.59197],[-105.07887,40.5921],[-105.07903,40.59218],[-105.07923,40.5922],[-105.07943,40.5922],[-105.07964,40.59221],[-105.07982,40.59223],[-105.08002,40.59223],[-105.08008,40.59223],[-105.08028,40.59223],[-105.08052,40.59223],[-105.08078,40.59223],[-105.08109,40.59223],[-105.08139,40.59222],[-105.08173,40.59222],[-105.08205,40.59222],[-105.08236,40.59222],[-105.08266,40.59222],[-105.08296,40.59222],[-105.08326,40.59222],[-105.08354,40.59222],[-105.08378,40.59222],[-105.08401,40.59223],[-105.08425,40.59223],[-105.08447,40.59227],[-105.08459,40.59227],[-105.08479,40.59225],[-105.08503,40.59223],[-105.08529,40.59223],[-105.08554,40.59223],[-105.0858,40.59223],[-105.08606,40.59223],[-105.08634,40.59223],[-105.08664,40.59223],[-105.08693,40.59223],[-105.08721,40.59223],[-105.08745,40.59224],[-105.08767,40.59225],[-105.08789,40.59227],[-105.08809,40.59227],[-105.08815,40.59227],[-105.08835,40.59226],[-105.08854,40.59225],[-105.08876,40.59224],[-105.08902,40.59224],[-105.08932,40.59224],[-105.0896,40.59224],[-105.08988,40.59224],[-105.09017,40.59225],[-105.09045,40.59225],[-105.09067,40.59225],[-105.09087,40.59225],[-105.09105,40.59232],[-105.09105,40.59243],[-105.09109,40.5926],[-105.09109,40.59277],[-105.09109,40.59298],[-105.09109,40.59322],[-105.09111,40.59347],[-105.09111,40.59373],[-105.09111,40.594],[-105.09111,40.59427],[-105.09111,40.59453],[-105.09109,40.59478],[-105.09105,40.59504],[-105.09105,40.59524],[-105.09105,40.59541],[-105.09103,40.59545],[-105.09105,40.59565],[-105.09107,40.59581],[-105.09105,40.59598],[-105.09105,40.59611],[-105.09111,40.59625],[-105.09135,40.59629],[-105.09154,40.59633],[-105.09158,40.59633],[-105.09176,40.5963],[-105.09194,40.59629],[-105.0922,40.59629],[-105.0925,40.59629],[-105.0928,40.59629],[-105.0931,40.59629],[-105.09339,40.59629],[-105.09367,40.59629],[-105.09393,40.59629],[-105.09407,40.59629],[-105.09433,40.59629],[-105.09457,40.59629],[-105.09482,40.59629],[-105.09506,40.59629],[-105.09528,40.5963],[-105.09548,40.59631],[-105.09574,40.59635],[-105.09593,40.59637],[-105.09619,40.59637],[-105.09649,40.59637],[-105.09683,40.59637],[-105.09717,40.59637],[-105.0975,40.59638],[-105.09782,40.59639],[-105.09816,40.5964],[-105.09846,40.5964],[-105.09874,40.59643],[-105.09893,40.59644],[-105.09904,40.59644],[-105.09925,40.59642],[-105.09949,40.59641],[-105.09973,40.59642],[-105.09999,40.59642],[-105.10031,40.59642],[-105.10061,40.59642],[-105.10094,40.59642],[-105.10128,40.59643],[-105.10162,40.59643],[-105.10197,40.59644],[-105.10229,40.59644],[-105.10263,40.59644],[-105.10299,40.59644],[-105.10333,40.59644],[-105.10367,40.59645],[-105.10402,40.59647],[-105.10436,40.59647],[-105.1047,40.59647],[-105.10501,40.59647],[-105.10531,40.59647],[-105.10561,40.59647],[-105.10581,40.59647],[-105.10599,40.59655],[-105.10601,40.59676],[-105.10599,40.59695],[-105.10597,40.59717],[-105.10597,40.59739],[-105.10595,40.5976],[-105.10595,40.59782],[-105.10595,40.59801],[-105.10595,40.59819],[-105.10601,40.59836],[-105.10627,40.5984],[-105.1065,40.5984],[-105.10676,40.59841],[-105.10704,40.59843],[-105.10726,40.59846],[-105.10748,40.59846],[-105.10752,40.59846],[-105.10772,40.59844],[-105.10794,40.59842],[-105.10818,40.59842],[-105.10845,40.59842],[-105.10873,40.59842],[-105.10899,40.59842],[-105.10919,40.59842],[-105.10937,40.59827],[-105.10939,40.59811],[-105.10939,40.59791],[-105.10939,40.59768],[-105.10943,40.59748],[-105.10945,40.59728],[-105.10947,40.59713],[-105.10947,40.59698],[-105.10947,40.59696],[-105.10945,40.59676],[-105.10945,40.59663],[-105.10958,40.59649],[-105.10978,40.5965],[-105.11006,40.5965],[-105.11036,40.5965],[-105.1107,40.59649],[-105.11105,40.59649],[-105.11125,40.59649],[-105.11141,40.59649],[-105.11161,40.59649],[-105.11181,40.5965],[-105.11199,40.5965],[-105.11217,40.5965],[-105.11253,40.5965],[-105.11288,40.5965],[-105.11324,40.59649],[-105.11356,40.5965],[-105.1139,40.59651],[-105.11423,40.59652],[-105.11443,40.59653],[-105.11463,40.59658],[-105.11485,40.59666],[-105.11509,40.59659],[-105.11529,40.59655],[-105.11554,40.59655],[-105.11582,40.59654],[-105.1161,40.59655],[-105.11636,40.59656],[-105.11654,40.5966],[-105.11674,40.59661],[-105.11674,40.59661],[-105.11704,40.5966],[-105.11726,40.59657],[-105.11749,40.59656],[-105.11781,40.59656],[-105.11813,40.59657],[-105.11847,40.59657],[-105.11865,40.59658],[-105.119,40.59659],[-105.1192,40.59659],[-105.11954,40.59659],[-105.1199,40.5966],[-105.12026,40.5966],[-105.12045,40.5966],[-105.12061,40.59661],[-105.12099,40.59661],[-105.12135,40.59663],[-105.12168,40.59663],[-105.12198,40.59663],[-105.1222,40.59664],[-105.12236,40.59664],[-105.12262,40.59665],[-105.12284,40.59665],[-105.12314,40.59665],[-105.12343,40.59666],[-105.12377,40.59667],[-105.12409,40.59667],[-105.12445,40.59667],[-105.12465,40.59667],[-105.12482,40.59667],[-105.12502,40.59667],[-105.12518,40.59667],[-105.12538,40.59667],[-105.12558,40.59667],[-105.12576,40.59668],[-105.12594,40.59668],[-105.12628,40.59668],[-105.12663,40.59668],[-105.12693,40.59669],[-105.12715,40.59669],[-105.12731,40.59669],[-105.12751,40.59669],[-105.12771,40.59669],[-105.12796,40.59669],[-105.12826,40.59669],[-105.12856,40.5967],[-105.12888,40.5967],[-105.12922,40.5967],[-105.12953,40.5967],[-105.12981,40.5967],[-105.13009,40.5967],[-105.13027,40.5967],[-105.13055,40.5967],[-105.13079,40.59671],[-105.13104,40.59671],[-105.13132,40.59671],[-105.13166,40.59671],[-105.13198,40.59671],[-105.13229,40.59671],[-105.13261,40.59672],[-105.13291,40.59672],[-105.13313,40.59673],[-105.13331,40.59673],[-105.13351,40.59673],[-105.13372,40.59669],[-105.13376,40.59656],[-105.13376,40.59649],[-105.13376,40.59631],[-105.13376,40.59611],[-105.13376,40.59587],[-105.13376,40.5956],[-105.13376,40.59547],[-105.13376,40.59531],[-105.13376,40.59517],[-105.13376,40.59501],[-105.13376,40.59486],[-105.13376,40.5947],[-105.13376,40.59454],[-105.13376,40.59439],[-105.13376,40.59423],[-105.13376,40.59407],[-105.13376,40.59392],[-105.13376,40.59376],[-105.13376,40.5936],[-105.13376,40.59344],[-105.13376,40.59327],[-105.13379,40.59312],[-105.13379,40.59296],[-105.13379,40.59281],[-105.13379,40.59265],[-105.13379,40.59249],[-105.13379,40.59233],[-105.13379,40.59217],[-105.13379,40.592],[-105.13379,40.59184],[-105.13379,40.59169],[-105.13379,40.59154],[-105.1338,40.59131],[-105.13383,40.59117],[-105.13383,40.5911],[-105.1338,40.5909],[-105.13379,40.59071],[-105.1338,40.59048],[-105.13379,40.59023],[-105.13376,40.59001],[-105.13376,40.58982],[-105.13376,40.58966],[-105.13375,40.58948],[-105.13351,40.58945],[-105.13327,40.58945],[-105.13299,40.58944],[-105.13277,40.58944],[-105.13255,40.58944],[-105.13233,40.58944],[-105.13214,40.58945],[-105.13194,40.58945],[-105.13194,40.58945],[-105.13174,40.58944],[-105.13152,40.58944],[-105.1312,40.58944],[-105.13088,40.58943],[-105.13055,40.58942],[-105.13019,40.58942],[-105.12981,40.58941],[-105.12953,40.5894],[-105.12929,40.5894],[-105.12918,40.5894],[-105.12892,40.5894],[-105.12866,40.5894],[-105.12836,40.5894],[-105.12802,40.58939],[-105.12766,40.58938],[-105.12749,40.58938],[-105.12731,40.58938],[-105.12711,40.58938],[-105.12695,40.58937],[-105.12675,40.58937],[-105.12657,40.58936],[-105.12622,40.58935],[-105.12592,40.58934],[-105.12566,40.58933],[-105.12548,40.58932],[-105.12544,40.58932],[-105.12526,40.58932],[-105.12502,40.58932],[-105.12476,40.58931],[-105.12445,40.58931],[-105.12413,40.5893],[-105.12377,40.58929],[-105.12357,40.58929],[-105.12339,40.58928],[-105.12323,40.58928],[-105.12304,40.58928],[-105.12284,40.58928],[-105.12266,40.58928],[-105.12246,40.58927],[-105.12226,40.58926],[-105.12208,40.58926],[-105.12188,40.58925],[-105.12168,40.58925],[-105.12151,40.58924],[-105.12131,40.58924],[-105.12115,40.58924],[-105.12095,40.58924],[-105.12075,40.58924],[-105.12059,40.58924],[-105.12041,40.58924],[-105.12005,40.58923],[-105.11976,40.58922],[-105.11954,40.5892],[-105.11934,40.58916],[-105.11928,40.58916],[-105.1191,40.5892],[-105.11888,40.58921],[-105.11861,40.5892],[-105.11829,40.5892],[-105.11795,40.58921],[-105.11761,40.58922],[-105.11741,40.58922],[-105.11723,40.58922],[-105.11704,40.58922],[-105.11686,40.58922],[-105.11668,40.58922],[-105.11648,40.58921],[-105.11612,40.5892],[-105.1158,40.5892],[-105.11553,40.58919],[-105.11531,40.58918],[-105.11513,40.58918],[-105.11491,40.58918],[-105.11469,40.58917],[-105.11439,40.58917],[-105.11407,40.58917],[-105.11372,40.58917],[-105.11352,40.58918],[-105.11334,40.58918],[-105.11316,40.58918],[-105.11296,40.58917],[-105.11261,40.58917],[-105.11225,40.58917],[-105.11207,40.58917],[-105.11171,40.58916],[-105.11137,40.58916],[-105.11104,40.58915],[-105.11074,40.58914],[-105.11054,40.58914],[-105.11046,40.58914],[-105.1102,40.58916],[-105.10996,40.58916],[-105.10968,40.58916],[-105.10937,40.58916],[-105.10903,40.58915],[-105.10871,40.58915],[-105.10835,40.58914],[-105.108,40.58913],[-105.10768,40.58913],[-105.10736,40.58913],[-105.10706,40.58912],[-105.10682,40.5891],[-105.10661,40.5891],[-105.10657,40.5891],[-105.10631,40.58911],[-105.10609,40.58912],[-105.10579,40.58912],[-105.10549,40.58911],[-105.10514,40.58911],[-105.1048,40.58911],[-105.10448,40.5891],[-105.10414,40.5891],[-105.1038,40.58909],[-105.10346,40.58908],[-105.10313,40.58908],[-105.10281,40.58908],[-105.10251,40.58908],[-105.10219,40.58906],[-105.102,40.58906],[-105.10184,40.58905],[-105.10158,40.58907],[-105.10134,40.58908],[-105.10106,40.58908],[-105.10078,40.58908],[-105.10043,40.58908],[-105.10009,40.58908],[-105.09975,40.58908],[-105.09939,40.58908],[-105.09904,40.58908],[-105.0987,40.58907],[-105.09836,40.58906],[-105.09802,40.58905],[-105.09767,40.58904],[-105.09741,40.58904],[-105.09721,40.58902],[-105.09711,40.58902],[-105.09683,40.58904],[-105.09661,40.58904],[-105.09637,40.58904],[-105.09607,40.58902],[-105.09578,40.58901],[-105.0955,40.58901],[-105.09526,40.58901],[-105.09504,40.589],[-105.09496,40.589],[-105.09476,40.58901],[-105.09457,40.58901],[-105.09429,40.58901],[-105.09397,40.58901],[-105.09363,40.58901],[-105.09329,40.58901],[-105.09293,40.589],[-105.0926,40.589],[-105.09224,40.58899],[-105.0919,40.58899],[-105.09158,40.58898],[-105.09133,40.58894],[-105.09111,40.58889],[-105.09105,40.58888],[-105.09087,40.58893],[-105.09067,40.58892],[-105.09039,40.58891],[-105.09007,40.5889],[-105.08976,40.5889],[-105.08942,40.5889],[-105.08908,40.5889],[-105.08876,40.5889],[-105.0884,40.5889],[-105.08805,40.58889],[-105.08777,40.58889],[-105.08757,40.58888],[-105.08737,40.58886],[-105.08735,40.58886],[-105.08711,40.58889],[-105.08689,40.58889],[-105.0866,40.58888],[-105.0863,40.58888],[-105.08594,40.58888],[-105.08558,40.58888],[-105.08543,40.58888],[-105.08505,40.58888],[-105.08473,40.58888],[-105.08443,40.58885],[-105.08421,40.58884],[-105.08404,40.58883],[-105.08404,40.58883],[-105.08389,40.58893],[-105.08364,40.58894],[-105.0834,40.58894],[-105.08316,40.58895],[-105.08288,40.58894],[-105.0826,40.58894],[-105.08231,40.58894],[-105.08203,40.58894],[-105.08173,40.58894],[-105.08145,40.58894],[-105.08115,40.58895],[-105.08085,40.58895],[-105.08054,40.58894],[-105.08024,40.58894],[-105.07996,40.58894],[-105.07968,40.58896],[-105.07945,40.58897],[-105.07923,40.58898],[-105.07903,40.58898],[-105.07883,40.58905],[-105.07883,40.58923],[-105.07877,40.58938],[-105.07863,40.5895],[-105.07861,40.58969],[-105.07859,40.58983],[-105.07855,40.58997],[-105.07853,40.59003]]}},{"type":"Feature","properties":{"name":"91:01"},"geometry":{"type":"LineString","coordinates":[[-105.09904,40.59644],[-105.09925,40.59642],[-105.09949,40.59641],[-105.09973,40.59642],[-105.09999,40.59642],[-105.10031,40.59642],[-105.10061,40.59642],[-105.10094,40.59642],[-105.10128,40.59643],[-105.10162,40.59643],[-105.10197,40.59644],[-105.10229,40.59644],[-105.10263,40.59644],[-105.10299,40.59644],[-105.10333,40.59644],[-105.10367,40.59645],[-105.10402,40.59647],[-105.10436,40.59647],[-105.1047,40.59647],[-105.10501,40.59647],[-105.10531,40.59647],[-105.10561,40.59647],[-105.10581,40.59647],[-105.10599,40.59655],[-105.10601,40.59676],[-105.10599,40.59695],[-105.10597,40.59717],[-105.10597,40.59739],[-105.10595,40.5976],[-105.10595,40.59782],[-105.10595,40.59801],[-105.10595,40.59819],[-105.10601,40.59836],[-105.10627,40.5984],[-105.1065,40.5984],[-105.10676,40.59841],[-105.10704,40.59843],[-105.10726,40.59846],[-105.10748,40.59846],[-105.10752,40.59846],[-105.10772,40.59844],[-105.10794,40.59842],[-105.10818,40.59842],[-105.10845,40.59842],[-105.10873,40.59842],[-105.10899,40.59842],[-105.10919,40.59842],[-105.10937,40.59827],[-105.10939,40.59811],[-105.10939,40.59791],[-105.10939,40.59768],[-105.10943,40.59748],[-105.10945,40.59728],[-105.10947,40.59713],[-105.10947,40.59698],[-105.10947,40.59696],[-105.10949,40.59681],[-105.10949,40.59666],[-105.10958,40.59653],[-105.10986,40.59653],[-105.11012,40.59655],[-105.11038,40.59653],[-105.11072,40.59653],[-105.11104,40.59653],[-105.11137,40.59653],[-105.11173,40.59653],[-105.11191,40.59654],[-105.11209,40.59654],[-105.11247,40.59654],[-105.1128,40.59654],[-105.11314,40.59654],[-105.11346,40.59654],[-105.1138,40.59655],[-105.1141,40.59656],[-105.11429,40.59656],[-105.11453,40.59658],[-105.11475,40.59666],[-105.11495,40.5967],[-105.11505,40.5966],[-105.11501,40.59643],[-105.11495,40.59629],[-105.11491,40.59609],[-105.11491,40.59587],[-105.11491,40.59562],[-105.11491,40.59534],[-105.11491,40.5952],[-105.11491,40.59505],[-105.11491,40.59492],[-105.11491,40.59477],[-105.11495,40.59462],[-105.11495,40.59447],[-105.11495,40.59433],[-105.11495,40.59419],[-105.11495,40.59404],[-105.11495,40.5939],[-105.11495,40.59375],[-105.11495,40.59361],[-105.11495,40.59346],[-105.11495,40.59331],[-105.11495,40.59317],[-105.11495,40.59302],[-105.11497,40.59287],[-105.11497,40.59273],[-105.11497,40.59258],[-105.11497,40.59244],[-105.11497,40.59216],[-105.11497,40.59189],[-105.11499,40.59162],[-105.11499,40.59134],[-105.11499,40.59106],[-105.11499,40.59091],[-105.11499,40.59078],[-105.11501,40.59063],[-105.11501,40.59049],[-105.11501,40.59035],[-105.11499,40.59021],[-105.11499,40.58995],[-105.11499,40.58972],[-105.11499,40.58955],[-105.11499,40.5894],[-105.11495,40.58925],[-105.11469,40.5892],[-105.11443,40.5892],[-105.11415,40.5892],[-105.11384,40.58921],[-105.11346,40.58921],[-105.1133,40.58921],[-105.1131,40.58921],[-105.1129,40.58921],[-105.11271,40.5892],[-105.1125,40.5892],[-105.11231,40.5892],[-105.11211,40.5892],[-105.11193,40.5892],[-105.11173,40.5892],[-105.11137,40.5892],[-105.11107,40.58917],[-105.11084,40.58917],[-105.11066,40.58916],[-105.11052,40.58916],[-105.1102,40.58916],[-105.10996,40.58916],[-105.10968,40.58916],[-105.10937,40.58916],[-105.10903,40.58915],[-105.10871,40.58915],[-105.10835,40.58914],[-105.108,40.58913],[-105.10768,40.58913],[-105.10736,40.58913],[-105.10706,40.58912],[-105.10682,40.5891],[-105.10661,40.5891],[-105.10657,40.5891],[-105.10631,40.58911],[-105.10609,40.58912],[-105.10579,40.58912],[-105.10549,40.58911],[-105.10514,40.58911],[-105.1048,40.58911],[-105.10448,40.5891],[-105.10414,40.5891],[-105.1038,40.58909],[-105.10346,40.58908],[-105.10313,40.58908],[-105.10281,40.58908],[-105.10251,40.58908],[-105.10219,40.58906],[-105.102,40.58906],[-105.10184,40.58905],[-105.10158,40.58907],[-105.10134,40.58908],[-105.10106,40.58908],[-105.10078,40.58908],[-105.10043,40.58908],[-105.10009,40.58908],[-105.09975,40.58908],[-105.09939,40.58908],[-105.09904,40.58908],[-105.0987,40.58907],[-105.09836,40.58906],[-105.09802,40.58905],[-105.09767,40.58904],[-105.09741,40.58904],[-105.09721,40.58902],[-105.09711,40.58902],[-105.09683,40.58904],[-105.09661,40.58904],[-105.09637,40.58904],[-105.09607,40.58902],[-105.09578,40.58901],[-105.0955,40.58901],[-105.09526,40.58901],[-105.09504,40.589],[-105.09496,40.589],[-105.09476,40.58901],[-105.09457,40.58901],[-105.09429,40.58901],[-105.09397,40.58901],[-105.09363,40.58901],[-105.09329,40.58901],[-105.09293,40.589],[-105.0926,40.589],[-105.09224,40.58899],[-105.0919,40.58899],[-105.09158,40.58898],[-105.09133,40.58894],[-105.09111,40.58889],[-105.09105,40.58888],[-105.09087,40.58893],[-105.09067,40.58892],[-105.09039,40.58891],[-105.09007,40.5889],[-105.08976,40.5889],[-105.08942,40.5889],[-105.08908,40.5889],[-105.08876,40.5889],[-105.0884,40.5889],[-105.08805,40.58889],[-105.08777,40.58889],[-105.08757,40.58888],[-105.08737,40.58886],[-105.08735,40.58886],[-105.08711,40.58889],[-105.08689,40.58889],[-105.0866,40.58888],[-105.0863,40.58888],[-105.08594,40.58888],[-105.08558,40.58888],[-105.08543,40.58888],[-105.08505,40.58888],[-105.08473,40.58888],[-105.08443,40.58885],[-105.08421,40.58884],[-105.08404,40.58883],[-105.08404,40.58883],[-105.08389,40.58893],[-105.08364,40.58894],[-105.0834,40.58894],[-105.08316,40.58895],[-105.08288,40.58894],[-105.0826,40.58894],[-105.08231,40.58894],[-105.08203,40.58894],[-105.08173,40.58894],[-105.08145,40.58894],[-105.08115,40.58895],[-105.08085,40.58895],[-105.08054,40.58894],[-105.08024,40.58894],[-105.07996,40.58894],[-105.07968,40.58896],[-105.07945,40.58897],[-105.07923,40.58898],[-105.07903,40.58898],[-105.07883,40.58905],[-105.07883,40.58923],[-105.07877,40.58938],[-105.07863,40.5895],[-105.07861,40.58969],[-105.07859,40.58983],[-105.07855,40.58997],[-105.07853,40.59003]]}},{"type":"Feature","properties":{"name":"92:01"},"geometry":{"type":"LineString","coordinates":[[-105.07861,40.59002],[-105.07855,40.59019],[-105.07849,40.59034],[-105.07839,40.59048],[-105.07833,40.59061],[-105.07835,40.59077],[-105.07859,40.59081],[-105.07877,40.59083],[-105.07903,40.59083],[-105.07923,40.59083],[-105.07945,40.59083],[-105.07966,40.59083],[-105.07986,40.59083],[-105.08008,40.59083],[-105.08026,40.59083],[-105.08048,40.59084],[-105.08066,40.59074],[-105.08066,40.59061],[-105.08066,40.59043],[-105.08068,40.59025],[-105.08068,40.59004],[-105.08068,40.58983],[-105.08068,40.58963],[-105.08068,40.58944],[-105.08068,40.58928],[-105.0807,40.5891],[-105.08085,40.58901],[-105.08111,40.58904],[-105.08133,40.58904],[-105.08137,40.58904],[-105.08169,40.58897],[-105.08193,40.58896],[-105.08221,40.58896],[-105.0825,40.58897],[-105.08284,40.58897],[-105.08316,40.58897],[-105.0835,40.58897],[-105.08385,40.58897],[-105.08415,40.58898],[-105.08439,40.589],[-105.08465,40.58901],[-105.08469,40.58901],[-105.08495,40.589],[-105.08515,40.58898],[-105.08543,40.58898],[-105.0857,40.58898],[-105.08604,40.58898],[-105.08634,40.58898],[-105.08668,40.58898],[-105.08701,40.58898],[-105.08733,40.58898],[-105.08763,40.589],[-105.08789,40.58902],[-105.08807,40.58904],[-105.08825,40.58904],[-105.08846,40.58902],[-105.0887,40.589],[-105.08896,40.58901],[-105.08928,40.58901],[-105.0896,40.58901],[-105.08992,40.58901],[-105.09027,40.58901],[-105.09061,40.58901],[-105.09093,40.58902],[-105.09121,40.58905],[-105.09143,40.58908],[-105.0915,40.58908],[-105.0917,40.58908],[-105.09194,40.58906],[-105.0922,40.58907],[-105.0925,40.58906],[-105.09282,40.58906],[-105.09314,40.58906],[-105.09345,40.58906],[-105.09377,40.58907],[-105.09407,40.58906],[-105.09439,40.58906],[-105.0947,40.58906],[-105.095,40.58907],[-105.09532,40.58908],[-105.0956,40.58908],[-105.09588,40.58908],[-105.09611,40.58908],[-105.09637,40.58908],[-105.09641,40.58909],[-105.09663,40.58908],[-105.09685,40.58908],[-105.09715,40.58908],[-105.09744,40.58908],[-105.09776,40.5891],[-105.0981,40.58911],[-105.09844,40.58911],[-105.09878,40.58911],[-105.09914,40.58911],[-105.09949,40.58911],[-105.09985,40.58911],[-105.10017,40.58912],[-105.10053,40.58913],[-105.10084,40.58913],[-105.10116,40.58914],[-105.1014,40.58915],[-105.1016,40.58916],[-105.10162,40.58916],[-105.10188,40.58914],[-105.10211,40.58914],[-105.10239,40.58915],[-105.10271,40.58915],[-105.10301,40.58915],[-105.10335,40.58915],[-105.1037,40.58916],[-105.10402,40.58916],[-105.10438,40.58916],[-105.1047,40.58918],[-105.10496,40.5892],[-105.10514,40.58921],[-105.10515,40.58921],[-105.10539,40.5892],[-105.10563,40.5892],[-105.10591,40.5892],[-105.10623,40.5892],[-105.10657,40.5892],[-105.1069,40.5892],[-105.10722,40.5892],[-105.10748,40.58922],[-105.10768,40.58924],[-105.10778,40.58924],[-105.108,40.58921],[-105.10825,40.58921],[-105.10853,40.58921],[-105.10887,40.58921],[-105.10921,40.58921],[-105.10954,40.58922],[-105.10988,40.58924],[-105.11018,40.58925],[-105.11042,40.58928],[-105.11058,40.58929],[-105.11078,40.58926],[-105.11101,40.58924],[-105.11129,40.58924],[-105.11159,40.58924],[-105.11193,40.58924],[-105.11225,40.58924],[-105.11257,40.58924],[-105.11292,40.58926],[-105.11324,40.58927],[-105.11352,40.58928],[-105.11372,40.5893],[-105.1139,40.58931],[-105.11411,40.5893],[-105.11433,40.58929],[-105.11455,40.58929],[-105.11475,40.5893],[-105.11497,40.5893],[-105.11523,40.5893],[-105.11554,40.58931],[-105.11584,40.58931],[-105.11618,40.58931],[-105.11648,40.58931],[-105.11678,40.58931],[-105.1171,40.58932],[-105.11741,40.58932],[-105.11771,40.58932],[-105.11801,40.58933],[-105.11829,40.58934],[-105.11865,40.58935],[-105.11898,40.58935],[-105.11936,40.58935],[-105.11954,40.58935],[-105.1199,40.58935],[-105.12026,40.58935],[-105.12043,40.58936],[-105.12079,40.58936],[-105.12115,40.58936],[-105.12149,40.58937],[-105.12168,40.58938],[-105.12204,40.58938],[-105.1224,40.58938],[-105.12274,40.58938],[-105.12305,40.58939],[-105.12333,40.58939],[-105.12355,40.5894],[-105.12373,40.58935],[-105.12377,40.58917],[-105.12377,40.58897],[-105.12375,40.58882],[-105.12377,40.58868],[-105.12377,40.58854],[-105.12373,40.58838],[-105.12355,40.58839],[-105.12341,40.5885],[-105.12339,40.58866],[-105.12349,40.58881],[-105.12365,40.58893],[-105.12369,40.58908],[-105.12367,40.58923],[-105.12361,40.58935],[-105.12333,40.58937],[-105.12305,40.58937],[-105.12276,40.58938],[-105.1224,40.58935],[-105.12206,40.58934],[-105.12171,40.58933],[-105.12137,40.58932],[-105.12101,40.58931],[-105.12065,40.58931],[-105.12031,40.5893],[-105.12,40.5893],[-105.11976,40.58928],[-105.11956,40.58926],[-105.11936,40.58924],[-105.11934,40.58924],[-105.1191,40.5892],[-105.11888,40.58921],[-105.11861,40.5892],[-105.11829,40.5892],[-105.11795,40.58921],[-105.11761,40.58922],[-105.11741,40.58922],[-105.11723,40.58922],[-105.11704,40.58922],[-105.11686,40.58922],[-105.11668,40.58922],[-105.11648,40.58921],[-105.11612,40.5892],[-105.1158,40.5892],[-105.11553,40.58919],[-105.11531,40.58918],[-105.11513,40.58918],[-105.11491,40.58918],[-105.11469,40.58917],[-105.11439,40.58917],[-105.11407,40.58917],[-105.11372,40.58917],[-105.11352,40.58918],[-105.11334,40.58918],[-105.11316,40.58918],[-105.11296,40.58917],[-105.11261,40.58917],[-105.11225,40.58917],[-105.11207,40.58917],[-105.11171,40.58916],[-105.11137,40.58916],[-105.11104,40.58915],[-105.11074,40.58914],[-105.11054,40.58914],[-105.11046,40.58914],[-105.1102,40.58916],[-105.10996,40.58916],[-105.10968,40.58916],[-105.10937,40.58916],[-105.10903,40.58915],[-105.10871,40.58915],[-105.10835,40.58914],[-105.108,40.58913],[-105.10768,40.58913],[-105.10736,40.58913],[-105.10706,40.58912],[-105.10682,40.5891],[-105.10661,40.5891],[-105.10657,40.5891],[-105.10631,40.58911],[-105.10609,40.58912],[-105.10579,40.58912],[-105.10549,40.58911],[-105.10514,40.58911],[-105.1048,40.58911],[-105.10448,40.5891],[-105.10414,40.5891],[-105.1038,40.58909],[-105.10346,40.58908],[-105.10313,40.58908],[-105.10281,40.58908],[-105.10251,40.58908],[-105.10219,40.58906],[-105.102,40.58906],[-105.10184,40.58905],[-105.10158,40.58907],[-105.10134,40.58908],[-105.10106,40.58908],[-105.10078,40.58908],[-105.10043,40.58908],[-105.10009,40.58908],[-105.09975,40.58908],[-105.09939,40.58908],[-105.09904,40.58908],[-105.0987,40.58907],[-105.09836,40.58906],[-105.09802,40.58905],[-105.09767,40.58904],[-105.09741,40.58904],[-105.09721,40.58902],[-105.09711,40.58902],[-105.09683,40.58904],[-105.09661,40.58904],[-105.09637,40.58904],[-105.09607,40.58902],[-105.09578,40.58901],[-105.0955,40.58901],[-105.09526,40.58901],[-105.09504,40.589],[-105.09496,40.589],[-105.09476,40.58901],[-105.09457,40.58901],[-105.09429,40.58901],[-105.09397,40.58901],[-105.09363,40.58901],[-105.09329,40.58901],[-105.09293,40.589],[-105.0926,40.589],[-105.09224,40.58899],[-105.0919,40.58899],[-105.09158,40.58898],[-105.09133,40.58894],[-105.09111,40.58889],[-105.09105,40.58888],[-105.09087,40.58893],[-105.09067,40.58892],[-105.09039,40.58891],[-105.09007,40.5889],[-105.08976,40.5889],[-105.08942,40.5889],[-105.08908,40.5889],[-105.08876,40.5889],[-105.0884,40.5889],[-105.08805,40.58889],[-105.08777,40.58889],[-105.08757,40.58888],[-105.08737,40.58886],[-105.08735,40.58886],[-105.08711,40.58889],[-105.08689,40.58889],[-105.0866,40.58888],[-105.0863,40.58888],[-105.08594,40.58888],[-105.08558,40.58888],[-105.08543,40.58888],[-105.08505,40.58888],[-105.08473,40.58888],[-105.08443,40.58885],[-105.08421,40.58884],[-105.08404,40.58883],[-105.08404,40.58883],[-105.08389,40.58893],[-105.08364,40.58894],[-105.0834,40.58894],[-105.08316,40.58895],[-105.08288,40.58894],[-105.0826,40.58894],[-105.08231,40.58894],[-105.08203,40.58894],[-105.08173,40.58894],[-105.08145,40.58894],[-105.08115,40.58895],[-105.08085,40.58895],[-105.08054,40.58894],[-105.08024,40.58894],[-105.07996,40.58894],[-105.07968,40.58896],[-105.07945,40.58897],[-105.07923,40.58898],[-105.07903,40.58898],[-105.07883,40.58905],[-105.07883,40.58923],[-105.07877,40.58938],[-105.07863,40.5895],[-105.07861,40.58969],[-105.07859,40.58983],[-105.07855,40.58997],[-105.07853,40.59003]]}},{"type":"Feature","properties":{"name":"FLEX:01"},"geometry":{"type":"LineString","coordinates":[[-105.0764,40.42408],[-105.0764,40.42388],[-105.0764,40.4237],[-105.0764,40.42356],[-105.07653,40.42338],[-105.07672,40.42332],[-105.0769,40.42327],[-105.07714,40.42322],[-105.07726,40.42332],[-105.0773,40.42348],[-105.07736,40.42367],[-105.07742,40.42388],[-105.07748,40.42413],[-105.0775,40.4244],[-105.0775,40.42454],[-105.0775,40.42468],[-105.0775,40.42482],[-105.0775,40.42497],[-105.0775,40.42513],[-105.0775,40.42527],[-105.0775,40.42543],[-105.0775,40.42558],[-105.0775,40.42574],[-105.07748,40.42589],[-105.07748,40.42604],[-105.07748,40.4262],[-105.07748,40.42636],[-105.07748,40.42652],[-105.07748,40.42667],[-105.07748,40.42683],[-105.07748,40.42698],[-105.07746,40.42713],[-105.07746,40.42728],[-105.07746,40.42743],[-105.07746,40.42757],[-105.07746,40.42773],[-105.07746,40.42787],[-105.07746,40.42802],[-105.07746,40.42818],[-105.07746,40.42833],[-105.07746,40.42849],[-105.07744,40.42863],[-105.07744,40.42878],[-105.07744,40.42893],[-105.07742,40.42907],[-105.07742,40.42923],[-105.07742,40.42936],[-105.07742,40.42961],[-105.07742,40.42984],[-105.07742,40.43002],[-105.0774,40.43015],[-105.0774,40.4303],[-105.0774,40.43049],[-105.0774,40.4307],[-105.07736,40.43087],[-105.07736,40.43104],[-105.07736,40.43117],[-105.07736,40.43132],[-105.07736,40.43141],[-105.07736,40.43159],[-105.07736,40.43181],[-105.07736,40.432],[-105.07736,40.43222],[-105.07736,40.43246],[-105.07736,40.43273],[-105.07736,40.43287],[-105.07736,40.43301],[-105.07736,40.43315],[-105.07736,40.43329],[-105.07736,40.43344],[-105.07734,40.4336],[-105.07734,40.43375],[-105.07732,40.4339],[-105.07732,40.43406],[-105.07732,40.43421],[-105.07732,40.43437],[-105.07732,40.43453],[-105.07732,40.43469],[-105.07732,40.43484],[-105.07732,40.435],[-105.07732,40.43515],[-105.0773,40.4353],[-105.0773,40.43545],[-105.0773,40.43569],[-105.07728,40.43589],[-105.07728,40.43606],[-105.07726,40.43624],[-105.07726,40.43628],[-105.07728,40.43642],[-105.0773,40.43663],[-105.0773,40.43682],[-105.0773,40.43702],[-105.07728,40.43724],[-105.07728,40.43748],[-105.0773,40.43773],[-105.07728,40.43798],[-105.07728,40.43824],[-105.07728,40.43849],[-105.07726,40.43873],[-105.07726,40.43894],[-105.07726,40.43911],[-105.07726,40.4393],[-105.07726,40.43937],[-105.07726,40.43953],[-105.07728,40.43967],[-105.07728,40.43984],[-105.07728,40.44005],[-105.07728,40.44028],[-105.07728,40.44054],[-105.07728,40.44069],[-105.07728,40.44082],[-105.07728,40.44097],[-105.07728,40.44112],[-105.07728,40.44128],[-105.07728,40.44144],[-105.07728,40.4416],[-105.07728,40.44176],[-105.07728,40.44193],[-105.07728,40.44209],[-105.07728,40.44227],[-105.07728,40.44243],[-105.07728,40.4426],[-105.07728,40.44277],[-105.07728,40.44293],[-105.07728,40.44311],[-105.07728,40.44327],[-105.07728,40.44343],[-105.07728,40.44357],[-105.07728,40.44372],[-105.07728,40.44386],[-105.07726,40.4441],[-105.07726,40.44431],[-105.07724,40.44449],[-105.07724,40.44467],[-105.07724,40.44472],[-105.07724,40.44486],[-105.07724,40.44503],[-105.07726,40.44524],[-105.07728,40.44544],[-105.07728,40.44565],[-105.07728,40.44591],[-105.07728,40.44619],[-105.07728,40.44634],[-105.07728,40.44649],[-105.07728,40.44665],[-105.07728,40.44681],[-105.07728,40.44698],[-105.07728,40.44714],[-105.07728,40.44731],[-105.07728,40.44748],[-105.07728,40.44764],[-105.07728,40.44781],[-105.07728,40.44798],[-105.07728,40.44815],[-105.07728,40.44833],[-105.07728,40.4485],[-105.07728,40.44867],[-105.07728,40.44885],[-105.07728,40.44902],[-105.07728,40.44919],[-105.07728,40.44936],[-105.07728,40.44953],[-105.07728,40.44971],[-105.07728,40.44988],[-105.07728,40.45005],[-105.07728,40.45025],[-105.07728,40.4504],[-105.07728,40.45056],[-105.07728,40.45074],[-105.07728,40.4509],[-105.07728,40.45106],[-105.07728,40.45121],[-105.07728,40.45136],[-105.07728,40.45149],[-105.07726,40.45173],[-105.07726,40.45194],[-105.07726,40.45209],[-105.07726,40.45223],[-105.07726,40.45228],[-105.07726,40.45244],[-105.07728,40.45261],[-105.07728,40.45278],[-105.0773,40.45296],[-105.0773,40.45318],[-105.0773,40.45342],[-105.0773,40.45366],[-105.0773,40.45394],[-105.0773,40.45408],[-105.0773,40.45423],[-105.0773,40.45438],[-105.0773,40.45453],[-105.0773,40.45469],[-105.0773,40.45485],[-105.0773,40.455],[-105.0773,40.45516],[-105.0773,40.45532],[-105.0773,40.45548],[-105.0773,40.45565],[-105.0773,40.45581],[-105.0773,40.45597],[-105.0773,40.45614],[-105.0773,40.45631],[-105.0773,40.45649],[-105.0773,40.45665],[-105.0773,40.45683],[-105.0773,40.457],[-105.0773,40.45717],[-105.0773,40.45734],[-105.0773,40.45752],[-105.0773,40.45768],[-105.0773,40.45785],[-105.0773,40.45802],[-105.0773,40.45818],[-105.0773,40.45833],[-105.0773,40.45847],[-105.0773,40.45873],[-105.07728,40.45894],[-105.07728,40.45908],[-105.07728,40.4592],[-105.07728,40.45937],[-105.0773,40.45952],[-105.0773,40.4597],[-105.0773,40.45992],[-105.0773,40.46016],[-105.0773,40.46043],[-105.07732,40.46057],[-105.07732,40.46071],[-105.07732,40.46086],[-105.07732,40.461],[-105.07732,40.46116],[-105.07732,40.46131],[-105.07732,40.46147],[-105.07732,40.46162],[-105.07732,40.46178],[-105.07732,40.46194],[-105.07732,40.46211],[-105.07732,40.46228],[-105.07732,40.46245],[-105.07732,40.46262],[-105.07732,40.46279],[-105.07732,40.46297],[-105.07732,40.46315],[-105.07732,40.46334],[-105.07732,40.4635],[-105.07732,40.46368],[-105.07732,40.46385],[-105.07732,40.46403],[-105.07734,40.4642],[-105.07734,40.46437],[-105.07734,40.46454],[-105.07734,40.46471],[-105.07734,40.46488],[-105.07734,40.46504],[-105.07734,40.4652],[-105.07734,40.46534],[-105.07732,40.46551],[-105.07732,40.46564],[-105.07732,40.46588],[-105.07732,40.46607],[-105.07732,40.46621],[-105.07732,40.4663],[-105.07736,40.46636],[-105.07736,40.46652],[-105.0774,40.46673],[-105.0774,40.46699],[-105.0774,40.46713],[-105.0774,40.46727],[-105.0774,40.46743],[-105.0774,40.4676],[-105.0774,40.46777],[-105.0774,40.46795],[-105.0774,40.46813],[-105.0774,40.46833],[-105.0774,40.46852],[-105.0774,40.46873],[-105.0774,40.46893],[-105.0774,40.46914],[-105.0774,40.46934],[-105.0774,40.46955],[-105.0774,40.46976],[-105.0774,40.46998],[-105.0774,40.4702],[-105.0774,40.47042],[-105.0774,40.47065],[-105.0774,40.47086],[-105.0774,40.47107],[-105.0774,40.47128],[-105.0774,40.4715],[-105.0774,40.47169],[-105.0774,40.47189],[-105.0774,40.4721],[-105.0774,40.4723],[-105.07736,40.47251],[-105.07736,40.4727],[-105.07736,40.4729],[-105.07736,40.4731],[-105.07736,40.4733],[-105.07736,40.4735],[-105.07736,40.47371],[-105.07736,40.4739],[-105.07736,40.47409],[-105.07736,40.47428],[-105.07736,40.47448],[-105.07736,40.47466],[-105.07736,40.47485],[-105.07736,40.47503],[-105.07736,40.47521],[-105.07736,40.47537],[-105.07736,40.47553],[-105.07736,40.47568],[-105.07734,40.47593],[-105.07732,40.47613],[-105.07732,40.47627],[-105.07732,40.47629],[-105.07732,40.47647],[-105.07736,40.47664],[-105.07736,40.47684],[-105.07736,40.47707],[-105.07736,40.47734],[-105.07736,40.4775],[-105.07736,40.47764],[-105.07736,40.4778],[-105.07736,40.47795],[-105.07736,40.4781],[-105.07736,40.47825],[-105.07736,40.47839],[-105.07736,40.47854],[-105.07736,40.47868],[-105.07736,40.47883],[-105.07736,40.47899],[-105.07736,40.47917],[-105.07736,40.47935],[-105.07736,40.47954],[-105.07736,40.47973],[-105.07736,40.47992],[-105.07736,40.48011],[-105.07736,40.4803],[-105.07736,40.48049],[-105.07736,40.48069],[-105.07736,40.48089],[-105.07736,40.48108],[-105.07736,40.48128],[-105.07736,40.48148],[-105.07736,40.48167],[-105.07736,40.48187],[-105.07736,40.48207],[-105.07736,40.48226],[-105.07736,40.48245],[-105.07736,40.48265],[-105.07736,40.48283],[-105.07736,40.48303],[-105.07736,40.48323],[-105.07736,40.48342],[-105.07736,40.48362],[-105.07736,40.48381],[-105.07736,40.48401],[-105.07736,40.4842],[-105.07734,40.48439],[-105.07734,40.48459],[-105.07734,40.48479],[-105.07734,40.48499],[-105.07734,40.48519],[-105.07734,40.48539],[-105.07734,40.48559],[-105.07734,40.48579],[-105.07732,40.486],[-105.07732,40.4862],[-105.07732,40.4864],[-105.07732,40.48661],[-105.07732,40.48681],[-105.07732,40.48702],[-105.07732,40.48722],[-105.07732,40.48741],[-105.07732,40.48761],[-105.07732,40.48781],[-105.07732,40.48801],[-105.07732,40.4882],[-105.07732,40.4884],[-105.07732,40.4886],[-105.07732,40.4888],[-105.07732,40.489],[-105.07732,40.4892],[-105.07732,40.48939],[-105.07732,40.48959],[-105.07732,40.48979],[-105.0773,40.48998],[-105.0773,40.49017],[-105.0773,40.49036],[-105.0773,40.49056],[-105.0773,40.49074],[-105.0773,40.49094],[-105.0773,40.49113],[-105.0773,40.49132],[-105.0773,40.4915],[-105.0773,40.49169],[-105.0773,40.49187],[-105.0773,40.49205],[-105.0773,40.49223],[-105.0773,40.49241],[-105.0773,40.49259],[-105.0773,40.49275],[-105.0773,40.49291],[-105.0773,40.49306],[-105.0773,40.4932],[-105.07732,40.49334],[-105.07732,40.49361],[-105.07732,40.49385],[-105.07732,40.49404],[-105.07732,40.49423],[-105.07732,40.49439],[-105.07732,40.49453],[-105.07732,40.4947],[-105.07732,40.4949],[-105.07732,40.49506],[-105.0773,40.49524],[-105.0773,40.49539],[-105.07728,40.49558],[-105.07728,40.49567],[-105.07726,40.49589],[-105.07728,40.49603],[-105.07728,40.49621],[-105.07728,40.49643],[-105.07728,40.49669],[-105.07728,40.49696],[-105.07728,40.4971],[-105.07728,40.49724],[-105.07728,40.49741],[-105.07728,40.49755],[-105.07728,40.49771],[-105.07728,40.49786],[-105.07728,40.49802],[-105.07728,40.49818],[-105.07728,40.49834],[-105.07728,40.4985],[-105.0773,40.49866],[-105.0773,40.49881],[-105.0773,40.49897],[-105.0773,40.49913],[-105.0773,40.49929],[-105.0773,40.49945],[-105.0773,40.49961],[-105.0773,40.49977],[-105.0773,40.49994],[-105.0773,40.50011],[-105.0773,40.50026],[-105.0773,40.50044],[-105.0773,40.50061],[-105.0773,40.50077],[-105.0773,40.50093],[-105.0773,40.5011],[-105.0773,40.50126],[-105.0773,40.50142],[-105.0773,40.50158],[-105.0773,40.50172],[-105.0773,40.50187],[-105.0773,40.50211],[-105.0773,40.5023],[-105.07728,40.50244],[-105.07728,40.50257],[-105.0773,40.50271],[-105.0773,40.50286],[-105.0773,40.50303],[-105.07732,40.50323],[-105.07732,40.50346],[-105.07732,40.50371],[-105.07732,40.50399],[-105.07732,40.50414],[-105.07732,40.50428],[-105.07732,40.50443],[-105.07732,40.50458],[-105.07732,40.50473],[-105.07732,40.50489],[-105.07732,40.50505],[-105.07732,40.50521],[-105.07732,40.50537],[-105.07732,40.50554],[-105.07732,40.5057],[-105.07732,40.50587],[-105.07732,40.50603],[-105.07732,40.50619],[-105.07732,40.50635],[-105.07732,40.50653],[-105.07732,40.5067],[-105.0773,40.50686],[-105.0773,40.50704],[-105.0773,40.5072],[-105.0773,40.50736],[-105.0773,40.50753],[-105.0773,40.5077],[-105.0773,40.50786],[-105.0773,40.50803],[-105.07728,40.5082],[-105.07728,40.50837],[-105.07728,40.50853],[-105.07728,40.5087],[-105.07728,40.50887],[-105.07726,40.50905],[-105.07726,40.50921],[-105.07726,40.50939],[-105.07726,40.50956],[-105.07726,40.50974],[-105.07726,40.50991],[-105.07724,40.51009],[-105.07724,40.51027],[-105.07722,40.51046],[-105.07722,40.51064],[-105.07722,40.51082],[-105.0772,40.511],[-105.0772,40.51118],[-105.0772,40.51136],[-105.0772,40.51155],[-105.0772,40.51172],[-105.0772,40.5119],[-105.0772,40.51208],[-105.0772,40.51225],[-105.07718,40.51243],[-105.07718,40.51259],[-105.07718,40.51276],[-105.07716,40.51293],[-105.07716,40.5131],[-105.07716,40.51326],[-105.07716,40.51342],[-105.07716,40.51358],[-105.07716,40.51374],[-105.07716,40.51389],[-105.07714,40.51404],[-105.07714,40.51419],[-105.07714,40.51433],[-105.07714,40.51447],[-105.07714,40.51473],[-105.07714,40.51494],[-105.07714,40.51514],[-105.0771,40.51532],[-105.0771,40.51535],[-105.07714,40.51541],[-105.07714,40.51557],[-105.07716,40.51577],[-105.07716,40.51597],[-105.07716,40.5162],[-105.0772,40.51646],[-105.0772,40.5166],[-105.0772,40.51673],[-105.07722,40.517],[-105.07722,40.5172],[-105.0772,40.51736],[-105.07726,40.51752],[-105.07746,40.51754],[-105.07768,40.51754],[-105.07792,40.51754],[-105.07813,40.51753],[-105.07839,40.51753],[-105.07863,40.51753],[-105.07887,40.51754],[-105.07913,40.51755],[-105.07933,40.51755],[-105.07954,40.51756],[-105.07968,40.51769],[-105.07968,40.51785],[-105.07968,40.51804],[-105.07974,40.51819],[-105.07992,40.51827],[-105.08012,40.51831],[-105.08028,40.51832]]}},{"type":"Feature","properties":{"name":"FLEX:02"},"geometry":{"type":"LineString","coordinates":[[-105.10388,40.17251],[-105.10386,40.17236],[-105.10386,40.17217],[-105.10386,40.17201],[-105.10386,40.17184],[-105.10386,40.17167],[-105.10386,40.17148],[-105.10386,40.1713],[-105.10386,40.17113],[-105.10382,40.17095],[-105.10382,40.17079],[-105.1037,40.17067],[-105.10346,40.17064],[-105.10319,40.17066],[-105.10301,40.17069],[-105.10277,40.17069],[-105.10259,40.17072],[-105.10249,40.17083],[-105.10247,40.17105],[-105.10247,40.17121],[-105.10247,40.17139],[-105.10245,40.1716],[-105.10245,40.17182],[-105.10245,40.17204],[-105.10245,40.17227],[-105.10245,40.17248],[-105.10245,40.1727],[-105.10245,40.17293],[-105.10243,40.17317],[-105.10243,40.17341],[-105.10243,40.17365],[-105.10243,40.17389],[-105.10243,40.17413],[-105.10243,40.17437],[-105.10241,40.17462],[-105.10239,40.17487],[-105.10239,40.17513],[-105.10239,40.17539],[-105.10239,40.17564],[-105.10239,40.1759],[-105.10239,40.17614],[-105.10239,40.17638],[-105.10237,40.17662],[-105.10237,40.17683],[-105.10237,40.17703],[-105.10235,40.17721],[-105.10235,40.17734],[-105.10235,40.17751],[-105.10235,40.17765],[-105.10235,40.17783],[-105.10233,40.17803],[-105.10233,40.17827],[-105.10233,40.17852],[-105.10233,40.17878],[-105.10233,40.17905],[-105.10233,40.1792],[-105.10233,40.17947],[-105.10231,40.17974],[-105.10231,40.18001],[-105.10231,40.18028],[-105.10231,40.18043],[-105.10231,40.18056],[-105.10231,40.18071],[-105.10231,40.18084],[-105.10231,40.18098],[-105.10231,40.18112],[-105.10231,40.18126],[-105.10229,40.1814],[-105.10229,40.18155],[-105.10229,40.18168],[-105.10229,40.18183],[-105.10229,40.1821],[-105.10229,40.18235],[-105.10227,40.18261],[-105.10227,40.18284],[-105.10225,40.18307],[-105.10225,40.18329],[-105.10225,40.1835],[-105.10225,40.18371],[-105.10225,40.18391],[-105.10223,40.18409],[-105.10223,40.18426],[-105.10223,40.18444],[-105.10223,40.18463],[-105.10223,40.18484],[-105.10223,40.185],[-105.10221,40.1852],[-105.10221,40.18541],[-105.10221,40.18562],[-105.10221,40.18584],[-105.10221,40.18607],[-105.10221,40.18628],[-105.10219,40.1865],[-105.10219,40.18671],[-105.10219,40.18691],[-105.10219,40.1871],[-105.10219,40.18729],[-105.10219,40.18746],[-105.10219,40.18764],[-105.10219,40.18778],[-105.10219,40.18795],[-105.10219,40.18811],[-105.10219,40.18825],[-105.10218,40.18838],[-105.10218,40.18854],[-105.10219,40.18871],[-105.10219,40.1889],[-105.10219,40.1891],[-105.10219,40.18933],[-105.10219,40.18957],[-105.10219,40.18982],[-105.10219,40.19008],[-105.10219,40.19035],[-105.10219,40.19062],[-105.10221,40.19089],[-105.10221,40.19103],[-105.10221,40.19116],[-105.10221,40.19145],[-105.10221,40.19159],[-105.10221,40.19172],[-105.10223,40.19186],[-105.10223,40.192],[-105.10223,40.19213],[-105.10223,40.19228],[-105.10223,40.19255],[-105.10223,40.19282],[-105.10223,40.1931],[-105.10223,40.19324],[-105.10225,40.19352],[-105.10225,40.19378],[-105.10225,40.19403],[-105.10225,40.19425],[-105.10225,40.19445],[-105.10225,40.19464],[-105.10225,40.1948],[-105.10225,40.19498],[-105.10227,40.19516],[-105.10225,40.19537],[-105.10225,40.19553],[-105.10227,40.19569],[-105.10227,40.19587],[-105.10229,40.19605],[-105.10229,40.19624],[-105.10229,40.19642],[-105.10229,40.19662],[-105.10225,40.19682],[-105.10225,40.197],[-105.10225,40.19714],[-105.10225,40.19731],[-105.10225,40.19736],[-105.10229,40.1975],[-105.10231,40.1977],[-105.10231,40.19787],[-105.10231,40.19807],[-105.10231,40.19828],[-105.10231,40.19852],[-105.10231,40.19877],[-105.10231,40.19902],[-105.10233,40.19929],[-105.10233,40.19956],[-105.10233,40.19982],[-105.10233,40.2001],[-105.10233,40.20037],[-105.10233,40.20064],[-105.10233,40.2009],[-105.10235,40.20117],[-105.10235,40.20144],[-105.10235,40.2017],[-105.10235,40.20194],[-105.10235,40.20217],[-105.10237,40.20235],[-105.10237,40.20251],[-105.10239,40.20266],[-105.10239,40.20283],[-105.10239,40.20302],[-105.10239,40.20324],[-105.10239,40.20347],[-105.10239,40.2037],[-105.10239,40.20396],[-105.10239,40.20423],[-105.10239,40.20437],[-105.10239,40.20452],[-105.10239,40.20466],[-105.10239,40.20481],[-105.10239,40.20496],[-105.10239,40.2051],[-105.10239,40.20525],[-105.10239,40.2054],[-105.10239,40.20555],[-105.10239,40.2057],[-105.10239,40.20586],[-105.10239,40.206],[-105.10239,40.20616],[-105.10239,40.20632],[-105.10239,40.20647],[-105.10239,40.20663],[-105.10239,40.20679],[-105.10239,40.20695],[-105.10239,40.20711],[-105.10239,40.20727],[-105.10237,40.20743],[-105.10235,40.2076],[-105.10235,40.20777],[-105.10233,40.20793],[-105.10233,40.20809],[-105.10233,40.20827],[-105.10231,40.20843],[-105.10231,40.2086],[-105.10231,40.20878],[-105.10231,40.20894],[-105.10229,40.20912],[-105.10229,40.20928],[-105.10229,40.20946],[-105.10227,40.20964],[-105.10225,40.20981],[-105.10225,40.20998],[-105.10225,40.21015],[-105.10225,40.21032],[-105.10225,40.2105],[-105.10223,40.21068],[-105.10223,40.21085],[-105.10223,40.21102],[-105.10223,40.21121],[-105.10223,40.21139],[-105.10223,40.21157],[-105.10223,40.21175],[-105.10223,40.21195],[-105.10223,40.21214],[-105.10223,40.21232],[-105.10223,40.2125],[-105.10223,40.21269],[-105.10223,40.21288],[-105.10223,40.21308],[-105.10223,40.21326],[-105.10223,40.21345],[-105.10223,40.21363],[-105.10223,40.21381],[-105.10225,40.214],[-105.10225,40.21419],[-105.10225,40.21437],[-105.10225,40.21456],[-105.10225,40.21474],[-105.10225,40.21493],[-105.10225,40.21512],[-105.10225,40.2153],[-105.10225,40.21548],[-105.10225,40.21567],[-105.10225,40.21586],[-105.10225,40.21603],[-105.10225,40.21623],[-105.10225,40.21641],[-105.10225,40.21659],[-105.10225,40.21678],[-105.10225,40.21696],[-105.10225,40.21715],[-105.10225,40.21734],[-105.10225,40.21752],[-105.10225,40.2177],[-105.10225,40.2179],[-105.10225,40.21808],[-105.10225,40.21827],[-105.10225,40.21845],[-105.10225,40.21862],[-105.10225,40.2188],[-105.10225,40.21897],[-105.10225,40.21913],[-105.10225,40.21929],[-105.10225,40.21946],[-105.10225,40.21961],[-105.10225,40.21977],[-105.10225,40.21991],[-105.10225,40.22006],[-105.10225,40.2202],[-105.10225,40.22035],[-105.10225,40.22048],[-105.10225,40.22062],[-105.10225,40.22089],[-105.10225,40.22116],[-105.10225,40.22129],[-105.10225,40.22157],[-105.10225,40.22171],[-105.10223,40.22186],[-105.10223,40.222],[-105.10223,40.22214],[-105.10223,40.22228],[-105.10223,40.22244],[-105.10223,40.22258],[-105.10225,40.22272],[-105.10225,40.22286],[-105.10223,40.22314],[-105.10223,40.2234],[-105.10223,40.22366],[-105.10225,40.22393],[-105.10223,40.2242],[-105.10223,40.22448],[-105.10223,40.22475],[-105.10223,40.22501],[-105.10223,40.22527],[-105.10223,40.22554],[-105.10223,40.22581],[-105.10223,40.22597],[-105.10223,40.2261],[-105.10223,40.22624],[-105.10223,40.22639],[-105.10223,40.22654],[-105.10223,40.22668],[-105.10223,40.22683],[-105.10223,40.22698],[-105.10223,40.22713],[-105.10223,40.22729],[-105.10223,40.22743],[-105.10223,40.22759],[-105.10223,40.22774],[-105.10223,40.2279],[-105.10223,40.22805],[-105.10223,40.22821],[-105.10223,40.22836],[-105.10223,40.22849],[-105.10223,40.22864],[-105.10223,40.22878],[-105.10223,40.22891],[-105.10223,40.22918],[-105.10223,40.22945],[-105.10223,40.2297],[-105.10223,40.22995],[-105.10223,40.23022],[-105.10223,40.23047],[-105.10223,40.2307],[-105.10223,40.23092],[-105.10223,40.23113],[-105.10223,40.23134],[-105.10223,40.23157],[-105.10223,40.23179],[-105.10223,40.23203],[-105.10223,40.23227],[-105.10223,40.23252],[-105.10223,40.23278],[-105.10223,40.23305],[-105.10223,40.23333],[-105.10223,40.23347],[-105.10223,40.23361],[-105.10223,40.23375],[-105.10223,40.2339],[-105.10221,40.23405],[-105.10221,40.23421],[-105.10221,40.23435],[-105.10221,40.23451],[-105.10223,40.23467],[-105.10223,40.23483],[-105.10223,40.23499],[-105.10223,40.23516],[-105.10223,40.23533],[-105.10223,40.23549],[-105.10223,40.23566],[-105.10223,40.23584],[-105.10223,40.236],[-105.10225,40.23618],[-105.10225,40.23636],[-105.10225,40.23654],[-105.10227,40.23671],[-105.10229,40.23689],[-105.10231,40.23706],[-105.10231,40.23723],[-105.10233,40.2374],[-105.10233,40.23758],[-105.10235,40.23775],[-105.10239,40.23793],[-105.10239,40.2381],[-105.10239,40.23828],[-105.10243,40.23845],[-105.10245,40.23862],[-105.10245,40.2388],[-105.10249,40.23898],[-105.10251,40.23916],[-105.10251,40.23934],[-105.10253,40.23951],[-105.10255,40.2397],[-105.10255,40.23988],[-105.10257,40.24006],[-105.10257,40.24025],[-105.10259,40.24044],[-105.10261,40.24062],[-105.10261,40.2408],[-105.10263,40.24099],[-105.10263,40.24117],[-105.10263,40.24136],[-105.10263,40.24154],[-105.10263,40.24173],[-105.10263,40.24191],[-105.10263,40.24209],[-105.10263,40.24227],[-105.10263,40.24245],[-105.10263,40.24264],[-105.10263,40.24282],[-105.10263,40.243],[-105.10263,40.24319],[-105.10263,40.24337],[-105.10265,40.24355],[-105.10265,40.24374],[-105.10265,40.24393],[-105.10265,40.24411],[-105.10265,40.2443],[-105.10265,40.24448],[-105.10265,40.24467],[-105.10265,40.24486],[-105.10265,40.24504],[-105.10265,40.24522],[-105.10265,40.2454],[-105.10265,40.2456],[-105.10265,40.24577],[-105.10267,40.24595],[-105.10267,40.24614],[-105.10267,40.24632],[-105.10267,40.24651],[-105.10267,40.24668],[-105.10267,40.24687],[-105.10267,40.24705],[-105.10267,40.24724],[-105.10267,40.24743],[-105.10267,40.24761],[-105.10267,40.2478],[-105.10267,40.24799],[-105.10267,40.24817],[-105.10267,40.24835],[-105.10267,40.24854],[-105.10267,40.24873],[-105.10267,40.24892],[-105.10267,40.2491],[-105.10267,40.24929],[-105.10267,40.24947],[-105.10267,40.24966],[-105.10267,40.24985],[-105.10267,40.25004],[-105.10267,40.25022],[-105.10267,40.2504],[-105.10267,40.25059],[-105.10267,40.25077],[-105.10267,40.25094],[-105.10267,40.25113],[-105.10267,40.2513],[-105.10267,40.25148],[-105.10267,40.25166],[-105.10267,40.25183],[-105.10267,40.25201],[-105.10271,40.25219],[-105.10271,40.25237],[-105.10271,40.25256],[-105.10271,40.25273],[-105.10271,40.25292],[-105.10271,40.2531],[-105.10271,40.25328],[-105.10271,40.25346],[-105.10271,40.25363],[-105.10271,40.25382],[-105.10271,40.254],[-105.10271,40.25417],[-105.10267,40.25435],[-105.10267,40.25453],[-105.10267,40.25472],[-105.10267,40.25489],[-105.10265,40.25507],[-105.10263,40.25525],[-105.10263,40.25543],[-105.10261,40.25561],[-105.10259,40.25579],[-105.10257,40.25597],[-105.10257,40.25614],[-105.10255,40.25632],[-105.10253,40.25649],[-105.10251,40.25667],[-105.10249,40.25686],[-105.10247,40.25703],[-105.10245,40.2572],[-105.10243,40.25738],[-105.10241,40.25756],[-105.10239,40.25773],[-105.10239,40.25791],[-105.10237,40.25809],[-105.10235,40.25828],[-105.10233,40.25846],[-105.10233,40.25865],[-105.10233,40.25883],[-105.10231,40.25901],[-105.10231,40.25919],[-105.10231,40.25936],[-105.10231,40.25953],[-105.10231,40.25971],[-105.10231,40.25988],[-105.10231,40.26006],[-105.10231,40.26023],[-105.10231,40.2604],[-105.10231,40.26058],[-105.10231,40.26075],[-105.10229,40.26092],[-105.10229,40.26109],[-105.10229,40.26127],[-105.10229,40.26143],[-105.10229,40.26161],[-105.10231,40.26179],[-105.10231,40.26197],[-105.10231,40.26213],[-105.10231,40.26231],[-105.10231,40.26248],[-105.10231,40.26266],[-105.10231,40.26283],[-105.10231,40.26301],[-105.10231,40.26318],[-105.10231,40.26336],[-105.10231,40.26354],[-105.10231,40.26371],[-105.10231,40.2639],[-105.10231,40.26407],[-105.10231,40.26425],[-105.10231,40.26443],[-105.10231,40.26461],[-105.10231,40.26479],[-105.10231,40.26496],[-105.10231,40.26513],[-105.10231,40.2653],[-105.10231,40.26547],[-105.10231,40.26564],[-105.10231,40.26581],[-105.10231,40.26598],[-105.10231,40.26615],[-105.10231,40.26632],[-105.10231,40.2665],[-105.10231,40.26667],[-105.10231,40.26685],[-105.10231,40.26703],[-105.10231,40.2672],[-105.10231,40.26738],[-105.10231,40.26755],[-105.10231,40.26773],[-105.10231,40.26791],[-105.10231,40.26808],[-105.10231,40.26825],[-105.10231,40.26843],[-105.10233,40.2686],[-105.10233,40.26878],[-105.10233,40.26894],[-105.10233,40.26913],[-105.10233,40.2693],[-105.10233,40.26948],[-105.10233,40.26966],[-105.10233,40.26984],[-105.10233,40.27001],[-105.10233,40.27018],[-105.10233,40.27035],[-105.10233,40.27052],[-105.10233,40.27069],[-105.10233,40.27087],[-105.10233,40.27104],[-105.10233,40.27122],[-105.10233,40.27139],[-105.10233,40.27157],[-105.10233,40.27174],[-105.10233,40.27192],[-105.10233,40.2721],[-105.10235,40.27228],[-105.10235,40.27246],[-105.10235,40.27264],[-105.10233,40.27282],[-105.10233,40.273],[-105.10235,40.27318],[-105.10235,40.27336],[-105.10235,40.27354],[-105.10235,40.27372],[-105.10235,40.2739],[-105.10235,40.27408],[-105.10235,40.27426],[-105.10235,40.27443],[-105.10235,40.27461],[-105.10235,40.27478],[-105.10235,40.27495],[-105.10235,40.27512],[-105.10235,40.27529],[-105.10235,40.27547],[-105.10235,40.27564],[-105.10235,40.27582],[-105.10235,40.27599],[-105.10235,40.27618],[-105.10235,40.27636],[-105.10235,40.27654],[-105.10235,40.27672],[-105.10235,40.27691],[-105.10235,40.27709],[-105.10235,40.27728],[-105.10237,40.27746],[-105.10237,40.27765],[-105.10237,40.27782],[-105.10237,40.278],[-105.10235,40.27819],[-105.10235,40.27837],[-105.10235,40.27855],[-105.10235,40.27873],[-105.10237,40.27892],[-105.10235,40.27909],[-105.10235,40.27927],[-105.10235,40.27946],[-105.10235,40.27963],[-105.10235,40.27982],[-105.10235,40.28],[-105.10235,40.28017],[-105.10235,40.28036],[-105.10235,40.28054],[-105.10235,40.28071],[-105.10235,40.28089],[-105.10235,40.28107],[-105.10235,40.28125],[-105.10235,40.28142],[-105.10235,40.2816],[-105.10235,40.28178],[-105.10235,40.28195],[-105.10235,40.28213],[-105.10235,40.28229],[-105.10235,40.28247],[-105.10235,40.28264],[-105.10235,40.28281],[-105.10235,40.28298],[-105.10235,40.28315],[-105.10235,40.28331],[-105.10235,40.28349],[-105.10235,40.28365],[-105.10235,40.28382],[-105.10235,40.28399],[-105.10235,40.28415],[-105.10235,40.28432],[-105.10235,40.28451],[-105.10235,40.28468],[-105.10235,40.28486],[-105.10235,40.28504],[-105.10235,40.28522],[-105.10237,40.2854],[-105.10237,40.28557],[-105.10237,40.28575],[-105.10237,40.28593],[-105.10237,40.2861],[-105.10235,40.28628],[-105.10235,40.28646],[-105.10235,40.28664],[-105.10235,40.28683],[-105.10235,40.28699],[-105.10237,40.28717],[-105.10237,40.28736],[-105.10237,40.28754],[-105.10237,40.28771],[-105.10237,40.28788],[-105.10237,40.28806],[-105.10237,40.28824],[-105.10235,40.28842],[-105.10235,40.2886],[-105.10235,40.28877],[-105.10237,40.28895],[-105.10237,40.28913],[-105.10237,40.28931],[-105.10237,40.28949],[-105.10237,40.28968],[-105.10237,40.28986],[-105.10237,40.29004],[-105.10237,40.29022],[-105.10239,40.2904],[-105.10239,40.29059],[-105.10239,40.29077],[-105.10239,40.29096],[-105.10237,40.29113],[-105.10237,40.29131],[-105.10237,40.2915],[-105.10237,40.29167],[-105.10239,40.29185],[-105.10237,40.29202],[-105.10237,40.29221],[-105.10237,40.29239],[-105.10237,40.29256],[-105.10237,40.29275],[-105.10237,40.29292],[-105.10237,40.2931],[-105.10237,40.29328],[-105.10237,40.29344],[-105.10237,40.29362],[-105.10237,40.2938],[-105.10237,40.29396],[-105.10237,40.29413],[-105.10237,40.29429],[-105.10239,40.29445],[-105.10239,40.29463],[-105.10239,40.29479],[-105.10239,40.29496],[-105.10239,40.29513],[-105.10239,40.2953],[-105.10239,40.29547],[-105.10239,40.29565],[-105.10243,40.29581],[-105.10245,40.29599],[-105.10247,40.29615],[-105.10251,40.29632],[-105.10253,40.2965],[-105.10257,40.29667],[-105.10259,40.29683],[-105.10263,40.29701],[-105.10267,40.29717],[-105.10273,40.29733],[-105.10277,40.2975],[-105.10281,40.29766],[-105.10287,40.29782],[-105.10291,40.29798],[-105.10297,40.29813],[-105.10303,40.29828],[-105.10309,40.29844],[-105.10315,40.29859],[-105.10323,40.29875],[-105.10331,40.2989],[-105.10337,40.29904],[-105.10346,40.29918],[-105.10354,40.29933],[-105.10362,40.29948],[-105.1037,40.29963],[-105.10378,40.29977],[-105.10388,40.29992],[-105.10396,40.30007],[-105.10406,40.30022],[-105.10416,40.30036],[-105.10424,40.30051],[-105.10434,40.30067],[-105.10444,40.30081],[-105.10454,40.30097],[-105.10462,40.30113],[-105.10472,40.30129],[-105.10482,40.30145],[-105.10492,40.3016],[-105.10501,40.30176],[-105.1051,40.30192],[-105.10518,40.30208],[-105.10525,40.30224],[-105.10531,40.30241],[-105.10537,40.30257],[-105.10545,40.30274],[-105.10549,40.30289],[-105.10555,40.30305],[-105.10559,40.3032],[-105.10565,40.30336],[-105.10569,40.30351],[-105.10573,40.30367],[-105.10575,40.30382],[-105.10579,40.30395],[-105.10581,40.30409],[-105.10585,40.30434],[-105.10589,40.30457],[-105.10591,40.30476],[-105.10591,40.30494],[-105.10583,40.3051],[-105.10569,40.3052],[-105.10545,40.30526],[-105.10518,40.30527],[-105.1049,40.30528],[-105.10458,40.30529],[-105.10424,40.3053],[-105.1039,40.3053],[-105.10354,40.3053],[-105.10323,40.3053],[-105.10291,40.30532],[-105.10259,40.30532],[-105.10225,40.30532],[-105.1019,40.30532],[-105.10154,40.30532],[-105.10136,40.30532],[-105.10118,40.30532],[-105.10098,40.30532],[-105.10078,40.30532],[-105.10058,40.30532],[-105.10041,40.30532],[-105.10021,40.30532],[-105.10001,40.30532],[-105.09985,40.30532],[-105.09965,40.30532],[-105.09945,40.30532],[-105.09925,40.30532],[-105.09906,40.30532],[-105.09888,40.30532],[-105.09866,40.30532],[-105.09846,40.30532],[-105.09828,40.30533],[-105.09808,40.30533],[-105.09788,40.30533],[-105.09767,40.30533],[-105.09746,40.30533],[-105.09727,40.30533],[-105.09705,40.30534],[-105.09683,40.30534],[-105.09663,40.30534],[-105.09643,40.30535],[-105.09621,40.30535],[-105.09601,40.30535],[-105.09582,40.30535],[-105.0956,40.30535],[-105.09538,40.30534],[-105.09518,40.30534],[-105.09498,40.30533],[-105.09476,40.30533],[-105.09457,40.30533],[-105.09435,40.30533],[-105.09417,40.30534],[-105.09393,40.30534],[-105.09373,40.30534],[-105.09351,40.30534],[-105.09333,40.30533],[-105.09311,40.30533],[-105.09289,40.30533],[-105.0927,40.30533],[-105.0925,40.30533],[-105.0923,40.30532],[-105.0921,40.30532],[-105.09194,40.30532],[-105.09158,40.30532],[-105.09127,40.3053],[-105.09095,40.3053],[-105.09065,40.3053],[-105.09033,40.30529],[-105.09001,40.30529],[-105.08976,40.30528],[-105.08944,40.30527],[-105.08914,40.30526],[-105.08882,40.30526],[-105.08854,40.30526],[-105.08825,40.30526],[-105.08793,40.30525],[-105.08763,40.30524],[-105.08733,40.30524],[-105.08701,40.30522],[-105.08672,40.30522],[-105.08642,40.30522],[-105.0861,40.30522],[-105.08578,40.30522],[-105.08549,40.30522],[-105.08519,40.30521],[-105.08489,40.30521],[-105.08459,40.30521],[-105.08429,40.30522],[-105.084,40.30522],[-105.0837,40.30522],[-105.0834,40.30523],[-105.0831,40.30524],[-105.08278,40.30524],[-105.08246,40.30525],[-105.08219,40.30525],[-105.08187,40.30526],[-105.08161,40.30526],[-105.08133,40.30526],[-105.08107,40.30526],[-105.08083,40.30526],[-105.08058,40.30526],[-105.08038,40.30526],[-105.08012,40.30526],[-105.07992,40.30526],[-105.0797,40.30526],[-105.07953,40.30526],[-105.07929,40.30526],[-105.07907,40.30526],[-105.07887,40.30527],[-105.07867,40.30527],[-105.07845,40.30528],[-105.07823,40.30528],[-105.07803,40.30528],[-105.07783,40.30528],[-105.07764,40.30528],[-105.0774,40.30529],[-105.07716,40.30529],[-105.07692,40.30529],[-105.07668,40.30529],[-105.07649,40.30529],[-105.07631,40.30527],[-105.07621,40.30526],[-105.07601,40.30528],[-105.07575,40.30528],[-105.07553,40.30529],[-105.07529,40.3053],[-105.07506,40.30533],[-105.07485,40.30537],[-105.07466,40.30539],[-105.07442,40.30537],[-105.07422,40.30533],[-105.07406,40.30539],[-105.07406,40.30555],[-105.07412,40.30568],[-105.07414,40.30585],[-105.07412,40.30604],[-105.07412,40.30626],[-105.07412,40.30648],[-105.07412,40.30671],[-105.07412,40.30695],[-105.07412,40.3072],[-105.07412,40.30745],[-105.07412,40.3077],[-105.07412,40.30796],[-105.07412,40.30822],[-105.07412,40.30847],[-105.07412,40.30871],[-105.07412,40.30894],[-105.07412,40.30917],[-105.07414,40.30941],[-105.07416,40.30964],[-105.07416,40.30989],[-105.07418,40.31014],[-105.07418,40.31041],[-105.07418,40.31068],[-105.07418,40.31082],[-105.07418,40.31096],[-105.07418,40.3111],[-105.07418,40.31124],[-105.07418,40.31138],[-105.07418,40.31153],[-105.07418,40.31167],[-105.07418,40.31182],[-105.07418,40.31196],[-105.07418,40.31211],[-105.07418,40.31226],[-105.07418,40.31241],[-105.07418,40.31255],[-105.07418,40.3127],[-105.07418,40.31285],[-105.07418,40.31301],[-105.07418,40.31317],[-105.07418,40.31333],[-105.07418,40.31349],[-105.07418,40.31364],[-105.07418,40.31381],[-105.07418,40.31397],[-105.07418,40.31412],[-105.07418,40.31429],[-105.07418,40.31446],[-105.07418,40.31462],[-105.07418,40.31479],[-105.07418,40.31496],[-105.07418,40.31513],[-105.07418,40.3153],[-105.07418,40.31546],[-105.07418,40.31564],[-105.07418,40.31581],[-105.07418,40.31598],[-105.07418,40.31615],[-105.07418,40.31632],[-105.07418,40.3165],[-105.07418,40.31667],[-105.07418,40.31684],[-105.07418,40.31703],[-105.07418,40.31719],[-105.07418,40.31737],[-105.07418,40.31754],[-105.07418,40.31772],[-105.07422,40.31789],[-105.07422,40.31807],[-105.07422,40.31824],[-105.07422,40.31841],[-105.07422,40.31859],[-105.07422,40.31876],[-105.07422,40.31893],[-105.07422,40.31911],[-105.07422,40.31927],[-105.07422,40.31945],[-105.07422,40.31962],[-105.07422,40.31979],[-105.07422,40.31997],[-105.07422,40.32014],[-105.07422,40.32031],[-105.07422,40.32049],[-105.07422,40.32067],[-105.07422,40.32085],[-105.07422,40.32103],[-105.07424,40.32121],[-105.07424,40.32139],[-105.07424,40.32157],[-105.07424,40.32175],[-105.07424,40.32193],[-105.07424,40.3221],[-105.07424,40.32229],[-105.07424,40.32246],[-105.07424,40.32264],[-105.07424,40.32282],[-105.07424,40.323],[-105.07424,40.32319],[-105.07424,40.32337],[-105.07424,40.32354],[-105.07424,40.32372],[-105.07426,40.3239],[-105.07426,40.32407],[-105.07426,40.32425],[-105.07426,40.32442],[-105.07426,40.3246],[-105.07426,40.32477],[-105.07426,40.32495],[-105.07426,40.32511],[-105.07426,40.32529],[-105.07426,40.32547],[-105.07426,40.32563],[-105.07426,40.32581],[-105.07426,40.32597],[-105.07426,40.32615],[-105.07426,40.32631],[-105.07426,40.32648],[-105.07426,40.32664],[-105.07428,40.3268],[-105.07428,40.32697],[-105.07428,40.32712],[-105.07428,40.32729],[-105.07428,40.32745],[-105.07428,40.32762],[-105.07428,40.32779],[-105.07428,40.32796],[-105.07428,40.32813],[-105.07428,40.3283],[-105.0743,40.32849],[-105.0743,40.32866],[-105.0743,40.32884],[-105.0743,40.32903],[-105.0743,40.3292],[-105.0743,40.32938],[-105.0743,40.32957],[-105.0743,40.32976],[-105.0743,40.32994],[-105.0743,40.33012],[-105.0743,40.33031],[-105.0743,40.33049],[-105.0743,40.33067],[-105.0743,40.33085],[-105.0743,40.33104],[-105.0743,40.33122],[-105.0743,40.3314],[-105.0743,40.33158],[-105.0743,40.33177],[-105.0743,40.33194],[-105.0743,40.33212],[-105.0743,40.33231],[-105.0743,40.33249],[-105.0743,40.33267],[-105.0743,40.33285],[-105.0743,40.33303],[-105.0743,40.33321],[-105.0743,40.3334],[-105.0743,40.33358],[-105.0743,40.33376],[-105.0743,40.33394],[-105.0743,40.33413],[-105.0743,40.33431],[-105.07432,40.33449],[-105.07432,40.33467],[-105.07432,40.33485],[-105.07432,40.33504],[-105.07432,40.33523],[-105.07432,40.3354],[-105.07432,40.33558],[-105.07432,40.33576],[-105.0743,40.33593],[-105.0743,40.33611],[-105.07426,40.3363],[-105.07422,40.33647],[-105.07418,40.33665],[-105.07412,40.33681],[-105.07408,40.33699],[-105.07402,40.33716],[-105.074,40.33733],[-105.07396,40.3375],[-105.07392,40.33767],[-105.0739,40.33784],[-105.07388,40.33801],[-105.07388,40.33818],[-105.07388,40.33836],[-105.07388,40.33855],[-105.07388,40.33872],[-105.07388,40.3389],[-105.07388,40.3391],[-105.07388,40.33928],[-105.07388,40.33948],[-105.07388,40.33967],[-105.07388,40.33985],[-105.07388,40.34004],[-105.07388,40.34023],[-105.07388,40.34041],[-105.0739,40.34061],[-105.0739,40.3408],[-105.0739,40.34099],[-105.07392,40.34119],[-105.07392,40.34137],[-105.07392,40.34156],[-105.07392,40.34173],[-105.07392,40.34192],[-105.07392,40.34211],[-105.07392,40.3423],[-105.07392,40.34249],[-105.07392,40.34268],[-105.07392,40.34287],[-105.07392,40.34305],[-105.07392,40.34324],[-105.07392,40.34343],[-105.07392,40.34363],[-105.07392,40.34381],[-105.07392,40.34401],[-105.07392,40.3442],[-105.07392,40.34438],[-105.07392,40.34457],[-105.07392,40.34476],[-105.07392,40.34494],[-105.07392,40.34513],[-105.07392,40.34533],[-105.07392,40.3455],[-105.07392,40.34569],[-105.07392,40.34587],[-105.07392,40.34607],[-105.07392,40.34625],[-105.07392,40.34644],[-105.07392,40.34663],[-105.07392,40.34681],[-105.07392,40.34699],[-105.07392,40.34717],[-105.07392,40.34736],[-105.07392,40.34754],[-105.07392,40.34772],[-105.07392,40.34792],[-105.07392,40.34809],[-105.07392,40.34828],[-105.07392,40.34847],[-105.07392,40.34866],[-105.07392,40.34884],[-105.07392,40.34901],[-105.07392,40.3492],[-105.07392,40.34937],[-105.07392,40.34954],[-105.07392,40.34971],[-105.07392,40.34988],[-105.07392,40.35005],[-105.07392,40.35021],[-105.07392,40.35036],[-105.07392,40.35051],[-105.07392,40.35078],[-105.07392,40.35103],[-105.07392,40.3513],[-105.07392,40.35144],[-105.07392,40.35159],[-105.07392,40.35174],[-105.07392,40.35189],[-105.07392,40.35205],[-105.07392,40.35222],[-105.07392,40.35238],[-105.07392,40.35255],[-105.07392,40.35272],[-105.07392,40.35289],[-105.07392,40.35307],[-105.07392,40.35325],[-105.07392,40.35341],[-105.07392,40.3536],[-105.07392,40.35377],[-105.07392,40.35396],[-105.0739,40.35413],[-105.0739,40.35431],[-105.0739,40.35448],[-105.0739,40.35466],[-105.07388,40.35483],[-105.07388,40.355],[-105.07386,40.35518],[-105.07386,40.35536],[-105.07386,40.35553],[-105.07384,40.35571],[-105.07384,40.35588],[-105.0738,40.35605],[-105.0738,40.35623],[-105.07378,40.3564],[-105.07376,40.35657],[-105.07376,40.35674],[-105.07374,40.35692],[-105.07374,40.3571],[-105.0737,40.35726],[-105.0737,40.35744],[-105.0737,40.3576],[-105.07366,40.35778],[-105.07366,40.35795],[-105.07364,40.35812],[-105.07364,40.35829],[-105.07362,40.35846],[-105.0736,40.35865],[-105.07358,40.35883],[-105.07356,40.359],[-105.07356,40.35918],[-105.07356,40.35936],[-105.07353,40.35954],[-105.0735,40.35972],[-105.0735,40.35989],[-105.0735,40.36007],[-105.07349,40.36024],[-105.07346,40.36042],[-105.07345,40.36059],[-105.07345,40.36076],[-105.07343,40.36094],[-105.0734,40.36112],[-105.07339,40.36129],[-105.07339,40.36147],[-105.07336,40.36166],[-105.07336,40.36184],[-105.07335,40.36202],[-105.07332,40.3622],[-105.07332,40.36238],[-105.07331,40.36256],[-105.07329,40.36275],[-105.07329,40.36292],[-105.07325,40.36311],[-105.07325,40.3633],[-105.07323,40.36348],[-105.07323,40.36365],[-105.07319,40.36384],[-105.07319,40.36402],[-105.07319,40.36421],[-105.07315,40.36439],[-105.07315,40.36457],[-105.07313,40.36476],[-105.07313,40.36494],[-105.07311,40.36512],[-105.07309,40.3653],[-105.07307,40.36549],[-105.07305,40.36567],[-105.07305,40.36585],[-105.07303,40.36604],[-105.07303,40.36621],[-105.07301,40.36639],[-105.07299,40.36658],[-105.07297,40.36675],[-105.07297,40.36693],[-105.07293,40.36712],[-105.07291,40.36728],[-105.07289,40.36745],[-105.07287,40.36763],[-105.07283,40.36781],[-105.07281,40.36798],[-105.07277,40.36815],[-105.07275,40.36832],[-105.07271,40.3685],[-105.07271,40.36868],[-105.07267,40.36884],[-105.07265,40.36902],[-105.07261,40.36918],[-105.07259,40.36936],[-105.07257,40.36953],[-105.07253,40.3697],[-105.07253,40.36988],[-105.07251,40.37005],[-105.07251,40.37022],[-105.07247,40.37039],[-105.07247,40.37057],[-105.07247,40.37073],[-105.07245,40.37089],[-105.07245,40.37103],[-105.07245,40.37119],[-105.07245,40.37134],[-105.07245,40.37148],[-105.07247,40.37174],[-105.07247,40.37199],[-105.07247,40.37219],[-105.07251,40.37236],[-105.07251,40.37251],[-105.07253,40.37268],[-105.07253,40.37289],[-105.07257,40.37303],[-105.07259,40.37321],[-105.07263,40.37344],[-105.07267,40.37369],[-105.07271,40.37396],[-105.07275,40.3741],[-105.07277,40.37425],[-105.07279,40.3744],[-105.07281,40.37454],[-105.07283,40.3747],[-105.07287,40.37485],[-105.07289,40.375],[-105.07291,40.37516],[-105.07293,40.37532],[-105.07297,40.37548],[-105.07301,40.37564],[-105.07303,40.37579],[-105.07305,40.37595],[-105.07307,40.37612],[-105.07309,40.37629],[-105.07311,40.37645],[-105.07313,40.37661],[-105.07313,40.37677],[-105.07313,40.37694],[-105.07313,40.3771],[-105.07313,40.37726],[-105.07315,40.37742],[-105.07315,40.37758],[-105.07315,40.37774],[-105.07315,40.37789],[-105.07315,40.37805],[-105.07315,40.37819],[-105.07315,40.37833],[-105.07315,40.37847],[-105.07315,40.37861],[-105.07313,40.37887],[-105.07313,40.37912],[-105.07313,40.37932],[-105.07313,40.37949],[-105.07313,40.37967],[-105.07313,40.37971],[-105.07313,40.37984],[-105.07315,40.38005],[-105.07315,40.38021],[-105.07315,40.38041],[-105.07315,40.38063],[-105.07317,40.38088],[-105.07319,40.38114],[-105.07319,40.38128],[-105.07319,40.38142],[-105.07323,40.38157],[-105.07323,40.38172],[-105.07323,40.38187],[-105.07325,40.38201],[-105.07325,40.38217],[-105.07325,40.38232],[-105.07327,40.38247],[-105.07327,40.38263],[-105.07329,40.38278],[-105.07329,40.38294],[-105.07329,40.38309],[-105.07329,40.38325],[-105.07329,40.38341],[-105.07329,40.38357],[-105.07329,40.38372],[-105.07327,40.38388],[-105.07327,40.38404],[-105.07327,40.38419],[-105.07327,40.38435],[-105.07327,40.3845],[-105.07325,40.38466],[-105.07325,40.38481],[-105.07325,40.38497],[-105.07325,40.38512],[-105.07325,40.38527],[-105.07325,40.38543],[-105.07325,40.38557],[-105.07325,40.38573],[-105.07325,40.38589],[-105.07325,40.38603],[-105.07325,40.38618],[-105.07323,40.38634],[-105.07323,40.38649],[-105.07323,40.38664],[-105.07323,40.38679],[-105.07323,40.38695],[-105.07323,40.3871],[-105.07323,40.38726],[-105.07323,40.3874],[-105.07323,40.38756],[-105.07323,40.38772],[-105.07323,40.38787],[-105.07323,40.38802],[-105.07323,40.38818],[-105.07323,40.38833],[-105.07323,40.38849],[-105.07319,40.38864],[-105.07319,40.3888],[-105.07319,40.38895],[-105.07319,40.38911],[-105.07319,40.38925],[-105.07319,40.3894],[-105.07319,40.38954],[-105.07319,40.38969],[-105.07319,40.38982],[-105.07319,40.38996],[-105.07319,40.39011],[-105.07319,40.39038],[-105.07323,40.39064],[-105.07323,40.3909],[-105.07319,40.39114],[-105.07319,40.39139],[-105.07319,40.39163],[-105.07319,40.39185],[-105.07319,40.39205],[-105.07319,40.39223],[-105.07319,40.39238],[-105.07319,40.39252],[-105.07319,40.39267],[-105.07319,40.39282],[-105.07319,40.39303],[-105.07319,40.39319],[-105.07319,40.39338],[-105.07319,40.39358],[-105.07319,40.3938],[-105.07319,40.39401],[-105.07319,40.39423],[-105.07319,40.39446],[-105.07317,40.39467],[-105.07317,40.39486],[-105.07315,40.39504],[-105.07315,40.39522],[-105.07315,40.39539],[-105.07315,40.39556],[-105.07315,40.39572],[-105.07315,40.39588],[-105.07315,40.39602],[-105.07315,40.39617],[-105.07315,40.39633],[-105.07313,40.39649],[-105.07313,40.39666],[-105.07313,40.39685],[-105.07313,40.39704],[-105.07313,40.39723],[-105.07313,40.39744],[-105.07313,40.39766],[-105.07313,40.39788],[-105.07313,40.39811],[-105.07311,40.39835],[-105.07309,40.3986],[-105.07309,40.39886],[-105.07309,40.39911],[-105.07307,40.39936],[-105.07307,40.39961],[-105.07307,40.39984],[-105.07305,40.40006],[-105.07305,40.40024],[-105.07305,40.40039],[-105.07305,40.40049],[-105.07305,40.40068],[-105.07305,40.40082],[-105.07305,40.40099],[-105.07305,40.40118],[-105.07305,40.40139],[-105.07305,40.40162],[-105.07303,40.40185],[-105.07303,40.40209],[-105.07303,40.40234],[-105.07303,40.40259],[-105.07301,40.40285],[-105.07301,40.40309],[-105.07301,40.40333],[-105.07301,40.40359],[-105.07301,40.40384],[-105.07301,40.40412],[-105.07301,40.40438],[-105.07301,40.40466],[-105.07299,40.40492],[-105.07299,40.4052],[-105.07299,40.40546],[-105.07299,40.40572],[-105.07299,40.40597],[-105.07299,40.40619],[-105.07299,40.40639],[-105.07301,40.40654],[-105.07301,40.40669],[-105.07301,40.40684],[-105.07301,40.40703],[-105.07301,40.40722],[-105.07301,40.40743],[-105.07299,40.40765],[-105.07297,40.40788],[-105.07297,40.40812],[-105.07297,40.40832],[-105.07297,40.40851],[-105.07297,40.40868],[-105.07297,40.40886],[-105.07297,40.40906],[-105.07297,40.40928],[-105.07297,40.40952],[-105.07297,40.40978],[-105.07299,40.41003],[-105.07299,40.4103],[-105.07299,40.41057],[-105.07297,40.41071],[-105.07297,40.41085],[-105.07297,40.41099],[-105.07297,40.41114],[-105.07297,40.41127],[-105.07297,40.41141],[-105.07297,40.41156],[-105.07297,40.4117],[-105.07297,40.41184],[-105.07297,40.41199],[-105.07297,40.41213],[-105.07297,40.41227],[-105.07297,40.41241],[-105.07297,40.41256],[-105.07297,40.4127],[-105.07297,40.41284],[-105.07297,40.41297],[-105.07297,40.41312],[-105.07297,40.41327],[-105.07297,40.4134],[-105.07297,40.41354],[-105.07297,40.41368],[-105.07297,40.41382],[-105.07297,40.41397],[-105.07297,40.4141],[-105.07297,40.41424],[-105.07297,40.41438],[-105.07297,40.41452],[-105.07297,40.41466],[-105.07293,40.41493],[-105.07293,40.41507],[-105.07293,40.41535],[-105.07293,40.41548],[-105.07293,40.41563],[-105.07293,40.41575],[-105.07293,40.41591],[-105.07293,40.41604],[-105.07293,40.41618],[-105.07293,40.41632],[-105.07293,40.41646],[-105.07293,40.4166],[-105.07293,40.41675],[-105.07293,40.41688],[-105.07293,40.41703],[-105.07293,40.41718],[-105.07293,40.41732],[-105.07293,40.41745],[-105.07293,40.4176],[-105.07293,40.41774],[-105.07293,40.41788],[-105.07297,40.41803],[-105.07299,40.41815],[-105.07301,40.4183],[-105.07305,40.41843],[-105.07309,40.41857],[-105.07315,40.41871],[-105.07319,40.41885],[-105.07329,40.41899],[-105.07335,40.41912],[-105.0734,40.41925],[-105.0735,40.41939],[-105.07358,40.41951],[-105.0737,40.41963],[-105.07378,40.41976],[-105.07388,40.41987],[-105.074,40.41999],[-105.07412,40.4201],[-105.07422,40.42021],[-105.07434,40.42032],[-105.07446,40.42042],[-105.0747,40.42063],[-105.07489,40.42083],[-105.07511,40.42102],[-105.07531,40.42121],[-105.07555,40.42141],[-105.07577,40.42161],[-105.07601,40.42181],[-105.07621,40.42201],[-105.0764,40.42221],[-105.0766,40.4224],[-105.07676,40.4226],[-105.07692,40.4228],[-105.07706,40.42301],[-105.07716,40.42323],[-105.07728,40.42345],[-105.07736,40.42369],[-105.07742,40.42394],[-105.07746,40.42417],[-105.07746,40.42439],[-105.07746,40.42457],[-105.07746,40.42471],[-105.07736,40.42484],[-105.0772,40.42486],[-105.07696,40.42486],[-105.07674,40.42487],[-105.07653,40.42488],[-105.0764,40.42475],[-105.0764,40.42459],[-105.0764,40.4244],[-105.0764,40.42423],[-105.0764,40.42408],[-105.0764,40.42408],[-105.0764,40.42388],[-105.0764,40.4237],[-105.0764,40.42356],[-105.07653,40.42338],[-105.07672,40.42332],[-105.0769,40.42327],[-105.07714,40.42322],[-105.07726,40.42332],[-105.0773,40.42348],[-105.07736,40.42367],[-105.07742,40.42388],[-105.07748,40.42413],[-105.0775,40.4244],[-105.0775,40.42454],[-105.0775,40.42468],[-105.0775,40.42482],[-105.0775,40.42497],[-105.0775,40.42513],[-105.0775,40.42527],[-105.0775,40.42543],[-105.0775,40.42558],[-105.0775,40.42574],[-105.07748,40.42589],[-105.07748,40.42604],[-105.07748,40.4262],[-105.07748,40.42636],[-105.07748,40.42652],[-105.07748,40.42667],[-105.07748,40.42683],[-105.07748,40.42698],[-105.07746,40.42713],[-105.07746,40.42728],[-105.07746,40.42743],[-105.07746,40.42757],[-105.07746,40.42773],[-105.07746,40.42787],[-105.07746,40.42802],[-105.07746,40.42818],[-105.07746,40.42833],[-105.07746,40.42849],[-105.07744,40.42863],[-105.07744,40.42878],[-105.07744,40.42893],[-105.07742,40.42907],[-105.07742,40.42923],[-105.07742,40.42936],[-105.07742,40.42961],[-105.07742,40.42984],[-105.07742,40.43002],[-105.0774,40.43015],[-105.0774,40.4303],[-105.0774,40.43049],[-105.0774,40.4307],[-105.07736,40.43087],[-105.07736,40.43104],[-105.07736,40.43117],[-105.07736,40.43132],[-105.07736,40.43141],[-105.07736,40.43159],[-105.07736,40.43181],[-105.07736,40.432],[-105.07736,40.43222],[-105.07736,40.43246],[-105.07736,40.43273],[-105.07736,40.43287],[-105.07736,40.43301],[-105.07736,40.43315],[-105.07736,40.43329],[-105.07736,40.43344],[-105.07734,40.4336],[-105.07734,40.43375],[-105.07732,40.4339],[-105.07732,40.43406],[-105.07732,40.43421],[-105.07732,40.43437],[-105.07732,40.43453],[-105.07732,40.43469],[-105.07732,40.43484],[-105.07732,40.435],[-105.07732,40.43515],[-105.0773,40.4353],[-105.0773,40.43545],[-105.0773,40.43569],[-105.07728,40.43589],[-105.07728,40.43606],[-105.07726,40.43624],[-105.07726,40.43628],[-105.07728,40.43642],[-105.0773,40.43663],[-105.0773,40.43682],[-105.0773,40.43702],[-105.07728,40.43724],[-105.07728,40.43748],[-105.0773,40.43773],[-105.07728,40.43798],[-105.07728,40.43824],[-105.07728,40.43849],[-105.07726,40.43873],[-105.07726,40.43894],[-105.07726,40.43911],[-105.07726,40.4393],[-105.07726,40.43937],[-105.07726,40.43953],[-105.07728,40.43967],[-105.07728,40.43984],[-105.07728,40.44005],[-105.07728,40.44028],[-105.07728,40.44054],[-105.07728,40.44069],[-105.07728,40.44082],[-105.07728,40.44097],[-105.07728,40.44112],[-105.07728,40.44128],[-105.07728,40.44144],[-105.07728,40.4416],[-105.07728,40.44176],[-105.07728,40.44193],[-105.07728,40.44209],[-105.07728,40.44227],[-105.07728,40.44243],[-105.07728,40.4426],[-105.07728,40.44277],[-105.07728,40.44293],[-105.07728,40.44311],[-105.07728,40.44327],[-105.07728,40.44343],[-105.07728,40.44357],[-105.07728,40.44372],[-105.07728,40.44386],[-105.07726,40.4441],[-105.07726,40.44431],[-105.07724,40.44449],[-105.07724,40.44467],[-105.07724,40.44472],[-105.07724,40.44486],[-105.07724,40.44503],[-105.07726,40.44524],[-105.07728,40.44544],[-105.07728,40.44565],[-105.07728,40.44591],[-105.07728,40.44619],[-105.07728,40.44634],[-105.07728,40.44649],[-105.07728,40.44665],[-105.07728,40.44681],[-105.07728,40.44698],[-105.07728,40.44714],[-105.07728,40.44731],[-105.07728,40.44748],[-105.07728,40.44764],[-105.07728,40.44781],[-105.07728,40.44798],[-105.07728,40.44815],[-105.07728,40.44833],[-105.07728,40.4485],[-105.07728,40.44867],[-105.07728,40.44885],[-105.07728,40.44902],[-105.07728,40.44919],[-105.07728,40.44936],[-105.07728,40.44953],[-105.07728,40.44971],[-105.07728,40.44988],[-105.07728,40.45005],[-105.07728,40.45025],[-105.07728,40.4504],[-105.07728,40.45056],[-105.07728,40.45074],[-105.07728,40.4509],[-105.07728,40.45106],[-105.07728,40.45121],[-105.07728,40.45136],[-105.07728,40.45149],[-105.07726,40.45173],[-105.07726,40.45194],[-105.07726,40.45209],[-105.07726,40.45223],[-105.07726,40.45228],[-105.07726,40.45244],[-105.07728,40.45261],[-105.07728,40.45278],[-105.0773,40.45296],[-105.0773,40.45318],[-105.0773,40.45342],[-105.0773,40.45366],[-105.0773,40.45394],[-105.0773,40.45408],[-105.0773,40.45423],[-105.0773,40.45438],[-105.0773,40.45453],[-105.0773,40.45469],[-105.0773,40.45485],[-105.0773,40.455],[-105.0773,40.45516],[-105.0773,40.45532],[-105.0773,40.45548],[-105.0773,40.45565],[-105.0773,40.45581],[-105.0773,40.45597],[-105.0773,40.45614],[-105.0773,40.45631],[-105.0773,40.45649],[-105.0773,40.45665],[-105.0773,40.45683],[-105.0773,40.457],[-105.0773,40.45717],[-105.0773,40.45734],[-105.0773,40.45752],[-105.0773,40.45768],[-105.0773,40.45785],[-105.0773,40.45802],[-105.0773,40.45818],[-105.0773,40.45833],[-105.0773,40.45847],[-105.0773,40.45873],[-105.07728,40.45894],[-105.07728,40.45908],[-105.07728,40.4592],[-105.07728,40.45937],[-105.0773,40.45952],[-105.0773,40.4597],[-105.0773,40.45992],[-105.0773,40.46016],[-105.0773,40.46043],[-105.07732,40.46057],[-105.07732,40.46071],[-105.07732,40.46086],[-105.07732,40.461],[-105.07732,40.46116],[-105.07732,40.46131],[-105.07732,40.46147],[-105.07732,40.46162],[-105.07732,40.46178],[-105.07732,40.46194],[-105.07732,40.46211],[-105.07732,40.46228],[-105.07732,40.46245],[-105.07732,40.46262],[-105.07732,40.46279],[-105.07732,40.46297],[-105.07732,40.46315],[-105.07732,40.46334],[-105.07732,40.4635],[-105.07732,40.46368],[-105.07732,40.46385],[-105.07732,40.46403],[-105.07734,40.4642],[-105.07734,40.46437],[-105.07734,40.46454],[-105.07734,40.46471],[-105.07734,40.46488],[-105.07734,40.46504],[-105.07734,40.4652],[-105.07734,40.46534],[-105.07732,40.46551],[-105.07732,40.46564],[-105.07732,40.46588],[-105.07732,40.46607],[-105.07732,40.46621],[-105.07732,40.4663],[-105.07736,40.46636],[-105.07736,40.46652],[-105.0774,40.46673],[-105.0774,40.46699],[-105.0774,40.46713],[-105.0774,40.46727],[-105.0774,40.46743],[-105.0774,40.4676],[-105.0774,40.46777],[-105.0774,40.46795],[-105.0774,40.46813],[-105.0774,40.46833],[-105.0774,40.46852],[-105.0774,40.46873],[-105.0774,40.46893],[-105.0774,40.46914],[-105.0774,40.46934],[-105.0774,40.46955],[-105.0774,40.46976],[-105.0774,40.46998],[-105.0774,40.4702],[-105.0774,40.47042],[-105.0774,40.47065],[-105.0774,40.47086],[-105.0774,40.47107],[-105.0774,40.47128],[-105.0774,40.4715],[-105.0774,40.47169],[-105.0774,40.47189],[-105.0774,40.4721],[-105.0774,40.4723],[-105.07736,40.47251],[-105.07736,40.4727],[-105.07736,40.4729],[-105.07736,40.4731],[-105.07736,40.4733],[-105.07736,40.4735],[-105.07736,40.47371],[-105.07736,40.4739],[-105.07736,40.47409],[-105.07736,40.47428],[-105.07736,40.47448],[-105.07736,40.47466],[-105.07736,40.47485],[-105.07736,40.47503],[-105.07736,40.47521],[-105.07736,40.47537],[-105.07736,40.47553],[-105.07736,40.47568],[-105.07734,40.47593],[-105.07732,40.47613],[-105.07732,40.47627],[-105.07732,40.47629],[-105.07732,40.47647],[-105.07736,40.47664],[-105.07736,40.47684],[-105.07736,40.47707],[-105.07736,40.47734],[-105.07736,40.4775],[-105.07736,40.47764],[-105.07736,40.4778],[-105.07736,40.47795],[-105.07736,40.4781],[-105.07736,40.47825],[-105.07736,40.47839],[-105.07736,40.47854],[-105.07736,40.47868],[-105.07736,40.47883],[-105.07736,40.47899],[-105.07736,40.47917],[-105.07736,40.47935],[-105.07736,40.47954],[-105.07736,40.47973],[-105.07736,40.47992],[-105.07736,40.48011],[-105.07736,40.4803],[-105.07736,40.48049],[-105.07736,40.48069],[-105.07736,40.48089],[-105.07736,40.48108],[-105.07736,40.48128],[-105.07736,40.48148],[-105.07736,40.48167],[-105.07736,40.48187],[-105.07736,40.48207],[-105.07736,40.48226],[-105.07736,40.48245],[-105.07736,40.48265],[-105.07736,40.48283],[-105.07736,40.48303],[-105.07736,40.48323],[-105.07736,40.48342],[-105.07736,40.48362],[-105.07736,40.48381],[-105.07736,40.48401],[-105.07736,40.4842],[-105.07734,40.48439],[-105.07734,40.48459],[-105.07734,40.48479],[-105.07734,40.48499],[-105.07734,40.48519],[-105.07734,40.48539],[-105.07734,40.48559],[-105.07734,40.48579],[-105.07732,40.486],[-105.07732,40.4862],[-105.07732,40.4864],[-105.07732,40.48661],[-105.07732,40.48681],[-105.07732,40.48702],[-105.07732,40.48722],[-105.07732,40.48741],[-105.07732,40.48761],[-105.07732,40.48781],[-105.07732,40.48801],[-105.07732,40.4882],[-105.07732,40.4884],[-105.07732,40.4886],[-105.07732,40.4888],[-105.07732,40.489],[-105.07732,40.4892],[-105.07732,40.48939],[-105.07732,40.48959],[-105.07732,40.48979],[-105.0773,40.48998],[-105.0773,40.49017],[-105.0773,40.49036],[-105.0773,40.49056],[-105.0773,40.49074],[-105.0773,40.49094],[-105.0773,40.49113],[-105.0773,40.49132],[-105.0773,40.4915],[-105.0773,40.49169],[-105.0773,40.49187],[-105.0773,40.49205],[-105.0773,40.49223],[-105.0773,40.49241],[-105.0773,40.49259],[-105.0773,40.49275],[-105.0773,40.49291],[-105.0773,40.49306],[-105.0773,40.4932],[-105.07732,40.49334],[-105.07732,40.49361],[-105.07732,40.49385],[-105.07732,40.49404],[-105.07732,40.49423],[-105.07732,40.49439],[-105.07732,40.49453],[-105.07732,40.4947],[-105.07732,40.4949],[-105.07732,40.49506],[-105.0773,40.49524],[-105.0773,40.49539],[-105.07728,40.49558],[-105.07728,40.49567],[-105.07726,40.49589],[-105.07728,40.49603],[-105.07728,40.49621],[-105.07728,40.49643],[-105.07728,40.49669],[-105.07728,40.49696],[-105.07728,40.4971],[-105.07728,40.49724],[-105.07728,40.49741],[-105.07728,40.49755],[-105.07728,40.49771],[-105.07728,40.49786],[-105.07728,40.49802],[-105.07728,40.49818],[-105.07728,40.49834],[-105.07728,40.4985],[-105.0773,40.49866],[-105.0773,40.49881],[-105.0773,40.49897],[-105.0773,40.49913],[-105.0773,40.49929],[-105.0773,40.49945],[-105.0773,40.49961],[-105.0773,40.49977],[-105.0773,40.49994],[-105.0773,40.50011],[-105.0773,40.50026],[-105.0773,40.50044],[-105.0773,40.50061],[-105.0773,40.50077],[-105.0773,40.50093],[-105.0773,40.5011],[-105.0773,40.50126],[-105.0773,40.50142],[-105.0773,40.50158],[-105.0773,40.50172],[-105.0773,40.50187],[-105.0773,40.50211],[-105.0773,40.5023],[-105.07728,40.50244],[-105.07728,40.50257],[-105.0773,40.50271],[-105.0773,40.50286],[-105.0773,40.50303],[-105.07732,40.50323],[-105.07732,40.50346],[-105.07732,40.50371],[-105.07732,40.50399],[-105.07732,40.50414],[-105.07732,40.50428],[-105.07732,40.50443],[-105.07732,40.50458],[-105.07732,40.50473],[-105.07732,40.50489],[-105.07732,40.50505],[-105.07732,40.50521],[-105.07732,40.50537],[-105.07732,40.50554],[-105.07732,40.5057],[-105.07732,40.50587],[-105.07732,40.50603],[-105.07732,40.50619],[-105.07732,40.50635],[-105.07732,40.50653],[-105.07732,40.5067],[-105.0773,40.50686],[-105.0773,40.50704],[-105.0773,40.5072],[-105.0773,40.50736],[-105.0773,40.50753],[-105.0773,40.5077],[-105.0773,40.50786],[-105.0773,40.50803],[-105.07728,40.5082],[-105.07728,40.50837],[-105.07728,40.50853],[-105.07728,40.5087],[-105.07728,40.50887],[-105.07726,40.50905],[-105.07726,40.50921],[-105.07726,40.50939],[-105.07726,40.50956],[-105.07726,40.50974],[-105.07726,40.50991],[-105.07724,40.51009],[-105.07724,40.51027],[-105.07722,40.51046],[-105.07722,40.51064],[-105.07722,40.51082],[-105.0772,40.511],[-105.0772,40.51118],[-105.0772,40.51136],[-105.0772,40.51155],[-105.0772,40.51172],[-105.0772,40.5119],[-105.0772,40.51208],[-105.0772,40.51225],[-105.07718,40.51243],[-105.07718,40.51259],[-105.07718,40.51276],[-105.07716,40.51293],[-105.07716,40.5131],[-105.07716,40.51326],[-105.07716,40.51342],[-105.07716,40.51358],[-105.07716,40.51374],[-105.07716,40.51389],[-105.07714,40.51404],[-105.07714,40.51419],[-105.07714,40.51433],[-105.07714,40.51447],[-105.07714,40.51473],[-105.07714,40.51494],[-105.07714,40.51514],[-105.0771,40.51532],[-105.0771,40.51535],[-105.07714,40.51541],[-105.07714,40.51557],[-105.07716,40.51577],[-105.07716,40.51597],[-105.07716,40.5162],[-105.0772,40.51646],[-105.0772,40.5166],[-105.0772,40.51673],[-105.07722,40.517],[-105.07722,40.5172],[-105.0772,40.51736],[-105.07726,40.51752],[-105.07746,40.51754],[-105.07768,40.51754],[-105.07792,40.51754],[-105.07813,40.51753],[-105.07839,40.51753],[-105.07863,40.51753],[-105.07887,40.51754],[-105.07913,40.51755],[-105.07933,40.51755],[-105.07954,40.51756],[-105.07968,40.51769],[-105.07968,40.51785],[-105.07968,40.51804],[-105.07974,40.51819],[-105.07992,40.51827],[-105.08012,40.51831],[-105.08028,40.51832]]}},{"type":"Feature","properties":{"name":"FLEX:03"},"geometry":{"type":"LineString","coordinates":[[-105.10388,40.17251],[-105.10386,40.17236],[-105.10386,40.17217],[-105.10386,40.17201],[-105.10386,40.17184],[-105.10386,40.17167],[-105.10386,40.17148],[-105.10386,40.1713],[-105.10386,40.17113],[-105.10382,40.17095],[-105.10382,40.17079],[-105.1037,40.17067],[-105.10346,40.17064],[-105.10319,40.17066],[-105.10301,40.17069],[-105.10277,40.17069],[-105.10259,40.17072],[-105.10249,40.17083],[-105.10247,40.17105],[-105.10247,40.17121],[-105.10247,40.17139],[-105.10245,40.1716],[-105.10245,40.17182],[-105.10245,40.17204],[-105.10245,40.17227],[-105.10245,40.17248],[-105.10245,40.1727],[-105.10245,40.17293],[-105.10243,40.17317],[-105.10243,40.17341],[-105.10243,40.17365],[-105.10243,40.17389],[-105.10243,40.17413],[-105.10243,40.17437],[-105.10241,40.17462],[-105.10239,40.17487],[-105.10239,40.17513],[-105.10239,40.17539],[-105.10239,40.17564],[-105.10239,40.1759],[-105.10239,40.17614],[-105.10239,40.17638],[-105.10237,40.17662],[-105.10237,40.17683],[-105.10237,40.17703],[-105.10235,40.17721],[-105.10235,40.17734],[-105.10235,40.17751],[-105.10235,40.17765],[-105.10235,40.17783],[-105.10233,40.17803],[-105.10233,40.17827],[-105.10233,40.17852],[-105.10233,40.17878],[-105.10233,40.17905],[-105.10233,40.1792],[-105.10233,40.17947],[-105.10231,40.17974],[-105.10231,40.18001],[-105.10231,40.18028],[-105.10231,40.18043],[-105.10231,40.18056],[-105.10231,40.18071],[-105.10231,40.18084],[-105.10231,40.18098],[-105.10231,40.18112],[-105.10231,40.18126],[-105.10229,40.1814],[-105.10229,40.18155],[-105.10229,40.18168],[-105.10229,40.18183],[-105.10229,40.1821],[-105.10229,40.18235],[-105.10227,40.18261],[-105.10227,40.18284],[-105.10225,40.18307],[-105.10225,40.18329],[-105.10225,40.1835],[-105.10225,40.18371],[-105.10225,40.18391],[-105.10223,40.18409],[-105.10223,40.18426],[-105.10223,40.18444],[-105.10223,40.18463],[-105.10223,40.18484],[-105.10223,40.185],[-105.10221,40.1852],[-105.10221,40.18541],[-105.10221,40.18562],[-105.10221,40.18584],[-105.10221,40.18607],[-105.10221,40.18628],[-105.10219,40.1865],[-105.10219,40.18671],[-105.10219,40.18691],[-105.10219,40.1871],[-105.10219,40.18729],[-105.10219,40.18746],[-105.10219,40.18764],[-105.10219,40.18778],[-105.10219,40.18795],[-105.10219,40.18811],[-105.10219,40.18825],[-105.10218,40.18838],[-105.10218,40.18854],[-105.10219,40.18871],[-105.10219,40.1889],[-105.10219,40.1891],[-105.10219,40.18933],[-105.10219,40.18957],[-105.10219,40.18982],[-105.10219,40.19008],[-105.10219,40.19035],[-105.10219,40.19062],[-105.10221,40.19089],[-105.10221,40.19103],[-105.10221,40.19116],[-105.10221,40.19145],[-105.10221,40.19159],[-105.10221,40.19172],[-105.10223,40.19186],[-105.10223,40.192],[-105.10223,40.19213],[-105.10223,40.19228],[-105.10223,40.19255],[-105.10223,40.19282],[-105.10223,40.1931],[-105.10223,40.19324],[-105.10225,40.19352],[-105.10225,40.19378],[-105.10225,40.19403],[-105.10225,40.19425],[-105.10225,40.19445],[-105.10225,40.19464],[-105.10225,40.1948],[-105.10225,40.19498],[-105.10227,40.19516],[-105.10225,40.19537],[-105.10225,40.19553],[-105.10227,40.19569],[-105.10227,40.19587],[-105.10229,40.19605],[-105.10229,40.19624],[-105.10229,40.19642],[-105.10229,40.19662],[-105.10225,40.19682],[-105.10225,40.197],[-105.10225,40.19714],[-105.10225,40.19731],[-105.10225,40.19736],[-105.10229,40.1975],[-105.10231,40.1977],[-105.10231,40.19787],[-105.10231,40.19807],[-105.10231,40.19828],[-105.10231,40.19852],[-105.10231,40.19877],[-105.10231,40.19902],[-105.10233,40.19929],[-105.10233,40.19956],[-105.10233,40.19982],[-105.10233,40.2001],[-105.10233,40.20037],[-105.10233,40.20064],[-105.10233,40.2009],[-105.10235,40.20117],[-105.10235,40.20144],[-105.10235,40.2017],[-105.10235,40.20194],[-105.10235,40.20217],[-105.10237,40.20235],[-105.10237,40.20251],[-105.10239,40.20266],[-105.10239,40.20283],[-105.10239,40.20302],[-105.10239,40.20324],[-105.10239,40.20347],[-105.10239,40.2037],[-105.10239,40.20396],[-105.10239,40.20423],[-105.10239,40.20437],[-105.10239,40.20452],[-105.10239,40.20466],[-105.10239,40.20481],[-105.10239,40.20496],[-105.10239,40.2051],[-105.10239,40.20525],[-105.10239,40.2054],[-105.10239,40.20555],[-105.10239,40.2057],[-105.10239,40.20586],[-105.10239,40.206],[-105.10239,40.20616],[-105.10239,40.20632],[-105.10239,40.20647],[-105.10239,40.20663],[-105.10239,40.20679],[-105.10239,40.20695],[-105.10239,40.20711],[-105.10239,40.20727],[-105.10237,40.20743],[-105.10235,40.2076],[-105.10235,40.20777],[-105.10233,40.20793],[-105.10233,40.20809],[-105.10233,40.20827],[-105.10231,40.20843],[-105.10231,40.2086],[-105.10231,40.20878],[-105.10231,40.20894],[-105.10229,40.20912],[-105.10229,40.20928],[-105.10229,40.20946],[-105.10227,40.20964],[-105.10225,40.20981],[-105.10225,40.20998],[-105.10225,40.21015],[-105.10225,40.21032],[-105.10225,40.2105],[-105.10223,40.21068],[-105.10223,40.21085],[-105.10223,40.21102],[-105.10223,40.21121],[-105.10223,40.21139],[-105.10223,40.21157],[-105.10223,40.21175],[-105.10223,40.21195],[-105.10223,40.21214],[-105.10223,40.21232],[-105.10223,40.2125],[-105.10223,40.21269],[-105.10223,40.21288],[-105.10223,40.21308],[-105.10223,40.21326],[-105.10223,40.21345],[-105.10223,40.21363],[-105.10223,40.21381],[-105.10225,40.214],[-105.10225,40.21419],[-105.10225,40.21437],[-105.10225,40.21456],[-105.10225,40.21474],[-105.10225,40.21493],[-105.10225,40.21512],[-105.10225,40.2153],[-105.10225,40.21548],[-105.10225,40.21567],[-105.10225,40.21586],[-105.10225,40.21603],[-105.10225,40.21623],[-105.10225,40.21641],[-105.10225,40.21659],[-105.10225,40.21678],[-105.10225,40.21696],[-105.10225,40.21715],[-105.10225,40.21734],[-105.10225,40.21752],[-105.10225,40.2177],[-105.10225,40.2179],[-105.10225,40.21808],[-105.10225,40.21827],[-105.10225,40.21845],[-105.10225,40.21862],[-105.10225,40.2188],[-105.10225,40.21897],[-105.10225,40.21913],[-105.10225,40.21929],[-105.10225,40.21946],[-105.10225,40.21961],[-105.10225,40.21977],[-105.10225,40.21991],[-105.10225,40.22006],[-105.10225,40.2202],[-105.10225,40.22035],[-105.10225,40.22048],[-105.10225,40.22062],[-105.10225,40.22089],[-105.10225,40.22116],[-105.10225,40.22129],[-105.10225,40.22157],[-105.10225,40.22171],[-105.10223,40.22186],[-105.10223,40.222],[-105.10223,40.22214],[-105.10223,40.22228],[-105.10223,40.22244],[-105.10223,40.22258],[-105.10225,40.22272],[-105.10225,40.22286],[-105.10223,40.22314],[-105.10223,40.2234],[-105.10223,40.22366],[-105.10225,40.22393],[-105.10223,40.2242],[-105.10223,40.22448],[-105.10223,40.22475],[-105.10223,40.22501],[-105.10223,40.22527],[-105.10223,40.22554],[-105.10223,40.22581],[-105.10223,40.22597],[-105.10223,40.2261],[-105.10223,40.22624],[-105.10223,40.22639],[-105.10223,40.22654],[-105.10223,40.22668],[-105.10223,40.22683],[-105.10223,40.22698],[-105.10223,40.22713],[-105.10223,40.22729],[-105.10223,40.22743],[-105.10223,40.22759],[-105.10223,40.22774],[-105.10223,40.2279],[-105.10223,40.22805],[-105.10223,40.22821],[-105.10223,40.22836],[-105.10223,40.22849],[-105.10223,40.22864],[-105.10223,40.22878],[-105.10223,40.22891],[-105.10223,40.22918],[-105.10223,40.22945],[-105.10223,40.2297],[-105.10223,40.22995],[-105.10223,40.23022],[-105.10223,40.23047],[-105.10223,40.2307],[-105.10223,40.23092],[-105.10223,40.23113],[-105.10223,40.23134],[-105.10223,40.23157],[-105.10223,40.23179],[-105.10223,40.23203],[-105.10223,40.23227],[-105.10223,40.23252],[-105.10223,40.23278],[-105.10223,40.23305],[-105.10223,40.23333],[-105.10223,40.23347],[-105.10223,40.23361],[-105.10223,40.23375],[-105.10223,40.2339],[-105.10221,40.23405],[-105.10221,40.23421],[-105.10221,40.23435],[-105.10221,40.23451],[-105.10223,40.23467],[-105.10223,40.23483],[-105.10223,40.23499],[-105.10223,40.23516],[-105.10223,40.23533],[-105.10223,40.23549],[-105.10223,40.23566],[-105.10223,40.23584],[-105.10223,40.236],[-105.10225,40.23618],[-105.10225,40.23636],[-105.10225,40.23654],[-105.10227,40.23671],[-105.10229,40.23689],[-105.10231,40.23706],[-105.10231,40.23723],[-105.10233,40.2374],[-105.10233,40.23758],[-105.10235,40.23775],[-105.10239,40.23793],[-105.10239,40.2381],[-105.10239,40.23828],[-105.10243,40.23845],[-105.10245,40.23862],[-105.10245,40.2388],[-105.10249,40.23898],[-105.10251,40.23916],[-105.10251,40.23934],[-105.10253,40.23951],[-105.10255,40.2397],[-105.10255,40.23988],[-105.10257,40.24006],[-105.10257,40.24025],[-105.10259,40.24044],[-105.10261,40.24062],[-105.10261,40.2408],[-105.10263,40.24099],[-105.10263,40.24117],[-105.10263,40.24136],[-105.10263,40.24154],[-105.10263,40.24173],[-105.10263,40.24191],[-105.10263,40.24209],[-105.10263,40.24227],[-105.10263,40.24245],[-105.10263,40.24264],[-105.10263,40.24282],[-105.10263,40.243],[-105.10263,40.24319],[-105.10263,40.24337],[-105.10265,40.24355],[-105.10265,40.24374],[-105.10265,40.24393],[-105.10265,40.24411],[-105.10265,40.2443],[-105.10265,40.24448],[-105.10265,40.24467],[-105.10265,40.24486],[-105.10265,40.24504],[-105.10265,40.24522],[-105.10265,40.2454],[-105.10265,40.2456],[-105.10265,40.24577],[-105.10267,40.24595],[-105.10267,40.24614],[-105.10267,40.24632],[-105.10267,40.24651],[-105.10267,40.24668],[-105.10267,40.24687],[-105.10267,40.24705],[-105.10267,40.24724],[-105.10267,40.24743],[-105.10267,40.24761],[-105.10267,40.2478],[-105.10267,40.24799],[-105.10267,40.24817],[-105.10267,40.24835],[-105.10267,40.24854],[-105.10267,40.24873],[-105.10267,40.24892],[-105.10267,40.2491],[-105.10267,40.24929],[-105.10267,40.24947],[-105.10267,40.24966],[-105.10267,40.24985],[-105.10267,40.25004],[-105.10267,40.25022],[-105.10267,40.2504],[-105.10267,40.25059],[-105.10267,40.25077],[-105.10267,40.25094],[-105.10267,40.25113],[-105.10267,40.2513],[-105.10267,40.25148],[-105.10267,40.25166],[-105.10267,40.25183],[-105.10267,40.25201],[-105.10271,40.25219],[-105.10271,40.25237],[-105.10271,40.25256],[-105.10271,40.25273],[-105.10271,40.25292],[-105.10271,40.2531],[-105.10271,40.25328],[-105.10271,40.25346],[-105.10271,40.25363],[-105.10271,40.25382],[-105.10271,40.254],[-105.10271,40.25417],[-105.10267,40.25435],[-105.10267,40.25453],[-105.10267,40.25472],[-105.10267,40.25489],[-105.10265,40.25507],[-105.10263,40.25525],[-105.10263,40.25543],[-105.10261,40.25561],[-105.10259,40.25579],[-105.10257,40.25597],[-105.10257,40.25614],[-105.10255,40.25632],[-105.10253,40.25649],[-105.10251,40.25667],[-105.10249,40.25686],[-105.10247,40.25703],[-105.10245,40.2572],[-105.10243,40.25738],[-105.10241,40.25756],[-105.10239,40.25773],[-105.10239,40.25791],[-105.10237,40.25809],[-105.10235,40.25828],[-105.10233,40.25846],[-105.10233,40.25865],[-105.10233,40.25883],[-105.10231,40.25901],[-105.10231,40.25919],[-105.10231,40.25936],[-105.10231,40.25953],[-105.10231,40.25971],[-105.10231,40.25988],[-105.10231,40.26006],[-105.10231,40.26023],[-105.10231,40.2604],[-105.10231,40.26058],[-105.10231,40.26075],[-105.10229,40.26092],[-105.10229,40.26109],[-105.10229,40.26127],[-105.10229,40.26143],[-105.10229,40.26161],[-105.10231,40.26179],[-105.10231,40.26197],[-105.10231,40.26213],[-105.10231,40.26231],[-105.10231,40.26248],[-105.10231,40.26266],[-105.10231,40.26283],[-105.10231,40.26301],[-105.10231,40.26318],[-105.10231,40.26336],[-105.10231,40.26354],[-105.10231,40.26371],[-105.10231,40.2639],[-105.10231,40.26407],[-105.10231,40.26425],[-105.10231,40.26443],[-105.10231,40.26461],[-105.10231,40.26479],[-105.10231,40.26496],[-105.10231,40.26513],[-105.10231,40.2653],[-105.10231,40.26547],[-105.10231,40.26564],[-105.10231,40.26581],[-105.10231,40.26598],[-105.10231,40.26615],[-105.10231,40.26632],[-105.10231,40.2665],[-105.10231,40.26667],[-105.10231,40.26685],[-105.10231,40.26703],[-105.10231,40.2672],[-105.10231,40.26738],[-105.10231,40.26755],[-105.10231,40.26773],[-105.10231,40.26791],[-105.10231,40.26808],[-105.10231,40.26825],[-105.10231,40.26843],[-105.10233,40.2686],[-105.10233,40.26878],[-105.10233,40.26894],[-105.10233,40.26913],[-105.10233,40.2693],[-105.10233,40.26948],[-105.10233,40.26966],[-105.10233,40.26984],[-105.10233,40.27001],[-105.10233,40.27018],[-105.10233,40.27035],[-105.10233,40.27052],[-105.10233,40.27069],[-105.10233,40.27087],[-105.10233,40.27104],[-105.10233,40.27122],[-105.10233,40.27139],[-105.10233,40.27157],[-105.10233,40.27174],[-105.10233,40.27192],[-105.10233,40.2721],[-105.10235,40.27228],[-105.10235,40.27246],[-105.10235,40.27264],[-105.10233,40.27282],[-105.10233,40.273],[-105.10235,40.27318],[-105.10235,40.27336],[-105.10235,40.27354],[-105.10235,40.27372],[-105.10235,40.2739],[-105.10235,40.27408],[-105.10235,40.27426],[-105.10235,40.27443],[-105.10235,40.27461],[-105.10235,40.27478],[-105.10235,40.27495],[-105.10235,40.27512],[-105.10235,40.27529],[-105.10235,40.27547],[-105.10235,40.27564],[-105.10235,40.27582],[-105.10235,40.27599],[-105.10235,40.27618],[-105.10235,40.27636],[-105.10235,40.27654],[-105.10235,40.27672],[-105.10235,40.27691],[-105.10235,40.27709],[-105.10235,40.27728],[-105.10237,40.27746],[-105.10237,40.27765],[-105.10237,40.27782],[-105.10237,40.278],[-105.10235,40.27819],[-105.10235,40.27837],[-105.10235,40.27855],[-105.10235,40.27873],[-105.10237,40.27892],[-105.10235,40.27909],[-105.10235,40.27927],[-105.10235,40.27946],[-105.10235,40.27963],[-105.10235,40.27982],[-105.10235,40.28],[-105.10235,40.28017],[-105.10235,40.28036],[-105.10235,40.28054],[-105.10235,40.28071],[-105.10235,40.28089],[-105.10235,40.28107],[-105.10235,40.28125],[-105.10235,40.28142],[-105.10235,40.2816],[-105.10235,40.28178],[-105.10235,40.28195],[-105.10235,40.28213],[-105.10235,40.28229],[-105.10235,40.28247],[-105.10235,40.28264],[-105.10235,40.28281],[-105.10235,40.28298],[-105.10235,40.28315],[-105.10235,40.28331],[-105.10235,40.28349],[-105.10235,40.28365],[-105.10235,40.28382],[-105.10235,40.28399],[-105.10235,40.28415],[-105.10235,40.28432],[-105.10235,40.28451],[-105.10235,40.28468],[-105.10235,40.28486],[-105.10235,40.28504],[-105.10235,40.28522],[-105.10237,40.2854],[-105.10237,40.28557],[-105.10237,40.28575],[-105.10237,40.28593],[-105.10237,40.2861],[-105.10235,40.28628],[-105.10235,40.28646],[-105.10235,40.28664],[-105.10235,40.28683],[-105.10235,40.28699],[-105.10237,40.28717],[-105.10237,40.28736],[-105.10237,40.28754],[-105.10237,40.28771],[-105.10237,40.28788],[-105.10237,40.28806],[-105.10237,40.28824],[-105.10235,40.28842],[-105.10235,40.2886],[-105.10235,40.28877],[-105.10237,40.28895],[-105.10237,40.28913],[-105.10237,40.28931],[-105.10237,40.28949],[-105.10237,40.28968],[-105.10237,40.28986],[-105.10237,40.29004],[-105.10237,40.29022],[-105.10239,40.2904],[-105.10239,40.29059],[-105.10239,40.29077],[-105.10239,40.29096],[-105.10237,40.29113],[-105.10237,40.29131],[-105.10237,40.2915],[-105.10237,40.29167],[-105.10239,40.29185],[-105.10237,40.29202],[-105.10237,40.29221],[-105.10237,40.29239],[-105.10237,40.29256],[-105.10237,40.29275],[-105.10237,40.29292],[-105.10237,40.2931],[-105.10237,40.29328],[-105.10237,40.29344],[-105.10237,40.29362],[-105.10237,40.2938],[-105.10237,40.29396],[-105.10237,40.29413],[-105.10237,40.29429],[-105.10239,40.29445],[-105.10239,40.29463],[-105.10239,40.29479],[-105.10239,40.29496],[-105.10239,40.29513],[-105.10239,40.2953],[-105.10239,40.29547],[-105.10239,40.29565],[-105.10243,40.29581],[-105.10245,40.29599],[-105.10247,40.29615],[-105.10251,40.29632],[-105.10253,40.2965],[-105.10257,40.29667],[-105.10259,40.29683],[-105.10263,40.29701],[-105.10267,40.29717],[-105.10273,40.29733],[-105.10277,40.2975],[-105.10281,40.29766],[-105.10287,40.29782],[-105.10291,40.29798],[-105.10297,40.29813],[-105.10303,40.29828],[-105.10309,40.29844],[-105.10315,40.29859],[-105.10323,40.29875],[-105.10331,40.2989],[-105.10337,40.29904],[-105.10346,40.29918],[-105.10354,40.29933],[-105.10362,40.29948],[-105.1037,40.29963],[-105.10378,40.29977],[-105.10388,40.29992],[-105.10396,40.30007],[-105.10406,40.30022],[-105.10416,40.30036],[-105.10424,40.30051],[-105.10434,40.30067],[-105.10444,40.30081],[-105.10454,40.30097],[-105.10462,40.30113],[-105.10472,40.30129],[-105.10482,40.30145],[-105.10492,40.3016],[-105.10501,40.30176],[-105.1051,40.30192],[-105.10518,40.30208],[-105.10525,40.30224],[-105.10531,40.30241],[-105.10537,40.30257],[-105.10545,40.30274],[-105.10549,40.30289],[-105.10555,40.30305],[-105.10559,40.3032],[-105.10565,40.30336],[-105.10569,40.30351],[-105.10573,40.30367],[-105.10575,40.30382],[-105.10579,40.30395],[-105.10581,40.30409],[-105.10585,40.30434],[-105.10589,40.30457],[-105.10591,40.30476],[-105.10591,40.30494],[-105.10583,40.3051],[-105.10569,40.3052],[-105.10545,40.30526],[-105.10518,40.30527],[-105.1049,40.30528],[-105.10458,40.30529],[-105.10424,40.3053],[-105.1039,40.3053],[-105.10354,40.3053],[-105.10323,40.3053],[-105.10291,40.30532],[-105.10259,40.30532],[-105.10225,40.30532],[-105.1019,40.30532],[-105.10154,40.30532],[-105.10136,40.30532],[-105.10118,40.30532],[-105.10098,40.30532],[-105.10078,40.30532],[-105.10058,40.30532],[-105.10041,40.30532],[-105.10021,40.30532],[-105.10001,40.30532],[-105.09985,40.30532],[-105.09965,40.30532],[-105.09945,40.30532],[-105.09925,40.30532],[-105.09906,40.30532],[-105.09888,40.30532],[-105.09866,40.30532],[-105.09846,40.30532],[-105.09828,40.30533],[-105.09808,40.30533],[-105.09788,40.30533],[-105.09767,40.30533],[-105.09746,40.30533],[-105.09727,40.30533],[-105.09705,40.30534],[-105.09683,40.30534],[-105.09663,40.30534],[-105.09643,40.30535],[-105.09621,40.30535],[-105.09601,40.30535],[-105.09582,40.30535],[-105.0956,40.30535],[-105.09538,40.30534],[-105.09518,40.30534],[-105.09498,40.30533],[-105.09476,40.30533],[-105.09457,40.30533],[-105.09435,40.30533],[-105.09417,40.30534],[-105.09393,40.30534],[-105.09373,40.30534],[-105.09351,40.30534],[-105.09333,40.30533],[-105.09311,40.30533],[-105.09289,40.30533],[-105.0927,40.30533],[-105.0925,40.30533],[-105.0923,40.30532],[-105.0921,40.30532],[-105.09194,40.30532],[-105.09158,40.30532],[-105.09127,40.3053],[-105.09095,40.3053],[-105.09065,40.3053],[-105.09033,40.30529],[-105.09001,40.30529],[-105.08976,40.30528],[-105.08944,40.30527],[-105.08914,40.30526],[-105.08882,40.30526],[-105.08854,40.30526],[-105.08825,40.30526],[-105.08793,40.30525],[-105.08763,40.30524],[-105.08733,40.30524],[-105.08701,40.30522],[-105.08672,40.30522],[-105.08642,40.30522],[-105.0861,40.30522],[-105.08578,40.30522],[-105.08549,40.30522],[-105.08519,40.30521],[-105.08489,40.30521],[-105.08459,40.30521],[-105.08429,40.30522],[-105.084,40.30522],[-105.0837,40.30522],[-105.0834,40.30523],[-105.0831,40.30524],[-105.08278,40.30524],[-105.08246,40.30525],[-105.08219,40.30525],[-105.08187,40.30526],[-105.08161,40.30526],[-105.08133,40.30526],[-105.08107,40.30526],[-105.08083,40.30526],[-105.08058,40.30526],[-105.08038,40.30526],[-105.08012,40.30526],[-105.07992,40.30526],[-105.0797,40.30526],[-105.07953,40.30526],[-105.07929,40.30526],[-105.07907,40.30526],[-105.07887,40.30527],[-105.07867,40.30527],[-105.07845,40.30528],[-105.07823,40.30528],[-105.07803,40.30528],[-105.07783,40.30528],[-105.07764,40.30528],[-105.0774,40.30529],[-105.07716,40.30529],[-105.07692,40.30529],[-105.07668,40.30529],[-105.07649,40.30529],[-105.07631,40.30527],[-105.07621,40.30526],[-105.07601,40.30528],[-105.07575,40.30528],[-105.07553,40.30529],[-105.07529,40.3053],[-105.07506,40.30533],[-105.07485,40.30537],[-105.07466,40.30539],[-105.07442,40.30537],[-105.07422,40.30533],[-105.07406,40.30539],[-105.07406,40.30555],[-105.07412,40.30568],[-105.07414,40.30585],[-105.07412,40.30604],[-105.07412,40.30626],[-105.07412,40.30648],[-105.07412,40.30671],[-105.07412,40.30695],[-105.07412,40.3072],[-105.07412,40.30745],[-105.07412,40.3077],[-105.07412,40.30796],[-105.07412,40.30822],[-105.07412,40.30847],[-105.07412,40.30871],[-105.07412,40.30894],[-105.07412,40.30917],[-105.07414,40.30941],[-105.07416,40.30964],[-105.07416,40.30989],[-105.07418,40.31014],[-105.07418,40.31041],[-105.07418,40.31068],[-105.07418,40.31082],[-105.07418,40.31096],[-105.07418,40.3111],[-105.07418,40.31124],[-105.07418,40.31138],[-105.07418,40.31153],[-105.07418,40.31167],[-105.07418,40.31182],[-105.07418,40.31196],[-105.07418,40.31211],[-105.07418,40.31226],[-105.07418,40.31241],[-105.07418,40.31255],[-105.07418,40.3127],[-105.07418,40.31285],[-105.07418,40.31301],[-105.07418,40.31317],[-105.07418,40.31333],[-105.07418,40.31349],[-105.07418,40.31364],[-105.07418,40.31381],[-105.07418,40.31397],[-105.07418,40.31412],[-105.07418,40.31429],[-105.07418,40.31446],[-105.07418,40.31462],[-105.07418,40.31479],[-105.07418,40.31496],[-105.07418,40.31513],[-105.07418,40.3153],[-105.07418,40.31546],[-105.07418,40.31564],[-105.07418,40.31581],[-105.07418,40.31598],[-105.07418,40.31615],[-105.07418,40.31632],[-105.07418,40.3165],[-105.07418,40.31667],[-105.07418,40.31684],[-105.07418,40.31703],[-105.07418,40.31719],[-105.07418,40.31737],[-105.07418,40.31754],[-105.07418,40.31772],[-105.07422,40.31789],[-105.07422,40.31807],[-105.07422,40.31824],[-105.07422,40.31841],[-105.07422,40.31859],[-105.07422,40.31876],[-105.07422,40.31893],[-105.07422,40.31911],[-105.07422,40.31927],[-105.07422,40.31945],[-105.07422,40.31962],[-105.07422,40.31979],[-105.07422,40.31997],[-105.07422,40.32014],[-105.07422,40.32031],[-105.07422,40.32049],[-105.07422,40.32067],[-105.07422,40.32085],[-105.07422,40.32103],[-105.07424,40.32121],[-105.07424,40.32139],[-105.07424,40.32157],[-105.07424,40.32175],[-105.07424,40.32193],[-105.07424,40.3221],[-105.07424,40.32229],[-105.07424,40.32246],[-105.07424,40.32264],[-105.07424,40.32282],[-105.07424,40.323],[-105.07424,40.32319],[-105.07424,40.32337],[-105.07424,40.32354],[-105.07424,40.32372],[-105.07426,40.3239],[-105.07426,40.32407],[-105.07426,40.32425],[-105.07426,40.32442],[-105.07426,40.3246],[-105.07426,40.32477],[-105.07426,40.32495],[-105.07426,40.32511],[-105.07426,40.32529],[-105.07426,40.32547],[-105.07426,40.32563],[-105.07426,40.32581],[-105.07426,40.32597],[-105.07426,40.32615],[-105.07426,40.32631],[-105.07426,40.32648],[-105.07426,40.32664],[-105.07428,40.3268],[-105.07428,40.32697],[-105.07428,40.32712],[-105.07428,40.32729],[-105.07428,40.32745],[-105.07428,40.32762],[-105.07428,40.32779],[-105.07428,40.32796],[-105.07428,40.32813],[-105.07428,40.3283],[-105.0743,40.32849],[-105.0743,40.32866],[-105.0743,40.32884],[-105.0743,40.32903],[-105.0743,40.3292],[-105.0743,40.32938],[-105.0743,40.32957],[-105.0743,40.32976],[-105.0743,40.32994],[-105.0743,40.33012],[-105.0743,40.33031],[-105.0743,40.33049],[-105.0743,40.33067],[-105.0743,40.33085],[-105.0743,40.33104],[-105.0743,40.33122],[-105.0743,40.3314],[-105.0743,40.33158],[-105.0743,40.33177],[-105.0743,40.33194],[-105.0743,40.33212],[-105.0743,40.33231],[-105.0743,40.33249],[-105.0743,40.33267],[-105.0743,40.33285],[-105.0743,40.33303],[-105.0743,40.33321],[-105.0743,40.3334],[-105.0743,40.33358],[-105.0743,40.33376],[-105.0743,40.33394],[-105.0743,40.33413],[-105.0743,40.33431],[-105.07432,40.33449],[-105.07432,40.33467],[-105.07432,40.33485],[-105.07432,40.33504],[-105.07432,40.33523],[-105.07432,40.3354],[-105.07432,40.33558],[-105.07432,40.33576],[-105.0743,40.33593],[-105.0743,40.33611],[-105.07426,40.3363],[-105.07422,40.33647],[-105.07418,40.33665],[-105.07412,40.33681],[-105.07408,40.33699],[-105.07402,40.33716],[-105.074,40.33733],[-105.07396,40.3375],[-105.07392,40.33767],[-105.0739,40.33784],[-105.07388,40.33801],[-105.07388,40.33818],[-105.07388,40.33836],[-105.07388,40.33855],[-105.07388,40.33872],[-105.07388,40.3389],[-105.07388,40.3391],[-105.07388,40.33928],[-105.07388,40.33948],[-105.07388,40.33967],[-105.07388,40.33985],[-105.07388,40.34004],[-105.07388,40.34023],[-105.07388,40.34041],[-105.0739,40.34061],[-105.0739,40.3408],[-105.0739,40.34099],[-105.07392,40.34119],[-105.07392,40.34137],[-105.07392,40.34156],[-105.07392,40.34173],[-105.07392,40.34192],[-105.07392,40.34211],[-105.07392,40.3423],[-105.07392,40.34249],[-105.07392,40.34268],[-105.07392,40.34287],[-105.07392,40.34305],[-105.07392,40.34324],[-105.07392,40.34343],[-105.07392,40.34363],[-105.07392,40.34381],[-105.07392,40.34401],[-105.07392,40.3442],[-105.07392,40.34438],[-105.07392,40.34457],[-105.07392,40.34476],[-105.07392,40.34494],[-105.07392,40.34513],[-105.07392,40.34533],[-105.07392,40.3455],[-105.07392,40.34569],[-105.07392,40.34587],[-105.07392,40.34607],[-105.07392,40.34625],[-105.07392,40.34644],[-105.07392,40.34663],[-105.07392,40.34681],[-105.07392,40.34699],[-105.07392,40.34717],[-105.07392,40.34736],[-105.07392,40.34754],[-105.07392,40.34772],[-105.07392,40.34792],[-105.07392,40.34809],[-105.07392,40.34828],[-105.07392,40.34847],[-105.07392,40.34866],[-105.07392,40.34884],[-105.07392,40.34901],[-105.07392,40.3492],[-105.07392,40.34937],[-105.07392,40.34954],[-105.07392,40.34971],[-105.07392,40.34988],[-105.07392,40.35005],[-105.07392,40.35021],[-105.07392,40.35036],[-105.07392,40.35051],[-105.07392,40.35078],[-105.07392,40.35103],[-105.07392,40.3513],[-105.07392,40.35144],[-105.07392,40.35159],[-105.07392,40.35174],[-105.07392,40.35189],[-105.07392,40.35205],[-105.07392,40.35222],[-105.07392,40.35238],[-105.07392,40.35255],[-105.07392,40.35272],[-105.07392,40.35289],[-105.07392,40.35307],[-105.07392,40.35325],[-105.07392,40.35341],[-105.07392,40.3536],[-105.07392,40.35377],[-105.07392,40.35396],[-105.0739,40.35413],[-105.0739,40.35431],[-105.0739,40.35448],[-105.0739,40.35466],[-105.07388,40.35483],[-105.07388,40.355],[-105.07386,40.35518],[-105.07386,40.35536],[-105.07386,40.35553],[-105.07384,40.35571],[-105.07384,40.35588],[-105.0738,40.35605],[-105.0738,40.35623],[-105.07378,40.3564],[-105.07376,40.35657],[-105.07376,40.35674],[-105.07374,40.35692],[-105.07374,40.3571],[-105.0737,40.35726],[-105.0737,40.35744],[-105.0737,40.3576],[-105.07366,40.35778],[-105.07366,40.35795],[-105.07364,40.35812],[-105.07364,40.35829],[-105.07362,40.35846],[-105.0736,40.35865],[-105.07358,40.35883],[-105.07356,40.359],[-105.07356,40.35918],[-105.07356,40.35936],[-105.07353,40.35954],[-105.0735,40.35972],[-105.0735,40.35989],[-105.0735,40.36007],[-105.07349,40.36024],[-105.07346,40.36042],[-105.07345,40.36059],[-105.07345,40.36076],[-105.07343,40.36094],[-105.0734,40.36112],[-105.07339,40.36129],[-105.07339,40.36147],[-105.07336,40.36166],[-105.07336,40.36184],[-105.07335,40.36202],[-105.07332,40.3622],[-105.07332,40.36238],[-105.07331,40.36256],[-105.07329,40.36275],[-105.07329,40.36292],[-105.07325,40.36311],[-105.07325,40.3633],[-105.07323,40.36348],[-105.07323,40.36365],[-105.07319,40.36384],[-105.07319,40.36402],[-105.07319,40.36421],[-105.07315,40.36439],[-105.07315,40.36457],[-105.07313,40.36476],[-105.07313,40.36494],[-105.07311,40.36512],[-105.07309,40.3653],[-105.07307,40.36549],[-105.07305,40.36567],[-105.07305,40.36585],[-105.07303,40.36604],[-105.07303,40.36621],[-105.07301,40.36639],[-105.07299,40.36658],[-105.07297,40.36675],[-105.07297,40.36693],[-105.07293,40.36712],[-105.07291,40.36728],[-105.07289,40.36745],[-105.07287,40.36763],[-105.07283,40.36781],[-105.07281,40.36798],[-105.07277,40.36815],[-105.07275,40.36832],[-105.07271,40.3685],[-105.07271,40.36868],[-105.07267,40.36884],[-105.07265,40.36902],[-105.07261,40.36918],[-105.07259,40.36936],[-105.07257,40.36953],[-105.07253,40.3697],[-105.07253,40.36988],[-105.07251,40.37005],[-105.07251,40.37022],[-105.07247,40.37039],[-105.07247,40.37057],[-105.07247,40.37073],[-105.07245,40.37089],[-105.07245,40.37103],[-105.07245,40.37119],[-105.07245,40.37134],[-105.07245,40.37148],[-105.07247,40.37174],[-105.07247,40.37199],[-105.07247,40.37219],[-105.07251,40.37236],[-105.07251,40.37251],[-105.07253,40.37268],[-105.07253,40.37289],[-105.07257,40.37303],[-105.07259,40.37321],[-105.07263,40.37344],[-105.07267,40.37369],[-105.07271,40.37396],[-105.07275,40.3741],[-105.07277,40.37425],[-105.07279,40.3744],[-105.07281,40.37454],[-105.07283,40.3747],[-105.07287,40.37485],[-105.07289,40.375],[-105.07291,40.37516],[-105.07293,40.37532],[-105.07297,40.37548],[-105.07301,40.37564],[-105.07303,40.37579],[-105.07305,40.37595],[-105.07307,40.37612],[-105.07309,40.37629],[-105.07311,40.37645],[-105.07313,40.37661],[-105.07313,40.37677],[-105.07313,40.37694],[-105.07313,40.3771],[-105.07313,40.37726],[-105.07315,40.37742],[-105.07315,40.37758],[-105.07315,40.37774],[-105.07315,40.37789],[-105.07315,40.37805],[-105.07315,40.37819],[-105.07315,40.37833],[-105.07315,40.37847],[-105.07315,40.37861],[-105.07313,40.37887],[-105.07313,40.37912],[-105.07313,40.37932],[-105.07313,40.37949],[-105.07313,40.37967],[-105.07313,40.37971],[-105.07313,40.37984],[-105.07315,40.38005],[-105.07315,40.38021],[-105.07315,40.38041],[-105.07315,40.38063],[-105.07317,40.38088],[-105.07319,40.38114],[-105.07319,40.38128],[-105.07319,40.38142],[-105.07323,40.38157],[-105.07323,40.38172],[-105.07323,40.38187],[-105.07325,40.38201],[-105.07325,40.38217],[-105.07325,40.38232],[-105.07327,40.38247],[-105.07327,40.38263],[-105.07329,40.38278],[-105.07329,40.38294],[-105.07329,40.38309],[-105.07329,40.38325],[-105.07329,40.38341],[-105.07329,40.38357],[-105.07329,40.38372],[-105.07327,40.38388],[-105.07327,40.38404],[-105.07327,40.38419],[-105.07327,40.38435],[-105.07327,40.3845],[-105.07325,40.38466],[-105.07325,40.38481],[-105.07325,40.38497],[-105.07325,40.38512],[-105.07325,40.38527],[-105.07325,40.38543],[-105.07325,40.38557],[-105.07325,40.38573],[-105.07325,40.38589],[-105.07325,40.38603],[-105.07325,40.38618],[-105.07323,40.38634],[-105.07323,40.38649],[-105.07323,40.38664],[-105.07323,40.38679],[-105.07323,40.38695],[-105.07323,40.3871],[-105.07323,40.38726],[-105.07323,40.3874],[-105.07323,40.38756],[-105.07323,40.38772],[-105.07323,40.38787],[-105.07323,40.38802],[-105.07323,40.38818],[-105.07323,40.38833],[-105.07323,40.38849],[-105.07319,40.38864],[-105.07319,40.3888],[-105.07319,40.38895],[-105.07319,40.38911],[-105.07319,40.38925],[-105.07319,40.3894],[-105.07319,40.38954],[-105.07319,40.38969],[-105.07319,40.38982],[-105.07319,40.38996],[-105.07319,40.39011],[-105.07319,40.39038],[-105.07323,40.39064],[-105.07323,40.3909],[-105.07319,40.39114],[-105.07319,40.39139],[-105.07319,40.39163],[-105.07319,40.39185],[-105.07319,40.39205],[-105.07319,40.39223],[-105.07319,40.39238],[-105.07319,40.39252],[-105.07319,40.39267],[-105.07319,40.39282],[-105.07319,40.39303],[-105.07319,40.39319],[-105.07319,40.39338],[-105.07319,40.39358],[-105.07319,40.3938],[-105.07319,40.39401],[-105.07319,40.39423],[-105.07319,40.39446],[-105.07317,40.39467],[-105.07317,40.39486],[-105.07315,40.39504],[-105.07315,40.39522],[-105.07315,40.39539],[-105.07315,40.39556],[-105.07315,40.39572],[-105.07315,40.39588],[-105.07315,40.39602],[-105.07315,40.39617],[-105.07315,40.39633],[-105.07313,40.39649],[-105.07313,40.39666],[-105.07313,40.39685],[-105.07313,40.39704],[-105.07313,40.39723],[-105.07313,40.39744],[-105.07313,40.39766],[-105.07313,40.39788],[-105.07313,40.39811],[-105.07311,40.39835],[-105.07309,40.3986],[-105.07309,40.39886],[-105.07309,40.39911],[-105.07307,40.39936],[-105.07307,40.39961],[-105.07307,40.39984],[-105.07305,40.40006],[-105.07305,40.40024],[-105.07305,40.40039],[-105.07305,40.40049],[-105.07305,40.40068],[-105.07305,40.40082],[-105.07305,40.40099],[-105.07305,40.40118],[-105.07305,40.40139],[-105.07305,40.40162],[-105.07303,40.40185],[-105.07303,40.40209],[-105.07303,40.40234],[-105.07303,40.40259],[-105.07301,40.40285],[-105.07301,40.40309],[-105.07301,40.40333],[-105.07301,40.40359],[-105.07301,40.40384],[-105.07301,40.40412],[-105.07301,40.40438],[-105.07301,40.40466],[-105.07299,40.40492],[-105.07299,40.4052],[-105.07299,40.40546],[-105.07299,40.40572],[-105.07299,40.40597],[-105.07299,40.40619],[-105.07299,40.40639],[-105.07301,40.40654],[-105.07301,40.40669],[-105.07301,40.40684],[-105.07301,40.40703],[-105.07301,40.40722],[-105.07301,40.40743],[-105.07299,40.40765],[-105.07297,40.40788],[-105.07297,40.40812],[-105.07297,40.40832],[-105.07297,40.40851],[-105.07297,40.40868],[-105.07297,40.40886],[-105.07297,40.40906],[-105.07297,40.40928],[-105.07297,40.40952],[-105.07297,40.40978],[-105.07299,40.41003],[-105.07299,40.4103],[-105.07299,40.41057],[-105.07297,40.41071],[-105.07297,40.41085],[-105.07297,40.41099],[-105.07297,40.41114],[-105.07297,40.41127],[-105.07297,40.41141],[-105.07297,40.41156],[-105.07297,40.4117],[-105.07297,40.41184],[-105.07297,40.41199],[-105.07297,40.41213],[-105.07297,40.41227],[-105.07297,40.41241],[-105.07297,40.41256],[-105.07297,40.4127],[-105.07297,40.41284],[-105.07297,40.41297],[-105.07297,40.41312],[-105.07297,40.41327],[-105.07297,40.4134],[-105.07297,40.41354],[-105.07297,40.41368],[-105.07297,40.41382],[-105.07297,40.41397],[-105.07297,40.4141],[-105.07297,40.41424],[-105.07297,40.41438],[-105.07297,40.41452],[-105.07297,40.41466],[-105.07293,40.41493],[-105.07293,40.41507],[-105.07293,40.41535],[-105.07293,40.41548],[-105.07293,40.41563],[-105.07293,40.41575],[-105.07293,40.41591],[-105.07293,40.41604],[-105.07293,40.41618],[-105.07293,40.41632],[-105.07293,40.41646],[-105.07293,40.4166],[-105.07293,40.41675],[-105.07293,40.41688],[-105.07293,40.41703],[-105.07293,40.41718],[-105.07293,40.41732],[-105.07293,40.41745],[-105.07293,40.4176],[-105.07293,40.41774],[-105.07293,40.41788],[-105.07297,40.41803],[-105.07299,40.41815],[-105.07301,40.4183],[-105.07305,40.41843],[-105.07309,40.41857],[-105.07315,40.41871],[-105.07319,40.41885],[-105.07329,40.41899],[-105.07335,40.41912],[-105.0734,40.41925],[-105.0735,40.41939],[-105.07358,40.41951],[-105.0737,40.41963],[-105.07378,40.41976],[-105.07388,40.41987],[-105.074,40.41999],[-105.07412,40.4201],[-105.07422,40.42021],[-105.07434,40.42032],[-105.07446,40.42042],[-105.0747,40.42063],[-105.07489,40.42083],[-105.07511,40.42102],[-105.07531,40.42121],[-105.07555,40.42141],[-105.07577,40.42161],[-105.07601,40.42181],[-105.07621,40.42201],[-105.0764,40.42221],[-105.0766,40.4224],[-105.07676,40.4226],[-105.07692,40.4228],[-105.07706,40.42301],[-105.07716,40.42323],[-105.07728,40.42345],[-105.07736,40.42369],[-105.07742,40.42394],[-105.07746,40.42417],[-105.07746,40.42439],[-105.07746,40.42457],[-105.07746,40.42471],[-105.07736,40.42484],[-105.0772,40.42486],[-105.07696,40.42486],[-105.07674,40.42487],[-105.07653,40.42488],[-105.0764,40.42475],[-105.0764,40.42459],[-105.0764,40.4244],[-105.0764,40.42423],[-105.0764,40.42408],[-105.0764,40.42408],[-105.0764,40.42388],[-105.0764,40.4237],[-105.0764,40.42356],[-105.07653,40.42338],[-105.07672,40.42332],[-105.0769,40.42327],[-105.07714,40.42322],[-105.07726,40.42332],[-105.0773,40.42348],[-105.07736,40.42367],[-105.07742,40.42388],[-105.07748,40.42413],[-105.0775,40.4244],[-105.0775,40.42454],[-105.0775,40.42468],[-105.0775,40.42482],[-105.0775,40.42497],[-105.0775,40.42513],[-105.0775,40.42527],[-105.0775,40.42543],[-105.0775,40.42558],[-105.0775,40.42574],[-105.07748,40.42589],[-105.07748,40.42604],[-105.07748,40.4262],[-105.07748,40.42636],[-105.07748,40.42652],[-105.07748,40.42667],[-105.07748,40.42683],[-105.07748,40.42698],[-105.07746,40.42713],[-105.07746,40.42728],[-105.07746,40.42743],[-105.07746,40.42757],[-105.07746,40.42773],[-105.07746,40.42787],[-105.07746,40.42802],[-105.07746,40.42818],[-105.07746,40.42833],[-105.07746,40.42849],[-105.07744,40.42863],[-105.07744,40.42878],[-105.07744,40.42893],[-105.07742,40.42907],[-105.07742,40.42923],[-105.07742,40.42936],[-105.07742,40.42961],[-105.07742,40.42984],[-105.07742,40.43002],[-105.0774,40.43015],[-105.0774,40.4303],[-105.0774,40.43049],[-105.0774,40.4307],[-105.07736,40.43087],[-105.07736,40.43104],[-105.07736,40.43117],[-105.07736,40.43132],[-105.07736,40.43141],[-105.07736,40.43159],[-105.07736,40.43181],[-105.07736,40.432],[-105.07736,40.43222],[-105.07736,40.43246],[-105.07736,40.43273],[-105.07736,40.43287],[-105.07736,40.43301],[-105.07736,40.43315],[-105.07736,40.43329],[-105.07736,40.43344],[-105.07734,40.4336],[-105.07734,40.43375],[-105.07732,40.4339],[-105.07732,40.43406],[-105.07732,40.43421],[-105.07732,40.43437],[-105.07732,40.43453],[-105.07732,40.43469],[-105.07732,40.43484],[-105.07732,40.435],[-105.07732,40.43515],[-105.0773,40.4353],[-105.0773,40.43545],[-105.0773,40.43569],[-105.07728,40.43589],[-105.07728,40.43606],[-105.07726,40.43624],[-105.07726,40.43628],[-105.07728,40.43642],[-105.0773,40.43663],[-105.0773,40.43682],[-105.0773,40.43702],[-105.07728,40.43724],[-105.07728,40.43748],[-105.0773,40.43773],[-105.07728,40.43798],[-105.07728,40.43824],[-105.07728,40.43849],[-105.07726,40.43873],[-105.07726,40.43894],[-105.07726,40.43911],[-105.07726,40.4393],[-105.07726,40.43937],[-105.07726,40.43953],[-105.07728,40.43967],[-105.07728,40.43984],[-105.07728,40.44005],[-105.07728,40.44028],[-105.07728,40.44054],[-105.07728,40.44069],[-105.07728,40.44082],[-105.07728,40.44097],[-105.07728,40.44112],[-105.07728,40.44128],[-105.07728,40.44144],[-105.07728,40.4416],[-105.07728,40.44176],[-105.07728,40.44193],[-105.07728,40.44209],[-105.07728,40.44227],[-105.07728,40.44243],[-105.07728,40.4426],[-105.07728,40.44277],[-105.07728,40.44293],[-105.07728,40.44311],[-105.07728,40.44327],[-105.07728,40.44343],[-105.07728,40.44357],[-105.07728,40.44372],[-105.07728,40.44386],[-105.07726,40.4441],[-105.07726,40.44431],[-105.07724,40.44449],[-105.07724,40.44467],[-105.07724,40.44472],[-105.07724,40.44486],[-105.07724,40.44503],[-105.07726,40.44524],[-105.07728,40.44544],[-105.07728,40.44565],[-105.07728,40.44591],[-105.07728,40.44619],[-105.07728,40.44634],[-105.07728,40.44649],[-105.07728,40.44665],[-105.07728,40.44681],[-105.07728,40.44698],[-105.07728,40.44714],[-105.07728,40.44731],[-105.07728,40.44748],[-105.07728,40.44764],[-105.07728,40.44781],[-105.07728,40.44798],[-105.07728,40.44815],[-105.07728,40.44833],[-105.07728,40.4485],[-105.07728,40.44867],[-105.07728,40.44885],[-105.07728,40.44902],[-105.07728,40.44919],[-105.07728,40.44936],[-105.07728,40.44953],[-105.07728,40.44971],[-105.07728,40.44988],[-105.07728,40.45005],[-105.07728,40.45025],[-105.07728,40.4504],[-105.07728,40.45056],[-105.07728,40.45074],[-105.07728,40.4509],[-105.07728,40.45106],[-105.07728,40.45121],[-105.07728,40.45136],[-105.07728,40.45149],[-105.07726,40.45173],[-105.07726,40.45194],[-105.07726,40.45209],[-105.07726,40.45223],[-105.07726,40.45228],[-105.07726,40.45244],[-105.07728,40.45261],[-105.07728,40.45278],[-105.0773,40.45296],[-105.0773,40.45318],[-105.0773,40.45342],[-105.0773,40.45366],[-105.0773,40.45394],[-105.0773,40.45408],[-105.0773,40.45423],[-105.0773,40.45438],[-105.0773,40.45453],[-105.0773,40.45469],[-105.0773,40.45485],[-105.0773,40.455],[-105.0773,40.45516],[-105.0773,40.45532],[-105.0773,40.45548],[-105.0773,40.45565],[-105.0773,40.45581],[-105.0773,40.45597],[-105.0773,40.45614],[-105.0773,40.45631],[-105.0773,40.45649],[-105.0773,40.45665],[-105.0773,40.45683],[-105.0773,40.457],[-105.0773,40.45717],[-105.0773,40.45734],[-105.0773,40.45752],[-105.0773,40.45768],[-105.0773,40.45785],[-105.0773,40.45802],[-105.0773,40.45818],[-105.0773,40.45833],[-105.0773,40.45847],[-105.0773,40.45873],[-105.07728,40.45894],[-105.07728,40.45908],[-105.07728,40.4592],[-105.07728,40.45937],[-105.0773,40.45952],[-105.0773,40.4597],[-105.0773,40.45992],[-105.0773,40.46016],[-105.0773,40.46043],[-105.07732,40.46057],[-105.07732,40.46071],[-105.07732,40.46086],[-105.07732,40.461],[-105.07732,40.46116],[-105.07732,40.46131],[-105.07732,40.46147],[-105.07732,40.46162],[-105.07732,40.46178],[-105.07732,40.46194],[-105.07732,40.46211],[-105.07732,40.46228],[-105.07732,40.46245],[-105.07732,40.46262],[-105.07732,40.46279],[-105.07732,40.46297],[-105.07732,40.46315],[-105.07732,40.46334],[-105.07732,40.4635],[-105.07732,40.46368],[-105.07732,40.46385],[-105.07732,40.46403],[-105.07734,40.4642],[-105.07734,40.46437],[-105.07734,40.46454],[-105.07734,40.46471],[-105.07734,40.46488],[-105.07734,40.46504],[-105.07734,40.4652],[-105.07734,40.46534],[-105.07732,40.46551],[-105.07732,40.46564],[-105.07732,40.46588],[-105.07732,40.46607],[-105.07732,40.46621],[-105.07732,40.4663],[-105.07736,40.46636],[-105.07736,40.46652],[-105.0774,40.46673],[-105.0774,40.46699],[-105.0774,40.46713],[-105.0774,40.46727],[-105.0774,40.46743],[-105.0774,40.4676],[-105.0774,40.46777],[-105.0774,40.46795],[-105.0774,40.46813],[-105.0774,40.46833],[-105.0774,40.46852],[-105.0774,40.46873],[-105.0774,40.46893],[-105.0774,40.46914],[-105.0774,40.46934],[-105.0774,40.46955],[-105.0774,40.46976],[-105.0774,40.46998],[-105.0774,40.4702],[-105.0774,40.47042],[-105.0774,40.47065],[-105.0774,40.47086],[-105.0774,40.47107],[-105.0774,40.47128],[-105.0774,40.4715],[-105.0774,40.47169],[-105.0774,40.47189],[-105.0774,40.4721],[-105.0774,40.4723],[-105.07736,40.47251],[-105.07736,40.4727],[-105.07736,40.4729],[-105.07736,40.4731],[-105.07736,40.4733],[-105.07736,40.4735],[-105.07736,40.47371],[-105.07736,40.4739],[-105.07736,40.47409],[-105.07736,40.47428],[-105.07736,40.47448],[-105.07736,40.47466],[-105.07736,40.47485],[-105.07736,40.47503],[-105.07736,40.47521],[-105.07736,40.47537],[-105.07736,40.47553],[-105.07736,40.47568],[-105.07734,40.47593],[-105.07732,40.47613],[-105.07732,40.47627],[-105.07732,40.47629],[-105.07732,40.47647],[-105.07736,40.47664],[-105.07736,40.47684],[-105.07736,40.47707],[-105.07736,40.47734],[-105.07736,40.4775],[-105.07736,40.47764],[-105.07736,40.4778],[-105.07736,40.47795],[-105.07736,40.4781],[-105.07736,40.47825],[-105.07736,40.47839],[-105.07736,40.47854],[-105.07736,40.47868],[-105.07736,40.47883],[-105.07736,40.47899],[-105.07736,40.47917],[-105.07736,40.47935],[-105.07736,40.47954],[-105.07736,40.47973],[-105.07736,40.47992],[-105.07736,40.48011],[-105.07736,40.4803],[-105.07736,40.48049],[-105.07736,40.48069],[-105.07736,40.48089],[-105.07736,40.48108],[-105.07736,40.48128],[-105.07736,40.48148],[-105.07736,40.48167],[-105.07736,40.48187],[-105.07736,40.48207],[-105.07736,40.48226],[-105.07736,40.48245],[-105.07736,40.48265],[-105.07736,40.48283],[-105.07736,40.48303],[-105.07736,40.48323],[-105.07736,40.48342],[-105.07736,40.48362],[-105.07736,40.48381],[-105.07736,40.48401],[-105.07736,40.4842],[-105.07734,40.48439],[-105.07734,40.48459],[-105.07734,40.48479],[-105.07734,40.48499],[-105.07734,40.48519],[-105.07734,40.48539],[-105.07734,40.48559],[-105.07734,40.48579],[-105.07732,40.486],[-105.07732,40.4862],[-105.07732,40.4864],[-105.07732,40.48661],[-105.07732,40.48681],[-105.07732,40.48702],[-105.07732,40.48722],[-105.07732,40.48741],[-105.07732,40.48761],[-105.07732,40.48781],[-105.07732,40.48801],[-105.07732,40.4882],[-105.07732,40.4884],[-105.07732,40.4886],[-105.07732,40.4888],[-105.07732,40.489],[-105.07732,40.4892],[-105.07732,40.48939],[-105.07732,40.48959],[-105.07732,40.48979],[-105.0773,40.48998],[-105.0773,40.49017],[-105.0773,40.49036],[-105.0773,40.49056],[-105.0773,40.49074],[-105.0773,40.49094],[-105.0773,40.49113],[-105.0773,40.49132],[-105.0773,40.4915],[-105.0773,40.49169],[-105.0773,40.49187],[-105.0773,40.49205],[-105.0773,40.49223],[-105.0773,40.49241],[-105.0773,40.49259],[-105.0773,40.49275],[-105.0773,40.49291],[-105.0773,40.49306],[-105.0773,40.4932],[-105.07732,40.49334],[-105.07732,40.49361],[-105.07732,40.49385],[-105.07732,40.49404],[-105.07732,40.49423],[-105.07732,40.49439],[-105.07732,40.49453],[-105.07732,40.4947],[-105.07732,40.4949],[-105.07732,40.49506],[-105.0773,40.49524],[-105.0773,40.49539],[-105.07728,40.49558],[-105.07728,40.49567],[-105.07726,40.49589],[-105.07728,40.49603],[-105.07728,40.49621],[-105.07728,40.49643],[-105.07728,40.49669],[-105.07728,40.49696],[-105.07728,40.4971],[-105.07728,40.49724],[-105.07728,40.49741],[-105.07728,40.49755],[-105.07728,40.49771],[-105.07728,40.49786],[-105.07728,40.49802],[-105.07728,40.49818],[-105.07728,40.49834],[-105.07728,40.4985],[-105.0773,40.49866],[-105.0773,40.49881],[-105.0773,40.49897],[-105.0773,40.49913],[-105.0773,40.49929],[-105.0773,40.49945],[-105.0773,40.49961],[-105.0773,40.49977],[-105.0773,40.49994],[-105.0773,40.50011],[-105.0773,40.50026],[-105.0773,40.50044],[-105.0773,40.50061],[-105.0773,40.50077],[-105.0773,40.50093],[-105.0773,40.5011],[-105.0773,40.50126],[-105.0773,40.50142],[-105.0773,40.50158],[-105.0773,40.50172],[-105.0773,40.50187],[-105.0773,40.50211],[-105.0773,40.5023],[-105.07728,40.50244],[-105.07728,40.50257],[-105.0773,40.50271],[-105.0773,40.50286],[-105.0773,40.50303],[-105.07732,40.50323],[-105.07732,40.50346],[-105.07732,40.50371],[-105.07732,40.50399],[-105.07732,40.50414],[-105.07732,40.50428],[-105.07732,40.50443],[-105.07732,40.50458],[-105.07732,40.50473],[-105.07732,40.50489],[-105.07732,40.50505],[-105.07732,40.50521],[-105.07732,40.50537],[-105.07732,40.50554],[-105.07732,40.5057],[-105.07732,40.50587],[-105.07732,40.50603],[-105.07732,40.50619],[-105.07732,40.50635],[-105.07732,40.50653],[-105.07732,40.5067],[-105.0773,40.50686],[-105.0773,40.50704],[-105.0773,40.5072],[-105.0773,40.50736],[-105.0773,40.50753],[-105.0773,40.5077],[-105.0773,40.50786],[-105.0773,40.50803],[-105.07728,40.5082],[-105.07728,40.50837],[-105.07728,40.50853],[-105.07728,40.5087],[-105.07728,40.50887],[-105.07726,40.50905],[-105.07726,40.50921],[-105.07726,40.50939],[-105.07726,40.50956],[-105.07726,40.50974],[-105.07726,40.50991],[-105.07724,40.51009],[-105.07724,40.51027],[-105.07722,40.51046],[-105.07722,40.51064],[-105.07722,40.51082],[-105.0772,40.511],[-105.0772,40.51118],[-105.0772,40.51136],[-105.0772,40.51155],[-105.0772,40.51172],[-105.0772,40.5119],[-105.0772,40.51208],[-105.0772,40.51225],[-105.07718,40.51243],[-105.07718,40.51259],[-105.07718,40.51276],[-105.07716,40.51293],[-105.07716,40.5131],[-105.07716,40.51326],[-105.07716,40.51342],[-105.07716,40.51358],[-105.07716,40.51374],[-105.07716,40.51389],[-105.07714,40.51404],[-105.07714,40.51419],[-105.07714,40.51433],[-105.07714,40.51447],[-105.07714,40.51473],[-105.07714,40.51494],[-105.07714,40.51514],[-105.0771,40.51532],[-105.0771,40.51535],[-105.07714,40.51541],[-105.07714,40.51557],[-105.07716,40.51577],[-105.07716,40.51597],[-105.07716,40.5162],[-105.0772,40.51646],[-105.0772,40.5166],[-105.0772,40.51673],[-105.07722,40.517],[-105.07722,40.5172],[-105.0772,40.51736],[-105.07726,40.51752],[-105.07746,40.51754],[-105.07768,40.51754],[-105.07792,40.51754],[-105.07813,40.51753],[-105.07839,40.51753],[-105.07863,40.51753],[-105.07887,40.51754],[-105.07913,40.51755],[-105.07933,40.51755],[-105.07954,40.51756],[-105.07968,40.51769],[-105.07968,40.51785],[-105.07968,40.51804],[-105.07974,40.51819],[-105.07992,40.51827],[-105.08012,40.51831],[-105.08028,40.51832]]}},{"type":"Feature","properties":{"name":"FLEX:51"},"geometry":{"type":"LineString","coordinates":[[-105.0775,40.49359],[-105.0775,40.49343],[-105.0775,40.49329],[-105.0775,40.49311],[-105.0775,40.49291],[-105.0775,40.49268],[-105.0775,40.49244],[-105.0775,40.49219],[-105.0775,40.49194],[-105.0775,40.49168],[-105.0775,40.49142],[-105.0775,40.49115],[-105.0775,40.49101],[-105.0775,40.49074],[-105.0775,40.4906],[-105.0775,40.49046],[-105.0775,40.49032],[-105.0775,40.49017],[-105.0775,40.49003],[-105.0775,40.48989],[-105.0775,40.48974],[-105.0775,40.4896],[-105.0775,40.48946],[-105.0775,40.48931],[-105.0775,40.48917],[-105.0775,40.48903],[-105.0775,40.48888],[-105.0775,40.48873],[-105.0775,40.48859],[-105.0775,40.48845],[-105.0775,40.4883],[-105.0775,40.48815],[-105.0775,40.48802],[-105.0775,40.48788],[-105.0775,40.48775],[-105.0775,40.48761],[-105.0775,40.48734],[-105.0775,40.48708],[-105.0775,40.48683],[-105.0775,40.48658],[-105.0775,40.48632],[-105.0775,40.48606],[-105.0775,40.48579],[-105.0775,40.48552],[-105.0775,40.48538],[-105.0775,40.48524],[-105.07752,40.4851],[-105.07752,40.48495],[-105.07752,40.48482],[-105.07752,40.48467],[-105.07752,40.48454],[-105.07752,40.48439],[-105.07752,40.48425],[-105.07752,40.48412],[-105.07752,40.48397],[-105.07752,40.48383],[-105.07752,40.48369],[-105.07752,40.48354],[-105.07752,40.48339],[-105.07752,40.48326],[-105.07752,40.48311],[-105.07752,40.48297],[-105.07752,40.48282],[-105.07752,40.48267],[-105.07752,40.48253],[-105.07752,40.48238],[-105.07752,40.48222],[-105.07752,40.48208],[-105.07752,40.48193],[-105.07752,40.48178],[-105.07752,40.48164],[-105.07752,40.4815],[-105.07752,40.48135],[-105.07752,40.4811],[-105.07752,40.48087],[-105.07752,40.48068],[-105.07754,40.48053],[-105.07754,40.48036],[-105.07754,40.48018],[-105.07754,40.48002],[-105.07754,40.47989],[-105.07754,40.47987],[-105.07754,40.47973],[-105.07754,40.47952],[-105.07754,40.47936],[-105.07754,40.47917],[-105.07754,40.47897],[-105.07754,40.47875],[-105.07754,40.47851],[-105.07754,40.47827],[-105.07754,40.47801],[-105.07756,40.47776],[-105.07756,40.47748],[-105.07756,40.47734],[-105.07756,40.4772],[-105.07756,40.47706],[-105.07756,40.47692],[-105.07756,40.47678],[-105.07756,40.47664],[-105.07756,40.47649],[-105.07756,40.47635],[-105.07756,40.4762],[-105.07756,40.47605],[-105.07756,40.47591],[-105.07756,40.47575],[-105.07756,40.4756],[-105.07756,40.47544],[-105.07756,40.47528],[-105.07756,40.47512],[-105.07756,40.47496],[-105.07756,40.4748],[-105.07756,40.47464],[-105.07756,40.47449],[-105.07756,40.47433],[-105.07756,40.47417],[-105.07756,40.474],[-105.07756,40.47384],[-105.07756,40.47368],[-105.07756,40.47352],[-105.07756,40.47336],[-105.07756,40.47319],[-105.07756,40.47303],[-105.07756,40.47287],[-105.07756,40.47271],[-105.07756,40.47255],[-105.07756,40.47239],[-105.07756,40.47223],[-105.07756,40.47207],[-105.07756,40.47191],[-105.07756,40.47175],[-105.07756,40.47158],[-105.07756,40.47142],[-105.07756,40.47126],[-105.07756,40.4711],[-105.07756,40.47093],[-105.07756,40.47077],[-105.07756,40.4706],[-105.07756,40.47044],[-105.07756,40.47027],[-105.07756,40.47011],[-105.07756,40.46995],[-105.07756,40.46979],[-105.07756,40.46963],[-105.07756,40.46948],[-105.07756,40.46932],[-105.07756,40.46916],[-105.07758,40.46901],[-105.07758,40.46886],[-105.07758,40.4687],[-105.07758,40.46856],[-105.07758,40.4684],[-105.07758,40.46825],[-105.07758,40.4681],[-105.07758,40.46795],[-105.07758,40.46781],[-105.07758,40.46766],[-105.07758,40.46751],[-105.07756,40.46736],[-105.07756,40.46723],[-105.07756,40.46708],[-105.07756,40.46693],[-105.07756,40.46678],[-105.07756,40.46664],[-105.07756,40.4665],[-105.07756,40.46635],[-105.07756,40.4662],[-105.07756,40.46606],[-105.07756,40.46592],[-105.07756,40.46578],[-105.07756,40.46564],[-105.07756,40.46538],[-105.07756,40.46511],[-105.07758,40.46487],[-105.07758,40.46466],[-105.0776,40.46447],[-105.0776,40.46434],[-105.0776,40.4642],[-105.0776,40.46415],[-105.0776,40.46401],[-105.07756,40.4638],[-105.07756,40.46363],[-105.07756,40.46343],[-105.07756,40.46319],[-105.07756,40.46294],[-105.07756,40.46267],[-105.07756,40.4624],[-105.07756,40.46226],[-105.07756,40.46212],[-105.07756,40.46198],[-105.07756,40.46184],[-105.07756,40.46169],[-105.07756,40.46155],[-105.07756,40.4614],[-105.07756,40.46125],[-105.07756,40.46111],[-105.07756,40.46096],[-105.07756,40.46081],[-105.07756,40.46066],[-105.07756,40.46051],[-105.07756,40.46037],[-105.07756,40.46023],[-105.07756,40.46008],[-105.07758,40.45993],[-105.07758,40.4598],[-105.07758,40.45954],[-105.07758,40.45931],[-105.07758,40.4591],[-105.07758,40.45893],[-105.07764,40.45874],[-105.07776,40.45859],[-105.078,40.45853],[-105.07819,40.45851],[-105.07839,40.45849],[-105.07863,40.45848],[-105.07887,40.45846],[-105.07913,40.45845],[-105.07933,40.45844],[-105.07954,40.45843],[-105.07974,40.45845],[-105.07992,40.45849],[-105.08012,40.45856],[-105.08032,40.45855],[-105.08044,40.45845],[-105.08038,40.4583],[-105.08022,40.45824],[-105.08002,40.4583],[-105.07976,40.45837],[-105.07958,40.45837],[-105.07935,40.45837],[-105.07909,40.45837],[-105.07887,40.45837],[-105.07865,40.45837],[-105.07847,40.45837],[-105.07827,40.45837],[-105.07819,40.45837],[-105.07801,40.45837],[-105.07782,40.45833],[-105.07768,40.45824],[-105.07758,40.45806],[-105.07756,40.4579],[-105.07756,40.45772],[-105.07756,40.45753],[-105.07754,40.45731],[-105.07754,40.45708],[-105.07754,40.45683],[-105.07754,40.45658],[-105.07754,40.45631],[-105.07754,40.45604],[-105.07752,40.4559],[-105.07752,40.45563],[-105.07752,40.45548],[-105.07752,40.45534],[-105.07752,40.4552],[-105.07752,40.45506],[-105.07752,40.45492],[-105.07752,40.45477],[-105.07752,40.45463],[-105.07752,40.45449],[-105.07752,40.45435],[-105.07752,40.4542],[-105.07752,40.45406],[-105.07752,40.45392],[-105.07752,40.45377],[-105.07752,40.45363],[-105.07752,40.45349],[-105.07752,40.45334],[-105.07752,40.45319],[-105.07752,40.45305],[-105.07752,40.45291],[-105.07752,40.45276],[-105.07752,40.45262],[-105.07752,40.45249],[-105.07752,40.45234],[-105.07752,40.45221],[-105.07752,40.45206],[-105.07752,40.45191],[-105.07752,40.45178],[-105.07752,40.45164],[-105.07752,40.45151],[-105.07752,40.45137],[-105.0775,40.45123],[-105.0775,40.45109],[-105.0775,40.45094],[-105.0775,40.4508],[-105.0775,40.45066],[-105.0775,40.45052],[-105.0775,40.45038],[-105.0775,40.45024],[-105.0775,40.45009],[-105.0775,40.44996],[-105.0775,40.44969],[-105.0775,40.44942],[-105.0775,40.44917],[-105.0775,40.44894],[-105.0775,40.44873],[-105.0775,40.44856],[-105.0775,40.4484],[-105.07752,40.44836],[-105.07752,40.4482],[-105.07752,40.44801],[-105.0775,40.44784],[-105.0775,40.44765],[-105.0775,40.44744],[-105.0775,40.44722],[-105.0775,40.44699],[-105.0775,40.44675],[-105.0775,40.4465],[-105.0775,40.44625],[-105.0775,40.44599],[-105.0775,40.44573],[-105.0775,40.44547],[-105.0775,40.4452],[-105.0775,40.44492],[-105.0775,40.44465],[-105.0775,40.44439],[-105.0775,40.44413],[-105.0775,40.44391],[-105.0775,40.44373],[-105.0775,40.44355],[-105.0775,40.4435],[-105.0775,40.44336],[-105.0775,40.44316],[-105.0775,40.44299],[-105.0775,40.44279],[-105.0775,40.44259],[-105.0775,40.44236],[-105.0775,40.44213],[-105.0775,40.4419],[-105.0775,40.44166],[-105.0775,40.44142],[-105.0775,40.44117],[-105.0775,40.44092],[-105.0775,40.44069],[-105.0775,40.44044],[-105.0775,40.4402],[-105.0775,40.43995],[-105.0775,40.43971],[-105.0775,40.43948],[-105.0775,40.43926],[-105.0775,40.43905],[-105.0775,40.43886],[-105.0775,40.4387],[-105.0775,40.43852],[-105.0775,40.43837],[-105.0775,40.43821],[-105.0775,40.43806],[-105.0775,40.43791],[-105.0775,40.43772],[-105.0775,40.43766],[-105.0775,40.43747],[-105.0775,40.43725],[-105.0775,40.43708],[-105.0775,40.43688],[-105.0775,40.43666],[-105.0775,40.43643],[-105.0775,40.4362],[-105.0775,40.43596],[-105.0775,40.43571],[-105.0775,40.43546],[-105.0775,40.43523],[-105.0775,40.43499],[-105.07752,40.43478],[-105.07752,40.43459],[-105.07752,40.43443],[-105.07752,40.43427],[-105.07752,40.43424],[-105.07752,40.43409],[-105.07752,40.43389],[-105.07752,40.43373],[-105.07754,40.43355],[-105.07754,40.43336],[-105.07754,40.43314],[-105.07754,40.43293],[-105.07756,40.43271],[-105.07756,40.43247],[-105.07756,40.43225],[-105.07756,40.43201],[-105.07756,40.43177],[-105.07756,40.43152],[-105.07756,40.43127],[-105.07756,40.431],[-105.07756,40.43077],[-105.07756,40.43051],[-105.07758,40.43027],[-105.07758,40.43002],[-105.07758,40.4298],[-105.07758,40.4296],[-105.0776,40.42942],[-105.0776,40.42927],[-105.0776,40.42922],[-105.0776,40.42903],[-105.0776,40.42882],[-105.07758,40.42865],[-105.07756,40.42845],[-105.07756,40.42825],[-105.07756,40.42802],[-105.07756,40.42778],[-105.07756,40.42753],[-105.07756,40.42728],[-105.07756,40.42703],[-105.07758,40.42677],[-105.07758,40.4265],[-105.07758,40.42625],[-105.07758,40.42601],[-105.07758,40.42578],[-105.07756,40.42557],[-105.07756,40.42538],[-105.07756,40.42521],[-105.07756,40.42504],[-105.07756,40.4249],[-105.07754,40.42477],[-105.07734,40.4247],[-105.07708,40.42469],[-105.07684,40.4247],[-105.07664,40.42473],[-105.07643,40.42467],[-105.0764,40.4245],[-105.0764,40.42431],[-105.0764,40.42414],[-105.07643,40.42398],[-105.07643,40.42394]]}},{"type":"Feature","properties":{"name":"FLEX:52"},"geometry":{"type":"LineString","coordinates":[[-105.08028,40.5184],[-105.08022,40.51839],[-105.08004,40.51839],[-105.07986,40.51839],[-105.07977,40.51839],[-105.07973,40.51838],[-105.07969,40.51836],[-105.07968,40.51834],[-105.07966,40.51831],[-105.07965,40.51827],[-105.07966,40.51816],[-105.07966,40.51802],[-105.07967,40.51789],[-105.07967,40.51775],[-105.07968,40.51761],[-105.07968,40.51751],[-105.0795,40.51751],[-105.07932,40.51751],[-105.07914,40.51751],[-105.07896,40.51751],[-105.07878,40.51751],[-105.0786,40.51751],[-105.07842,40.51751],[-105.07824,40.51751],[-105.07806,40.51751],[-105.07788,40.51751],[-105.07776,40.51751],[-105.07758,40.51751],[-105.0774,40.51751],[-105.07725,40.51751],[-105.07725,40.51737],[-105.07726,40.51724],[-105.07726,40.5171],[-105.07726,40.51696],[-105.07727,40.51683],[-105.07727,40.51669],[-105.07727,40.51655],[-105.07728,40.51642],[-105.07728,40.5163],[-105.07728,40.51616],[-105.07729,40.51603],[-105.07729,40.51589],[-105.07729,40.51575],[-105.07729,40.5157],[-105.07729,40.51556],[-105.07729,40.51542],[-105.07729,40.51528],[-105.0773,40.51515],[-105.0773,40.51503],[-105.0773,40.51489],[-105.07731,40.51476],[-105.07731,40.51468],[-105.07731,40.51458],[-105.07731,40.51444],[-105.07732,40.51431],[-105.07732,40.51423],[-105.0774,40.51403],[-105.0774,40.51388],[-105.0774,40.51371],[-105.0774,40.5135],[-105.0774,40.51328],[-105.0774,40.51304],[-105.07742,40.51279],[-105.07742,40.51253],[-105.07742,40.51227],[-105.07744,40.512],[-105.07746,40.51172],[-105.07746,40.51159],[-105.07746,40.51144],[-105.07746,40.51131],[-105.07746,40.51116],[-105.07748,40.51102],[-105.07748,40.51087],[-105.07748,40.51073],[-105.07748,40.51058],[-105.07748,40.51043],[-105.07748,40.51029],[-105.07748,40.51014],[-105.0775,40.50999],[-105.0775,40.50985],[-105.0775,40.50971],[-105.0775,40.50958],[-105.0775,40.50944],[-105.0775,40.50929],[-105.0775,40.50915],[-105.0775,40.50901],[-105.0775,40.50887],[-105.0775,40.50873],[-105.0775,40.50858],[-105.07752,40.50844],[-105.07752,40.50831],[-105.07752,40.50816],[-105.07752,40.50802],[-105.07752,40.50789],[-105.07754,40.50762],[-105.07754,40.50734],[-105.07756,40.50707],[-105.07756,40.5068],[-105.07756,40.50652],[-105.07756,40.50624],[-105.07756,40.50597],[-105.07756,40.50571],[-105.07756,40.50543],[-105.07756,40.50516],[-105.07756,40.50489],[-105.07756,40.50461],[-105.07756,40.50434],[-105.07756,40.5042],[-105.07756,40.50392],[-105.07756,40.50379],[-105.07756,40.50364],[-105.07756,40.50351],[-105.07756,40.50337],[-105.07756,40.50323],[-105.07756,40.50309],[-105.07756,40.50295],[-105.07754,40.50268],[-105.07754,40.50243],[-105.07754,40.50221],[-105.07754,40.50203],[-105.07754,40.50189],[-105.07754,40.50174],[-105.07754,40.50174],[-105.07754,40.50155],[-105.07754,40.50133],[-105.07752,40.50116],[-105.07754,40.50097],[-105.07752,40.50074],[-105.07754,40.50052],[-105.07754,40.50026],[-105.07754,40.50001],[-105.07754,40.49975],[-105.07754,40.49947],[-105.07754,40.4992],[-105.07752,40.49907],[-105.07752,40.49892],[-105.07752,40.49878],[-105.07752,40.49865],[-105.07752,40.4985],[-105.07752,40.49837],[-105.07752,40.49822],[-105.07752,40.49808],[-105.07752,40.49795],[-105.07752,40.49767],[-105.07752,40.49741],[-105.07752,40.49715],[-105.07752,40.4969],[-105.07752,40.49667],[-105.07752,40.49644],[-105.07752,40.49623],[-105.07752,40.49602],[-105.07752,40.49582],[-105.07752,40.49563],[-105.07752,40.49547],[-105.07752,40.49531],[-105.07752,40.49514],[-105.0775,40.495],[-105.0775,40.49485],[-105.0775,40.49465],[-105.0775,40.49448],[-105.0775,40.4943],[-105.0775,40.49412],[-105.0775,40.49394],[-105.0775,40.49379],[-105.0775,40.49363],[-105.0775,40.49359],[-105.0775,40.49343],[-105.0775,40.49329],[-105.0775,40.49311],[-105.0775,40.49291],[-105.0775,40.49268],[-105.0775,40.49244],[-105.0775,40.49219],[-105.0775,40.49194],[-105.0775,40.49168],[-105.0775,40.49142],[-105.0775,40.49115],[-105.0775,40.49101],[-105.0775,40.49074],[-105.0775,40.4906],[-105.0775,40.49046],[-105.0775,40.49032],[-105.0775,40.49017],[-105.0775,40.49003],[-105.0775,40.48989],[-105.0775,40.48974],[-105.0775,40.4896],[-105.0775,40.48946],[-105.0775,40.48931],[-105.0775,40.48917],[-105.0775,40.48903],[-105.0775,40.48888],[-105.0775,40.48873],[-105.0775,40.48859],[-105.0775,40.48845],[-105.0775,40.4883],[-105.0775,40.48815],[-105.0775,40.48802],[-105.0775,40.48788],[-105.0775,40.48775],[-105.0775,40.48761],[-105.0775,40.48734],[-105.0775,40.48708],[-105.0775,40.48683],[-105.0775,40.48658],[-105.0775,40.48632],[-105.0775,40.48606],[-105.0775,40.48579],[-105.0775,40.48552],[-105.0775,40.48538],[-105.0775,40.48524],[-105.07752,40.4851],[-105.07752,40.48495],[-105.07752,40.48482],[-105.07752,40.48467],[-105.07752,40.48454],[-105.07752,40.48439],[-105.07752,40.48425],[-105.07752,40.48412],[-105.07752,40.48397],[-105.07752,40.48383],[-105.07752,40.48369],[-105.07752,40.48354],[-105.07752,40.48339],[-105.07752,40.48326],[-105.07752,40.48311],[-105.07752,40.48297],[-105.07752,40.48282],[-105.07752,40.48267],[-105.07752,40.48253],[-105.07752,40.48238],[-105.07752,40.48222],[-105.07752,40.48208],[-105.07752,40.48193],[-105.07752,40.48178],[-105.07752,40.48164],[-105.07752,40.4815],[-105.07752,40.48135],[-105.07752,40.4811],[-105.07752,40.48087],[-105.07752,40.48068],[-105.07754,40.48053],[-105.07754,40.48036],[-105.07754,40.48018],[-105.07754,40.48002],[-105.07754,40.47989],[-105.07754,40.47987],[-105.07754,40.47973],[-105.07754,40.47952],[-105.07754,40.47936],[-105.07754,40.47917],[-105.07754,40.47897],[-105.07754,40.47875],[-105.07754,40.47851],[-105.07754,40.47827],[-105.07754,40.47801],[-105.07756,40.47776],[-105.07756,40.47748],[-105.07756,40.47734],[-105.07756,40.4772],[-105.07756,40.47706],[-105.07756,40.47692],[-105.07756,40.47678],[-105.07756,40.47664],[-105.07756,40.47649],[-105.07756,40.47635],[-105.07756,40.4762],[-105.07756,40.47605],[-105.07756,40.47591],[-105.07756,40.47575],[-105.07756,40.4756],[-105.07756,40.47544],[-105.07756,40.47528],[-105.07756,40.47512],[-105.07756,40.47496],[-105.07756,40.4748],[-105.07756,40.47464],[-105.07756,40.47449],[-105.07756,40.47433],[-105.07756,40.47417],[-105.07756,40.474],[-105.07756,40.47384],[-105.07756,40.47368],[-105.07756,40.47352],[-105.07756,40.47336],[-105.07756,40.47319],[-105.07756,40.47303],[-105.07756,40.47287],[-105.07756,40.47271],[-105.07756,40.47255],[-105.07756,40.47239],[-105.07756,40.47223],[-105.07756,40.47207],[-105.07756,40.47191],[-105.07756,40.47175],[-105.07756,40.47158],[-105.07756,40.47142],[-105.07756,40.47126],[-105.07756,40.4711],[-105.07756,40.47093],[-105.07756,40.47077],[-105.07756,40.4706],[-105.07756,40.47044],[-105.07756,40.47027],[-105.07756,40.47011],[-105.07756,40.46995],[-105.07756,40.46979],[-105.07756,40.46963],[-105.07756,40.46948],[-105.07756,40.46932],[-105.07756,40.46916],[-105.07758,40.46901],[-105.07758,40.46886],[-105.07758,40.4687],[-105.07758,40.46856],[-105.07758,40.4684],[-105.07758,40.46825],[-105.07758,40.4681],[-105.07758,40.46795],[-105.07758,40.46781],[-105.07758,40.46766],[-105.07758,40.46751],[-105.07756,40.46736],[-105.07756,40.46723],[-105.07756,40.46708],[-105.07756,40.46693],[-105.07756,40.46678],[-105.07756,40.46664],[-105.07756,40.4665],[-105.07756,40.46635],[-105.07756,40.4662],[-105.07756,40.46606],[-105.07756,40.46592],[-105.07756,40.46578],[-105.07756,40.46564],[-105.07756,40.46538],[-105.07756,40.46511],[-105.07758,40.46487],[-105.07758,40.46466],[-105.0776,40.46447],[-105.0776,40.46434],[-105.0776,40.4642],[-105.0776,40.46415],[-105.0776,40.46401],[-105.07756,40.4638],[-105.07756,40.46363],[-105.07756,40.46343],[-105.07756,40.46319],[-105.07756,40.46294],[-105.07756,40.46267],[-105.07756,40.4624],[-105.07756,40.46226],[-105.07756,40.46212],[-105.07756,40.46198],[-105.07756,40.46184],[-105.07756,40.46169],[-105.07756,40.46155],[-105.07756,40.4614],[-105.07756,40.46125],[-105.07756,40.46111],[-105.07756,40.46096],[-105.07756,40.46081],[-105.07756,40.46066],[-105.07756,40.46051],[-105.07756,40.46037],[-105.07756,40.46023],[-105.07756,40.46008],[-105.07758,40.45993],[-105.07758,40.4598],[-105.07758,40.45954],[-105.07758,40.45931],[-105.07758,40.4591],[-105.07758,40.45893],[-105.07764,40.45874],[-105.07776,40.45859],[-105.078,40.45853],[-105.07819,40.45851],[-105.07839,40.45849],[-105.07863,40.45848],[-105.07887,40.45846],[-105.07913,40.45845],[-105.07933,40.45844],[-105.07954,40.45843],[-105.07974,40.45845],[-105.07992,40.45849],[-105.08012,40.45856],[-105.08032,40.45855],[-105.08044,40.45845],[-105.08038,40.4583],[-105.08022,40.45824],[-105.08002,40.4583],[-105.07976,40.45837],[-105.07958,40.45837],[-105.07935,40.45837],[-105.07909,40.45837],[-105.07887,40.45837],[-105.07865,40.45837],[-105.07847,40.45837],[-105.07827,40.45837],[-105.07819,40.45837],[-105.07801,40.45837],[-105.07782,40.45833],[-105.07768,40.45824],[-105.07758,40.45806],[-105.07756,40.4579],[-105.07756,40.45772],[-105.07756,40.45753],[-105.07754,40.45731],[-105.07754,40.45708],[-105.07754,40.45683],[-105.07754,40.45658],[-105.07754,40.45631],[-105.07754,40.45604],[-105.07752,40.4559],[-105.07752,40.45563],[-105.07752,40.45548],[-105.07752,40.45534],[-105.07752,40.4552],[-105.07752,40.45506],[-105.07752,40.45492],[-105.07752,40.45477],[-105.07752,40.45463],[-105.07752,40.45449],[-105.07752,40.45435],[-105.07752,40.4542],[-105.07752,40.45406],[-105.07752,40.45392],[-105.07752,40.45377],[-105.07752,40.45363],[-105.07752,40.45349],[-105.07752,40.45334],[-105.07752,40.45319],[-105.07752,40.45305],[-105.07752,40.45291],[-105.07752,40.45276],[-105.07752,40.45262],[-105.07752,40.45249],[-105.07752,40.45234],[-105.07752,40.45221],[-105.07752,40.45206],[-105.07752,40.45191],[-105.07752,40.45178],[-105.07752,40.45164],[-105.07752,40.45151],[-105.07752,40.45137],[-105.0775,40.45123],[-105.0775,40.45109],[-105.0775,40.45094],[-105.0775,40.4508],[-105.0775,40.45066],[-105.0775,40.45052],[-105.0775,40.45038],[-105.0775,40.45024],[-105.0775,40.45009],[-105.0775,40.44996],[-105.0775,40.44969],[-105.0775,40.44942],[-105.0775,40.44917],[-105.0775,40.44894],[-105.0775,40.44873],[-105.0775,40.44856],[-105.0775,40.4484],[-105.07752,40.44836],[-105.07752,40.4482],[-105.07752,40.44801],[-105.0775,40.44784],[-105.0775,40.44765],[-105.0775,40.44744],[-105.0775,40.44722],[-105.0775,40.44699],[-105.0775,40.44675],[-105.0775,40.4465],[-105.0775,40.44625],[-105.0775,40.44599],[-105.0775,40.44573],[-105.0775,40.44547],[-105.0775,40.4452],[-105.0775,40.44492],[-105.0775,40.44465],[-105.0775,40.44439],[-105.0775,40.44413],[-105.0775,40.44391],[-105.0775,40.44373],[-105.0775,40.44355],[-105.0775,40.4435],[-105.0775,40.44336],[-105.0775,40.44316],[-105.0775,40.44299],[-105.0775,40.44279],[-105.0775,40.44259],[-105.0775,40.44236],[-105.0775,40.44213],[-105.0775,40.4419],[-105.0775,40.44166],[-105.0775,40.44142],[-105.0775,40.44117],[-105.0775,40.44092],[-105.0775,40.44069],[-105.0775,40.44044],[-105.0775,40.4402],[-105.0775,40.43995],[-105.0775,40.43971],[-105.0775,40.43948],[-105.0775,40.43926],[-105.0775,40.43905],[-105.0775,40.43886],[-105.0775,40.4387],[-105.0775,40.43852],[-105.0775,40.43837],[-105.0775,40.43821],[-105.0775,40.43806],[-105.0775,40.43791],[-105.0775,40.43772],[-105.0775,40.43766],[-105.0775,40.43747],[-105.0775,40.43725],[-105.0775,40.43708],[-105.0775,40.43688],[-105.0775,40.43666],[-105.0775,40.43643],[-105.0775,40.4362],[-105.0775,40.43596],[-105.0775,40.43571],[-105.0775,40.43546],[-105.0775,40.43523],[-105.0775,40.43499],[-105.07752,40.43478],[-105.07752,40.43459],[-105.07752,40.43443],[-105.07752,40.43427],[-105.07752,40.43424],[-105.07752,40.43409],[-105.07752,40.43389],[-105.07752,40.43373],[-105.07754,40.43355],[-105.07754,40.43336],[-105.07754,40.43314],[-105.07754,40.43293],[-105.07756,40.43271],[-105.07756,40.43247],[-105.07756,40.43225],[-105.07756,40.43201],[-105.07756,40.43177],[-105.07756,40.43152],[-105.07756,40.43127],[-105.07756,40.431],[-105.07756,40.43077],[-105.07756,40.43051],[-105.07758,40.43027],[-105.07758,40.43002],[-105.07758,40.4298],[-105.07758,40.4296],[-105.0776,40.42942],[-105.0776,40.42927],[-105.0776,40.42922],[-105.0776,40.42903],[-105.0776,40.42882],[-105.07758,40.42865],[-105.07756,40.42845],[-105.07756,40.42825],[-105.07756,40.42802],[-105.07756,40.42778],[-105.07756,40.42753],[-105.07756,40.42728],[-105.07756,40.42703],[-105.07758,40.42677],[-105.07758,40.4265],[-105.07758,40.42625],[-105.07758,40.42601],[-105.07758,40.42578],[-105.07756,40.42557],[-105.07756,40.42538],[-105.07756,40.42521],[-105.07756,40.42504],[-105.07756,40.4249],[-105.07754,40.42477],[-105.07734,40.4247],[-105.07708,40.42469],[-105.07684,40.4247],[-105.07664,40.42473],[-105.07643,40.42467],[-105.0764,40.4245],[-105.0764,40.42431],[-105.0764,40.42414],[-105.07643,40.42398],[-105.07643,40.42394],[-105.07643,40.4238],[-105.0764,40.42365],[-105.0764,40.42351],[-105.07646,40.42336],[-105.07656,40.42325],[-105.07674,40.42318],[-105.07694,40.42311],[-105.07714,40.42306],[-105.0772,40.42293],[-105.07716,40.42275],[-105.07708,40.4226],[-105.07698,40.42247],[-105.0769,40.42235],[-105.07674,40.42219],[-105.07666,40.42208],[-105.07653,40.42195],[-105.07636,40.42183],[-105.07625,40.42169],[-105.07609,40.42155],[-105.07591,40.4214],[-105.07575,40.42123],[-105.07555,40.42106],[-105.07535,40.42088],[-105.07513,40.4207],[-105.07492,40.42052],[-105.0747,40.42032],[-105.0745,40.42012],[-105.07426,40.4199],[-105.07414,40.4198],[-105.07396,40.41957],[-105.07386,40.41945],[-105.07376,40.41933],[-105.07366,40.4192],[-105.07356,40.41908],[-105.0735,40.41895],[-105.07345,40.41881],[-105.07336,40.41867],[-105.07332,40.41854],[-105.07327,40.4184],[-105.07323,40.41826],[-105.07319,40.41812],[-105.07315,40.41797],[-105.07313,40.41782],[-105.07313,40.41767],[-105.07313,40.41752],[-105.07311,40.41737],[-105.07311,40.41723],[-105.07311,40.41707],[-105.07311,40.41693],[-105.07311,40.41678],[-105.07311,40.41663],[-105.07311,40.41649],[-105.07311,40.41634],[-105.07311,40.41618],[-105.07311,40.41605],[-105.07311,40.41589],[-105.07311,40.41575],[-105.07311,40.4156],[-105.07313,40.41545],[-105.07313,40.4153],[-105.07313,40.41515],[-105.07313,40.41501],[-105.07313,40.41486],[-105.07313,40.41471],[-105.07313,40.41456],[-105.07313,40.4144],[-105.07313,40.41426],[-105.07313,40.4141],[-105.07313,40.41396],[-105.07313,40.41381],[-105.07313,40.41367],[-105.07313,40.41351],[-105.07313,40.41337],[-105.07313,40.41323],[-105.07313,40.41308],[-105.07313,40.41294],[-105.07313,40.4128],[-105.07313,40.41266],[-105.07313,40.41251],[-105.07313,40.41238],[-105.07313,40.41223],[-105.07313,40.41197],[-105.07313,40.41172],[-105.07315,40.4115],[-105.07319,40.4113],[-105.07331,40.41111],[-105.0735,40.411],[-105.0737,40.41094],[-105.07392,40.41087],[-105.07412,40.41078],[-105.07426,40.41064],[-105.07436,40.41046],[-105.07438,40.41025],[-105.0744,40.41002],[-105.0744,40.40978],[-105.07442,40.40951],[-105.07444,40.40926],[-105.07444,40.40901],[-105.07444,40.40876],[-105.07444,40.40852],[-105.07444,40.4083],[-105.07444,40.4081],[-105.07444,40.40794],[-105.07444,40.40778],[-105.07444,40.40763],[-105.07446,40.40748],[-105.07446,40.40728],[-105.07446,40.40709],[-105.07446,40.40689],[-105.07446,40.40666],[-105.07446,40.40641],[-105.07448,40.40615],[-105.07448,40.4059],[-105.0745,40.40565],[-105.0745,40.40538],[-105.0745,40.40512],[-105.0745,40.40484],[-105.0745,40.40458],[-105.0745,40.40431],[-105.0745,40.40405],[-105.0745,40.40378],[-105.0745,40.40353],[-105.0745,40.40327],[-105.0745,40.40302],[-105.0745,40.40277],[-105.0745,40.40251],[-105.0745,40.40226],[-105.07452,40.40201],[-105.07452,40.40176],[-105.07452,40.40151],[-105.07452,40.40126],[-105.07454,40.40101],[-105.07454,40.40076],[-105.07454,40.40055],[-105.07454,40.40035],[-105.07454,40.40017],[-105.07454,40.39999],[-105.07456,40.39991],[-105.07456,40.39976],[-105.07456,40.39954],[-105.07456,40.39937],[-105.07456,40.39917],[-105.07456,40.39895],[-105.07458,40.39873],[-105.07458,40.39851],[-105.07458,40.39827],[-105.07458,40.39803],[-105.07458,40.39779],[-105.07458,40.39755],[-105.07458,40.39732],[-105.07458,40.39709],[-105.07458,40.39685],[-105.07458,40.39661],[-105.07458,40.39637],[-105.07458,40.39612],[-105.07458,40.39587],[-105.07458,40.39562],[-105.07458,40.39538],[-105.0746,40.39514],[-105.0746,40.39489],[-105.0746,40.39465],[-105.0746,40.39439],[-105.0746,40.39414],[-105.0746,40.39387],[-105.0746,40.39373],[-105.0746,40.39358],[-105.0746,40.39345],[-105.0746,40.3933],[-105.0746,40.39316],[-105.0746,40.39302],[-105.07462,40.39287],[-105.07462,40.39272],[-105.0746,40.39259],[-105.0746,40.39244],[-105.0746,40.39229],[-105.0746,40.39214],[-105.0746,40.392],[-105.07462,40.39185],[-105.07462,40.39171],[-105.07462,40.39156],[-105.07462,40.39141],[-105.07462,40.39127],[-105.07462,40.39113],[-105.07462,40.39098],[-105.07462,40.39085],[-105.07462,40.3907],[-105.07462,40.39055],[-105.07462,40.39042],[-105.07462,40.39026],[-105.07462,40.39012],[-105.07464,40.38996],[-105.07464,40.38981],[-105.07464,40.38965],[-105.07464,40.3895],[-105.07466,40.38934],[-105.07466,40.3892],[-105.07466,40.38905],[-105.07466,40.38891],[-105.07466,40.38877],[-105.07466,40.38849],[-105.07466,40.38825],[-105.07458,40.38801],[-105.07446,40.38779],[-105.07424,40.38759],[-105.07398,40.3874],[-105.07376,40.3872],[-105.07358,40.38696],[-105.0735,40.38669],[-105.0735,40.38655],[-105.0735,40.38641],[-105.07349,40.38625],[-105.07349,40.3861],[-105.07349,40.38594],[-105.07349,40.38578],[-105.07349,40.38563],[-105.07349,40.38547],[-105.07349,40.38531],[-105.07349,40.38515],[-105.07349,40.38499],[-105.07349,40.38482],[-105.0735,40.38466],[-105.0735,40.3845],[-105.0735,40.38433],[-105.0735,40.38416],[-105.0735,40.384],[-105.0735,40.38384],[-105.0735,40.38366],[-105.0735,40.3835],[-105.0735,40.38334],[-105.0735,40.38317],[-105.0735,40.38301],[-105.0735,40.38285],[-105.0735,40.38269],[-105.0735,40.38252],[-105.0735,40.38235],[-105.0735,40.38219],[-105.07346,40.38203],[-105.07346,40.38188],[-105.07346,40.38172],[-105.07345,40.38156],[-105.07345,40.38141],[-105.07343,40.38125],[-105.0734,40.38109],[-105.0734,40.38094],[-105.07339,40.38079],[-105.07339,40.38065],[-105.07339,40.38052],[-105.07339,40.38026],[-105.07339,40.38003],[-105.07339,40.37987],[-105.07339,40.37978],[-105.07339,40.3796],[-105.07336,40.37946],[-105.07336,40.3793],[-105.07336,40.37912],[-105.07336,40.37891],[-105.07336,40.37868],[-105.07336,40.37843],[-105.07336,40.37818],[-105.07336,40.3779],[-105.07336,40.37776],[-105.07336,40.37761],[-105.07336,40.37747],[-105.07336,40.3773],[-105.07336,40.37713],[-105.07336,40.37697],[-105.07336,40.3768],[-105.07335,40.37663],[-105.07335,40.37646],[-105.07332,40.37629],[-105.07332,40.37611],[-105.07331,40.37594],[-105.07329,40.37575],[-105.07325,40.37558],[-105.07323,40.3754],[-105.07319,40.37522],[-105.07317,40.37505],[-105.07313,40.37486],[-105.07311,40.37469],[-105.07309,40.37451],[-105.07305,40.37432],[-105.07303,40.37416],[-105.07299,40.37398],[-105.07297,40.37379],[-105.07293,40.37362],[-105.07289,40.37344],[-105.07287,40.37327],[-105.07283,40.37309],[-105.07281,40.37291],[-105.07277,40.37274],[-105.07277,40.37257],[-105.07275,40.37239],[-105.07271,40.37222],[-105.07271,40.37205],[-105.07267,40.37188],[-105.07267,40.37172],[-105.07267,40.37154],[-105.07267,40.37137],[-105.07267,40.37119],[-105.07267,40.37101],[-105.07267,40.37085],[-105.07267,40.37067],[-105.07267,40.37049],[-105.07267,40.3703],[-105.07267,40.37012],[-105.07271,40.36993],[-105.07271,40.36974],[-105.07275,40.36956],[-105.07277,40.36937],[-105.07279,40.36918],[-105.07281,40.36899],[-105.07283,40.36881],[-105.07287,40.36863],[-105.07291,40.36844],[-105.07293,40.36827],[-105.07297,40.36809],[-105.07299,40.3679],[-105.07303,40.36772],[-105.07305,40.36754],[-105.07309,40.36735],[-105.07311,40.36717],[-105.07313,40.36698],[-105.07315,40.3668],[-105.07319,40.36661],[-105.07319,40.36642],[-105.07319,40.36624],[-105.07323,40.36605],[-105.07323,40.36586],[-105.07325,40.36566],[-105.07327,40.36548],[-105.07329,40.36529],[-105.07331,40.3651],[-105.07331,40.36491],[-105.07332,40.36472],[-105.07335,40.36453],[-105.07335,40.36434],[-105.07336,40.36415],[-105.07339,40.36395],[-105.07339,40.36377],[-105.0734,40.36359],[-105.0734,40.3634],[-105.07345,40.36321],[-105.07346,40.36302],[-105.07346,40.36283],[-105.0735,40.36265],[-105.0735,40.36247],[-105.0735,40.36228],[-105.07353,40.36209],[-105.07356,40.3619],[-105.07356,40.36172],[-105.07356,40.36153],[-105.07358,40.36135],[-105.0736,40.36116],[-105.07362,40.36097],[-105.07364,40.36079],[-105.07366,40.3606],[-105.07366,40.36042],[-105.0737,40.36023],[-105.0737,40.36004],[-105.0737,40.35987],[-105.07374,40.35968],[-105.07376,40.35949],[-105.07376,40.3593],[-105.07378,40.35912],[-105.07378,40.35894],[-105.0738,40.35876],[-105.07382,40.35857],[-105.07384,40.35839],[-105.07386,40.35821],[-105.07386,40.35802],[-105.07388,40.35784],[-105.07388,40.35766],[-105.0739,40.35749],[-105.07392,40.35731],[-105.07392,40.35713],[-105.07396,40.35697],[-105.07396,40.35679],[-105.07396,40.3566],[-105.074,40.35643],[-105.074,40.35625],[-105.07402,40.35606],[-105.07402,40.35589],[-105.07406,40.3557],[-105.07406,40.35551],[-105.07406,40.35532],[-105.07408,40.35513],[-105.0741,40.35495],[-105.0741,40.35477],[-105.07412,40.35457],[-105.07412,40.35439],[-105.07412,40.35419],[-105.07412,40.35401],[-105.07414,40.35382],[-105.07414,40.35364],[-105.07414,40.35345],[-105.07414,40.35326],[-105.07414,40.35307],[-105.07416,40.35288],[-105.07416,40.35269],[-105.07416,40.35251],[-105.07416,40.35233],[-105.07416,40.35215],[-105.07416,40.35195],[-105.07416,40.35176],[-105.07416,40.35158],[-105.07416,40.3514],[-105.07416,40.35121],[-105.07416,40.35101],[-105.07416,40.35083],[-105.07416,40.35064],[-105.07416,40.35046],[-105.07416,40.35027],[-105.07416,40.35009],[-105.07416,40.3499],[-105.07416,40.34971],[-105.07416,40.34952],[-105.07416,40.34934],[-105.07416,40.34916],[-105.07416,40.34897],[-105.07416,40.34878],[-105.07416,40.34859],[-105.07416,40.34841],[-105.07416,40.34822],[-105.07414,40.34804],[-105.07414,40.34784],[-105.07414,40.34766],[-105.07414,40.34748],[-105.07414,40.34729],[-105.07414,40.3471],[-105.07414,40.34692],[-105.07414,40.34672],[-105.07414,40.34653],[-105.07414,40.34635],[-105.07414,40.34617],[-105.07414,40.34598],[-105.07414,40.3458],[-105.07414,40.3456],[-105.07414,40.34542],[-105.07414,40.34524],[-105.07414,40.34505],[-105.07414,40.34486],[-105.07414,40.34467],[-105.07414,40.34449],[-105.07414,40.3443],[-105.07414,40.34412],[-105.07414,40.34393],[-105.07414,40.34374],[-105.07414,40.34356],[-105.07414,40.34336],[-105.07414,40.34318],[-105.07414,40.343],[-105.07414,40.34281],[-105.07414,40.34262],[-105.07414,40.34243],[-105.07416,40.34224],[-105.07416,40.34207],[-105.07418,40.34188],[-105.07418,40.3417],[-105.07418,40.34153],[-105.07418,40.34134],[-105.07418,40.34119],[-105.07418,40.34101],[-105.07418,40.34084],[-105.07418,40.34067],[-105.07418,40.34051],[-105.07418,40.34034],[-105.07418,40.34018],[-105.07418,40.34003],[-105.07422,40.33988],[-105.07422,40.33974],[-105.07426,40.3396],[-105.07432,40.33945],[-105.07436,40.33931],[-105.07444,40.33917],[-105.07452,40.33906],[-105.07462,40.33892],[-105.07472,40.3388],[-105.07482,40.33869],[-105.07506,40.33848],[-105.07531,40.3383],[-105.07553,40.33812],[-105.07575,40.33795],[-105.07585,40.33774],[-105.07591,40.33752],[-105.07585,40.33729],[-105.07569,40.33709],[-105.07549,40.33691],[-105.07525,40.33673],[-105.07501,40.33653],[-105.07485,40.3363],[-105.07476,40.33617],[-105.0747,40.33604],[-105.07466,40.3359],[-105.07466,40.33577],[-105.07466,40.33562],[-105.07466,40.33549],[-105.07466,40.33534],[-105.07466,40.33519],[-105.07466,40.33504],[-105.07466,40.33489],[-105.0747,40.33473],[-105.0747,40.33457],[-105.0747,40.33441],[-105.07472,40.33425],[-105.07472,40.33409],[-105.07474,40.33391],[-105.07476,40.33375],[-105.07476,40.33358],[-105.07476,40.33341],[-105.07476,40.33324],[-105.07476,40.33306],[-105.07476,40.33289],[-105.07478,40.3327],[-105.0748,40.33254],[-105.0748,40.33235],[-105.0748,40.33218],[-105.0748,40.332],[-105.0748,40.33182],[-105.0748,40.33164],[-105.07478,40.33147],[-105.07478,40.33127],[-105.0747,40.3311],[-105.0747,40.33093],[-105.07466,40.33073],[-105.07466,40.33057],[-105.07466,40.33038],[-105.07466,40.33022],[-105.07466,40.33004],[-105.07466,40.32984],[-105.07466,40.32968],[-105.07464,40.3295],[-105.07464,40.32932],[-105.07464,40.32914],[-105.07464,40.32896],[-105.07462,40.32878],[-105.07462,40.32861],[-105.07462,40.32842],[-105.07462,40.32825],[-105.07462,40.32806],[-105.07462,40.32789],[-105.0746,40.32771],[-105.0746,40.32753],[-105.0746,40.32735],[-105.0746,40.32717],[-105.07458,40.327],[-105.07458,40.32682],[-105.07458,40.32664],[-105.07458,40.32646],[-105.07458,40.32628],[-105.07458,40.3261],[-105.07458,40.32591],[-105.07458,40.32573],[-105.07458,40.32554],[-105.07456,40.32537],[-105.07456,40.32518],[-105.07456,40.325],[-105.07456,40.32481],[-105.07454,40.32463],[-105.07454,40.32446],[-105.07454,40.32427],[-105.07454,40.32409],[-105.07454,40.32391],[-105.07454,40.32373],[-105.07454,40.32354],[-105.07454,40.32337],[-105.07454,40.32319],[-105.07454,40.32301],[-105.07456,40.32283],[-105.07456,40.32266],[-105.07456,40.32249],[-105.07456,40.32232],[-105.07456,40.32215],[-105.07454,40.32198],[-105.07454,40.32181],[-105.07454,40.32164],[-105.07454,40.32147],[-105.07454,40.32129],[-105.07452,40.32112],[-105.07452,40.32095],[-105.0745,40.32078],[-105.0745,40.3206],[-105.0745,40.32044],[-105.0745,40.32025],[-105.07448,40.32006],[-105.07448,40.31989],[-105.07446,40.31972],[-105.07446,40.31953],[-105.07446,40.31934],[-105.07446,40.31916],[-105.07444,40.31898],[-105.07444,40.3188],[-105.07444,40.31862],[-105.07444,40.31843],[-105.07444,40.31824],[-105.07444,40.31807],[-105.07444,40.31788],[-105.07444,40.3177],[-105.07444,40.31752],[-105.07444,40.31733],[-105.07442,40.31715],[-105.07442,40.31697],[-105.07442,40.31679],[-105.07442,40.3166],[-105.0744,40.31643],[-105.0744,40.31625],[-105.0744,40.31606],[-105.0744,40.31589],[-105.0744,40.3157],[-105.0744,40.31551],[-105.0744,40.31534],[-105.0744,40.31516],[-105.0744,40.31498],[-105.0744,40.31481],[-105.0744,40.31463],[-105.0744,40.31446],[-105.0744,40.31428],[-105.0744,40.31411],[-105.07438,40.31394],[-105.07438,40.31377],[-105.07438,40.3136],[-105.07438,40.31343],[-105.07438,40.31326],[-105.07438,40.31309],[-105.07438,40.31292],[-105.07438,40.31276],[-105.07438,40.31259],[-105.07438,40.31242],[-105.07438,40.31226],[-105.07438,40.31209],[-105.07438,40.31193],[-105.07438,40.31175],[-105.07438,40.31158],[-105.07438,40.31141],[-105.07438,40.31125],[-105.07438,40.31108],[-105.07438,40.31091],[-105.07438,40.31075],[-105.07438,40.31058],[-105.07438,40.31041],[-105.07436,40.31025],[-105.07436,40.31009],[-105.07436,40.30992],[-105.07436,40.30975],[-105.07436,40.3096],[-105.07436,40.30944],[-105.07436,40.30928],[-105.07436,40.30913],[-105.07436,40.30898],[-105.07436,40.30884],[-105.07436,40.30858],[-105.07436,40.30831],[-105.07434,40.30805],[-105.07434,40.3078],[-105.07434,40.30756],[-105.07434,40.30731],[-105.07434,40.30708],[-105.07434,40.30684],[-105.07434,40.30661],[-105.07434,40.30637],[-105.07434,40.30614],[-105.07434,40.30592],[-105.07436,40.30571],[-105.07438,40.30553],[-105.07444,40.30537],[-105.07456,40.30525],[-105.0747,40.30516],[-105.07492,40.3051],[-105.07513,40.30506],[-105.07541,40.30504],[-105.07569,40.30503],[-105.07595,40.30503],[-105.07621,40.30503],[-105.07649,40.30503],[-105.07672,40.30503],[-105.07696,40.30503],[-105.0772,40.30503],[-105.07736,40.30503],[-105.07756,40.30503],[-105.07758,40.30504],[-105.07776,40.30505],[-105.07801,40.30505],[-105.07827,40.30504],[-105.07849,40.30504],[-105.07871,40.30504],[-105.07893,40.30504],[-105.07919,40.30503],[-105.07945,40.30503],[-105.0797,40.30503],[-105.07996,40.30503],[-105.08018,40.30503],[-105.08042,40.30503],[-105.08068,40.30502],[-105.08093,40.30502],[-105.08121,40.305],[-105.08149,40.305],[-105.08177,40.305],[-105.08207,40.30499],[-105.08239,40.30499],[-105.0827,40.30499],[-105.083,40.30499],[-105.0833,40.30498],[-105.08364,40.30498],[-105.08396,40.30498],[-105.08427,40.30499],[-105.08459,40.305],[-105.08489,40.305],[-105.08521,40.305],[-105.08553,40.30501],[-105.08584,40.30501],[-105.0862,40.30502],[-105.08654,40.30503],[-105.08688,40.30503],[-105.08721,40.30504],[-105.08755,40.30505],[-105.08773,40.30505],[-105.08793,40.30505],[-105.08809,40.30505],[-105.08829,40.30506],[-105.08849,40.30506],[-105.0887,40.30506],[-105.0889,40.30506],[-105.08912,40.30507],[-105.08932,40.30507],[-105.08956,40.30509],[-105.08976,40.3051],[-105.08996,40.3051],[-105.09015,40.30511],[-105.09037,40.30512],[-105.09055,40.30512],[-105.09075,40.30513],[-105.09095,40.30514],[-105.09115,40.30514],[-105.09133,40.30514],[-105.0915,40.30514],[-105.0917,40.30514],[-105.09202,40.30514],[-105.09232,40.30514],[-105.0926,40.30514],[-105.0928,40.30515],[-105.09304,40.30516],[-105.09325,40.30517],[-105.09351,40.30517],[-105.09377,40.30517],[-105.09403,40.30516],[-105.09437,40.30516],[-105.0947,40.30515],[-105.09506,40.30514],[-105.09526,40.30514],[-105.09544,40.30514],[-105.09564,40.30514],[-105.09584,40.30514],[-105.09604,40.30513],[-105.09623,40.30513],[-105.09645,40.30512],[-105.09667,40.30512],[-105.09685,40.30512],[-105.09707,40.30511],[-105.09729,40.30511],[-105.09746,40.30511],[-105.09768,40.3051],[-105.09788,40.3051],[-105.0981,40.3051],[-105.0983,40.3051],[-105.09852,40.3051],[-105.09874,40.3051],[-105.09893,40.3051],[-105.09914,40.3051],[-105.09935,40.3051],[-105.09955,40.3051],[-105.09977,40.3051],[-105.09999,40.3051],[-105.10019,40.3051],[-105.10041,40.30511],[-105.10061,40.30512],[-105.10082,40.30513],[-105.10104,40.30514],[-105.10122,40.30514],[-105.10144,40.30514],[-105.10164,40.30514],[-105.10184,40.30513],[-105.10206,40.30513],[-105.10225,40.30512],[-105.10249,40.30512],[-105.10267,40.30512],[-105.10289,40.30512],[-105.10311,40.30513],[-105.10331,40.30514],[-105.1035,40.30514],[-105.1037,40.30514],[-105.10388,40.30516],[-105.10408,40.30516],[-105.10426,40.30515],[-105.10446,40.30514],[-105.1048,40.30513],[-105.10511,40.30513],[-105.10537,40.30512],[-105.10559,40.30512],[-105.10581,40.30512],[-105.10605,40.30512],[-105.10627,40.30511],[-105.10643,40.30502],[-105.10645,40.30488],[-105.10643,40.3047],[-105.10641,40.30447],[-105.10637,40.30421],[-105.10635,40.30406],[-105.10631,40.30391],[-105.10631,40.30374],[-105.10625,40.30359],[-105.10621,40.30341],[-105.10615,40.30324],[-105.10611,40.30305],[-105.10605,40.30288],[-105.10597,40.3027],[-105.10591,40.3025],[-105.10583,40.30233],[-105.10575,40.30214],[-105.10565,40.30197],[-105.10557,40.30178],[-105.10547,40.30161],[-105.10535,40.30144],[-105.10525,40.30126],[-105.10514,40.30108],[-105.10505,40.3009],[-105.10496,40.30072],[-105.10482,40.30054],[-105.10472,40.30038],[-105.1046,40.3002],[-105.1045,40.30002],[-105.10438,40.29984],[-105.1043,40.29967],[-105.10418,40.29949],[-105.10406,40.29932],[-105.10396,40.29914],[-105.10388,40.29896],[-105.10378,40.29877],[-105.1037,40.29859],[-105.10361,40.29841],[-105.1035,40.29822],[-105.10345,40.29805],[-105.10337,40.29787],[-105.10331,40.29769],[-105.10323,40.29751],[-105.10317,40.29732],[-105.10311,40.29714],[-105.10305,40.29696],[-105.10301,40.29677],[-105.10297,40.29658],[-105.10291,40.29638],[-105.10289,40.29619],[-105.10287,40.29601],[-105.10283,40.29581],[-105.10281,40.29561],[-105.10279,40.29543],[-105.10277,40.29524],[-105.10277,40.29504],[-105.10277,40.29485],[-105.10277,40.29467],[-105.10277,40.29448],[-105.10277,40.2943],[-105.10277,40.29411],[-105.10277,40.29392],[-105.10277,40.29375],[-105.10277,40.29356],[-105.10277,40.29337],[-105.10277,40.29319],[-105.10277,40.293],[-105.10277,40.29282],[-105.10277,40.29263],[-105.10273,40.29245],[-105.10273,40.29226],[-105.10273,40.29207],[-105.10273,40.29189],[-105.10273,40.29171],[-105.10273,40.29152],[-105.10273,40.29133],[-105.10273,40.29115],[-105.10273,40.29096],[-105.10273,40.29077],[-105.10273,40.29059],[-105.10273,40.29042],[-105.10273,40.29023],[-105.10273,40.29004],[-105.10273,40.28984],[-105.10273,40.28966],[-105.10273,40.28947],[-105.10273,40.28928],[-105.10273,40.28909],[-105.10273,40.28891],[-105.10273,40.28872],[-105.10273,40.28853],[-105.10273,40.28834],[-105.10273,40.28815],[-105.10273,40.28796],[-105.10273,40.28777],[-105.10273,40.28758],[-105.10273,40.2874],[-105.10273,40.28722],[-105.10273,40.28703],[-105.10273,40.28686],[-105.10273,40.28669],[-105.10273,40.28652],[-105.10273,40.28637],[-105.10273,40.28621],[-105.10273,40.28603],[-105.10273,40.28586],[-105.10271,40.28569],[-105.10271,40.28551],[-105.10271,40.28534],[-105.10271,40.28516],[-105.10271,40.28498],[-105.10271,40.2848],[-105.10271,40.2846],[-105.10271,40.28442],[-105.10271,40.28423],[-105.10271,40.28404],[-105.10271,40.28386],[-105.10271,40.28367],[-105.10271,40.28349],[-105.10271,40.2833],[-105.10271,40.28312],[-105.10271,40.28293],[-105.10271,40.28275],[-105.10271,40.28256],[-105.10271,40.28237],[-105.10271,40.28217],[-105.10271,40.28198],[-105.10271,40.28179],[-105.10271,40.2816],[-105.10271,40.2814],[-105.10271,40.28122],[-105.10271,40.28102],[-105.10271,40.28084],[-105.10271,40.28064],[-105.10271,40.28046],[-105.10271,40.28027],[-105.10271,40.28009],[-105.10271,40.2799],[-105.10271,40.2797],[-105.10271,40.27953],[-105.10271,40.27935],[-105.10271,40.27916],[-105.10271,40.27897],[-105.10271,40.27879],[-105.10271,40.2786],[-105.10271,40.27841],[-105.10267,40.27822],[-105.10267,40.27803],[-105.10267,40.27784],[-105.10267,40.27765],[-105.10267,40.27746],[-105.10267,40.27727],[-105.10267,40.27709],[-105.10267,40.2769],[-105.10267,40.27672],[-105.10267,40.27653],[-105.10267,40.27636],[-105.10267,40.27618],[-105.10267,40.276],[-105.10267,40.27583],[-105.10267,40.27564],[-105.10267,40.27547],[-105.10267,40.27529],[-105.10267,40.27511],[-105.10267,40.27494],[-105.10267,40.27476],[-105.10267,40.27459],[-105.10267,40.2744],[-105.10267,40.27423],[-105.10267,40.27405],[-105.10267,40.27388],[-105.10267,40.2737],[-105.10267,40.27353],[-105.10267,40.27336],[-105.10267,40.27319],[-105.10265,40.27301],[-105.10265,40.27284],[-105.10265,40.27266],[-105.10265,40.27248],[-105.10265,40.2723],[-105.10265,40.27212],[-105.10265,40.27194],[-105.10265,40.27177],[-105.10265,40.27159],[-105.10265,40.27141],[-105.10265,40.27124],[-105.10265,40.27106],[-105.10265,40.27088],[-105.10265,40.27071],[-105.10263,40.27053],[-105.10263,40.27035],[-105.10263,40.27017],[-105.10263,40.26998],[-105.10263,40.26981],[-105.10263,40.26963],[-105.10263,40.26944],[-105.10263,40.26926],[-105.10263,40.26908],[-105.10263,40.2689],[-105.10263,40.26872],[-105.10263,40.26855],[-105.10261,40.26838],[-105.10261,40.26821],[-105.10261,40.26801],[-105.10261,40.26784],[-105.10261,40.26767],[-105.10261,40.26747],[-105.10261,40.2673],[-105.10261,40.26712],[-105.10261,40.26693],[-105.10261,40.26674],[-105.10259,40.26656],[-105.10259,40.26638],[-105.10259,40.26619],[-105.10259,40.266],[-105.10259,40.26582],[-105.10259,40.26564],[-105.10259,40.26546],[-105.10259,40.26526],[-105.10259,40.26508],[-105.10259,40.26491],[-105.10259,40.26472],[-105.10259,40.26453],[-105.10259,40.26435],[-105.10259,40.26417],[-105.10259,40.26399],[-105.10257,40.2638],[-105.10257,40.26362],[-105.10257,40.26344],[-105.10257,40.26325],[-105.10257,40.26306],[-105.10257,40.26288],[-105.10257,40.2627],[-105.10257,40.26252],[-105.10257,40.26233],[-105.10257,40.26215],[-105.10257,40.26197],[-105.10257,40.26177],[-105.10257,40.26158],[-105.10257,40.2614],[-105.10257,40.26122],[-105.10257,40.26102],[-105.10257,40.26084],[-105.10257,40.26065],[-105.10257,40.26047],[-105.10257,40.26028],[-105.10257,40.2601],[-105.10257,40.25991],[-105.10257,40.25973],[-105.10257,40.25954],[-105.10257,40.25935],[-105.10259,40.25917],[-105.10259,40.25898],[-105.10259,40.25879],[-105.10259,40.25861],[-105.10261,40.25841],[-105.10263,40.25821],[-105.10263,40.25803],[-105.10265,40.25784],[-105.10267,40.25766],[-105.10267,40.25747],[-105.10271,40.25729],[-105.10271,40.2571],[-105.10273,40.25692],[-105.10273,40.25674],[-105.10277,40.25655],[-105.10279,40.25638],[-105.10281,40.25619],[-105.10283,40.25601],[-105.10283,40.25582],[-105.10287,40.25563],[-105.10287,40.25545],[-105.10289,40.25527],[-105.10291,40.25507],[-105.10291,40.25489],[-105.10293,40.25469],[-105.10293,40.2545],[-105.10293,40.25432],[-105.10297,40.25414],[-105.10297,40.25395],[-105.10297,40.25376],[-105.10297,40.25357],[-105.10297,40.25339],[-105.10297,40.2532],[-105.10297,40.25301],[-105.10297,40.25283],[-105.10297,40.25264],[-105.10297,40.25245],[-105.10297,40.25225],[-105.10297,40.25207],[-105.10297,40.25187],[-105.10297,40.25169],[-105.10297,40.2515],[-105.10293,40.2513],[-105.10293,40.25111],[-105.10293,40.25092],[-105.10293,40.25074],[-105.10293,40.25055],[-105.10293,40.25036],[-105.10293,40.25018],[-105.10293,40.24998],[-105.10293,40.2498],[-105.10293,40.24961],[-105.10293,40.24942],[-105.10293,40.24923],[-105.10293,40.24905],[-105.10293,40.24886],[-105.10293,40.24868],[-105.10293,40.24849],[-105.10293,40.24832],[-105.10293,40.24814],[-105.10293,40.24795],[-105.10293,40.24777],[-105.10293,40.24758],[-105.10293,40.24741],[-105.10293,40.24722],[-105.10293,40.24703],[-105.10291,40.24685],[-105.10291,40.24667],[-105.10291,40.24648],[-105.10291,40.24631],[-105.10291,40.24612],[-105.10291,40.24594],[-105.10291,40.24574],[-105.10291,40.24556],[-105.10291,40.24536],[-105.10291,40.24517],[-105.10291,40.24499],[-105.10291,40.2448],[-105.10291,40.24461],[-105.10291,40.24442],[-105.10291,40.24423],[-105.10291,40.24404],[-105.10291,40.24386],[-105.10289,40.24367],[-105.10289,40.24349],[-105.10289,40.2433],[-105.10289,40.24312],[-105.10289,40.24295],[-105.10289,40.24276],[-105.10289,40.24258],[-105.10289,40.2424],[-105.10289,40.24221],[-105.10289,40.24203],[-105.10289,40.24184],[-105.10289,40.24165],[-105.10289,40.24146],[-105.10289,40.24128],[-105.10289,40.24109],[-105.10287,40.2409],[-105.10287,40.24071],[-105.10287,40.24052],[-105.10287,40.24033],[-105.10283,40.24014],[-105.10283,40.23995],[-105.10281,40.23976],[-105.10279,40.23958],[-105.10279,40.2394],[-105.10277,40.23921],[-105.10273,40.23902],[-105.10273,40.23884],[-105.10271,40.23866],[-105.10271,40.23847],[-105.10267,40.23828],[-105.10267,40.2381],[-105.10265,40.23791],[-105.10263,40.23773],[-105.10261,40.23754],[-105.10259,40.23736],[-105.10257,40.23718],[-105.10255,40.237],[-105.10255,40.2368],[-105.10253,40.23662],[-105.10251,40.23643],[-105.10251,40.23625],[-105.10251,40.23606],[-105.10249,40.23588],[-105.10249,40.23568],[-105.10249,40.2355],[-105.10249,40.23532],[-105.10249,40.23512],[-105.10249,40.23493],[-105.10249,40.23474],[-105.10249,40.23455],[-105.10249,40.23436],[-105.10249,40.23417],[-105.10249,40.23398],[-105.10249,40.23379],[-105.10249,40.2336],[-105.10249,40.23342],[-105.10249,40.23322],[-105.10249,40.23304],[-105.10249,40.23285],[-105.10249,40.23266],[-105.10249,40.23247],[-105.10249,40.23228],[-105.10249,40.2321],[-105.10249,40.23191],[-105.10249,40.23173],[-105.10249,40.23154],[-105.10249,40.23134],[-105.10249,40.23116],[-105.10249,40.23097],[-105.10249,40.23078],[-105.10249,40.23059],[-105.10249,40.23041],[-105.10249,40.23022],[-105.10249,40.23004],[-105.10249,40.22985],[-105.10249,40.22966],[-105.10249,40.22948],[-105.10249,40.22929],[-105.10249,40.2291],[-105.10249,40.22891],[-105.10249,40.22873],[-105.10249,40.22854],[-105.10249,40.22836],[-105.10249,40.22817],[-105.10249,40.22798],[-105.10249,40.22779],[-105.10249,40.22761],[-105.10249,40.22742],[-105.10249,40.22724],[-105.10249,40.22705],[-105.10249,40.22686],[-105.10249,40.22667],[-105.10249,40.22649],[-105.10249,40.22631],[-105.10249,40.22612],[-105.10249,40.22594],[-105.10249,40.22575],[-105.10249,40.22557],[-105.10249,40.22539],[-105.10249,40.2252],[-105.10249,40.22502],[-105.10249,40.22484],[-105.10249,40.22465],[-105.10249,40.22446],[-105.10249,40.22428],[-105.10249,40.2241],[-105.10249,40.22391],[-105.10249,40.22372],[-105.10249,40.22353],[-105.10249,40.22334],[-105.10249,40.22316],[-105.10249,40.22298],[-105.10249,40.22279],[-105.10249,40.2226],[-105.10249,40.22241],[-105.10251,40.22223],[-105.10251,40.22205],[-105.10251,40.22185],[-105.10251,40.22167],[-105.10251,40.22147],[-105.10251,40.22129],[-105.10251,40.22111],[-105.10251,40.22092],[-105.10251,40.22074],[-105.10251,40.22055],[-105.10251,40.22035],[-105.10251,40.22017],[-105.10251,40.21998],[-105.10251,40.21979],[-105.10251,40.21961],[-105.10251,40.21943],[-105.10251,40.21924],[-105.10251,40.21906],[-105.10251,40.21887],[-105.10251,40.21868],[-105.10251,40.21849],[-105.10251,40.21831],[-105.10251,40.21811],[-105.10251,40.21792],[-105.10251,40.21774],[-105.10251,40.21755],[-105.10251,40.21737],[-105.10251,40.21718],[-105.10251,40.217],[-105.10251,40.21682],[-105.10251,40.21664],[-105.10251,40.21645],[-105.10251,40.21627],[-105.10251,40.2161],[-105.10251,40.21591],[-105.10249,40.21572],[-105.10249,40.21554],[-105.10249,40.21536],[-105.10249,40.21517],[-105.10249,40.21499],[-105.10249,40.21482],[-105.10249,40.21463],[-105.10249,40.21445],[-105.10249,40.21428],[-105.10249,40.2141],[-105.10249,40.21392],[-105.10249,40.21374],[-105.10249,40.21357],[-105.10249,40.21339],[-105.10249,40.21322],[-105.10249,40.21303],[-105.10249,40.21286],[-105.10249,40.21269],[-105.10247,40.21251],[-105.10247,40.21234],[-105.10247,40.21215],[-105.10247,40.21198],[-105.10247,40.2118],[-105.10249,40.21162],[-105.10247,40.21144],[-105.10247,40.21127],[-105.10247,40.21109],[-105.10247,40.21092],[-105.10247,40.21075],[-105.10249,40.21057],[-105.10249,40.2104],[-105.10249,40.21021],[-105.10249,40.21005],[-105.10249,40.20987],[-105.10251,40.2097],[-105.10251,40.20952],[-105.10251,40.20935],[-105.10251,40.20918],[-105.10251,40.209],[-105.10253,40.20884],[-105.10253,40.20866],[-105.10255,40.20849],[-105.10255,40.20833],[-105.10257,40.20817],[-105.10257,40.20802],[-105.10257,40.20787],[-105.10257,40.20773],[-105.10259,40.20747],[-105.10259,40.20723],[-105.10261,40.20702],[-105.10263,40.20683],[-105.10263,40.20665],[-105.10263,40.20652],[-105.10263,40.20637],[-105.10263,40.20624],[-105.10263,40.20604],[-105.10265,40.20587],[-105.10263,40.20566],[-105.10263,40.20543],[-105.10263,40.20518],[-105.10263,40.20491],[-105.10263,40.20477],[-105.10263,40.20463],[-105.10263,40.20448],[-105.10263,40.20434],[-105.10263,40.2042],[-105.10263,40.20395],[-105.10263,40.20374],[-105.10263,40.20356],[-105.10263,40.20339],[-105.10263,40.20327],[-105.10263,40.20309],[-105.10263,40.20291],[-105.10261,40.20271],[-105.10261,40.20248],[-105.10261,40.20224],[-105.10261,40.20199],[-105.10259,40.20173],[-105.10259,40.20147],[-105.10259,40.20122],[-105.10259,40.20096],[-105.10259,40.20072],[-105.10257,40.20048],[-105.10257,40.20027],[-105.10257,40.20008],[-105.10257,40.19993],[-105.10257,40.19977],[-105.10257,40.19961],[-105.10257,40.19948],[-105.10257,40.19931],[-105.10257,40.19913],[-105.10255,40.19893],[-105.10255,40.19871],[-105.10255,40.1985],[-105.10255,40.19828],[-105.10255,40.19807],[-105.10255,40.19789],[-105.10257,40.19773],[-105.10257,40.19753],[-105.10257,40.1974],[-105.10257,40.19736],[-105.10253,40.1972],[-105.10251,40.19707],[-105.10251,40.1969],[-105.10251,40.1967],[-105.10251,40.19648],[-105.10251,40.19625],[-105.10251,40.196],[-105.10251,40.19573],[-105.10251,40.19546],[-105.10251,40.19519],[-105.10249,40.19492],[-105.10249,40.19465],[-105.10249,40.19438],[-105.10249,40.19411],[-105.10247,40.19383],[-105.10247,40.1937],[-105.10245,40.19342],[-105.10245,40.19315],[-105.10245,40.19288],[-105.10245,40.19275],[-105.10245,40.19261],[-105.10245,40.19247],[-105.10245,40.19232],[-105.10243,40.19218],[-105.10243,40.19204],[-105.10243,40.1919],[-105.10243,40.19175],[-105.10243,40.19162],[-105.10243,40.19147],[-105.10243,40.19132],[-105.10243,40.19119],[-105.10241,40.19104],[-105.10241,40.19089],[-105.10241,40.19076],[-105.10239,40.19061],[-105.10239,40.19047],[-105.10239,40.19033],[-105.10239,40.19007],[-105.10239,40.18981],[-105.10239,40.18957],[-105.10239,40.18937],[-105.10239,40.18919],[-105.10239,40.18902],[-105.10239,40.18888],[-105.10239,40.18871],[-105.10239,40.18856],[-105.10239,40.1884],[-105.10239,40.18822],[-105.10239,40.18803],[-105.10239,40.18783],[-105.10239,40.18762],[-105.10239,40.1874],[-105.10239,40.18717],[-105.10239,40.18693],[-105.10239,40.18671],[-105.10239,40.18647],[-105.10241,40.18624],[-105.10243,40.186],[-105.10243,40.18577],[-105.10243,40.18554],[-105.10243,40.18531],[-105.10243,40.18507],[-105.10243,40.18484],[-105.10243,40.18459],[-105.10243,40.18435],[-105.10245,40.18409],[-105.10245,40.18383],[-105.10245,40.18358],[-105.10245,40.18333],[-105.10245,40.18307],[-105.10247,40.18282],[-105.10247,40.18256],[-105.10249,40.1823],[-105.10249,40.18203],[-105.10249,40.18176],[-105.10249,40.18162],[-105.10249,40.18147],[-105.10249,40.18133],[-105.10249,40.1812],[-105.10249,40.18106],[-105.10249,40.18092],[-105.10249,40.18078],[-105.10251,40.18051],[-105.10251,40.18025],[-105.10251,40.18002],[-105.10251,40.1798],[-105.10251,40.1796],[-105.10251,40.17939],[-105.10251,40.17916],[-105.10251,40.17892],[-105.10253,40.17868],[-105.10253,40.17844],[-105.10253,40.17819],[-105.10253,40.17794],[-105.10253,40.17768],[-105.10253,40.17742],[-105.10255,40.17718],[-105.10255,40.17693],[-105.10255,40.17668],[-105.10255,40.17645],[-105.10255,40.17621],[-105.10255,40.17598],[-105.10255,40.17574],[-105.10255,40.17551],[-105.10255,40.17528],[-105.10255,40.17506],[-105.10255,40.17483],[-105.10257,40.17462],[-105.10257,40.17444],[-105.10257,40.17427],[-105.10257,40.17413],[-105.10257,40.174],[-105.10271,40.17386],[-105.10297,40.17384],[-105.10319,40.17383],[-105.10337,40.17381],[-105.10357,40.17381],[-105.1038,40.17377],[-105.10388,40.17363],[-105.10386,40.17347],[-105.10386,40.1733],[-105.10386,40.17312],[-105.10386,40.17293],[-105.10386,40.17276],[-105.10388,40.17262],[-105.1039,40.17246],[-105.1039,40.17239]]}},{"type":"Feature","properties":{"name":"FLEX:53"},"geometry":{"type":"LineString","coordinates":[[-105.08028,40.5184],[-105.08022,40.51839],[-105.08004,40.51839],[-105.07986,40.51839],[-105.07977,40.51839],[-105.07973,40.51838],[-105.07969,40.51836],[-105.07968,40.51834],[-105.07966,40.51831],[-105.07965,40.51827],[-105.07966,40.51816],[-105.07966,40.51802],[-105.07967,40.51789],[-105.07967,40.51775],[-105.07968,40.51761],[-105.07968,40.51751],[-105.0795,40.51751],[-105.07932,40.51751],[-105.07914,40.51751],[-105.07896,40.51751],[-105.07878,40.51751],[-105.0786,40.51751],[-105.07842,40.51751],[-105.07824,40.51751],[-105.07806,40.51751],[-105.07788,40.51751],[-105.07776,40.51751],[-105.07758,40.51751],[-105.0774,40.51751],[-105.07725,40.51751],[-105.07725,40.51737],[-105.07726,40.51724],[-105.07726,40.5171],[-105.07726,40.51696],[-105.07727,40.51683],[-105.07727,40.51669],[-105.07727,40.51655],[-105.07728,40.51642],[-105.07728,40.5163],[-105.07728,40.51616],[-105.07729,40.51603],[-105.07729,40.51589],[-105.07729,40.51575],[-105.07729,40.5157],[-105.07729,40.51556],[-105.07729,40.51542],[-105.07729,40.51528],[-105.0773,40.51515],[-105.0773,40.51503],[-105.0773,40.51489],[-105.07731,40.51476],[-105.07731,40.51468],[-105.07731,40.51458],[-105.07731,40.51444],[-105.07732,40.51431],[-105.07732,40.51423],[-105.0774,40.51403],[-105.0774,40.51388],[-105.0774,40.51371],[-105.0774,40.5135],[-105.0774,40.51328],[-105.0774,40.51304],[-105.07742,40.51279],[-105.07742,40.51253],[-105.07742,40.51227],[-105.07744,40.512],[-105.07746,40.51172],[-105.07746,40.51159],[-105.07746,40.51144],[-105.07746,40.51131],[-105.07746,40.51116],[-105.07748,40.51102],[-105.07748,40.51087],[-105.07748,40.51073],[-105.07748,40.51058],[-105.07748,40.51043],[-105.07748,40.51029],[-105.07748,40.51014],[-105.0775,40.50999],[-105.0775,40.50985],[-105.0775,40.50971],[-105.0775,40.50958],[-105.0775,40.50944],[-105.0775,40.50929],[-105.0775,40.50915],[-105.0775,40.50901],[-105.0775,40.50887],[-105.0775,40.50873],[-105.0775,40.50858],[-105.07752,40.50844],[-105.07752,40.50831],[-105.07752,40.50816],[-105.07752,40.50802],[-105.07752,40.50789],[-105.07754,40.50762],[-105.07754,40.50734],[-105.07756,40.50707],[-105.07756,40.5068],[-105.07756,40.50652],[-105.07756,40.50624],[-105.07756,40.50597],[-105.07756,40.50571],[-105.07756,40.50543],[-105.07756,40.50516],[-105.07756,40.50489],[-105.07756,40.50461],[-105.07756,40.50434],[-105.07756,40.5042],[-105.07756,40.50392],[-105.07756,40.50379],[-105.07756,40.50364],[-105.07756,40.50351],[-105.07756,40.50337],[-105.07756,40.50323],[-105.07756,40.50309],[-105.07756,40.50295],[-105.07754,40.50268],[-105.07754,40.50243],[-105.07754,40.50221],[-105.07754,40.50203],[-105.07754,40.50189],[-105.07754,40.50174],[-105.07754,40.50174],[-105.07754,40.50155],[-105.07754,40.50133],[-105.07752,40.50116],[-105.07754,40.50097],[-105.07752,40.50074],[-105.07754,40.50052],[-105.07754,40.50026],[-105.07754,40.50001],[-105.07754,40.49975],[-105.07754,40.49947],[-105.07754,40.4992],[-105.07752,40.49907],[-105.07752,40.49892],[-105.07752,40.49878],[-105.07752,40.49865],[-105.07752,40.4985],[-105.07752,40.49837],[-105.07752,40.49822],[-105.07752,40.49808],[-105.07752,40.49795],[-105.07752,40.49767],[-105.07752,40.49741],[-105.07752,40.49715],[-105.07752,40.4969],[-105.07752,40.49667],[-105.07752,40.49644],[-105.07752,40.49623],[-105.07752,40.49602],[-105.07752,40.49582],[-105.07752,40.49563],[-105.07752,40.49547],[-105.07752,40.49531],[-105.07752,40.49514],[-105.0775,40.495],[-105.0775,40.49485],[-105.0775,40.49465],[-105.0775,40.49448],[-105.0775,40.4943],[-105.0775,40.49412],[-105.0775,40.49394],[-105.0775,40.49379],[-105.0775,40.49363],[-105.0775,40.49359],[-105.0775,40.49343],[-105.0775,40.49329],[-105.0775,40.49311],[-105.0775,40.49291],[-105.0775,40.49268],[-105.0775,40.49244],[-105.0775,40.49219],[-105.0775,40.49194],[-105.0775,40.49168],[-105.0775,40.49142],[-105.0775,40.49115],[-105.0775,40.49101],[-105.0775,40.49074],[-105.0775,40.4906],[-105.0775,40.49046],[-105.0775,40.49032],[-105.0775,40.49017],[-105.0775,40.49003],[-105.0775,40.48989],[-105.0775,40.48974],[-105.0775,40.4896],[-105.0775,40.48946],[-105.0775,40.48931],[-105.0775,40.48917],[-105.0775,40.48903],[-105.0775,40.48888],[-105.0775,40.48873],[-105.0775,40.48859],[-105.0775,40.48845],[-105.0775,40.4883],[-105.0775,40.48815],[-105.0775,40.48802],[-105.0775,40.48788],[-105.0775,40.48775],[-105.0775,40.48761],[-105.0775,40.48734],[-105.0775,40.48708],[-105.0775,40.48683],[-105.0775,40.48658],[-105.0775,40.48632],[-105.0775,40.48606],[-105.0775,40.48579],[-105.0775,40.48552],[-105.0775,40.48538],[-105.0775,40.48524],[-105.07752,40.4851],[-105.07752,40.48495],[-105.07752,40.48482],[-105.07752,40.48467],[-105.07752,40.48454],[-105.07752,40.48439],[-105.07752,40.48425],[-105.07752,40.48412],[-105.07752,40.48397],[-105.07752,40.48383],[-105.07752,40.48369],[-105.07752,40.48354],[-105.07752,40.48339],[-105.07752,40.48326],[-105.07752,40.48311],[-105.07752,40.48297],[-105.07752,40.48282],[-105.07752,40.48267],[-105.07752,40.48253],[-105.07752,40.48238],[-105.07752,40.48222],[-105.07752,40.48208],[-105.07752,40.48193],[-105.07752,40.48178],[-105.07752,40.48164],[-105.07752,40.4815],[-105.07752,40.48135],[-105.07752,40.4811],[-105.07752,40.48087],[-105.07752,40.48068],[-105.07754,40.48053],[-105.07754,40.48036],[-105.07754,40.48018],[-105.07754,40.48002],[-105.07754,40.47989],[-105.07754,40.47987],[-105.07754,40.47973],[-105.07754,40.47952],[-105.07754,40.47936],[-105.07754,40.47917],[-105.07754,40.47897],[-105.07754,40.47875],[-105.07754,40.47851],[-105.07754,40.47827],[-105.07754,40.47801],[-105.07756,40.47776],[-105.07756,40.47748],[-105.07756,40.47734],[-105.07756,40.4772],[-105.07756,40.47706],[-105.07756,40.47692],[-105.07756,40.47678],[-105.07756,40.47664],[-105.07756,40.47649],[-105.07756,40.47635],[-105.07756,40.4762],[-105.07756,40.47605],[-105.07756,40.47591],[-105.07756,40.47575],[-105.07756,40.4756],[-105.07756,40.47544],[-105.07756,40.47528],[-105.07756,40.47512],[-105.07756,40.47496],[-105.07756,40.4748],[-105.07756,40.47464],[-105.07756,40.47449],[-105.07756,40.47433],[-105.07756,40.47417],[-105.07756,40.474],[-105.07756,40.47384],[-105.07756,40.47368],[-105.07756,40.47352],[-105.07756,40.47336],[-105.07756,40.47319],[-105.07756,40.47303],[-105.07756,40.47287],[-105.07756,40.47271],[-105.07756,40.47255],[-105.07756,40.47239],[-105.07756,40.47223],[-105.07756,40.47207],[-105.07756,40.47191],[-105.07756,40.47175],[-105.07756,40.47158],[-105.07756,40.47142],[-105.07756,40.47126],[-105.07756,40.4711],[-105.07756,40.47093],[-105.07756,40.47077],[-105.07756,40.4706],[-105.07756,40.47044],[-105.07756,40.47027],[-105.07756,40.47011],[-105.07756,40.46995],[-105.07756,40.46979],[-105.07756,40.46963],[-105.07756,40.46948],[-105.07756,40.46932],[-105.07756,40.46916],[-105.07758,40.46901],[-105.07758,40.46886],[-105.07758,40.4687],[-105.07758,40.46856],[-105.07758,40.4684],[-105.07758,40.46825],[-105.07758,40.4681],[-105.07758,40.46795],[-105.07758,40.46781],[-105.07758,40.46766],[-105.07758,40.46751],[-105.07756,40.46736],[-105.07756,40.46723],[-105.07756,40.46708],[-105.07756,40.46693],[-105.07756,40.46678],[-105.07756,40.46664],[-105.07756,40.4665],[-105.07756,40.46635],[-105.07756,40.4662],[-105.07756,40.46606],[-105.07756,40.46592],[-105.07756,40.46578],[-105.07756,40.46564],[-105.07756,40.46538],[-105.07756,40.46511],[-105.07758,40.46487],[-105.07758,40.46466],[-105.0776,40.46447],[-105.0776,40.46434],[-105.0776,40.4642],[-105.0776,40.46415],[-105.0776,40.46401],[-105.07756,40.4638],[-105.07756,40.46363],[-105.07756,40.46343],[-105.07756,40.46319],[-105.07756,40.46294],[-105.07756,40.46267],[-105.07756,40.4624],[-105.07756,40.46226],[-105.07756,40.46212],[-105.07756,40.46198],[-105.07756,40.46184],[-105.07756,40.46169],[-105.07756,40.46155],[-105.07756,40.4614],[-105.07756,40.46125],[-105.07756,40.46111],[-105.07756,40.46096],[-105.07756,40.46081],[-105.07756,40.46066],[-105.07756,40.46051],[-105.07756,40.46037],[-105.07756,40.46023],[-105.07756,40.46008],[-105.07758,40.45993],[-105.07758,40.4598],[-105.07758,40.45954],[-105.07758,40.45931],[-105.07758,40.4591],[-105.07758,40.45893],[-105.07764,40.45874],[-105.07776,40.45859],[-105.078,40.45853],[-105.07819,40.45851],[-105.07839,40.45849],[-105.07863,40.45848],[-105.07887,40.45846],[-105.07913,40.45845],[-105.07933,40.45844],[-105.07954,40.45843],[-105.07974,40.45845],[-105.07992,40.45849],[-105.08012,40.45856],[-105.08032,40.45855],[-105.08044,40.45845],[-105.08038,40.4583],[-105.08022,40.45824],[-105.08002,40.4583],[-105.07976,40.45837],[-105.07958,40.45837],[-105.07935,40.45837],[-105.07909,40.45837],[-105.07887,40.45837],[-105.07865,40.45837],[-105.07847,40.45837],[-105.07827,40.45837],[-105.07819,40.45837],[-105.07801,40.45837],[-105.07782,40.45833],[-105.07768,40.45824],[-105.07758,40.45806],[-105.07756,40.4579],[-105.07756,40.45772],[-105.07756,40.45753],[-105.07754,40.45731],[-105.07754,40.45708],[-105.07754,40.45683],[-105.07754,40.45658],[-105.07754,40.45631],[-105.07754,40.45604],[-105.07752,40.4559],[-105.07752,40.45563],[-105.07752,40.45548],[-105.07752,40.45534],[-105.07752,40.4552],[-105.07752,40.45506],[-105.07752,40.45492],[-105.07752,40.45477],[-105.07752,40.45463],[-105.07752,40.45449],[-105.07752,40.45435],[-105.07752,40.4542],[-105.07752,40.45406],[-105.07752,40.45392],[-105.07752,40.45377],[-105.07752,40.45363],[-105.07752,40.45349],[-105.07752,40.45334],[-105.07752,40.45319],[-105.07752,40.45305],[-105.07752,40.45291],[-105.07752,40.45276],[-105.07752,40.45262],[-105.07752,40.45249],[-105.07752,40.45234],[-105.07752,40.45221],[-105.07752,40.45206],[-105.07752,40.45191],[-105.07752,40.45178],[-105.07752,40.45164],[-105.07752,40.45151],[-105.07752,40.45137],[-105.0775,40.45123],[-105.0775,40.45109],[-105.0775,40.45094],[-105.0775,40.4508],[-105.0775,40.45066],[-105.0775,40.45052],[-105.0775,40.45038],[-105.0775,40.45024],[-105.0775,40.45009],[-105.0775,40.44996],[-105.0775,40.44969],[-105.0775,40.44942],[-105.0775,40.44917],[-105.0775,40.44894],[-105.0775,40.44873],[-105.0775,40.44856],[-105.0775,40.4484],[-105.07752,40.44836],[-105.07752,40.4482],[-105.07752,40.44801],[-105.0775,40.44784],[-105.0775,40.44765],[-105.0775,40.44744],[-105.0775,40.44722],[-105.0775,40.44699],[-105.0775,40.44675],[-105.0775,40.4465],[-105.0775,40.44625],[-105.0775,40.44599],[-105.0775,40.44573],[-105.0775,40.44547],[-105.0775,40.4452],[-105.0775,40.44492],[-105.0775,40.44465],[-105.0775,40.44439],[-105.0775,40.44413],[-105.0775,40.44391],[-105.0775,40.44373],[-105.0775,40.44355],[-105.0775,40.4435],[-105.0775,40.44336],[-105.0775,40.44316],[-105.0775,40.44299],[-105.0775,40.44279],[-105.0775,40.44259],[-105.0775,40.44236],[-105.0775,40.44213],[-105.0775,40.4419],[-105.0775,40.44166],[-105.0775,40.44142],[-105.0775,40.44117],[-105.0775,40.44092],[-105.0775,40.44069],[-105.0775,40.44044],[-105.0775,40.4402],[-105.0775,40.43995],[-105.0775,40.43971],[-105.0775,40.43948],[-105.0775,40.43926],[-105.0775,40.43905],[-105.0775,40.43886],[-105.0775,40.4387],[-105.0775,40.43852],[-105.0775,40.43837],[-105.0775,40.43821],[-105.0775,40.43806],[-105.0775,40.43791],[-105.0775,40.43772],[-105.0775,40.43766],[-105.0775,40.43747],[-105.0775,40.43725],[-105.0775,40.43708],[-105.0775,40.43688],[-105.0775,40.43666],[-105.0775,40.43643],[-105.0775,40.4362],[-105.0775,40.43596],[-105.0775,40.43571],[-105.0775,40.43546],[-105.0775,40.43523],[-105.0775,40.43499],[-105.07752,40.43478],[-105.07752,40.43459],[-105.07752,40.43443],[-105.07752,40.43427],[-105.07752,40.43424],[-105.07752,40.43409],[-105.07752,40.43389],[-105.07752,40.43373],[-105.07754,40.43355],[-105.07754,40.43336],[-105.07754,40.43314],[-105.07754,40.43293],[-105.07756,40.43271],[-105.07756,40.43247],[-105.07756,40.43225],[-105.07756,40.43201],[-105.07756,40.43177],[-105.07756,40.43152],[-105.07756,40.43127],[-105.07756,40.431],[-105.07756,40.43077],[-105.07756,40.43051],[-105.07758,40.43027],[-105.07758,40.43002],[-105.07758,40.4298],[-105.07758,40.4296],[-105.0776,40.42942],[-105.0776,40.42927],[-105.0776,40.42922],[-105.0776,40.42903],[-105.0776,40.42882],[-105.07758,40.42865],[-105.07756,40.42845],[-105.07756,40.42825],[-105.07756,40.42802],[-105.07756,40.42778],[-105.07756,40.42753],[-105.07756,40.42728],[-105.07756,40.42703],[-105.07758,40.42677],[-105.07758,40.4265],[-105.07758,40.42625],[-105.07758,40.42601],[-105.07758,40.42578],[-105.07756,40.42557],[-105.07756,40.42538],[-105.07756,40.42521],[-105.07756,40.42504],[-105.07756,40.4249],[-105.07754,40.42477],[-105.07734,40.4247],[-105.07708,40.42469],[-105.07684,40.4247],[-105.07664,40.42473],[-105.07643,40.42467],[-105.0764,40.4245],[-105.0764,40.42431],[-105.0764,40.42414],[-105.07643,40.42398],[-105.07643,40.42394]]}},{"type":"Feature","properties":{"name":"FLEX:54"},"geometry":{"type":"LineString","coordinates":[[-105.08028,40.5184],[-105.08022,40.51839],[-105.08004,40.51839],[-105.07986,40.51839],[-105.07977,40.51839],[-105.07973,40.51838],[-105.07969,40.51836],[-105.07968,40.51834],[-105.07966,40.51831],[-105.07965,40.51827],[-105.07966,40.51816],[-105.07966,40.51802],[-105.07967,40.51789],[-105.07967,40.51775],[-105.07968,40.51761],[-105.07968,40.51751],[-105.0795,40.51751],[-105.07932,40.51751],[-105.07914,40.51751],[-105.07896,40.51751],[-105.07878,40.51751],[-105.0786,40.51751],[-105.07842,40.51751],[-105.07824,40.51751],[-105.07806,40.51751],[-105.07788,40.51751],[-105.07776,40.51751],[-105.07758,40.51751],[-105.0774,40.51751],[-105.07725,40.51751],[-105.07725,40.51737],[-105.07726,40.51724],[-105.07726,40.5171],[-105.07726,40.51696],[-105.07727,40.51683],[-105.07727,40.51669],[-105.07727,40.51655],[-105.07728,40.51642],[-105.07728,40.5163],[-105.07728,40.51616],[-105.07729,40.51603],[-105.07729,40.51589],[-105.07729,40.51575],[-105.07729,40.5157],[-105.07729,40.51556],[-105.07729,40.51542],[-105.07729,40.51528],[-105.0773,40.51515],[-105.0773,40.51503],[-105.0773,40.51489],[-105.07731,40.51476],[-105.07731,40.51468],[-105.07731,40.51458],[-105.07731,40.51444],[-105.07732,40.51431],[-105.07732,40.51423],[-105.0774,40.51403],[-105.0774,40.51388],[-105.0774,40.51371],[-105.0774,40.5135],[-105.0774,40.51328],[-105.0774,40.51304],[-105.07742,40.51279],[-105.07742,40.51253],[-105.07742,40.51227],[-105.07744,40.512],[-105.07746,40.51172],[-105.07746,40.51159],[-105.07746,40.51144],[-105.07746,40.51131],[-105.07746,40.51116],[-105.07748,40.51102],[-105.07748,40.51087],[-105.07748,40.51073],[-105.07748,40.51058],[-105.07748,40.51043],[-105.07748,40.51029],[-105.07748,40.51014],[-105.0775,40.50999],[-105.0775,40.50985],[-105.0775,40.50971],[-105.0775,40.50958],[-105.0775,40.50944],[-105.0775,40.50929],[-105.0775,40.50915],[-105.0775,40.50901],[-105.0775,40.50887],[-105.0775,40.50873],[-105.0775,40.50858],[-105.07752,40.50844],[-105.07752,40.50831],[-105.07752,40.50816],[-105.07752,40.50802],[-105.07752,40.50789],[-105.07754,40.50762],[-105.07754,40.50734],[-105.07756,40.50707],[-105.07756,40.5068],[-105.07756,40.50652],[-105.07756,40.50624],[-105.07756,40.50597],[-105.07756,40.50571],[-105.07756,40.50543],[-105.07756,40.50516],[-105.07756,40.50489],[-105.07756,40.50461],[-105.07756,40.50434],[-105.07756,40.5042],[-105.07756,40.50392],[-105.07756,40.50379],[-105.07756,40.50364],[-105.07756,40.50351],[-105.07756,40.50337],[-105.07756,40.50323],[-105.07756,40.50309],[-105.07756,40.50295],[-105.07754,40.50268],[-105.07754,40.50243],[-105.07754,40.50221],[-105.07754,40.50203],[-105.07754,40.50189],[-105.07754,40.50174],[-105.07754,40.50174],[-105.07754,40.50155],[-105.07754,40.50133],[-105.07752,40.50116],[-105.07754,40.50097],[-105.07752,40.50074],[-105.07754,40.50052],[-105.07754,40.50026],[-105.07754,40.50001],[-105.07754,40.49975],[-105.07754,40.49947],[-105.07754,40.4992],[-105.07752,40.49907],[-105.07752,40.49892],[-105.07752,40.49878],[-105.07752,40.49865],[-105.07752,40.4985],[-105.07752,40.49837],[-105.07752,40.49822],[-105.07752,40.49808],[-105.07752,40.49795],[-105.07752,40.49767],[-105.07752,40.49741],[-105.07752,40.49715],[-105.07752,40.4969],[-105.07752,40.49667],[-105.07752,40.49644],[-105.07752,40.49623],[-105.07752,40.49602],[-105.07752,40.49582],[-105.07752,40.49563],[-105.07752,40.49547],[-105.07752,40.49531],[-105.07752,40.49514],[-105.0775,40.495],[-105.0775,40.49485],[-105.0775,40.49465],[-105.0775,40.49448],[-105.0775,40.4943],[-105.0775,40.49412],[-105.0775,40.49394],[-105.0775,40.49379],[-105.0775,40.49363],[-105.0775,40.49359],[-105.0775,40.49343],[-105.0775,40.49329],[-105.0775,40.49311],[-105.0775,40.49291],[-105.0775,40.49268],[-105.0775,40.49244],[-105.0775,40.49219],[-105.0775,40.49194],[-105.0775,40.49168],[-105.0775,40.49142],[-105.0775,40.49115],[-105.0775,40.49101],[-105.0775,40.49074],[-105.0775,40.4906],[-105.0775,40.49046],[-105.0775,40.49032],[-105.0775,40.49017],[-105.0775,40.49003],[-105.0775,40.48989],[-105.0775,40.48974],[-105.0775,40.4896],[-105.0775,40.48946],[-105.0775,40.48931],[-105.0775,40.48917],[-105.0775,40.48903],[-105.0775,40.48888],[-105.0775,40.48873],[-105.0775,40.48859],[-105.0775,40.48845],[-105.0775,40.4883],[-105.0775,40.48815],[-105.0775,40.48802],[-105.0775,40.48788],[-105.0775,40.48775],[-105.0775,40.48761],[-105.0775,40.48734],[-105.0775,40.48708],[-105.0775,40.48683],[-105.0775,40.48658],[-105.0775,40.48632],[-105.0775,40.48606],[-105.0775,40.48579],[-105.0775,40.48552],[-105.0775,40.48538],[-105.0775,40.48524],[-105.07752,40.4851],[-105.07752,40.48495],[-105.07752,40.48482],[-105.07752,40.48467],[-105.07752,40.48454],[-105.07752,40.48439],[-105.07752,40.48425],[-105.07752,40.48412],[-105.07752,40.48397],[-105.07752,40.48383],[-105.07752,40.48369],[-105.07752,40.48354],[-105.07752,40.48339],[-105.07752,40.48326],[-105.07752,40.48311],[-105.07752,40.48297],[-105.07752,40.48282],[-105.07752,40.48267],[-105.07752,40.48253],[-105.07752,40.48238],[-105.07752,40.48222],[-105.07752,40.48208],[-105.07752,40.48193],[-105.07752,40.48178],[-105.07752,40.48164],[-105.07752,40.4815],[-105.07752,40.48135],[-105.07752,40.4811],[-105.07752,40.48087],[-105.07752,40.48068],[-105.07754,40.48053],[-105.07754,40.48036],[-105.07754,40.48018],[-105.07754,40.48002],[-105.07754,40.47989],[-105.07754,40.47987],[-105.07754,40.47973],[-105.07754,40.47952],[-105.07754,40.47936],[-105.07754,40.47917],[-105.07754,40.47897],[-105.07754,40.47875],[-105.07754,40.47851],[-105.07754,40.47827],[-105.07754,40.47801],[-105.07756,40.47776],[-105.07756,40.47748],[-105.07756,40.47734],[-105.07756,40.4772],[-105.07756,40.47706],[-105.07756,40.47692],[-105.07756,40.47678],[-105.07756,40.47664],[-105.07756,40.47649],[-105.07756,40.47635],[-105.07756,40.4762],[-105.07756,40.47605],[-105.07756,40.47591],[-105.07756,40.47575],[-105.07756,40.4756],[-105.07756,40.47544],[-105.07756,40.47528],[-105.07756,40.47512],[-105.07756,40.47496],[-105.07756,40.4748],[-105.07756,40.47464],[-105.07756,40.47449],[-105.07756,40.47433],[-105.07756,40.47417],[-105.07756,40.474],[-105.07756,40.47384],[-105.07756,40.47368],[-105.07756,40.47352],[-105.07756,40.47336],[-105.07756,40.47319],[-105.07756,40.47303],[-105.07756,40.47287],[-105.07756,40.47271],[-105.07756,40.47255],[-105.07756,40.47239],[-105.07756,40.47223],[-105.07756,40.47207],[-105.07756,40.47191],[-105.07756,40.47175],[-105.07756,40.47158],[-105.07756,40.47142],[-105.07756,40.47126],[-105.07756,40.4711],[-105.07756,40.47093],[-105.07756,40.47077],[-105.07756,40.4706],[-105.07756,40.47044],[-105.07756,40.47027],[-105.07756,40.47011],[-105.07756,40.46995],[-105.07756,40.46979],[-105.07756,40.46963],[-105.07756,40.46948],[-105.07756,40.46932],[-105.07756,40.46916],[-105.07758,40.46901],[-105.07758,40.46886],[-105.07758,40.4687],[-105.07758,40.46856],[-105.07758,40.4684],[-105.07758,40.46825],[-105.07758,40.4681],[-105.07758,40.46795],[-105.07758,40.46781],[-105.07758,40.46766],[-105.07758,40.46751],[-105.07756,40.46736],[-105.07756,40.46723],[-105.07756,40.46708],[-105.07756,40.46693],[-105.07756,40.46678],[-105.07756,40.46664],[-105.07756,40.4665],[-105.07756,40.46635],[-105.07756,40.4662],[-105.07756,40.46606],[-105.07756,40.46592],[-105.07756,40.46578],[-105.07756,40.46564],[-105.07756,40.46538],[-105.07756,40.46511],[-105.07758,40.46487],[-105.07758,40.46466],[-105.0776,40.46447],[-105.0776,40.46434],[-105.0776,40.4642],[-105.0776,40.46415],[-105.0776,40.46401],[-105.07756,40.4638],[-105.07756,40.46363],[-105.07756,40.46343],[-105.07756,40.46319],[-105.07756,40.46294],[-105.07756,40.46267],[-105.07756,40.4624],[-105.07756,40.46226],[-105.07756,40.46212],[-105.07756,40.46198],[-105.07756,40.46184],[-105.07756,40.46169],[-105.07756,40.46155],[-105.07756,40.4614],[-105.07756,40.46125],[-105.07756,40.46111],[-105.07756,40.46096],[-105.07756,40.46081],[-105.07756,40.46066],[-105.07756,40.46051],[-105.07756,40.46037],[-105.07756,40.46023],[-105.07756,40.46008],[-105.07758,40.45993],[-105.07758,40.4598],[-105.07758,40.45954],[-105.07758,40.45931],[-105.07758,40.4591],[-105.07758,40.45893],[-105.07764,40.45874],[-105.07776,40.45859],[-105.078,40.45853],[-105.07819,40.45851],[-105.07839,40.45849],[-105.07863,40.45848],[-105.07887,40.45846],[-105.07913,40.45845],[-105.07933,40.45844],[-105.07954,40.45843],[-105.07974,40.45845],[-105.07992,40.45849],[-105.08012,40.45856],[-105.08032,40.45855],[-105.08044,40.45845],[-105.08038,40.4583],[-105.08022,40.45824],[-105.08002,40.4583],[-105.07976,40.45837],[-105.07958,40.45837],[-105.07935,40.45837],[-105.07909,40.45837],[-105.07887,40.45837],[-105.07865,40.45837],[-105.07847,40.45837],[-105.07827,40.45837],[-105.07819,40.45837],[-105.07801,40.45837],[-105.07782,40.45833],[-105.07768,40.45824],[-105.07758,40.45806],[-105.07756,40.4579],[-105.07756,40.45772],[-105.07756,40.45753],[-105.07754,40.45731],[-105.07754,40.45708],[-105.07754,40.45683],[-105.07754,40.45658],[-105.07754,40.45631],[-105.07754,40.45604],[-105.07752,40.4559],[-105.07752,40.45563],[-105.07752,40.45548],[-105.07752,40.45534],[-105.07752,40.4552],[-105.07752,40.45506],[-105.07752,40.45492],[-105.07752,40.45477],[-105.07752,40.45463],[-105.07752,40.45449],[-105.07752,40.45435],[-105.07752,40.4542],[-105.07752,40.45406],[-105.07752,40.45392],[-105.07752,40.45377],[-105.07752,40.45363],[-105.07752,40.45349],[-105.07752,40.45334],[-105.07752,40.45319],[-105.07752,40.45305],[-105.07752,40.45291],[-105.07752,40.45276],[-105.07752,40.45262],[-105.07752,40.45249],[-105.07752,40.45234],[-105.07752,40.45221],[-105.07752,40.45206],[-105.07752,40.45191],[-105.07752,40.45178],[-105.07752,40.45164],[-105.07752,40.45151],[-105.07752,40.45137],[-105.0775,40.45123],[-105.0775,40.45109],[-105.0775,40.45094],[-105.0775,40.4508],[-105.0775,40.45066],[-105.0775,40.45052],[-105.0775,40.45038],[-105.0775,40.45024],[-105.0775,40.45009],[-105.0775,40.44996],[-105.0775,40.44969],[-105.0775,40.44942],[-105.0775,40.44917],[-105.0775,40.44894],[-105.0775,40.44873],[-105.0775,40.44856],[-105.0775,40.4484],[-105.07752,40.44836],[-105.07752,40.4482],[-105.07752,40.44801],[-105.0775,40.44784],[-105.0775,40.44765],[-105.0775,40.44744],[-105.0775,40.44722],[-105.0775,40.44699],[-105.0775,40.44675],[-105.0775,40.4465],[-105.0775,40.44625],[-105.0775,40.44599],[-105.0775,40.44573],[-105.0775,40.44547],[-105.0775,40.4452],[-105.0775,40.44492],[-105.0775,40.44465],[-105.0775,40.44439],[-105.0775,40.44413],[-105.0775,40.44391],[-105.0775,40.44373],[-105.0775,40.44355],[-105.0775,40.4435],[-105.0775,40.44336],[-105.0775,40.44316],[-105.0775,40.44299],[-105.0775,40.44279],[-105.0775,40.44259],[-105.0775,40.44236],[-105.0775,40.44213],[-105.0775,40.4419],[-105.0775,40.44166],[-105.0775,40.44142],[-105.0775,40.44117],[-105.0775,40.44092],[-105.0775,40.44069],[-105.0775,40.44044],[-105.0775,40.4402],[-105.0775,40.43995],[-105.0775,40.43971],[-105.0775,40.43948],[-105.0775,40.43926],[-105.0775,40.43905],[-105.0775,40.43886],[-105.0775,40.4387],[-105.0775,40.43852],[-105.0775,40.43837],[-105.0775,40.43821],[-105.0775,40.43806],[-105.0775,40.43791],[-105.0775,40.43772],[-105.0775,40.43766],[-105.0775,40.43747],[-105.0775,40.43725],[-105.0775,40.43708],[-105.0775,40.43688],[-105.0775,40.43666],[-105.0775,40.43643],[-105.0775,40.4362],[-105.0775,40.43596],[-105.0775,40.43571],[-105.0775,40.43546],[-105.0775,40.43523],[-105.0775,40.43499],[-105.07752,40.43478],[-105.07752,40.43459],[-105.07752,40.43443],[-105.07752,40.43427],[-105.07752,40.43424],[-105.07752,40.43409],[-105.07752,40.43389],[-105.07752,40.43373],[-105.07754,40.43355],[-105.07754,40.43336],[-105.07754,40.43314],[-105.07754,40.43293],[-105.07756,40.43271],[-105.07756,40.43247],[-105.07756,40.43225],[-105.07756,40.43201],[-105.07756,40.43177],[-105.07756,40.43152],[-105.07756,40.43127],[-105.07756,40.431],[-105.07756,40.43077],[-105.07756,40.43051],[-105.07758,40.43027],[-105.07758,40.43002],[-105.07758,40.4298],[-105.07758,40.4296],[-105.0776,40.42942],[-105.0776,40.42927],[-105.0776,40.42922],[-105.0776,40.42903],[-105.0776,40.42882],[-105.07758,40.42865],[-105.07756,40.42845],[-105.07756,40.42825],[-105.07756,40.42802],[-105.07756,40.42778],[-105.07756,40.42753],[-105.07756,40.42728],[-105.07756,40.42703],[-105.07758,40.42677],[-105.07758,40.4265],[-105.07758,40.42625],[-105.07758,40.42601],[-105.07758,40.42578],[-105.07756,40.42557],[-105.07756,40.42538],[-105.07756,40.42521],[-105.07756,40.42504],[-105.07756,40.4249],[-105.07754,40.42477],[-105.07734,40.4247],[-105.07708,40.42469],[-105.07684,40.4247],[-105.07664,40.42473],[-105.07643,40.42467],[-105.0764,40.4245],[-105.0764,40.42431],[-105.0764,40.42414],[-105.07643,40.42398],[-105.07643,40.42394]]}},{"type":"Feature","properties":{"name":"FLEX:55"},"geometry":{"type":"LineString","coordinates":[[-105.0764,40.42408],[-105.07643,40.4238],[-105.0764,40.42365],[-105.0764,40.42351],[-105.07646,40.42336],[-105.07656,40.42325],[-105.07674,40.42318],[-105.07694,40.42311],[-105.07714,40.42306],[-105.0772,40.42293],[-105.07716,40.42275],[-105.07708,40.4226],[-105.07698,40.42247],[-105.0769,40.42235],[-105.07674,40.42219],[-105.07666,40.42208],[-105.07653,40.42195],[-105.07636,40.42183],[-105.07625,40.42169],[-105.07609,40.42155],[-105.07591,40.4214],[-105.07575,40.42123],[-105.07555,40.42106],[-105.07535,40.42088],[-105.07513,40.4207],[-105.07492,40.42052],[-105.0747,40.42032],[-105.0745,40.42012],[-105.07426,40.4199],[-105.07414,40.4198],[-105.07396,40.41957],[-105.07386,40.41945],[-105.07376,40.41933],[-105.07366,40.4192],[-105.07356,40.41908],[-105.0735,40.41895],[-105.07345,40.41881],[-105.07336,40.41867],[-105.07332,40.41854],[-105.07327,40.4184],[-105.07323,40.41826],[-105.07319,40.41812],[-105.07315,40.41797],[-105.07313,40.41782],[-105.07313,40.41767],[-105.07313,40.41752],[-105.07311,40.41737],[-105.07311,40.41723],[-105.07311,40.41707],[-105.07311,40.41693],[-105.07311,40.41678],[-105.07311,40.41663],[-105.07311,40.41649],[-105.07311,40.41634],[-105.07311,40.41618],[-105.07311,40.41605],[-105.07311,40.41589],[-105.07311,40.41575],[-105.07311,40.4156],[-105.07313,40.41545],[-105.07313,40.4153],[-105.07313,40.41515],[-105.07313,40.41501],[-105.07313,40.41486],[-105.07313,40.41471],[-105.07313,40.41456],[-105.07313,40.4144],[-105.07313,40.41426],[-105.07313,40.4141],[-105.07313,40.41396],[-105.07313,40.41381],[-105.07313,40.41367],[-105.07313,40.41351],[-105.07313,40.41337],[-105.07313,40.41323],[-105.07313,40.41308],[-105.07313,40.41294],[-105.07313,40.4128],[-105.07313,40.41266],[-105.07313,40.41251],[-105.07313,40.41238],[-105.07313,40.41223],[-105.07313,40.41197],[-105.07313,40.41172],[-105.07315,40.4115],[-105.07319,40.4113],[-105.07331,40.41111],[-105.0735,40.411],[-105.0737,40.41094],[-105.07392,40.41087],[-105.07412,40.41078],[-105.07426,40.41064],[-105.07436,40.41046],[-105.07438,40.41025],[-105.0744,40.41002],[-105.0744,40.40978],[-105.07442,40.40951],[-105.07444,40.40926],[-105.07444,40.40901],[-105.07444,40.40876],[-105.07444,40.40852],[-105.07444,40.4083],[-105.07444,40.4081],[-105.07444,40.40794],[-105.07444,40.40778],[-105.07444,40.40763],[-105.07446,40.40748],[-105.07446,40.40728],[-105.07446,40.40709],[-105.07446,40.40689],[-105.07446,40.40666],[-105.07446,40.40641],[-105.07448,40.40615],[-105.07448,40.4059],[-105.0745,40.40565],[-105.0745,40.40538],[-105.0745,40.40512],[-105.0745,40.40484],[-105.0745,40.40458],[-105.0745,40.40431],[-105.0745,40.40405],[-105.0745,40.40378],[-105.0745,40.40353],[-105.0745,40.40327],[-105.0745,40.40302],[-105.0745,40.40277],[-105.0745,40.40251],[-105.0745,40.40226],[-105.07452,40.40201],[-105.07452,40.40176],[-105.07452,40.40151],[-105.07452,40.40126],[-105.07454,40.40101],[-105.07454,40.40076],[-105.07454,40.40055],[-105.07454,40.40035],[-105.07454,40.40017],[-105.07454,40.39999],[-105.07456,40.39991],[-105.07456,40.39976],[-105.07456,40.39954],[-105.07456,40.39937],[-105.07456,40.39917],[-105.07456,40.39895],[-105.07458,40.39873],[-105.07458,40.39851],[-105.07458,40.39827],[-105.07458,40.39803],[-105.07458,40.39779],[-105.07458,40.39755],[-105.07458,40.39732],[-105.07458,40.39709],[-105.07458,40.39685],[-105.07458,40.39661],[-105.07458,40.39637],[-105.07458,40.39612],[-105.07458,40.39587],[-105.07458,40.39562],[-105.07458,40.39538],[-105.0746,40.39514],[-105.0746,40.39489],[-105.0746,40.39465],[-105.0746,40.39439],[-105.0746,40.39414],[-105.0746,40.39387],[-105.0746,40.39373],[-105.0746,40.39358],[-105.0746,40.39345],[-105.0746,40.3933],[-105.0746,40.39316],[-105.0746,40.39302],[-105.07462,40.39287],[-105.07462,40.39272],[-105.0746,40.39259],[-105.0746,40.39244],[-105.0746,40.39229],[-105.0746,40.39214],[-105.0746,40.392],[-105.07462,40.39185],[-105.07462,40.39171],[-105.07462,40.39156],[-105.07462,40.39141],[-105.07462,40.39127],[-105.07462,40.39113],[-105.07462,40.39098],[-105.07462,40.39085],[-105.07462,40.3907],[-105.07462,40.39055],[-105.07462,40.39042],[-105.07462,40.39026],[-105.07462,40.39012],[-105.07464,40.38996],[-105.07464,40.38981],[-105.07464,40.38965],[-105.07464,40.3895],[-105.07466,40.38934],[-105.07466,40.3892],[-105.07466,40.38905],[-105.07466,40.38891],[-105.07466,40.38877],[-105.07466,40.38849],[-105.07466,40.38825],[-105.07458,40.38801],[-105.07446,40.38779],[-105.07424,40.38759],[-105.07398,40.3874],[-105.07376,40.3872],[-105.07358,40.38696],[-105.0735,40.38669],[-105.0735,40.38655],[-105.0735,40.38641],[-105.07349,40.38625],[-105.07349,40.3861],[-105.07349,40.38594],[-105.07349,40.38578],[-105.07349,40.38563],[-105.07349,40.38547],[-105.07349,40.38531],[-105.07349,40.38515],[-105.07349,40.38499],[-105.07349,40.38482],[-105.0735,40.38466],[-105.0735,40.3845],[-105.0735,40.38433],[-105.0735,40.38416],[-105.0735,40.384],[-105.0735,40.38384],[-105.0735,40.38366],[-105.0735,40.3835],[-105.0735,40.38334],[-105.0735,40.38317],[-105.0735,40.38301],[-105.0735,40.38285],[-105.0735,40.38269],[-105.0735,40.38252],[-105.0735,40.38235],[-105.0735,40.38219],[-105.07346,40.38203],[-105.07346,40.38188],[-105.07346,40.38172],[-105.07345,40.38156],[-105.07345,40.38141],[-105.07343,40.38125],[-105.0734,40.38109],[-105.0734,40.38094],[-105.07339,40.38079],[-105.07339,40.38065],[-105.07339,40.38052],[-105.07339,40.38026],[-105.07339,40.38003],[-105.07339,40.37987],[-105.07339,40.37978],[-105.07339,40.3796],[-105.07336,40.37946],[-105.07336,40.3793],[-105.07336,40.37912],[-105.07336,40.37891],[-105.07336,40.37868],[-105.07336,40.37843],[-105.07336,40.37818],[-105.07336,40.3779],[-105.07336,40.37776],[-105.07336,40.37761],[-105.07336,40.37747],[-105.07336,40.3773],[-105.07336,40.37713],[-105.07336,40.37697],[-105.07336,40.3768],[-105.07335,40.37663],[-105.07335,40.37646],[-105.07332,40.37629],[-105.07332,40.37611],[-105.07331,40.37594],[-105.07329,40.37575],[-105.07325,40.37558],[-105.07323,40.3754],[-105.07319,40.37522],[-105.07317,40.37505],[-105.07313,40.37486],[-105.07311,40.37469],[-105.07309,40.37451],[-105.07305,40.37432],[-105.07303,40.37416],[-105.07299,40.37398],[-105.07297,40.37379],[-105.07293,40.37362],[-105.07289,40.37344],[-105.07287,40.37327],[-105.07283,40.37309],[-105.07281,40.37291],[-105.07277,40.37274],[-105.07277,40.37257],[-105.07275,40.37239],[-105.07271,40.37222],[-105.07271,40.37205],[-105.07267,40.37188],[-105.07267,40.37172],[-105.07267,40.37154],[-105.07267,40.37137],[-105.07267,40.37119],[-105.07267,40.37101],[-105.07267,40.37085],[-105.07267,40.37067],[-105.07267,40.37049],[-105.07267,40.3703],[-105.07267,40.37012],[-105.07271,40.36993],[-105.07271,40.36974],[-105.07275,40.36956],[-105.07277,40.36937],[-105.07279,40.36918],[-105.07281,40.36899],[-105.07283,40.36881],[-105.07287,40.36863],[-105.07291,40.36844],[-105.07293,40.36827],[-105.07297,40.36809],[-105.07299,40.3679],[-105.07303,40.36772],[-105.07305,40.36754],[-105.07309,40.36735],[-105.07311,40.36717],[-105.07313,40.36698],[-105.07315,40.3668],[-105.07319,40.36661],[-105.07319,40.36642],[-105.07319,40.36624],[-105.07323,40.36605],[-105.07323,40.36586],[-105.07325,40.36566],[-105.07327,40.36548],[-105.07329,40.36529],[-105.07331,40.3651],[-105.07331,40.36491],[-105.07332,40.36472],[-105.07335,40.36453],[-105.07335,40.36434],[-105.07336,40.36415],[-105.07339,40.36395],[-105.07339,40.36377],[-105.0734,40.36359],[-105.0734,40.3634],[-105.07345,40.36321],[-105.07346,40.36302],[-105.07346,40.36283],[-105.0735,40.36265],[-105.0735,40.36247],[-105.0735,40.36228],[-105.07353,40.36209],[-105.07356,40.3619],[-105.07356,40.36172],[-105.07356,40.36153],[-105.07358,40.36135],[-105.0736,40.36116],[-105.07362,40.36097],[-105.07364,40.36079],[-105.07366,40.3606],[-105.07366,40.36042],[-105.0737,40.36023],[-105.0737,40.36004],[-105.0737,40.35987],[-105.07374,40.35968],[-105.07376,40.35949],[-105.07376,40.3593],[-105.07378,40.35912],[-105.07378,40.35894],[-105.0738,40.35876],[-105.07382,40.35857],[-105.07384,40.35839],[-105.07386,40.35821],[-105.07386,40.35802],[-105.07388,40.35784],[-105.07388,40.35766],[-105.0739,40.35749],[-105.07392,40.35731],[-105.07392,40.35713],[-105.07396,40.35697],[-105.07396,40.35679],[-105.07396,40.3566],[-105.074,40.35643],[-105.074,40.35625],[-105.07402,40.35606],[-105.07402,40.35589],[-105.07406,40.3557],[-105.07406,40.35551],[-105.07406,40.35532],[-105.07408,40.35513],[-105.0741,40.35495],[-105.0741,40.35477],[-105.07412,40.35457],[-105.07412,40.35439],[-105.07412,40.35419],[-105.07412,40.35401],[-105.07414,40.35382],[-105.07414,40.35364],[-105.07414,40.35345],[-105.07414,40.35326],[-105.07414,40.35307],[-105.07416,40.35288],[-105.07416,40.35269],[-105.07416,40.35251],[-105.07416,40.35233],[-105.07416,40.35215],[-105.07416,40.35195],[-105.07416,40.35176],[-105.07416,40.35158],[-105.07416,40.3514],[-105.07416,40.35121],[-105.07416,40.35101],[-105.07416,40.35083],[-105.07416,40.35064],[-105.07416,40.35046],[-105.07416,40.35027],[-105.07416,40.35009],[-105.07416,40.3499],[-105.07416,40.34971],[-105.07416,40.34952],[-105.07416,40.34934],[-105.07416,40.34916],[-105.07416,40.34897],[-105.07416,40.34878],[-105.07416,40.34859],[-105.07416,40.34841],[-105.07416,40.34822],[-105.07414,40.34804],[-105.07414,40.34784],[-105.07414,40.34766],[-105.07414,40.34748],[-105.07414,40.34729],[-105.07414,40.3471],[-105.07414,40.34692],[-105.07414,40.34672],[-105.07414,40.34653],[-105.07414,40.34635],[-105.07414,40.34617],[-105.07414,40.34598],[-105.07414,40.3458],[-105.07414,40.3456],[-105.07414,40.34542],[-105.07414,40.34524],[-105.07414,40.34505],[-105.07414,40.34486],[-105.07414,40.34467],[-105.07414,40.34449],[-105.07414,40.3443],[-105.07414,40.34412],[-105.07414,40.34393],[-105.07414,40.34374],[-105.07414,40.34356],[-105.07414,40.34336],[-105.07414,40.34318],[-105.07414,40.343],[-105.07414,40.34281],[-105.07414,40.34262],[-105.07414,40.34243],[-105.07416,40.34224],[-105.07416,40.34207],[-105.07418,40.34188],[-105.07418,40.3417],[-105.07418,40.34153],[-105.07418,40.34134],[-105.07418,40.34119],[-105.07418,40.34101],[-105.07418,40.34084],[-105.07418,40.34067],[-105.07418,40.34051],[-105.07418,40.34034],[-105.07418,40.34018],[-105.07418,40.34003],[-105.07422,40.33988],[-105.07422,40.33974],[-105.07426,40.3396],[-105.07432,40.33945],[-105.07436,40.33931],[-105.07444,40.33917],[-105.07452,40.33906],[-105.07462,40.33892],[-105.07472,40.3388],[-105.07482,40.33869],[-105.07506,40.33848],[-105.07531,40.3383],[-105.07553,40.33812],[-105.07575,40.33795],[-105.07585,40.33774],[-105.07591,40.33752],[-105.07585,40.33729],[-105.07569,40.33709],[-105.07549,40.33691],[-105.07525,40.33673],[-105.07501,40.33653],[-105.07485,40.3363],[-105.07476,40.33617],[-105.0747,40.33604],[-105.07466,40.3359],[-105.07466,40.33577],[-105.07466,40.33562],[-105.07466,40.33549],[-105.07466,40.33534],[-105.07466,40.33519],[-105.07466,40.33504],[-105.07466,40.33489],[-105.0747,40.33473],[-105.0747,40.33457],[-105.0747,40.33441],[-105.07472,40.33425],[-105.07472,40.33409],[-105.07474,40.33391],[-105.07476,40.33375],[-105.07476,40.33358],[-105.07476,40.33341],[-105.07476,40.33324],[-105.07476,40.33306],[-105.07476,40.33289],[-105.07478,40.3327],[-105.0748,40.33254],[-105.0748,40.33235],[-105.0748,40.33218],[-105.0748,40.332],[-105.0748,40.33182],[-105.0748,40.33164],[-105.07478,40.33147],[-105.07478,40.33127],[-105.0747,40.3311],[-105.0747,40.33093],[-105.07466,40.33073],[-105.07466,40.33057],[-105.07466,40.33038],[-105.07466,40.33022],[-105.07466,40.33004],[-105.07466,40.32984],[-105.07466,40.32968],[-105.07464,40.3295],[-105.07464,40.32932],[-105.07464,40.32914],[-105.07464,40.32896],[-105.07462,40.32878],[-105.07462,40.32861],[-105.07462,40.32842],[-105.07462,40.32825],[-105.07462,40.32806],[-105.07462,40.32789],[-105.0746,40.32771],[-105.0746,40.32753],[-105.0746,40.32735],[-105.0746,40.32717],[-105.07458,40.327],[-105.07458,40.32682],[-105.07458,40.32664],[-105.07458,40.32646],[-105.07458,40.32628],[-105.07458,40.3261],[-105.07458,40.32591],[-105.07458,40.32573],[-105.07458,40.32554],[-105.07456,40.32537],[-105.07456,40.32518],[-105.07456,40.325],[-105.07456,40.32481],[-105.07454,40.32463],[-105.07454,40.32446],[-105.07454,40.32427],[-105.07454,40.32409],[-105.07454,40.32391],[-105.07454,40.32373],[-105.07454,40.32354],[-105.07454,40.32337],[-105.07454,40.32319],[-105.07454,40.32301],[-105.07456,40.32283],[-105.07456,40.32266],[-105.07456,40.32249],[-105.07456,40.32232],[-105.07456,40.32215],[-105.07454,40.32198],[-105.07454,40.32181],[-105.07454,40.32164],[-105.07454,40.32147],[-105.07454,40.32129],[-105.07452,40.32112],[-105.07452,40.32095],[-105.0745,40.32078],[-105.0745,40.3206],[-105.0745,40.32044],[-105.0745,40.32025],[-105.07448,40.32006],[-105.07448,40.31989],[-105.07446,40.31972],[-105.07446,40.31953],[-105.07446,40.31934],[-105.07446,40.31916],[-105.07444,40.31898],[-105.07444,40.3188],[-105.07444,40.31862],[-105.07444,40.31843],[-105.07444,40.31824],[-105.07444,40.31807],[-105.07444,40.31788],[-105.07444,40.3177],[-105.07444,40.31752],[-105.07444,40.31733],[-105.07442,40.31715],[-105.07442,40.31697],[-105.07442,40.31679],[-105.07442,40.3166],[-105.0744,40.31643],[-105.0744,40.31625],[-105.0744,40.31606],[-105.0744,40.31589],[-105.0744,40.3157],[-105.0744,40.31551],[-105.0744,40.31534],[-105.0744,40.31516],[-105.0744,40.31498],[-105.0744,40.31481],[-105.0744,40.31463],[-105.0744,40.31446],[-105.0744,40.31428],[-105.0744,40.31411],[-105.07438,40.31394],[-105.07438,40.31377],[-105.07438,40.3136],[-105.07438,40.31343],[-105.07438,40.31326],[-105.07438,40.31309],[-105.07438,40.31292],[-105.07438,40.31276],[-105.07438,40.31259],[-105.07438,40.31242],[-105.07438,40.31226],[-105.07438,40.31209],[-105.07438,40.31193],[-105.07438,40.31175],[-105.07438,40.31158],[-105.07438,40.31141],[-105.07438,40.31125],[-105.07438,40.31108],[-105.07438,40.31091],[-105.07438,40.31075],[-105.07438,40.31058],[-105.07438,40.31041],[-105.07436,40.31025],[-105.07436,40.31009],[-105.07436,40.30992],[-105.07436,40.30975],[-105.07436,40.3096],[-105.07436,40.30944],[-105.07436,40.30928],[-105.07436,40.30913],[-105.07436,40.30898],[-105.07436,40.30884],[-105.07436,40.30858],[-105.07436,40.30831],[-105.07434,40.30805],[-105.07434,40.3078],[-105.07434,40.30756],[-105.07434,40.30731],[-105.07434,40.30708],[-105.07434,40.30684],[-105.07434,40.30661],[-105.07434,40.30637],[-105.07434,40.30614],[-105.07434,40.30592],[-105.07436,40.30571],[-105.07438,40.30553],[-105.07444,40.30537],[-105.07456,40.30525],[-105.0747,40.30516],[-105.07492,40.3051],[-105.07513,40.30506],[-105.07541,40.30504],[-105.07569,40.30503],[-105.07595,40.30503],[-105.07621,40.30503],[-105.07649,40.30503],[-105.07672,40.30503],[-105.07696,40.30503],[-105.0772,40.30503],[-105.07736,40.30503],[-105.07756,40.30503],[-105.07758,40.30504],[-105.07776,40.30505],[-105.07801,40.30505],[-105.07827,40.30504],[-105.07849,40.30504],[-105.07871,40.30504],[-105.07893,40.30504],[-105.07919,40.30503],[-105.07945,40.30503],[-105.0797,40.30503],[-105.07996,40.30503],[-105.08018,40.30503],[-105.08042,40.30503],[-105.08068,40.30502],[-105.08093,40.30502],[-105.08121,40.305],[-105.08149,40.305],[-105.08177,40.305],[-105.08207,40.30499],[-105.08239,40.30499],[-105.0827,40.30499],[-105.083,40.30499],[-105.0833,40.30498],[-105.08364,40.30498],[-105.08396,40.30498],[-105.08427,40.30499],[-105.08459,40.305],[-105.08489,40.305],[-105.08521,40.305],[-105.08553,40.30501],[-105.08584,40.30501],[-105.0862,40.30502],[-105.08654,40.30503],[-105.08688,40.30503],[-105.08721,40.30504],[-105.08755,40.30505],[-105.08773,40.30505],[-105.08793,40.30505],[-105.08809,40.30505],[-105.08829,40.30506],[-105.08849,40.30506],[-105.0887,40.30506],[-105.0889,40.30506],[-105.08912,40.30507],[-105.08932,40.30507],[-105.08956,40.30509],[-105.08976,40.3051],[-105.08996,40.3051],[-105.09015,40.30511],[-105.09037,40.30512],[-105.09055,40.30512],[-105.09075,40.30513],[-105.09095,40.30514],[-105.09115,40.30514],[-105.09133,40.30514],[-105.0915,40.30514],[-105.0917,40.30514],[-105.09202,40.30514],[-105.09232,40.30514],[-105.0926,40.30514],[-105.0928,40.30515],[-105.09304,40.30516],[-105.09325,40.30517],[-105.09351,40.30517],[-105.09377,40.30517],[-105.09403,40.30516],[-105.09437,40.30516],[-105.0947,40.30515],[-105.09506,40.30514],[-105.09526,40.30514],[-105.09544,40.30514],[-105.09564,40.30514],[-105.09584,40.30514],[-105.09604,40.30513],[-105.09623,40.30513],[-105.09645,40.30512],[-105.09667,40.30512],[-105.09685,40.30512],[-105.09707,40.30511],[-105.09729,40.30511],[-105.09746,40.30511],[-105.09768,40.3051],[-105.09788,40.3051],[-105.0981,40.3051],[-105.0983,40.3051],[-105.09852,40.3051],[-105.09874,40.3051],[-105.09893,40.3051],[-105.09914,40.3051],[-105.09935,40.3051],[-105.09955,40.3051],[-105.09977,40.3051],[-105.09999,40.3051],[-105.10019,40.3051],[-105.10041,40.30511],[-105.10061,40.30512],[-105.10082,40.30513],[-105.10104,40.30514],[-105.10122,40.30514],[-105.10144,40.30514],[-105.10164,40.30514],[-105.10184,40.30513],[-105.10206,40.30513],[-105.10225,40.30512],[-105.10249,40.30512],[-105.10267,40.30512],[-105.10289,40.30512],[-105.10311,40.30513],[-105.10331,40.30514],[-105.1035,40.30514],[-105.1037,40.30514],[-105.10388,40.30516],[-105.10408,40.30516],[-105.10426,40.30515],[-105.10446,40.30514],[-105.1048,40.30513],[-105.10511,40.30513],[-105.10537,40.30512],[-105.10559,40.30512],[-105.10581,40.30512],[-105.10605,40.30512],[-105.10627,40.30511],[-105.10643,40.30502],[-105.10645,40.30488],[-105.10643,40.3047],[-105.10641,40.30447],[-105.10637,40.30421],[-105.10635,40.30406],[-105.10631,40.30391],[-105.10631,40.30374],[-105.10625,40.30359],[-105.10621,40.30341],[-105.10615,40.30324],[-105.10611,40.30305],[-105.10605,40.30288],[-105.10597,40.3027],[-105.10591,40.3025],[-105.10583,40.30233],[-105.10575,40.30214],[-105.10565,40.30197],[-105.10557,40.30178],[-105.10547,40.30161],[-105.10535,40.30144],[-105.10525,40.30126],[-105.10514,40.30108],[-105.10505,40.3009],[-105.10496,40.30072],[-105.10482,40.30054],[-105.10472,40.30038],[-105.1046,40.3002],[-105.1045,40.30002],[-105.10438,40.29984],[-105.1043,40.29967],[-105.10418,40.29949],[-105.10406,40.29932],[-105.10396,40.29914],[-105.10388,40.29896],[-105.10378,40.29877],[-105.1037,40.29859],[-105.10361,40.29841],[-105.1035,40.29822],[-105.10345,40.29805],[-105.10337,40.29787],[-105.10331,40.29769],[-105.10323,40.29751],[-105.10317,40.29732],[-105.10311,40.29714],[-105.10305,40.29696],[-105.10301,40.29677],[-105.10297,40.29658],[-105.10291,40.29638],[-105.10289,40.29619],[-105.10287,40.29601],[-105.10283,40.29581],[-105.10281,40.29561],[-105.10279,40.29543],[-105.10277,40.29524],[-105.10277,40.29504],[-105.10277,40.29485],[-105.10277,40.29467],[-105.10277,40.29448],[-105.10277,40.2943],[-105.10277,40.29411],[-105.10277,40.29392],[-105.10277,40.29375],[-105.10277,40.29356],[-105.10277,40.29337],[-105.10277,40.29319],[-105.10277,40.293],[-105.10277,40.29282],[-105.10277,40.29263],[-105.10273,40.29245],[-105.10273,40.29226],[-105.10273,40.29207],[-105.10273,40.29189],[-105.10273,40.29171],[-105.10273,40.29152],[-105.10273,40.29133],[-105.10273,40.29115],[-105.10273,40.29096],[-105.10273,40.29077],[-105.10273,40.29059],[-105.10273,40.29042],[-105.10273,40.29023],[-105.10273,40.29004],[-105.10273,40.28984],[-105.10273,40.28966],[-105.10273,40.28947],[-105.10273,40.28928],[-105.10273,40.28909],[-105.10273,40.28891],[-105.10273,40.28872],[-105.10273,40.28853],[-105.10273,40.28834],[-105.10273,40.28815],[-105.10273,40.28796],[-105.10273,40.28777],[-105.10273,40.28758],[-105.10273,40.2874],[-105.10273,40.28722],[-105.10273,40.28703],[-105.10273,40.28686],[-105.10273,40.28669],[-105.10273,40.28652],[-105.10273,40.28637],[-105.10273,40.28621],[-105.10273,40.28603],[-105.10273,40.28586],[-105.10271,40.28569],[-105.10271,40.28551],[-105.10271,40.28534],[-105.10271,40.28516],[-105.10271,40.28498],[-105.10271,40.2848],[-105.10271,40.2846],[-105.10271,40.28442],[-105.10271,40.28423],[-105.10271,40.28404],[-105.10271,40.28386],[-105.10271,40.28367],[-105.10271,40.28349],[-105.10271,40.2833],[-105.10271,40.28312],[-105.10271,40.28293],[-105.10271,40.28275],[-105.10271,40.28256],[-105.10271,40.28237],[-105.10271,40.28217],[-105.10271,40.28198],[-105.10271,40.28179],[-105.10271,40.2816],[-105.10271,40.2814],[-105.10271,40.28122],[-105.10271,40.28102],[-105.10271,40.28084],[-105.10271,40.28064],[-105.10271,40.28046],[-105.10271,40.28027],[-105.10271,40.28009],[-105.10271,40.2799],[-105.10271,40.2797],[-105.10271,40.27953],[-105.10271,40.27935],[-105.10271,40.27916],[-105.10271,40.27897],[-105.10271,40.27879],[-105.10271,40.2786],[-105.10271,40.27841],[-105.10267,40.27822],[-105.10267,40.27803],[-105.10267,40.27784],[-105.10267,40.27765],[-105.10267,40.27746],[-105.10267,40.27727],[-105.10267,40.27709],[-105.10267,40.2769],[-105.10267,40.27672],[-105.10267,40.27653],[-105.10267,40.27636],[-105.10267,40.27618],[-105.10267,40.276],[-105.10267,40.27583],[-105.10267,40.27564],[-105.10267,40.27547],[-105.10267,40.27529],[-105.10267,40.27511],[-105.10267,40.27494],[-105.10267,40.27476],[-105.10267,40.27459],[-105.10267,40.2744],[-105.10267,40.27423],[-105.10267,40.27405],[-105.10267,40.27388],[-105.10267,40.2737],[-105.10267,40.27353],[-105.10267,40.27336],[-105.10267,40.27319],[-105.10265,40.27301],[-105.10265,40.27284],[-105.10265,40.27266],[-105.10265,40.27248],[-105.10265,40.2723],[-105.10265,40.27212],[-105.10265,40.27194],[-105.10265,40.27177],[-105.10265,40.27159],[-105.10265,40.27141],[-105.10265,40.27124],[-105.10265,40.27106],[-105.10265,40.27088],[-105.10265,40.27071],[-105.10263,40.27053],[-105.10263,40.27035],[-105.10263,40.27017],[-105.10263,40.26998],[-105.10263,40.26981],[-105.10263,40.26963],[-105.10263,40.26944],[-105.10263,40.26926],[-105.10263,40.26908],[-105.10263,40.2689],[-105.10263,40.26872],[-105.10263,40.26855],[-105.10261,40.26838],[-105.10261,40.26821],[-105.10261,40.26801],[-105.10261,40.26784],[-105.10261,40.26767],[-105.10261,40.26747],[-105.10261,40.2673],[-105.10261,40.26712],[-105.10261,40.26693],[-105.10261,40.26674],[-105.10259,40.26656],[-105.10259,40.26638],[-105.10259,40.26619],[-105.10259,40.266],[-105.10259,40.26582],[-105.10259,40.26564],[-105.10259,40.26546],[-105.10259,40.26526],[-105.10259,40.26508],[-105.10259,40.26491],[-105.10259,40.26472],[-105.10259,40.26453],[-105.10259,40.26435],[-105.10259,40.26417],[-105.10259,40.26399],[-105.10257,40.2638],[-105.10257,40.26362],[-105.10257,40.26344],[-105.10257,40.26325],[-105.10257,40.26306],[-105.10257,40.26288],[-105.10257,40.2627],[-105.10257,40.26252],[-105.10257,40.26233],[-105.10257,40.26215],[-105.10257,40.26197],[-105.10257,40.26177],[-105.10257,40.26158],[-105.10257,40.2614],[-105.10257,40.26122],[-105.10257,40.26102],[-105.10257,40.26084],[-105.10257,40.26065],[-105.10257,40.26047],[-105.10257,40.26028],[-105.10257,40.2601],[-105.10257,40.25991],[-105.10257,40.25973],[-105.10257,40.25954],[-105.10257,40.25935],[-105.10259,40.25917],[-105.10259,40.25898],[-105.10259,40.25879],[-105.10259,40.25861],[-105.10261,40.25841],[-105.10263,40.25821],[-105.10263,40.25803],[-105.10265,40.25784],[-105.10267,40.25766],[-105.10267,40.25747],[-105.10271,40.25729],[-105.10271,40.2571],[-105.10273,40.25692],[-105.10273,40.25674],[-105.10277,40.25655],[-105.10279,40.25638],[-105.10281,40.25619],[-105.10283,40.25601],[-105.10283,40.25582],[-105.10287,40.25563],[-105.10287,40.25545],[-105.10289,40.25527],[-105.10291,40.25507],[-105.10291,40.25489],[-105.10293,40.25469],[-105.10293,40.2545],[-105.10293,40.25432],[-105.10297,40.25414],[-105.10297,40.25395],[-105.10297,40.25376],[-105.10297,40.25357],[-105.10297,40.25339],[-105.10297,40.2532],[-105.10297,40.25301],[-105.10297,40.25283],[-105.10297,40.25264],[-105.10297,40.25245],[-105.10297,40.25225],[-105.10297,40.25207],[-105.10297,40.25187],[-105.10297,40.25169],[-105.10297,40.2515],[-105.10293,40.2513],[-105.10293,40.25111],[-105.10293,40.25092],[-105.10293,40.25074],[-105.10293,40.25055],[-105.10293,40.25036],[-105.10293,40.25018],[-105.10293,40.24998],[-105.10293,40.2498],[-105.10293,40.24961],[-105.10293,40.24942],[-105.10293,40.24923],[-105.10293,40.24905],[-105.10293,40.24886],[-105.10293,40.24868],[-105.10293,40.24849],[-105.10293,40.24832],[-105.10293,40.24814],[-105.10293,40.24795],[-105.10293,40.24777],[-105.10293,40.24758],[-105.10293,40.24741],[-105.10293,40.24722],[-105.10293,40.24703],[-105.10291,40.24685],[-105.10291,40.24667],[-105.10291,40.24648],[-105.10291,40.24631],[-105.10291,40.24612],[-105.10291,40.24594],[-105.10291,40.24574],[-105.10291,40.24556],[-105.10291,40.24536],[-105.10291,40.24517],[-105.10291,40.24499],[-105.10291,40.2448],[-105.10291,40.24461],[-105.10291,40.24442],[-105.10291,40.24423],[-105.10291,40.24404],[-105.10291,40.24386],[-105.10289,40.24367],[-105.10289,40.24349],[-105.10289,40.2433],[-105.10289,40.24312],[-105.10289,40.24295],[-105.10289,40.24276],[-105.10289,40.24258],[-105.10289,40.2424],[-105.10289,40.24221],[-105.10289,40.24203],[-105.10289,40.24184],[-105.10289,40.24165],[-105.10289,40.24146],[-105.10289,40.24128],[-105.10289,40.24109],[-105.10287,40.2409],[-105.10287,40.24071],[-105.10287,40.24052],[-105.10287,40.24033],[-105.10283,40.24014],[-105.10283,40.23995],[-105.10281,40.23976],[-105.10279,40.23958],[-105.10279,40.2394],[-105.10277,40.23921],[-105.10273,40.23902],[-105.10273,40.23884],[-105.10271,40.23866],[-105.10271,40.23847],[-105.10267,40.23828],[-105.10267,40.2381],[-105.10265,40.23791],[-105.10263,40.23773],[-105.10261,40.23754],[-105.10259,40.23736],[-105.10257,40.23718],[-105.10255,40.237],[-105.10255,40.2368],[-105.10253,40.23662],[-105.10251,40.23643],[-105.10251,40.23625],[-105.10251,40.23606],[-105.10249,40.23588],[-105.10249,40.23568],[-105.10249,40.2355],[-105.10249,40.23532],[-105.10249,40.23512],[-105.10249,40.23493],[-105.10249,40.23474],[-105.10249,40.23455],[-105.10249,40.23436],[-105.10249,40.23417],[-105.10249,40.23398],[-105.10249,40.23379],[-105.10249,40.2336],[-105.10249,40.23342],[-105.10249,40.23322],[-105.10249,40.23304],[-105.10249,40.23285],[-105.10249,40.23266],[-105.10249,40.23247],[-105.10249,40.23228],[-105.10249,40.2321],[-105.10249,40.23191],[-105.10249,40.23173],[-105.10249,40.23154],[-105.10249,40.23134],[-105.10249,40.23116],[-105.10249,40.23097],[-105.10249,40.23078],[-105.10249,40.23059],[-105.10249,40.23041],[-105.10249,40.23022],[-105.10249,40.23004],[-105.10249,40.22985],[-105.10249,40.22966],[-105.10249,40.22948],[-105.10249,40.22929],[-105.10249,40.2291],[-105.10249,40.22891],[-105.10249,40.22873],[-105.10249,40.22854],[-105.10249,40.22836],[-105.10249,40.22817],[-105.10249,40.22798],[-105.10249,40.22779],[-105.10249,40.22761],[-105.10249,40.22742],[-105.10249,40.22724],[-105.10249,40.22705],[-105.10249,40.22686],[-105.10249,40.22667],[-105.10249,40.22649],[-105.10249,40.22631],[-105.10249,40.22612],[-105.10249,40.22594],[-105.10249,40.22575],[-105.10249,40.22557],[-105.10249,40.22539],[-105.10249,40.2252],[-105.10249,40.22502],[-105.10249,40.22484],[-105.10249,40.22465],[-105.10249,40.22446],[-105.10249,40.22428],[-105.10249,40.2241],[-105.10249,40.22391],[-105.10249,40.22372],[-105.10249,40.22353],[-105.10249,40.22334],[-105.10249,40.22316],[-105.10249,40.22298],[-105.10249,40.22279],[-105.10249,40.2226],[-105.10249,40.22241],[-105.10251,40.22223],[-105.10251,40.22205],[-105.10251,40.22185],[-105.10251,40.22167],[-105.10251,40.22147],[-105.10251,40.22129],[-105.10251,40.22111],[-105.10251,40.22092],[-105.10251,40.22074],[-105.10251,40.22055],[-105.10251,40.22035],[-105.10251,40.22017],[-105.10251,40.21998],[-105.10251,40.21979],[-105.10251,40.21961],[-105.10251,40.21943],[-105.10251,40.21924],[-105.10251,40.21906],[-105.10251,40.21887],[-105.10251,40.21868],[-105.10251,40.21849],[-105.10251,40.21831],[-105.10251,40.21811],[-105.10251,40.21792],[-105.10251,40.21774],[-105.10251,40.21755],[-105.10251,40.21737],[-105.10251,40.21718],[-105.10251,40.217],[-105.10251,40.21682],[-105.10251,40.21664],[-105.10251,40.21645],[-105.10251,40.21627],[-105.10251,40.2161],[-105.10251,40.21591],[-105.10249,40.21572],[-105.10249,40.21554],[-105.10249,40.21536],[-105.10249,40.21517],[-105.10249,40.21499],[-105.10249,40.21482],[-105.10249,40.21463],[-105.10249,40.21445],[-105.10249,40.21428],[-105.10249,40.2141],[-105.10249,40.21392],[-105.10249,40.21374],[-105.10249,40.21357],[-105.10249,40.21339],[-105.10249,40.21322],[-105.10249,40.21303],[-105.10249,40.21286],[-105.10249,40.21269],[-105.10247,40.21251],[-105.10247,40.21234],[-105.10247,40.21215],[-105.10247,40.21198],[-105.10247,40.2118],[-105.10249,40.21162],[-105.10247,40.21144],[-105.10247,40.21127],[-105.10247,40.21109],[-105.10247,40.21092],[-105.10247,40.21075],[-105.10249,40.21057],[-105.10249,40.2104],[-105.10249,40.21021],[-105.10249,40.21005],[-105.10249,40.20987],[-105.10251,40.2097],[-105.10251,40.20952],[-105.10251,40.20935],[-105.10251,40.20918],[-105.10251,40.209],[-105.10253,40.20884],[-105.10253,40.20866],[-105.10255,40.20849],[-105.10255,40.20833],[-105.10257,40.20817],[-105.10257,40.20802],[-105.10257,40.20787],[-105.10257,40.20773],[-105.10259,40.20747],[-105.10259,40.20723],[-105.10261,40.20702],[-105.10263,40.20683],[-105.10263,40.20665],[-105.10263,40.20652],[-105.10263,40.20637],[-105.10263,40.20624],[-105.10263,40.20604],[-105.10265,40.20587],[-105.10263,40.20566],[-105.10263,40.20543],[-105.10263,40.20518],[-105.10263,40.20491],[-105.10263,40.20477],[-105.10263,40.20463],[-105.10263,40.20448],[-105.10263,40.20434],[-105.10263,40.2042],[-105.10263,40.20395],[-105.10263,40.20374],[-105.10263,40.20356],[-105.10263,40.20339],[-105.10263,40.20327],[-105.10263,40.20309],[-105.10263,40.20291],[-105.10261,40.20271],[-105.10261,40.20248],[-105.10261,40.20224],[-105.10261,40.20199],[-105.10259,40.20173],[-105.10259,40.20147],[-105.10259,40.20122],[-105.10259,40.20096],[-105.10259,40.20072],[-105.10257,40.20048],[-105.10257,40.20027],[-105.10257,40.20008],[-105.10257,40.19993],[-105.10257,40.19977],[-105.10257,40.19961],[-105.10257,40.19948],[-105.10257,40.19931],[-105.10257,40.19913],[-105.10255,40.19893],[-105.10255,40.19871],[-105.10255,40.1985],[-105.10255,40.19828],[-105.10255,40.19807],[-105.10255,40.19789],[-105.10257,40.19773],[-105.10257,40.19753],[-105.10257,40.1974],[-105.10257,40.19736],[-105.10253,40.1972],[-105.10251,40.19707],[-105.10251,40.1969],[-105.10251,40.1967],[-105.10251,40.19648],[-105.10251,40.19625],[-105.10251,40.196],[-105.10251,40.19573],[-105.10251,40.19546],[-105.10251,40.19519],[-105.10249,40.19492],[-105.10249,40.19465],[-105.10249,40.19438],[-105.10249,40.19411],[-105.10247,40.19383],[-105.10247,40.1937],[-105.10245,40.19342],[-105.10245,40.19315],[-105.10245,40.19288],[-105.10245,40.19275],[-105.10245,40.19261],[-105.10245,40.19247],[-105.10245,40.19232],[-105.10243,40.19218],[-105.10243,40.19204],[-105.10243,40.1919],[-105.10243,40.19175],[-105.10243,40.19162],[-105.10243,40.19147],[-105.10243,40.19132],[-105.10243,40.19119],[-105.10241,40.19104],[-105.10241,40.19089],[-105.10241,40.19076],[-105.10239,40.19061],[-105.10239,40.19047],[-105.10239,40.19033],[-105.10239,40.19007],[-105.10239,40.18981],[-105.10239,40.18957],[-105.10239,40.18937],[-105.10239,40.18919],[-105.10239,40.18902],[-105.10239,40.18888],[-105.10239,40.18871],[-105.10239,40.18856],[-105.10239,40.1884],[-105.10239,40.18822],[-105.10239,40.18803],[-105.10239,40.18783],[-105.10239,40.18762],[-105.10239,40.1874],[-105.10239,40.18717],[-105.10239,40.18693],[-105.10239,40.18671],[-105.10239,40.18647],[-105.10241,40.18624],[-105.10243,40.186],[-105.10243,40.18577],[-105.10243,40.18554],[-105.10243,40.18531],[-105.10243,40.18507],[-105.10243,40.18484],[-105.10243,40.18459],[-105.10243,40.18435],[-105.10245,40.18409],[-105.10245,40.18383],[-105.10245,40.18358],[-105.10245,40.18333],[-105.10245,40.18307],[-105.10247,40.18282],[-105.10247,40.18256],[-105.10249,40.1823],[-105.10249,40.18203],[-105.10249,40.18176],[-105.10249,40.18162],[-105.10249,40.18147],[-105.10249,40.18133],[-105.10249,40.1812],[-105.10249,40.18106],[-105.10249,40.18092],[-105.10249,40.18078],[-105.10251,40.18051],[-105.10251,40.18025],[-105.10251,40.18002],[-105.10251,40.1798],[-105.10251,40.1796],[-105.10251,40.17939],[-105.10251,40.17916],[-105.10251,40.17892],[-105.10253,40.17868],[-105.10253,40.17844],[-105.10253,40.17819],[-105.10253,40.17794],[-105.10253,40.17768],[-105.10253,40.17742],[-105.10255,40.17718],[-105.10255,40.17693],[-105.10255,40.17668],[-105.10255,40.17645],[-105.10255,40.17621],[-105.10255,40.17598],[-105.10255,40.17574],[-105.10255,40.17551],[-105.10255,40.17528],[-105.10255,40.17506],[-105.10255,40.17483],[-105.10257,40.17462],[-105.10257,40.17444],[-105.10257,40.17427],[-105.10257,40.17413],[-105.10257,40.174],[-105.10271,40.17386],[-105.10297,40.17384],[-105.10319,40.17383],[-105.10337,40.17381],[-105.10357,40.17381],[-105.1038,40.17377],[-105.10388,40.17363],[-105.10386,40.17347],[-105.10386,40.1733],[-105.10386,40.17312],[-105.10386,40.17293],[-105.10386,40.17276],[-105.10388,40.17262],[-105.1039,40.17246],[-105.1039,40.17239]]}},{"type":"Feature","properties":{"name":"FLEX:56"},"geometry":{"type":"LineString","coordinates":[[-105.08028,40.5184],[-105.08022,40.51839],[-105.08004,40.51839],[-105.07986,40.51839],[-105.07977,40.51839],[-105.07973,40.51838],[-105.07969,40.51836],[-105.07968,40.51834],[-105.07966,40.51831],[-105.07965,40.51827],[-105.07966,40.51816],[-105.07966,40.51802],[-105.07967,40.51789],[-105.07967,40.51775],[-105.07968,40.51761],[-105.07968,40.51751],[-105.0795,40.51751],[-105.07932,40.51751],[-105.07914,40.51751],[-105.07896,40.51751],[-105.07878,40.51751],[-105.0786,40.51751],[-105.07842,40.51751],[-105.07824,40.51751],[-105.07806,40.51751],[-105.07788,40.51751],[-105.07776,40.51751],[-105.07758,40.51751],[-105.0774,40.51751],[-105.07725,40.51751],[-105.07725,40.51737],[-105.07726,40.51724],[-105.07726,40.5171],[-105.07726,40.51696],[-105.07727,40.51683],[-105.07727,40.51669],[-105.07727,40.51655],[-105.07728,40.51642],[-105.07728,40.5163],[-105.07728,40.51616],[-105.07729,40.51603],[-105.07729,40.51589],[-105.07729,40.51575],[-105.07729,40.5157],[-105.07729,40.51556],[-105.07729,40.51542],[-105.07729,40.51528],[-105.0773,40.51515],[-105.0773,40.51503],[-105.0773,40.51489],[-105.07731,40.51476],[-105.07731,40.51468],[-105.07731,40.51458],[-105.07731,40.51444],[-105.07732,40.51431],[-105.07732,40.51423],[-105.0774,40.51403],[-105.0774,40.51388],[-105.0774,40.51371],[-105.0774,40.5135],[-105.0774,40.51328],[-105.0774,40.51304],[-105.07742,40.51279],[-105.07742,40.51253],[-105.07742,40.51227],[-105.07744,40.512],[-105.07746,40.51172],[-105.07746,40.51159],[-105.07746,40.51144],[-105.07746,40.51131],[-105.07746,40.51116],[-105.07748,40.51102],[-105.07748,40.51087],[-105.07748,40.51073],[-105.07748,40.51058],[-105.07748,40.51043],[-105.07748,40.51029],[-105.07748,40.51014],[-105.0775,40.50999],[-105.0775,40.50985],[-105.0775,40.50971],[-105.0775,40.50958],[-105.0775,40.50944],[-105.0775,40.50929],[-105.0775,40.50915],[-105.0775,40.50901],[-105.0775,40.50887],[-105.0775,40.50873],[-105.0775,40.50858],[-105.07752,40.50844],[-105.07752,40.50831],[-105.07752,40.50816],[-105.07752,40.50802],[-105.07752,40.50789],[-105.07754,40.50762],[-105.07754,40.50734],[-105.07756,40.50707],[-105.07756,40.5068],[-105.07756,40.50652],[-105.07756,40.50624],[-105.07756,40.50597],[-105.07756,40.50571],[-105.07756,40.50543],[-105.07756,40.50516],[-105.07756,40.50489],[-105.07756,40.50461],[-105.07756,40.50434],[-105.07756,40.5042],[-105.07756,40.50392],[-105.07756,40.50379],[-105.07756,40.50364],[-105.07756,40.50351],[-105.07756,40.50337],[-105.07756,40.50323],[-105.07756,40.50309],[-105.07756,40.50295],[-105.07754,40.50268],[-105.07754,40.50243],[-105.07754,40.50221],[-105.07754,40.50203],[-105.07754,40.50189],[-105.07754,40.50174],[-105.07754,40.50174],[-105.07754,40.50155],[-105.07754,40.50133],[-105.07752,40.50116],[-105.07754,40.50097],[-105.07752,40.50074],[-105.07754,40.50052],[-105.07754,40.50026],[-105.07754,40.50001],[-105.07754,40.49975],[-105.07754,40.49947],[-105.07754,40.4992],[-105.07752,40.49907],[-105.07752,40.49892],[-105.07752,40.49878],[-105.07752,40.49865],[-105.07752,40.4985],[-105.07752,40.49837],[-105.07752,40.49822],[-105.07752,40.49808],[-105.07752,40.49795],[-105.07752,40.49767],[-105.07752,40.49741],[-105.07752,40.49715],[-105.07752,40.4969],[-105.07752,40.49667],[-105.07752,40.49644],[-105.07752,40.49623],[-105.07752,40.49602],[-105.07752,40.49582],[-105.07752,40.49563],[-105.07752,40.49547],[-105.07752,40.49531],[-105.07752,40.49514],[-105.0775,40.495],[-105.0775,40.49485],[-105.0775,40.49465],[-105.0775,40.49448],[-105.0775,40.4943],[-105.0775,40.49412],[-105.0775,40.49394],[-105.0775,40.49379],[-105.0775,40.49363],[-105.0775,40.49359],[-105.0775,40.49343],[-105.0775,40.49329],[-105.0775,40.49311],[-105.0775,40.49291],[-105.0775,40.49268],[-105.0775,40.49244],[-105.0775,40.49219],[-105.0775,40.49194],[-105.0775,40.49168],[-105.0775,40.49142],[-105.0775,40.49115],[-105.0775,40.49101],[-105.0775,40.49074],[-105.0775,40.4906],[-105.0775,40.49046],[-105.0775,40.49032],[-105.0775,40.49017],[-105.0775,40.49003],[-105.0775,40.48989],[-105.0775,40.48974],[-105.0775,40.4896],[-105.0775,40.48946],[-105.0775,40.48931],[-105.0775,40.48917],[-105.0775,40.48903],[-105.0775,40.48888],[-105.0775,40.48873],[-105.0775,40.48859],[-105.0775,40.48845],[-105.0775,40.4883],[-105.0775,40.48815],[-105.0775,40.48802],[-105.0775,40.48788],[-105.0775,40.48775],[-105.0775,40.48761],[-105.0775,40.48734],[-105.0775,40.48708],[-105.0775,40.48683],[-105.0775,40.48658],[-105.0775,40.48632],[-105.0775,40.48606],[-105.0775,40.48579],[-105.0775,40.48552],[-105.0775,40.48538],[-105.0775,40.48524],[-105.07752,40.4851],[-105.07752,40.48495],[-105.07752,40.48482],[-105.07752,40.48467],[-105.07752,40.48454],[-105.07752,40.48439],[-105.07752,40.48425],[-105.07752,40.48412],[-105.07752,40.48397],[-105.07752,40.48383],[-105.07752,40.48369],[-105.07752,40.48354],[-105.07752,40.48339],[-105.07752,40.48326],[-105.07752,40.48311],[-105.07752,40.48297],[-105.07752,40.48282],[-105.07752,40.48267],[-105.07752,40.48253],[-105.07752,40.48238],[-105.07752,40.48222],[-105.07752,40.48208],[-105.07752,40.48193],[-105.07752,40.48178],[-105.07752,40.48164],[-105.07752,40.4815],[-105.07752,40.48135],[-105.07752,40.4811],[-105.07752,40.48087],[-105.07752,40.48068],[-105.07754,40.48053],[-105.07754,40.48036],[-105.07754,40.48018],[-105.07754,40.48002],[-105.07754,40.47989],[-105.07754,40.47987],[-105.07754,40.47973],[-105.07754,40.47952],[-105.07754,40.47936],[-105.07754,40.47917],[-105.07754,40.47897],[-105.07754,40.47875],[-105.07754,40.47851],[-105.07754,40.47827],[-105.07754,40.47801],[-105.07756,40.47776],[-105.07756,40.47748],[-105.07756,40.47734],[-105.07756,40.4772],[-105.07756,40.47706],[-105.07756,40.47692],[-105.07756,40.47678],[-105.07756,40.47664],[-105.07756,40.47649],[-105.07756,40.47635],[-105.07756,40.4762],[-105.07756,40.47605],[-105.07756,40.47591],[-105.07756,40.47575],[-105.07756,40.4756],[-105.07756,40.47544],[-105.07756,40.47528],[-105.07756,40.47512],[-105.07756,40.47496],[-105.07756,40.4748],[-105.07756,40.47464],[-105.07756,40.47449],[-105.07756,40.47433],[-105.07756,40.47417],[-105.07756,40.474],[-105.07756,40.47384],[-105.07756,40.47368],[-105.07756,40.47352],[-105.07756,40.47336],[-105.07756,40.47319],[-105.07756,40.47303],[-105.07756,40.47287],[-105.07756,40.47271],[-105.07756,40.47255],[-105.07756,40.47239],[-105.07756,40.47223],[-105.07756,40.47207],[-105.07756,40.47191],[-105.07756,40.47175],[-105.07756,40.47158],[-105.07756,40.47142],[-105.07756,40.47126],[-105.07756,40.4711],[-105.07756,40.47093],[-105.07756,40.47077],[-105.07756,40.4706],[-105.07756,40.47044],[-105.07756,40.47027],[-105.07756,40.47011],[-105.07756,40.46995],[-105.07756,40.46979],[-105.07756,40.46963],[-105.07756,40.46948],[-105.07756,40.46932],[-105.07756,40.46916],[-105.07758,40.46901],[-105.07758,40.46886],[-105.07758,40.4687],[-105.07758,40.46856],[-105.07758,40.4684],[-105.07758,40.46825],[-105.07758,40.4681],[-105.07758,40.46795],[-105.07758,40.46781],[-105.07758,40.46766],[-105.07758,40.46751],[-105.07756,40.46736],[-105.07756,40.46723],[-105.07756,40.46708],[-105.07756,40.46693],[-105.07756,40.46678],[-105.07756,40.46664],[-105.07756,40.4665],[-105.07756,40.46635],[-105.07756,40.4662],[-105.07756,40.46606],[-105.07756,40.46592],[-105.07756,40.46578],[-105.07756,40.46564],[-105.07756,40.46538],[-105.07756,40.46511],[-105.07758,40.46487],[-105.07758,40.46466],[-105.0776,40.46447],[-105.0776,40.46434],[-105.0776,40.4642],[-105.0776,40.46415],[-105.0776,40.46401],[-105.07756,40.4638],[-105.07756,40.46363],[-105.07756,40.46343],[-105.07756,40.46319],[-105.07756,40.46294],[-105.07756,40.46267],[-105.07756,40.4624],[-105.07756,40.46226],[-105.07756,40.46212],[-105.07756,40.46198],[-105.07756,40.46184],[-105.07756,40.46169],[-105.07756,40.46155],[-105.07756,40.4614],[-105.07756,40.46125],[-105.07756,40.46111],[-105.07756,40.46096],[-105.07756,40.46081],[-105.07756,40.46066],[-105.07756,40.46051],[-105.07756,40.46037],[-105.07756,40.46023],[-105.07756,40.46008],[-105.07758,40.45993],[-105.07758,40.4598],[-105.07758,40.45954],[-105.07758,40.45931],[-105.07758,40.4591],[-105.07758,40.45893],[-105.07764,40.45874],[-105.07776,40.45859],[-105.078,40.45853],[-105.07819,40.45851],[-105.07839,40.45849],[-105.07863,40.45848],[-105.07887,40.45846],[-105.07913,40.45845],[-105.07933,40.45844],[-105.07954,40.45843],[-105.07974,40.45845],[-105.07992,40.45849],[-105.08012,40.45856],[-105.08032,40.45855],[-105.08044,40.45845],[-105.08038,40.4583],[-105.08022,40.45824],[-105.08002,40.4583],[-105.07976,40.45837],[-105.07958,40.45837],[-105.07935,40.45837],[-105.07909,40.45837],[-105.07887,40.45837],[-105.07865,40.45837],[-105.07847,40.45837],[-105.07827,40.45837],[-105.07819,40.45837],[-105.07801,40.45837],[-105.07782,40.45833],[-105.07768,40.45824],[-105.07758,40.45806],[-105.07756,40.4579],[-105.07756,40.45772],[-105.07756,40.45753],[-105.07754,40.45731],[-105.07754,40.45708],[-105.07754,40.45683],[-105.07754,40.45658],[-105.07754,40.45631],[-105.07754,40.45604],[-105.07752,40.4559],[-105.07752,40.45563],[-105.07752,40.45548],[-105.07752,40.45534],[-105.07752,40.4552],[-105.07752,40.45506],[-105.07752,40.45492],[-105.07752,40.45477],[-105.07752,40.45463],[-105.07752,40.45449],[-105.07752,40.45435],[-105.07752,40.4542],[-105.07752,40.45406],[-105.07752,40.45392],[-105.07752,40.45377],[-105.07752,40.45363],[-105.07752,40.45349],[-105.07752,40.45334],[-105.07752,40.45319],[-105.07752,40.45305],[-105.07752,40.45291],[-105.07752,40.45276],[-105.07752,40.45262],[-105.07752,40.45249],[-105.07752,40.45234],[-105.07752,40.45221],[-105.07752,40.45206],[-105.07752,40.45191],[-105.07752,40.45178],[-105.07752,40.45164],[-105.07752,40.45151],[-105.07752,40.45137],[-105.0775,40.45123],[-105.0775,40.45109],[-105.0775,40.45094],[-105.0775,40.4508],[-105.0775,40.45066],[-105.0775,40.45052],[-105.0775,40.45038],[-105.0775,40.45024],[-105.0775,40.45009],[-105.0775,40.44996],[-105.0775,40.44969],[-105.0775,40.44942],[-105.0775,40.44917],[-105.0775,40.44894],[-105.0775,40.44873],[-105.0775,40.44856],[-105.0775,40.4484],[-105.07752,40.44836],[-105.07752,40.4482],[-105.07752,40.44801],[-105.0775,40.44784],[-105.0775,40.44765],[-105.0775,40.44744],[-105.0775,40.44722],[-105.0775,40.44699],[-105.0775,40.44675],[-105.0775,40.4465],[-105.0775,40.44625],[-105.0775,40.44599],[-105.0775,40.44573],[-105.0775,40.44547],[-105.0775,40.4452],[-105.0775,40.44492],[-105.0775,40.44465],[-105.0775,40.44439],[-105.0775,40.44413],[-105.0775,40.44391],[-105.0775,40.44373],[-105.0775,40.44355],[-105.0775,40.4435],[-105.0775,40.44336],[-105.0775,40.44316],[-105.0775,40.44299],[-105.0775,40.44279],[-105.0775,40.44259],[-105.0775,40.44236],[-105.0775,40.44213],[-105.0775,40.4419],[-105.0775,40.44166],[-105.0775,40.44142],[-105.0775,40.44117],[-105.0775,40.44092],[-105.0775,40.44069],[-105.0775,40.44044],[-105.0775,40.4402],[-105.0775,40.43995],[-105.0775,40.43971],[-105.0775,40.43948],[-105.0775,40.43926],[-105.0775,40.43905],[-105.0775,40.43886],[-105.0775,40.4387],[-105.0775,40.43852],[-105.0775,40.43837],[-105.0775,40.43821],[-105.0775,40.43806],[-105.0775,40.43791],[-105.0775,40.43772],[-105.0775,40.43766],[-105.0775,40.43747],[-105.0775,40.43725],[-105.0775,40.43708],[-105.0775,40.43688],[-105.0775,40.43666],[-105.0775,40.43643],[-105.0775,40.4362],[-105.0775,40.43596],[-105.0775,40.43571],[-105.0775,40.43546],[-105.0775,40.43523],[-105.0775,40.43499],[-105.07752,40.43478],[-105.07752,40.43459],[-105.07752,40.43443],[-105.07752,40.43427],[-105.07752,40.43424],[-105.07752,40.43409],[-105.07752,40.43389],[-105.07752,40.43373],[-105.07754,40.43355],[-105.07754,40.43336],[-105.07754,40.43314],[-105.07754,40.43293],[-105.07756,40.43271],[-105.07756,40.43247],[-105.07756,40.43225],[-105.07756,40.43201],[-105.07756,40.43177],[-105.07756,40.43152],[-105.07756,40.43127],[-105.07756,40.431],[-105.07756,40.43077],[-105.07756,40.43051],[-105.07758,40.43027],[-105.07758,40.43002],[-105.07758,40.4298],[-105.07758,40.4296],[-105.0776,40.42942],[-105.0776,40.42927],[-105.0776,40.42922],[-105.0776,40.42903],[-105.0776,40.42882],[-105.07758,40.42865],[-105.07756,40.42845],[-105.07756,40.42825],[-105.07756,40.42802],[-105.07756,40.42778],[-105.07756,40.42753],[-105.07756,40.42728],[-105.07756,40.42703],[-105.07758,40.42677],[-105.07758,40.4265],[-105.07758,40.42625],[-105.07758,40.42601],[-105.07758,40.42578],[-105.07756,40.42557],[-105.07756,40.42538],[-105.07756,40.42521],[-105.07756,40.42504],[-105.07756,40.4249],[-105.07754,40.42477],[-105.07734,40.4247],[-105.07708,40.42469],[-105.07684,40.4247],[-105.07664,40.42473],[-105.07643,40.42467],[-105.0764,40.4245],[-105.0764,40.42431],[-105.0764,40.42414],[-105.07643,40.42398],[-105.07643,40.42394],[-105.07643,40.4238],[-105.0764,40.42365],[-105.0764,40.42351],[-105.07646,40.42336],[-105.07656,40.42325],[-105.07674,40.42318],[-105.07694,40.42311],[-105.07714,40.42306],[-105.0772,40.42293],[-105.07716,40.42275],[-105.07708,40.4226],[-105.07698,40.42247],[-105.0769,40.42235],[-105.07674,40.42219],[-105.07666,40.42208],[-105.07653,40.42195],[-105.07636,40.42183],[-105.07625,40.42169],[-105.07609,40.42155],[-105.07591,40.4214],[-105.07575,40.42123],[-105.07555,40.42106],[-105.07535,40.42088],[-105.07513,40.4207],[-105.07492,40.42052],[-105.0747,40.42032],[-105.0745,40.42012],[-105.07426,40.4199],[-105.07414,40.4198],[-105.07396,40.41957],[-105.07386,40.41945],[-105.07376,40.41933],[-105.07366,40.4192],[-105.07356,40.41908],[-105.0735,40.41895],[-105.07345,40.41881],[-105.07336,40.41867],[-105.07332,40.41854],[-105.07327,40.4184],[-105.07323,40.41826],[-105.07319,40.41812],[-105.07315,40.41797],[-105.07313,40.41782],[-105.07313,40.41767],[-105.07313,40.41752],[-105.07311,40.41737],[-105.07311,40.41723],[-105.07311,40.41707],[-105.07311,40.41693],[-105.07311,40.41678],[-105.07311,40.41663],[-105.07311,40.41649],[-105.07311,40.41634],[-105.07311,40.41618],[-105.07311,40.41605],[-105.07311,40.41589],[-105.07311,40.41575],[-105.07311,40.4156],[-105.07313,40.41545],[-105.07313,40.4153],[-105.07313,40.41515],[-105.07313,40.41501],[-105.07313,40.41486],[-105.07313,40.41471],[-105.07313,40.41456],[-105.07313,40.4144],[-105.07313,40.41426],[-105.07313,40.4141],[-105.07313,40.41396],[-105.07313,40.41381],[-105.07313,40.41367],[-105.07313,40.41351],[-105.07313,40.41337],[-105.07313,40.41323],[-105.07313,40.41308],[-105.07313,40.41294],[-105.07313,40.4128],[-105.07313,40.41266],[-105.07313,40.41251],[-105.07313,40.41238],[-105.07313,40.41223],[-105.07313,40.41197],[-105.07313,40.41172],[-105.07315,40.4115],[-105.07319,40.4113],[-105.07331,40.41111],[-105.0735,40.411],[-105.0737,40.41094],[-105.07392,40.41087],[-105.07412,40.41078],[-105.07426,40.41064],[-105.07436,40.41046],[-105.07438,40.41025],[-105.0744,40.41002],[-105.0744,40.40978],[-105.07442,40.40951],[-105.07444,40.40926],[-105.07444,40.40901],[-105.07444,40.40876],[-105.07444,40.40852],[-105.07444,40.4083],[-105.07444,40.4081],[-105.07444,40.40794],[-105.07444,40.40778],[-105.07444,40.40763],[-105.07446,40.40748],[-105.07446,40.40728],[-105.07446,40.40709],[-105.07446,40.40689],[-105.07446,40.40666],[-105.07446,40.40641],[-105.07448,40.40615],[-105.07448,40.4059],[-105.0745,40.40565],[-105.0745,40.40538],[-105.0745,40.40512],[-105.0745,40.40484],[-105.0745,40.40458],[-105.0745,40.40431],[-105.0745,40.40405],[-105.0745,40.40378],[-105.0745,40.40353],[-105.0745,40.40327],[-105.0745,40.40302],[-105.0745,40.40277],[-105.0745,40.40251],[-105.0745,40.40226],[-105.07452,40.40201],[-105.07452,40.40176],[-105.07452,40.40151],[-105.07452,40.40126],[-105.07454,40.40101],[-105.07454,40.40076],[-105.07454,40.40055],[-105.07454,40.40035],[-105.07454,40.40017],[-105.07454,40.39999],[-105.07456,40.39991],[-105.07456,40.39976],[-105.07456,40.39954],[-105.07456,40.39937],[-105.07456,40.39917],[-105.07456,40.39895],[-105.07458,40.39873],[-105.07458,40.39851],[-105.07458,40.39827],[-105.07458,40.39803],[-105.07458,40.39779],[-105.07458,40.39755],[-105.07458,40.39732],[-105.07458,40.39709],[-105.07458,40.39685],[-105.07458,40.39661],[-105.07458,40.39637],[-105.07458,40.39612],[-105.07458,40.39587],[-105.07458,40.39562],[-105.07458,40.39538],[-105.0746,40.39514],[-105.0746,40.39489],[-105.0746,40.39465],[-105.0746,40.39439],[-105.0746,40.39414],[-105.0746,40.39387],[-105.0746,40.39373],[-105.0746,40.39358],[-105.0746,40.39345],[-105.0746,40.3933],[-105.0746,40.39316],[-105.0746,40.39302],[-105.07462,40.39287],[-105.07462,40.39272],[-105.0746,40.39259],[-105.0746,40.39244],[-105.0746,40.39229],[-105.0746,40.39214],[-105.0746,40.392],[-105.07462,40.39185],[-105.07462,40.39171],[-105.07462,40.39156],[-105.07462,40.39141],[-105.07462,40.39127],[-105.07462,40.39113],[-105.07462,40.39098],[-105.07462,40.39085],[-105.07462,40.3907],[-105.07462,40.39055],[-105.07462,40.39042],[-105.07462,40.39026],[-105.07462,40.39012],[-105.07464,40.38996],[-105.07464,40.38981],[-105.07464,40.38965],[-105.07464,40.3895],[-105.07466,40.38934],[-105.07466,40.3892],[-105.07466,40.38905],[-105.07466,40.38891],[-105.07466,40.38877],[-105.07466,40.38849],[-105.07466,40.38825],[-105.07458,40.38801],[-105.07446,40.38779],[-105.07424,40.38759],[-105.07398,40.3874],[-105.07376,40.3872],[-105.07358,40.38696],[-105.0735,40.38669],[-105.0735,40.38655],[-105.0735,40.38641],[-105.07349,40.38625],[-105.07349,40.3861],[-105.07349,40.38594],[-105.07349,40.38578],[-105.07349,40.38563],[-105.07349,40.38547],[-105.07349,40.38531],[-105.07349,40.38515],[-105.07349,40.38499],[-105.07349,40.38482],[-105.0735,40.38466],[-105.0735,40.3845],[-105.0735,40.38433],[-105.0735,40.38416],[-105.0735,40.384],[-105.0735,40.38384],[-105.0735,40.38366],[-105.0735,40.3835],[-105.0735,40.38334],[-105.0735,40.38317],[-105.0735,40.38301],[-105.0735,40.38285],[-105.0735,40.38269],[-105.0735,40.38252],[-105.0735,40.38235],[-105.0735,40.38219],[-105.07346,40.38203],[-105.07346,40.38188],[-105.07346,40.38172],[-105.07345,40.38156],[-105.07345,40.38141],[-105.07343,40.38125],[-105.0734,40.38109],[-105.0734,40.38094],[-105.07339,40.38079],[-105.07339,40.38065],[-105.07339,40.38052],[-105.07339,40.38026],[-105.07339,40.38003],[-105.07339,40.37987],[-105.07339,40.37978],[-105.07339,40.3796],[-105.07336,40.37946],[-105.07336,40.3793],[-105.07336,40.37912],[-105.07336,40.37891],[-105.07336,40.37868],[-105.07336,40.37843],[-105.07336,40.37818],[-105.07336,40.3779],[-105.07336,40.37776],[-105.07336,40.37761],[-105.07336,40.37747],[-105.07336,40.3773],[-105.07336,40.37713],[-105.07336,40.37697],[-105.07336,40.3768],[-105.07335,40.37663],[-105.07335,40.37646],[-105.07332,40.37629],[-105.07332,40.37611],[-105.07331,40.37594],[-105.07329,40.37575],[-105.07325,40.37558],[-105.07323,40.3754],[-105.07319,40.37522],[-105.07317,40.37505],[-105.07313,40.37486],[-105.07311,40.37469],[-105.07309,40.37451],[-105.07305,40.37432],[-105.07303,40.37416],[-105.07299,40.37398],[-105.07297,40.37379],[-105.07293,40.37362],[-105.07289,40.37344],[-105.07287,40.37327],[-105.07283,40.37309],[-105.07281,40.37291],[-105.07277,40.37274],[-105.07277,40.37257],[-105.07275,40.37239],[-105.07271,40.37222],[-105.07271,40.37205],[-105.07267,40.37188],[-105.07267,40.37172],[-105.07267,40.37154],[-105.07267,40.37137],[-105.07267,40.37119],[-105.07267,40.37101],[-105.07267,40.37085],[-105.07267,40.37067],[-105.07267,40.37049],[-105.07267,40.3703],[-105.07267,40.37012],[-105.07271,40.36993],[-105.07271,40.36974],[-105.07275,40.36956],[-105.07277,40.36937],[-105.07279,40.36918],[-105.07281,40.36899],[-105.07283,40.36881],[-105.07287,40.36863],[-105.07291,40.36844],[-105.07293,40.36827],[-105.07297,40.36809],[-105.07299,40.3679],[-105.07303,40.36772],[-105.07305,40.36754],[-105.07309,40.36735],[-105.07311,40.36717],[-105.07313,40.36698],[-105.07315,40.3668],[-105.07319,40.36661],[-105.07319,40.36642],[-105.07319,40.36624],[-105.07323,40.36605],[-105.07323,40.36586],[-105.07325,40.36566],[-105.07327,40.36548],[-105.07329,40.36529],[-105.07331,40.3651],[-105.07331,40.36491],[-105.07332,40.36472],[-105.07335,40.36453],[-105.07335,40.36434],[-105.07336,40.36415],[-105.07339,40.36395],[-105.07339,40.36377],[-105.0734,40.36359],[-105.0734,40.3634],[-105.07345,40.36321],[-105.07346,40.36302],[-105.07346,40.36283],[-105.0735,40.36265],[-105.0735,40.36247],[-105.0735,40.36228],[-105.07353,40.36209],[-105.07356,40.3619],[-105.07356,40.36172],[-105.07356,40.36153],[-105.07358,40.36135],[-105.0736,40.36116],[-105.07362,40.36097],[-105.07364,40.36079],[-105.07366,40.3606],[-105.07366,40.36042],[-105.0737,40.36023],[-105.0737,40.36004],[-105.0737,40.35987],[-105.07374,40.35968],[-105.07376,40.35949],[-105.07376,40.3593],[-105.07378,40.35912],[-105.07378,40.35894],[-105.0738,40.35876],[-105.07382,40.35857],[-105.07384,40.35839],[-105.07386,40.35821],[-105.07386,40.35802],[-105.07388,40.35784],[-105.07388,40.35766],[-105.0739,40.35749],[-105.07392,40.35731],[-105.07392,40.35713],[-105.07396,40.35697],[-105.07396,40.35679],[-105.07396,40.3566],[-105.074,40.35643],[-105.074,40.35625],[-105.07402,40.35606],[-105.07402,40.35589],[-105.07406,40.3557],[-105.07406,40.35551],[-105.07406,40.35532],[-105.07408,40.35513],[-105.0741,40.35495],[-105.0741,40.35477],[-105.07412,40.35457],[-105.07412,40.35439],[-105.07412,40.35419],[-105.07412,40.35401],[-105.07414,40.35382],[-105.07414,40.35364],[-105.07414,40.35345],[-105.07414,40.35326],[-105.07414,40.35307],[-105.07416,40.35288],[-105.07416,40.35269],[-105.07416,40.35251],[-105.07416,40.35233],[-105.07416,40.35215],[-105.07416,40.35195],[-105.07416,40.35176],[-105.07416,40.35158],[-105.07416,40.3514],[-105.07416,40.35121],[-105.07416,40.35101],[-105.07416,40.35083],[-105.07416,40.35064],[-105.07416,40.35046],[-105.07416,40.35027],[-105.07416,40.35009],[-105.07416,40.3499],[-105.07416,40.34971],[-105.07416,40.34952],[-105.07416,40.34934],[-105.07416,40.34916],[-105.07416,40.34897],[-105.07416,40.34878],[-105.07416,40.34859],[-105.07416,40.34841],[-105.07416,40.34822],[-105.07414,40.34804],[-105.07414,40.34784],[-105.07414,40.34766],[-105.07414,40.34748],[-105.07414,40.34729],[-105.07414,40.3471],[-105.07414,40.34692],[-105.07414,40.34672],[-105.07414,40.34653],[-105.07414,40.34635],[-105.07414,40.34617],[-105.07414,40.34598],[-105.07414,40.3458],[-105.07414,40.3456],[-105.07414,40.34542],[-105.07414,40.34524],[-105.07414,40.34505],[-105.07414,40.34486],[-105.07414,40.34467],[-105.07414,40.34449],[-105.07414,40.3443],[-105.07414,40.34412],[-105.07414,40.34393],[-105.07414,40.34374],[-105.07414,40.34356],[-105.07414,40.34336],[-105.07414,40.34318],[-105.07414,40.343],[-105.07414,40.34281],[-105.07414,40.34262],[-105.07414,40.34243],[-105.07416,40.34224],[-105.07416,40.34207],[-105.07418,40.34188],[-105.07418,40.3417],[-105.07418,40.34153],[-105.07418,40.34134],[-105.07418,40.34119],[-105.07418,40.34101],[-105.07418,40.34084],[-105.07418,40.34067],[-105.07418,40.34051],[-105.07418,40.34034],[-105.07418,40.34018],[-105.07418,40.34003],[-105.07422,40.33988],[-105.07422,40.33974],[-105.07426,40.3396],[-105.07432,40.33945],[-105.07436,40.33931],[-105.07444,40.33917],[-105.07452,40.33906],[-105.07462,40.33892],[-105.07472,40.3388],[-105.07482,40.33869],[-105.07506,40.33848],[-105.07531,40.3383],[-105.07553,40.33812],[-105.07575,40.33795],[-105.07585,40.33774],[-105.07591,40.33752],[-105.07585,40.33729],[-105.07569,40.33709],[-105.07549,40.33691],[-105.07525,40.33673],[-105.07501,40.33653],[-105.07485,40.3363],[-105.07476,40.33617],[-105.0747,40.33604],[-105.07466,40.3359],[-105.07466,40.33577],[-105.07466,40.33562],[-105.07466,40.33549],[-105.07466,40.33534],[-105.07466,40.33519],[-105.07466,40.33504],[-105.07466,40.33489],[-105.0747,40.33473],[-105.0747,40.33457],[-105.0747,40.33441],[-105.07472,40.33425],[-105.07472,40.33409],[-105.07474,40.33391],[-105.07476,40.33375],[-105.07476,40.33358],[-105.07476,40.33341],[-105.07476,40.33324],[-105.07476,40.33306],[-105.07476,40.33289],[-105.07478,40.3327],[-105.0748,40.33254],[-105.0748,40.33235],[-105.0748,40.33218],[-105.0748,40.332],[-105.0748,40.33182],[-105.0748,40.33164],[-105.07478,40.33147],[-105.07478,40.33127],[-105.0747,40.3311],[-105.0747,40.33093],[-105.07466,40.33073],[-105.07466,40.33057],[-105.07466,40.33038],[-105.07466,40.33022],[-105.07466,40.33004],[-105.07466,40.32984],[-105.07466,40.32968],[-105.07464,40.3295],[-105.07464,40.32932],[-105.07464,40.32914],[-105.07464,40.32896],[-105.07462,40.32878],[-105.07462,40.32861],[-105.07462,40.32842],[-105.07462,40.32825],[-105.07462,40.32806],[-105.07462,40.32789],[-105.0746,40.32771],[-105.0746,40.32753],[-105.0746,40.32735],[-105.0746,40.32717],[-105.07458,40.327],[-105.07458,40.32682],[-105.07458,40.32664],[-105.07458,40.32646],[-105.07458,40.32628],[-105.07458,40.3261],[-105.07458,40.32591],[-105.07458,40.32573],[-105.07458,40.32554],[-105.07456,40.32537],[-105.07456,40.32518],[-105.07456,40.325],[-105.07456,40.32481],[-105.07454,40.32463],[-105.07454,40.32446],[-105.07454,40.32427],[-105.07454,40.32409],[-105.07454,40.32391],[-105.07454,40.32373],[-105.07454,40.32354],[-105.07454,40.32337],[-105.07454,40.32319],[-105.07454,40.32301],[-105.07456,40.32283],[-105.07456,40.32266],[-105.07456,40.32249],[-105.07456,40.32232],[-105.07456,40.32215],[-105.07454,40.32198],[-105.07454,40.32181],[-105.07454,40.32164],[-105.07454,40.32147],[-105.07454,40.32129],[-105.07452,40.32112],[-105.07452,40.32095],[-105.0745,40.32078],[-105.0745,40.3206],[-105.0745,40.32044],[-105.0745,40.32025],[-105.07448,40.32006],[-105.07448,40.31989],[-105.07446,40.31972],[-105.07446,40.31953],[-105.07446,40.31934],[-105.07446,40.31916],[-105.07444,40.31898],[-105.07444,40.3188],[-105.07444,40.31862],[-105.07444,40.31843],[-105.07444,40.31824],[-105.07444,40.31807],[-105.07444,40.31788],[-105.07444,40.3177],[-105.07444,40.31752],[-105.07444,40.31733],[-105.07442,40.31715],[-105.07442,40.31697],[-105.07442,40.31679],[-105.07442,40.3166],[-105.0744,40.31643],[-105.0744,40.31625],[-105.0744,40.31606],[-105.0744,40.31589],[-105.0744,40.3157],[-105.0744,40.31551],[-105.0744,40.31534],[-105.0744,40.31516],[-105.0744,40.31498],[-105.0744,40.31481],[-105.0744,40.31463],[-105.0744,40.31446],[-105.0744,40.31428],[-105.0744,40.31411],[-105.07438,40.31394],[-105.07438,40.31377],[-105.07438,40.3136],[-105.07438,40.31343],[-105.07438,40.31326],[-105.07438,40.31309],[-105.07438,40.31292],[-105.07438,40.31276],[-105.07438,40.31259],[-105.07438,40.31242],[-105.07438,40.31226],[-105.07438,40.31209],[-105.07438,40.31193],[-105.07438,40.31175],[-105.07438,40.31158],[-105.07438,40.31141],[-105.07438,40.31125],[-105.07438,40.31108],[-105.07438,40.31091],[-105.07438,40.31075],[-105.07438,40.31058],[-105.07438,40.31041],[-105.07436,40.31025],[-105.07436,40.31009],[-105.07436,40.30992],[-105.07436,40.30975],[-105.07436,40.3096],[-105.07436,40.30944],[-105.07436,40.30928],[-105.07436,40.30913],[-105.07436,40.30898],[-105.07436,40.30884],[-105.07436,40.30858],[-105.07436,40.30831],[-105.07434,40.30805],[-105.07434,40.3078],[-105.07434,40.30756],[-105.07434,40.30731],[-105.07434,40.30708],[-105.07434,40.30684],[-105.07434,40.30661],[-105.07434,40.30637],[-105.07434,40.30614],[-105.07434,40.30592],[-105.07436,40.30571],[-105.07438,40.30553],[-105.07444,40.30537],[-105.07456,40.30525],[-105.0747,40.30516],[-105.07492,40.3051],[-105.07513,40.30506],[-105.07541,40.30504],[-105.07569,40.30503],[-105.07595,40.30503],[-105.07621,40.30503],[-105.07649,40.30503],[-105.07672,40.30503],[-105.07696,40.30503],[-105.0772,40.30503],[-105.07736,40.30503],[-105.07756,40.30503],[-105.07758,40.30504],[-105.07776,40.30505],[-105.07801,40.30505],[-105.07827,40.30504],[-105.07849,40.30504],[-105.07871,40.30504],[-105.07893,40.30504],[-105.07919,40.30503],[-105.07945,40.30503],[-105.0797,40.30503],[-105.07996,40.30503],[-105.08018,40.30503],[-105.08042,40.30503],[-105.08068,40.30502],[-105.08093,40.30502],[-105.08121,40.305],[-105.08149,40.305],[-105.08177,40.305],[-105.08207,40.30499],[-105.08239,40.30499],[-105.0827,40.30499],[-105.083,40.30499],[-105.0833,40.30498],[-105.08364,40.30498],[-105.08396,40.30498],[-105.08427,40.30499],[-105.08459,40.305],[-105.08489,40.305],[-105.08521,40.305],[-105.08553,40.30501],[-105.08584,40.30501],[-105.0862,40.30502],[-105.08654,40.30503],[-105.08688,40.30503],[-105.08721,40.30504],[-105.08755,40.30505],[-105.08773,40.30505],[-105.08793,40.30505],[-105.08809,40.30505],[-105.08829,40.30506],[-105.08849,40.30506],[-105.0887,40.30506],[-105.0889,40.30506],[-105.08912,40.30507],[-105.08932,40.30507],[-105.08956,40.30509],[-105.08976,40.3051],[-105.08996,40.3051],[-105.09015,40.30511],[-105.09037,40.30512],[-105.09055,40.30512],[-105.09075,40.30513],[-105.09095,40.30514],[-105.09115,40.30514],[-105.09133,40.30514],[-105.0915,40.30514],[-105.0917,40.30514],[-105.09202,40.30514],[-105.09232,40.30514],[-105.0926,40.30514],[-105.0928,40.30515],[-105.09304,40.30516],[-105.09325,40.30517],[-105.09351,40.30517],[-105.09377,40.30517],[-105.09403,40.30516],[-105.09437,40.30516],[-105.0947,40.30515],[-105.09506,40.30514],[-105.09526,40.30514],[-105.09544,40.30514],[-105.09564,40.30514],[-105.09584,40.30514],[-105.09604,40.30513],[-105.09623,40.30513],[-105.09645,40.30512],[-105.09667,40.30512],[-105.09685,40.30512],[-105.09707,40.30511],[-105.09729,40.30511],[-105.09746,40.30511],[-105.09768,40.3051],[-105.09788,40.3051],[-105.0981,40.3051],[-105.0983,40.3051],[-105.09852,40.3051],[-105.09874,40.3051],[-105.09893,40.3051],[-105.09914,40.3051],[-105.09935,40.3051],[-105.09955,40.3051],[-105.09977,40.3051],[-105.09999,40.3051],[-105.10019,40.3051],[-105.10041,40.30511],[-105.10061,40.30512],[-105.10082,40.30513],[-105.10104,40.30514],[-105.10122,40.30514],[-105.10144,40.30514],[-105.10164,40.30514],[-105.10184,40.30513],[-105.10206,40.30513],[-105.10225,40.30512],[-105.10249,40.30512],[-105.10267,40.30512],[-105.10289,40.30512],[-105.10311,40.30513],[-105.10331,40.30514],[-105.1035,40.30514],[-105.1037,40.30514],[-105.10388,40.30516],[-105.10408,40.30516],[-105.10426,40.30515],[-105.10446,40.30514],[-105.1048,40.30513],[-105.10511,40.30513],[-105.10537,40.30512],[-105.10559,40.30512],[-105.10581,40.30512],[-105.10605,40.30512],[-105.10627,40.30511],[-105.10643,40.30502],[-105.10645,40.30488],[-105.10643,40.3047],[-105.10641,40.30447],[-105.10637,40.30421],[-105.10635,40.30406],[-105.10631,40.30391],[-105.10631,40.30374],[-105.10625,40.30359],[-105.10621,40.30341],[-105.10615,40.30324],[-105.10611,40.30305],[-105.10605,40.30288],[-105.10597,40.3027],[-105.10591,40.3025],[-105.10583,40.30233],[-105.10575,40.30214],[-105.10565,40.30197],[-105.10557,40.30178],[-105.10547,40.30161],[-105.10535,40.30144],[-105.10525,40.30126],[-105.10514,40.30108],[-105.10505,40.3009],[-105.10496,40.30072],[-105.10482,40.30054],[-105.10472,40.30038],[-105.1046,40.3002],[-105.1045,40.30002],[-105.10438,40.29984],[-105.1043,40.29967],[-105.10418,40.29949],[-105.10406,40.29932],[-105.10396,40.29914],[-105.10388,40.29896],[-105.10378,40.29877],[-105.1037,40.29859],[-105.10361,40.29841],[-105.1035,40.29822],[-105.10345,40.29805],[-105.10337,40.29787],[-105.10331,40.29769],[-105.10323,40.29751],[-105.10317,40.29732],[-105.10311,40.29714],[-105.10305,40.29696],[-105.10301,40.29677],[-105.10297,40.29658],[-105.10291,40.29638],[-105.10289,40.29619],[-105.10287,40.29601],[-105.10283,40.29581],[-105.10281,40.29561],[-105.10279,40.29543],[-105.10277,40.29524],[-105.10277,40.29504],[-105.10277,40.29485],[-105.10277,40.29467],[-105.10277,40.29448],[-105.10277,40.2943],[-105.10277,40.29411],[-105.10277,40.29392],[-105.10277,40.29375],[-105.10277,40.29356],[-105.10277,40.29337],[-105.10277,40.29319],[-105.10277,40.293],[-105.10277,40.29282],[-105.10277,40.29263],[-105.10273,40.29245],[-105.10273,40.29226],[-105.10273,40.29207],[-105.10273,40.29189],[-105.10273,40.29171],[-105.10273,40.29152],[-105.10273,40.29133],[-105.10273,40.29115],[-105.10273,40.29096],[-105.10273,40.29077],[-105.10273,40.29059],[-105.10273,40.29042],[-105.10273,40.29023],[-105.10273,40.29004],[-105.10273,40.28984],[-105.10273,40.28966],[-105.10273,40.28947],[-105.10273,40.28928],[-105.10273,40.28909],[-105.10273,40.28891],[-105.10273,40.28872],[-105.10273,40.28853],[-105.10273,40.28834],[-105.10273,40.28815],[-105.10273,40.28796],[-105.10273,40.28777],[-105.10273,40.28758],[-105.10273,40.2874],[-105.10273,40.28722],[-105.10273,40.28703],[-105.10273,40.28686],[-105.10273,40.28669],[-105.10273,40.28652],[-105.10273,40.28637],[-105.10273,40.28621],[-105.10273,40.28603],[-105.10273,40.28586],[-105.10271,40.28569],[-105.10271,40.28551],[-105.10271,40.28534],[-105.10271,40.28516],[-105.10271,40.28498],[-105.10271,40.2848],[-105.10271,40.2846],[-105.10271,40.28442],[-105.10271,40.28423],[-105.10271,40.28404],[-105.10271,40.28386],[-105.10271,40.28367],[-105.10271,40.28349],[-105.10271,40.2833],[-105.10271,40.28312],[-105.10271,40.28293],[-105.10271,40.28275],[-105.10271,40.28256],[-105.10271,40.28237],[-105.10271,40.28217],[-105.10271,40.28198],[-105.10271,40.28179],[-105.10271,40.2816],[-105.10271,40.2814],[-105.10271,40.28122],[-105.10271,40.28102],[-105.10271,40.28084],[-105.10271,40.28064],[-105.10271,40.28046],[-105.10271,40.28027],[-105.10271,40.28009],[-105.10271,40.2799],[-105.10271,40.2797],[-105.10271,40.27953],[-105.10271,40.27935],[-105.10271,40.27916],[-105.10271,40.27897],[-105.10271,40.27879],[-105.10271,40.2786],[-105.10271,40.27841],[-105.10267,40.27822],[-105.10267,40.27803],[-105.10267,40.27784],[-105.10267,40.27765],[-105.10267,40.27746],[-105.10267,40.27727],[-105.10267,40.27709],[-105.10267,40.2769],[-105.10267,40.27672],[-105.10267,40.27653],[-105.10267,40.27636],[-105.10267,40.27618],[-105.10267,40.276],[-105.10267,40.27583],[-105.10267,40.27564],[-105.10267,40.27547],[-105.10267,40.27529],[-105.10267,40.27511],[-105.10267,40.27494],[-105.10267,40.27476],[-105.10267,40.27459],[-105.10267,40.2744],[-105.10267,40.27423],[-105.10267,40.27405],[-105.10267,40.27388],[-105.10267,40.2737],[-105.10267,40.27353],[-105.10267,40.27336],[-105.10267,40.27319],[-105.10265,40.27301],[-105.10265,40.27284],[-105.10265,40.27266],[-105.10265,40.27248],[-105.10265,40.2723],[-105.10265,40.27212],[-105.10265,40.27194],[-105.10265,40.27177],[-105.10265,40.27159],[-105.10265,40.27141],[-105.10265,40.27124],[-105.10265,40.27106],[-105.10265,40.27088],[-105.10265,40.27071],[-105.10263,40.27053],[-105.10263,40.27035],[-105.10263,40.27017],[-105.10263,40.26998],[-105.10263,40.26981],[-105.10263,40.26963],[-105.10263,40.26944],[-105.10263,40.26926],[-105.10263,40.26908],[-105.10263,40.2689],[-105.10263,40.26872],[-105.10263,40.26855],[-105.10261,40.26838],[-105.10261,40.26821],[-105.10261,40.26801],[-105.10261,40.26784],[-105.10261,40.26767],[-105.10261,40.26747],[-105.10261,40.2673],[-105.10261,40.26712],[-105.10261,40.26693],[-105.10261,40.26674],[-105.10259,40.26656],[-105.10259,40.26638],[-105.10259,40.26619],[-105.10259,40.266],[-105.10259,40.26582],[-105.10259,40.26564],[-105.10259,40.26546],[-105.10259,40.26526],[-105.10259,40.26508],[-105.10259,40.26491],[-105.10259,40.26472],[-105.10259,40.26453],[-105.10259,40.26435],[-105.10259,40.26417],[-105.10259,40.26399],[-105.10257,40.2638],[-105.10257,40.26362],[-105.10257,40.26344],[-105.10257,40.26325],[-105.10257,40.26306],[-105.10257,40.26288],[-105.10257,40.2627],[-105.10257,40.26252],[-105.10257,40.26233],[-105.10257,40.26215],[-105.10257,40.26197],[-105.10257,40.26177],[-105.10257,40.26158],[-105.10257,40.2614],[-105.10257,40.26122],[-105.10257,40.26102],[-105.10257,40.26084],[-105.10257,40.26065],[-105.10257,40.26047],[-105.10257,40.26028],[-105.10257,40.2601],[-105.10257,40.25991],[-105.10257,40.25973],[-105.10257,40.25954],[-105.10257,40.25935],[-105.10259,40.25917],[-105.10259,40.25898],[-105.10259,40.25879],[-105.10259,40.25861],[-105.10261,40.25841],[-105.10263,40.25821],[-105.10263,40.25803],[-105.10265,40.25784],[-105.10267,40.25766],[-105.10267,40.25747],[-105.10271,40.25729],[-105.10271,40.2571],[-105.10273,40.25692],[-105.10273,40.25674],[-105.10277,40.25655],[-105.10279,40.25638],[-105.10281,40.25619],[-105.10283,40.25601],[-105.10283,40.25582],[-105.10287,40.25563],[-105.10287,40.25545],[-105.10289,40.25527],[-105.10291,40.25507],[-105.10291,40.25489],[-105.10293,40.25469],[-105.10293,40.2545],[-105.10293,40.25432],[-105.10297,40.25414],[-105.10297,40.25395],[-105.10297,40.25376],[-105.10297,40.25357],[-105.10297,40.25339],[-105.10297,40.2532],[-105.10297,40.25301],[-105.10297,40.25283],[-105.10297,40.25264],[-105.10297,40.25245],[-105.10297,40.25225],[-105.10297,40.25207],[-105.10297,40.25187],[-105.10297,40.25169],[-105.10297,40.2515],[-105.10293,40.2513],[-105.10293,40.25111],[-105.10293,40.25092],[-105.10293,40.25074],[-105.10293,40.25055],[-105.10293,40.25036],[-105.10293,40.25018],[-105.10293,40.24998],[-105.10293,40.2498],[-105.10293,40.24961],[-105.10293,40.24942],[-105.10293,40.24923],[-105.10293,40.24905],[-105.10293,40.24886],[-105.10293,40.24868],[-105.10293,40.24849],[-105.10293,40.24832],[-105.10293,40.24814],[-105.10293,40.24795],[-105.10293,40.24777],[-105.10293,40.24758],[-105.10293,40.24741],[-105.10293,40.24722],[-105.10293,40.24703],[-105.10291,40.24685],[-105.10291,40.24667],[-105.10291,40.24648],[-105.10291,40.24631],[-105.10291,40.24612],[-105.10291,40.24594],[-105.10291,40.24574],[-105.10291,40.24556],[-105.10291,40.24536],[-105.10291,40.24517],[-105.10291,40.24499],[-105.10291,40.2448],[-105.10291,40.24461],[-105.10291,40.24442],[-105.10291,40.24423],[-105.10291,40.24404],[-105.10291,40.24386],[-105.10289,40.24367],[-105.10289,40.24349],[-105.10289,40.2433],[-105.10289,40.24312],[-105.10289,40.24295],[-105.10289,40.24276],[-105.10289,40.24258],[-105.10289,40.2424],[-105.10289,40.24221],[-105.10289,40.24203],[-105.10289,40.24184],[-105.10289,40.24165],[-105.10289,40.24146],[-105.10289,40.24128],[-105.10289,40.24109],[-105.10287,40.2409],[-105.10287,40.24071],[-105.10287,40.24052],[-105.10287,40.24033],[-105.10283,40.24014],[-105.10283,40.23995],[-105.10281,40.23976],[-105.10279,40.23958],[-105.10279,40.2394],[-105.10277,40.23921],[-105.10273,40.23902],[-105.10273,40.23884],[-105.10271,40.23866],[-105.10271,40.23847],[-105.10267,40.23828],[-105.10267,40.2381],[-105.10265,40.23791],[-105.10263,40.23773],[-105.10261,40.23754],[-105.10259,40.23736],[-105.10257,40.23718],[-105.10255,40.237],[-105.10255,40.2368],[-105.10253,40.23662],[-105.10251,40.23643],[-105.10251,40.23625],[-105.10251,40.23606],[-105.10249,40.23588],[-105.10249,40.23568],[-105.10249,40.2355],[-105.10249,40.23532],[-105.10249,40.23512],[-105.10249,40.23493],[-105.10249,40.23474],[-105.10249,40.23455],[-105.10249,40.23436],[-105.10249,40.23417],[-105.10249,40.23398],[-105.10249,40.23379],[-105.10249,40.2336],[-105.10249,40.23342],[-105.10249,40.23322],[-105.10249,40.23304],[-105.10249,40.23285],[-105.10249,40.23266],[-105.10249,40.23247],[-105.10249,40.23228],[-105.10249,40.2321],[-105.10249,40.23191],[-105.10249,40.23173],[-105.10249,40.23154],[-105.10249,40.23134],[-105.10249,40.23116],[-105.10249,40.23097],[-105.10249,40.23078],[-105.10249,40.23059],[-105.10249,40.23041],[-105.10249,40.23022],[-105.10249,40.23004],[-105.10249,40.22985],[-105.10249,40.22966],[-105.10249,40.22948],[-105.10249,40.22929],[-105.10249,40.2291],[-105.10249,40.22891],[-105.10249,40.22873],[-105.10249,40.22854],[-105.10249,40.22836],[-105.10249,40.22817],[-105.10249,40.22798],[-105.10249,40.22779],[-105.10249,40.22761],[-105.10249,40.22742],[-105.10249,40.22724],[-105.10249,40.22705],[-105.10249,40.22686],[-105.10249,40.22667],[-105.10249,40.22649],[-105.10249,40.22631],[-105.10249,40.22612],[-105.10249,40.22594],[-105.10249,40.22575],[-105.10249,40.22557],[-105.10249,40.22539],[-105.10249,40.2252],[-105.10249,40.22502],[-105.10249,40.22484],[-105.10249,40.22465],[-105.10249,40.22446],[-105.10249,40.22428],[-105.10249,40.2241],[-105.10249,40.22391],[-105.10249,40.22372],[-105.10249,40.22353],[-105.10249,40.22334],[-105.10249,40.22316],[-105.10249,40.22298],[-105.10249,40.22279],[-105.10249,40.2226],[-105.10249,40.22241],[-105.10251,40.22223],[-105.10251,40.22205],[-105.10251,40.22185],[-105.10251,40.22167],[-105.10251,40.22147],[-105.10251,40.22129],[-105.10251,40.22111],[-105.10251,40.22092],[-105.10251,40.22074],[-105.10251,40.22055],[-105.10251,40.22035],[-105.10251,40.22017],[-105.10251,40.21998],[-105.10251,40.21979],[-105.10251,40.21961],[-105.10251,40.21943],[-105.10251,40.21924],[-105.10251,40.21906],[-105.10251,40.21887],[-105.10251,40.21868],[-105.10251,40.21849],[-105.10251,40.21831],[-105.10251,40.21811],[-105.10251,40.21792],[-105.10251,40.21774],[-105.10251,40.21755],[-105.10251,40.21737],[-105.10251,40.21718],[-105.10251,40.217],[-105.10251,40.21682],[-105.10251,40.21664],[-105.10251,40.21645],[-105.10251,40.21627],[-105.10251,40.2161],[-105.10251,40.21591],[-105.10249,40.21572],[-105.10249,40.21554],[-105.10249,40.21536],[-105.10249,40.21517],[-105.10249,40.21499],[-105.10249,40.21482],[-105.10249,40.21463],[-105.10249,40.21445],[-105.10249,40.21428],[-105.10249,40.2141],[-105.10249,40.21392],[-105.10249,40.21374],[-105.10249,40.21357],[-105.10249,40.21339],[-105.10249,40.21322],[-105.10249,40.21303],[-105.10249,40.21286],[-105.10249,40.21269],[-105.10247,40.21251],[-105.10247,40.21234],[-105.10247,40.21215],[-105.10247,40.21198],[-105.10247,40.2118],[-105.10249,40.21162],[-105.10247,40.21144],[-105.10247,40.21127],[-105.10247,40.21109],[-105.10247,40.21092],[-105.10247,40.21075],[-105.10249,40.21057],[-105.10249,40.2104],[-105.10249,40.21021],[-105.10249,40.21005],[-105.10249,40.20987],[-105.10251,40.2097],[-105.10251,40.20952],[-105.10251,40.20935],[-105.10251,40.20918],[-105.10251,40.209],[-105.10253,40.20884],[-105.10253,40.20866],[-105.10255,40.20849],[-105.10255,40.20833],[-105.10257,40.20817],[-105.10257,40.20802],[-105.10257,40.20787],[-105.10257,40.20773],[-105.10259,40.20747],[-105.10259,40.20723],[-105.10261,40.20702],[-105.10263,40.20683],[-105.10263,40.20665],[-105.10263,40.20652],[-105.10263,40.20637],[-105.10263,40.20624],[-105.10263,40.20604],[-105.10265,40.20587],[-105.10263,40.20566],[-105.10263,40.20543],[-105.10263,40.20518],[-105.10263,40.20491],[-105.10263,40.20477],[-105.10263,40.20463],[-105.10263,40.20448],[-105.10263,40.20434],[-105.10263,40.2042],[-105.10263,40.20395],[-105.10263,40.20374],[-105.10263,40.20356],[-105.10263,40.20339],[-105.10263,40.20327],[-105.10263,40.20309],[-105.10263,40.20291],[-105.10261,40.20271],[-105.10261,40.20248],[-105.10261,40.20224],[-105.10261,40.20199],[-105.10259,40.20173],[-105.10259,40.20147],[-105.10259,40.20122],[-105.10259,40.20096],[-105.10259,40.20072],[-105.10257,40.20048],[-105.10257,40.20027],[-105.10257,40.20008],[-105.10257,40.19993],[-105.10257,40.19977],[-105.10257,40.19961],[-105.10257,40.19948],[-105.10257,40.19931],[-105.10257,40.19913],[-105.10255,40.19893],[-105.10255,40.19871],[-105.10255,40.1985],[-105.10255,40.19828],[-105.10255,40.19807],[-105.10255,40.19789],[-105.10257,40.19773],[-105.10257,40.19753],[-105.10257,40.1974],[-105.10257,40.19736],[-105.10253,40.1972],[-105.10251,40.19707],[-105.10251,40.1969],[-105.10251,40.1967],[-105.10251,40.19648],[-105.10251,40.19625],[-105.10251,40.196],[-105.10251,40.19573],[-105.10251,40.19546],[-105.10251,40.19519],[-105.10249,40.19492],[-105.10249,40.19465],[-105.10249,40.19438],[-105.10249,40.19411],[-105.10247,40.19383],[-105.10247,40.1937],[-105.10245,40.19342],[-105.10245,40.19315],[-105.10245,40.19288],[-105.10245,40.19275],[-105.10245,40.19261],[-105.10245,40.19247],[-105.10245,40.19232],[-105.10243,40.19218],[-105.10243,40.19204],[-105.10243,40.1919],[-105.10243,40.19175],[-105.10243,40.19162],[-105.10243,40.19147],[-105.10243,40.19132],[-105.10243,40.19119],[-105.10241,40.19104],[-105.10241,40.19089],[-105.10241,40.19076],[-105.10239,40.19061],[-105.10239,40.19047],[-105.10239,40.19033],[-105.10239,40.19007],[-105.10239,40.18981],[-105.10239,40.18957],[-105.10239,40.18937],[-105.10239,40.18919],[-105.10239,40.18902],[-105.10239,40.18888],[-105.10239,40.18871],[-105.10239,40.18856],[-105.10239,40.1884],[-105.10239,40.18822],[-105.10239,40.18803],[-105.10239,40.18783],[-105.10239,40.18762],[-105.10239,40.1874],[-105.10239,40.18717],[-105.10239,40.18693],[-105.10239,40.18671],[-105.10239,40.18647],[-105.10241,40.18624],[-105.10243,40.186],[-105.10243,40.18577],[-105.10243,40.18554],[-105.10243,40.18531],[-105.10243,40.18507],[-105.10243,40.18484],[-105.10243,40.18459],[-105.10243,40.18435],[-105.10245,40.18409],[-105.10245,40.18383],[-105.10245,40.18358],[-105.10245,40.18333],[-105.10245,40.18307],[-105.10247,40.18282],[-105.10247,40.18256],[-105.10249,40.1823],[-105.10249,40.18203],[-105.10249,40.18176],[-105.10249,40.18162],[-105.10249,40.18147],[-105.10249,40.18133],[-105.10249,40.1812],[-105.10249,40.18106],[-105.10249,40.18092],[-105.10249,40.18078],[-105.10251,40.18051],[-105.10251,40.18025],[-105.10251,40.18002],[-105.10251,40.1798],[-105.10251,40.1796],[-105.10251,40.17939],[-105.10251,40.17916],[-105.10251,40.17892],[-105.10253,40.17868],[-105.10253,40.17844],[-105.10253,40.17819],[-105.10253,40.17794],[-105.10253,40.17768],[-105.10253,40.17742],[-105.10255,40.17718],[-105.10255,40.17693],[-105.10255,40.17668],[-105.10255,40.17645],[-105.10255,40.17621],[-105.10255,40.17598],[-105.10255,40.17574],[-105.10255,40.17551],[-105.10255,40.17528],[-105.10255,40.17506],[-105.10255,40.17483],[-105.10257,40.17462],[-105.10257,40.17444],[-105.10257,40.17427],[-105.10257,40.17413],[-105.10257,40.174],[-105.10271,40.17386],[-105.10297,40.17384],[-105.10319,40.17383],[-105.10337,40.17381],[-105.10357,40.17381],[-105.1038,40.17377],[-105.10388,40.17363],[-105.10386,40.17347],[-105.10386,40.1733],[-105.10386,40.17312],[-105.10386,40.17293],[-105.10386,40.17276],[-105.10388,40.17262],[-105.1039,40.17246],[-105.1039,40.17239]]}},{"type":"Feature","properties":{"name":"GOLD:01"},"geometry":{"type":"LineString","coordinates":[[-105.07497,40.587],[-105.0748,40.58698],[-105.07462,40.58698],[-105.07444,40.58697],[-105.07426,40.58697],[-105.07408,40.58697],[-105.07408,40.58684],[-105.07408,40.58671],[-105.07408,40.58659],[-105.07408,40.58646],[-105.07408,40.58637],[-105.07408,40.58629],[-105.07408,40.5862],[-105.07408,40.58612],[-105.07408,40.58604],[-105.07408,40.58595],[-105.07408,40.58586],[-105.07408,40.58578],[-105.07408,40.5857],[-105.07408,40.58561],[-105.07408,40.58546],[-105.07408,40.5853],[-105.07408,40.58515],[-105.07408,40.585],[-105.07408,40.58486],[-105.07408,40.58473],[-105.07407,40.58459],[-105.07407,40.58445],[-105.07407,40.58432],[-105.07407,40.5842],[-105.07425,40.5842],[-105.07443,40.58421],[-105.07444,40.58421],[-105.07462,40.58421],[-105.07467,40.58421],[-105.07478,40.58422],[-105.07494,40.58422],[-105.07512,40.58422],[-105.0753,40.58421],[-105.07548,40.58421],[-105.07552,40.58421],[-105.0757,40.58422],[-105.07585,40.58422],[-105.07603,40.58422],[-105.07621,40.58422],[-105.07624,40.58422],[-105.07642,40.58422],[-105.0766,40.58423],[-105.07678,40.58423],[-105.07696,40.58423],[-105.07712,40.58423],[-105.07712,40.58412],[-105.07712,40.58401],[-105.07712,40.58388],[-105.07712,40.58373],[-105.07712,40.58359],[-105.07712,40.58344],[-105.07712,40.5833],[-105.07712,40.58319],[-105.07712,40.58308],[-105.07712,40.58297],[-105.07712,40.58286],[-105.07712,40.58272],[-105.07712,40.58259],[-105.07713,40.58245],[-105.07713,40.58231],[-105.07713,40.58223],[-105.07712,40.58209],[-105.07712,40.58205],[-105.07712,40.58191],[-105.07712,40.58178],[-105.07713,40.58164],[-105.07713,40.5815],[-105.07713,40.5815],[-105.07713,40.58136],[-105.07713,40.58123],[-105.07714,40.58109],[-105.07714,40.58099],[-105.07713,40.5808],[-105.07714,40.58057],[-105.07714,40.58046],[-105.07714,40.58036],[-105.07714,40.58026],[-105.07714,40.58015],[-105.07714,40.58001],[-105.07714,40.57988],[-105.07715,40.57974],[-105.07715,40.5796],[-105.07715,40.57947],[-105.07715,40.57943],[-105.07715,40.57929],[-105.07716,40.57916],[-105.07716,40.57902],[-105.07716,40.57888],[-105.07717,40.57875],[-105.07717,40.57864],[-105.07717,40.5785],[-105.07717,40.57837],[-105.07718,40.57823],[-105.07718,40.57811],[-105.07736,40.57811],[-105.07754,40.57811],[-105.07772,40.57811],[-105.07773,40.57811],[-105.07785,40.57811],[-105.07803,40.57811],[-105.07805,40.57811],[-105.07815,40.57811],[-105.07833,40.57811],[-105.07836,40.57811],[-105.07854,40.57811],[-105.07872,40.57811],[-105.07886,40.57811],[-105.07893,40.57811],[-105.07898,40.57811],[-105.07916,40.57811],[-105.07934,40.57811],[-105.07944,40.57811],[-105.07958,40.57811],[-105.07976,40.57811],[-105.07983,40.57811],[-105.08001,40.57811],[-105.08012,40.57811],[-105.0803,40.57811],[-105.08048,40.57812],[-105.08066,40.57812],[-105.08076,40.57812],[-105.08094,40.57812],[-105.08112,40.57812],[-105.0813,40.57812],[-105.08148,40.57812],[-105.08164,40.57812],[-105.08182,40.57812],[-105.082,40.57812],[-105.08218,40.57812],[-105.08236,40.57812],[-105.08251,40.57812],[-105.0826,40.57812],[-105.08271,40.57812],[-105.08289,40.57812],[-105.08307,40.57812],[-105.08325,40.57812],[-105.08343,40.57812],[-105.08361,40.57812],[-105.08375,40.57812],[-105.08393,40.57812],[-105.08411,40.57812],[-105.08429,40.57812],[-105.08436,40.57812],[-105.08454,40.57812],[-105.08472,40.57812],[-105.0849,40.57812],[-105.08491,40.57812],[-105.08515,40.57816],[-105.08539,40.57815],[-105.08562,40.57815],[-105.0859,40.57815],[-105.08622,40.57815],[-105.08654,40.57815],[-105.08688,40.57815],[-105.08717,40.57815],[-105.08747,40.57815],[-105.08779,40.57816],[-105.08813,40.57816],[-105.08846,40.57816],[-105.0888,40.57816],[-105.08914,40.57816],[-105.08948,40.57816],[-105.08982,40.57816],[-105.09015,40.57816],[-105.09049,40.57816],[-105.09081,40.57819],[-105.09105,40.5782],[-105.09127,40.5782],[-105.09131,40.5782],[-105.09149,40.57814],[-105.09167,40.57815],[-105.09176,40.57815],[-105.09194,40.57815],[-105.09212,40.57815],[-105.0923,40.57815],[-105.09234,40.57815],[-105.09252,40.57815],[-105.09263,40.57815],[-105.09281,40.57816],[-105.09299,40.57816],[-105.09301,40.57816],[-105.09319,40.57816],[-105.0932,40.57816],[-105.09338,40.57816],[-105.09356,40.57817],[-105.09374,40.57817],[-105.09387,40.57817],[-105.09405,40.57817],[-105.09423,40.57817],[-105.09439,40.57817],[-105.09457,40.57818],[-105.09475,40.57818],[-105.09478,40.57818],[-105.09496,40.57818],[-105.09514,40.57818],[-105.09532,40.57818],[-105.0955,40.57819],[-105.09568,40.57819],[-105.09586,40.57819],[-105.09589,40.57819],[-105.09589,40.57805],[-105.0959,40.57792],[-105.0959,40.57778],[-105.0959,40.57777],[-105.0959,40.57763],[-105.0959,40.5775],[-105.09591,40.57736],[-105.09591,40.57722],[-105.09591,40.57709],[-105.09591,40.57695],[-105.09592,40.57681],[-105.09592,40.57668],[-105.09592,40.57654],[-105.09592,40.57653],[-105.09604,40.57652],[-105.09622,40.57652],[-105.0964,40.57652],[-105.09658,40.57653],[-105.09676,40.57653],[-105.09694,40.57653],[-105.09697,40.57653],[-105.09715,40.57653],[-105.09733,40.57653],[-105.09751,40.57653],[-105.09769,40.57653],[-105.09773,40.57653],[-105.09788,40.57654],[-105.09798,40.57654],[-105.09815,40.57655],[-105.09833,40.57655],[-105.09851,40.57656],[-105.09869,40.57656],[-105.09878,40.57656],[-105.09892,40.57656],[-105.0991,40.57656],[-105.09928,40.57657],[-105.09946,40.57657],[-105.09964,40.57657],[-105.09968,40.57657],[-105.09986,40.57657],[-105.10004,40.57657],[-105.10022,40.57657],[-105.1004,40.57657],[-105.10058,40.57657],[-105.10068,40.57657],[-105.10086,40.57657],[-105.10104,40.57657],[-105.10122,40.57658],[-105.10138,40.57658],[-105.10156,40.57658],[-105.10174,40.57658],[-105.10177,40.57658],[-105.10195,40.57657],[-105.10213,40.57657],[-105.10216,40.57657],[-105.10234,40.57658],[-105.10252,40.57658],[-105.10266,40.57659],[-105.10283,40.57672],[-105.10309,40.57672],[-105.10333,40.57672],[-105.10353,40.57672],[-105.10374,40.57672],[-105.10396,40.57672],[-105.10422,40.57672],[-105.10448,40.57673],[-105.10472,40.57673],[-105.10497,40.57673],[-105.10521,40.57673],[-105.10543,40.5767],[-105.10565,40.57663],[-105.10583,40.57652],[-105.10595,40.57638],[-105.10605,40.57621],[-105.10607,40.57605],[-105.10607,40.57589],[-105.10607,40.57576],[-105.10607,40.57573],[-105.10605,40.57555],[-105.10605,40.57538],[-105.10601,40.57517],[-105.10605,40.57503],[-105.10605,40.57484],[-105.10617,40.57473],[-105.10645,40.57472],[-105.10671,40.57472],[-105.107,40.57472],[-105.1073,40.57472],[-105.1076,40.57473],[-105.10792,40.57474],[-105.10823,40.57475],[-105.10853,40.57475],[-105.10883,40.57476],[-105.10915,40.57477],[-105.10943,40.57477],[-105.10968,40.57478],[-105.10986,40.5748],[-105.11008,40.57481],[-105.11022,40.57483],[-105.11042,40.5748],[-105.11062,40.57478],[-105.11086,40.57477],[-105.11105,40.57476],[-105.11131,40.57474],[-105.11153,40.57472],[-105.11181,40.57469],[-105.11209,40.57468],[-105.11237,40.57469],[-105.11261,40.5747],[-105.11282,40.57472],[-105.113,40.57472],[-105.11306,40.57472],[-105.11324,40.57472],[-105.1135,40.5747],[-105.11372,40.5747],[-105.11396,40.57471],[-105.11418,40.5747],[-105.11437,40.5747],[-105.11459,40.57471],[-105.11481,40.57472],[-105.11499,40.57472],[-105.11529,40.57473],[-105.11549,40.57476],[-105.11571,40.57481],[-105.1159,40.57486],[-105.11612,40.57491],[-105.11628,40.57494],[-105.1165,40.57491],[-105.11674,40.57489],[-105.11704,40.57489],[-105.11723,40.57489],[-105.11749,40.57489],[-105.11777,40.57491],[-105.11803,40.57491],[-105.11829,40.57491],[-105.11853,40.57493],[-105.11876,40.57496],[-105.11896,40.57496],[-105.11902,40.57496],[-105.11922,40.57491],[-105.11942,40.57491],[-105.1196,40.57491],[-105.11984,40.57491],[-105.12005,40.57491],[-105.12031,40.57491],[-105.12057,40.57491],[-105.12085,40.57492],[-105.12115,40.57493],[-105.12145,40.57493],[-105.12176,40.57493],[-105.12206,40.57494],[-105.12236,40.57494],[-105.12266,40.57495],[-105.1229,40.57496],[-105.1231,40.57496],[-105.12328,40.57496],[-105.12328,40.57496],[-105.12351,40.57497],[-105.12377,40.57497],[-105.12397,40.57498],[-105.12419,40.57498],[-105.12443,40.57499],[-105.12471,40.57499],[-105.125,40.57499],[-105.12532,40.575],[-105.12562,40.575],[-105.12594,40.57501],[-105.12623,40.57502],[-105.12657,40.57502],[-105.12687,40.57503],[-105.12715,40.57505],[-105.12739,40.57507],[-105.12757,40.57507],[-105.12776,40.57508],[-105.12786,40.57508],[-105.12806,40.57506],[-105.12826,40.57504],[-105.12854,40.57505],[-105.12872,40.57506],[-105.12896,40.57506],[-105.12919,40.57506],[-105.12947,40.57505],[-105.12973,40.57505],[-105.13001,40.57507],[-105.13033,40.57507],[-105.13061,40.57507],[-105.13088,40.57509],[-105.13118,40.57511],[-105.13146,40.57511],[-105.13172,40.57511],[-105.13198,40.57512],[-105.13219,40.57513],[-105.13239,40.57514],[-105.13261,40.57515],[-105.13271,40.57515],[-105.13293,40.57513],[-105.13317,40.57512],[-105.13341,40.57512],[-105.13362,40.57512],[-105.1338,40.57511],[-105.13392,40.57502],[-105.13396,40.57487],[-105.13396,40.57468],[-105.13396,40.57444],[-105.13396,40.57417],[-105.13398,40.57403],[-105.13398,40.57389],[-105.13398,40.57374],[-105.13398,40.57358],[-105.13398,40.57342],[-105.13398,40.57327],[-105.13398,40.57311],[-105.13402,40.57294],[-105.13402,40.57279],[-105.13402,40.57263],[-105.13402,40.57247],[-105.13402,40.57231],[-105.13402,40.57215],[-105.13402,40.57199],[-105.13402,40.57183],[-105.13402,40.57168],[-105.13402,40.57152],[-105.13402,40.57137],[-105.13402,40.57122],[-105.13404,40.57108],[-105.13404,40.57081],[-105.13406,40.5706],[-105.13406,40.57044],[-105.1341,40.57028],[-105.13408,40.57023],[-105.13404,40.57008],[-105.13404,40.56988],[-105.13404,40.56971],[-105.13404,40.56952],[-105.13404,40.56931],[-105.13404,40.56907],[-105.13404,40.56884],[-105.13402,40.5686],[-105.13398,40.56837],[-105.13402,40.56817],[-105.13402,40.56802],[-105.13398,40.56783],[-105.13383,40.56775],[-105.13359,40.56775],[-105.13331,40.56773],[-105.13305,40.56771],[-105.13293,40.56771],[-105.13273,40.56772],[-105.13255,40.56772],[-105.13232,40.56771],[-105.13204,40.56771],[-105.13174,40.56771],[-105.13138,40.56771],[-105.13106,40.56771],[-105.13072,40.5677],[-105.13035,40.5677],[-105.13017,40.56769],[-105.12999,40.56769],[-105.12965,40.56768],[-105.12937,40.56767],[-105.12914,40.56766],[-105.12894,40.56764],[-105.12888,40.56764],[-105.1287,40.56764],[-105.12854,40.56764],[-105.12828,40.56764],[-105.12802,40.56763],[-105.12771,40.56763],[-105.12737,40.56762],[-105.12703,40.56762],[-105.12669,40.56762],[-105.12637,40.56762],[-105.12615,40.56762],[-105.12594,40.56762],[-105.1259,40.56762],[-105.1257,40.56764],[-105.12542,40.56764],[-105.12518,40.56764],[-105.12492,40.56764],[-105.12461,40.56764],[-105.12429,40.56764],[-105.12397,40.56763],[-105.12361,40.56762],[-105.12328,40.56761],[-105.12294,40.56761],[-105.1226,40.56759],[-105.1223,40.56759],[-105.1221,40.56758],[-105.12188,40.56756],[-105.1218,40.56756],[-105.12158,40.56758],[-105.12141,40.56758],[-105.12115,40.56758],[-105.12085,40.56758],[-105.12055,40.56756],[-105.12022,40.56756],[-105.11986,40.56755],[-105.11952,40.56755],[-105.11918,40.56754],[-105.11886,40.56752],[-105.11858,40.56751],[-105.11837,40.5675],[-105.11817,40.56749],[-105.11815,40.56749],[-105.11789,40.5675],[-105.11771,40.5675],[-105.11747,40.56748],[-105.11722,40.56748],[-105.1169,40.56747],[-105.11664,40.56747],[-105.11634,40.56746],[-105.11608,40.56746],[-105.11586,40.56746],[-105.11561,40.56746],[-105.11543,40.56746],[-105.11519,40.56744],[-105.11491,40.56744],[-105.11469,40.56744],[-105.11451,40.56744],[-105.11429,40.56744],[-105.114,40.56744],[-105.11376,40.56744],[-105.1135,40.56744],[-105.1132,40.56742],[-105.11286,40.56742],[-105.11254,40.56741],[-105.11221,40.56741],[-105.11187,40.56741],[-105.11147,40.56741],[-105.11111,40.56741],[-105.11096,40.5674],[-105.11078,40.5674],[-105.11058,40.56739],[-105.11038,40.56739],[-105.1102,40.56739],[-105.11,40.56739],[-105.10982,40.56739],[-105.10949,40.56738],[-105.10921,40.56737],[-105.10899,40.56737],[-105.10879,40.56737],[-105.10875,40.56737],[-105.10857,40.5674],[-105.10839,40.56739],[-105.10821,40.56739],[-105.10803,40.56739],[-105.10798,40.56739],[-105.1078,40.56739],[-105.10762,40.56739],[-105.10744,40.56739],[-105.10726,40.56739],[-105.10708,40.56739],[-105.1069,40.56739],[-105.10672,40.56739],[-105.10654,40.56738],[-105.10636,40.56738],[-105.10635,40.56738],[-105.10617,40.56738],[-105.10599,40.56737],[-105.10591,40.56737],[-105.10573,40.56737],[-105.10555,40.56736],[-105.10537,40.56736],[-105.10528,40.56736],[-105.1051,40.56736],[-105.10498,40.56736],[-105.1048,40.56736],[-105.10462,40.56735],[-105.10444,40.56735],[-105.10426,40.56735],[-105.10408,40.56735],[-105.1039,40.56734],[-105.10372,40.56734],[-105.10354,40.56734],[-105.10336,40.56733],[-105.10318,40.56733],[-105.10302,40.56733],[-105.10284,40.56732],[-105.10268,40.56732],[-105.1026,40.56732],[-105.10242,40.56732],[-105.10224,40.56732],[-105.10217,40.56732],[-105.10199,40.56732],[-105.10181,40.56731],[-105.10164,40.56731],[-105.10142,40.56728],[-105.10122,40.56728],[-105.101,40.56728],[-105.10072,40.56728],[-105.10043,40.56727],[-105.10009,40.56727],[-105.09975,40.56726],[-105.09943,40.56724],[-105.09915,40.56724],[-105.099,40.56723],[-105.09882,40.56723],[-105.09864,40.56727],[-105.09859,40.56727],[-105.09841,40.56727],[-105.09823,40.56726],[-105.09805,40.56726],[-105.09787,40.56725],[-105.09769,40.56725],[-105.09751,40.56725],[-105.09733,40.56725],[-105.09715,40.56725],[-105.0971,40.56725],[-105.09692,40.56725],[-105.09674,40.56724],[-105.09656,40.56724],[-105.09638,40.56724],[-105.0962,40.56723],[-105.09603,40.56723],[-105.09585,40.56723],[-105.09567,40.56723],[-105.09549,40.56723],[-105.09531,40.56723],[-105.09513,40.56723],[-105.09495,40.56723],[-105.09477,40.56723],[-105.09461,40.56723],[-105.09443,40.56723],[-105.09425,40.56723],[-105.09407,40.56723],[-105.09404,40.56723],[-105.09386,40.56723],[-105.09368,40.56723],[-105.09362,40.56723],[-105.09344,40.56722],[-105.09341,40.56722],[-105.09319,40.56718],[-105.09297,40.56718],[-105.09272,40.56718],[-105.09244,40.56717],[-105.09214,40.56717],[-105.09182,40.56717],[-105.0915,40.56717],[-105.09115,40.56717],[-105.09081,40.56716],[-105.09047,40.56716],[-105.09013,40.56716],[-105.08996,40.56716],[-105.08978,40.56716],[-105.0896,40.56715],[-105.0894,40.56715],[-105.08922,40.56715],[-105.08904,40.56715],[-105.08886,40.56715],[-105.08866,40.56715],[-105.08849,40.56715],[-105.08813,40.56714],[-105.08779,40.56714],[-105.08745,40.56714],[-105.08719,40.56714],[-105.087,40.56713],[-105.08678,40.56713],[-105.08658,40.56712],[-105.08634,40.56712],[-105.08608,40.56712],[-105.0858,40.56712],[-105.08553,40.56712],[-105.08529,40.56712],[-105.08509,40.56712],[-105.08509,40.56712],[-105.08487,40.56713],[-105.08463,40.56714],[-105.08439,40.56714],[-105.08423,40.56714],[-105.08404,40.56714],[-105.08384,40.56714],[-105.08364,40.56714],[-105.08344,40.56714],[-105.0832,40.56713],[-105.08292,40.56713],[-105.0827,40.56713],[-105.08243,40.56713],[-105.08221,40.56713],[-105.08197,40.56713],[-105.08177,40.56712],[-105.08149,40.56712],[-105.08123,40.56712],[-105.08101,40.56712],[-105.0808,40.56712],[-105.08058,40.56712],[-105.08038,40.56712],[-105.08018,40.56712],[-105.08,40.5671],[-105.07982,40.56707],[-105.07952,40.56711],[-105.07946,40.56711],[-105.07928,40.56711],[-105.07924,40.56711],[-105.07906,40.56711],[-105.07905,40.56711],[-105.07897,40.56711],[-105.0789,40.5671],[-105.07872,40.5671],[-105.07854,40.5671],[-105.07846,40.5671],[-105.07828,40.5671],[-105.0782,40.5671],[-105.07802,40.5671],[-105.07784,40.5671],[-105.07782,40.5671],[-105.07764,40.56709],[-105.07755,40.56709],[-105.07743,40.56709],[-105.07728,40.56709],[-105.0771,40.56709],[-105.07705,40.56709],[-105.07687,40.56708],[-105.07682,40.56708],[-105.07682,40.56717],[-105.07682,40.56726],[-105.07682,40.56735],[-105.07682,40.56744],[-105.07682,40.56759],[-105.07682,40.56773],[-105.07682,40.56787],[-105.07683,40.568],[-105.07683,40.5681],[-105.07683,40.56822],[-105.07683,40.56835],[-105.07683,40.56847],[-105.07683,40.5686],[-105.07683,40.56871],[-105.07684,40.56885],[-105.07684,40.56898],[-105.07685,40.56912],[-105.07685,40.56912],[-105.07686,40.56926],[-105.07687,40.56939],[-105.07687,40.56947],[-105.07687,40.56956],[-105.07687,40.5696],[-105.07688,40.56966],[-105.07689,40.56978],[-105.0769,40.56992],[-105.0769,40.56996],[-105.07691,40.5701],[-105.07692,40.57023],[-105.07692,40.57028],[-105.07693,40.57035],[-105.07694,40.57049],[-105.07695,40.57062],[-105.07695,40.57076],[-105.07696,40.5709],[-105.07697,40.571],[-105.07697,40.57111],[-105.07697,40.57125],[-105.07696,40.57138],[-105.07696,40.57152],[-105.07696,40.57156],[-105.07696,40.5717],[-105.07696,40.57184],[-105.07696,40.57197],[-105.07696,40.57211],[-105.07696,40.57225],[-105.07696,40.57238],[-105.07696,40.57252],[-105.07696,40.57265],[-105.07696,40.57279],[-105.07696,40.57293],[-105.07696,40.57306],[-105.07696,40.5732],[-105.07697,40.57334],[-105.07698,40.57347],[-105.07699,40.57361],[-105.077,40.57369],[-105.07701,40.57383],[-105.07701,40.5739],[-105.07701,40.574],[-105.07701,40.57409],[-105.07701,40.57419],[-105.07701,40.57429],[-105.07701,40.57442],[-105.07701,40.57454],[-105.07701,40.57466],[-105.07692,40.57482],[-105.07692,40.57496],[-105.07692,40.57514],[-105.07692,40.57534],[-105.07692,40.57557],[-105.07692,40.57581],[-105.07692,40.57605],[-105.07692,40.5763],[-105.07692,40.57656],[-105.07692,40.57681],[-105.07692,40.57706],[-105.0769,40.5773],[-105.0769,40.57753],[-105.0769,40.57774],[-105.0769,40.57796],[-105.07688,40.57816],[-105.07684,40.5783],[-105.07684,40.57839],[-105.0769,40.57853],[-105.07692,40.57867],[-105.07694,40.57885],[-105.07694,40.57905],[-105.07692,40.57925],[-105.07692,40.57945],[-105.07692,40.57966],[-105.07692,40.57988],[-105.07692,40.58011],[-105.07692,40.58032],[-105.07692,40.58054],[-105.0769,40.58074],[-105.0769,40.58095],[-105.07688,40.58111],[-105.07688,40.58129],[-105.0769,40.58142],[-105.0769,40.58163],[-105.07688,40.58182],[-105.0769,40.582],[-105.07688,40.58216],[-105.07688,40.58225],[-105.0769,40.58239],[-105.0769,40.58254],[-105.0769,40.58272],[-105.0769,40.58291],[-105.0769,40.5831],[-105.0769,40.5833],[-105.0769,40.5835],[-105.0769,40.58371],[-105.0769,40.58389],[-105.0769,40.58403],[-105.07692,40.5842],[-105.07692,40.58439],[-105.0769,40.58456],[-105.0769,40.58473],[-105.0769,40.58492],[-105.0769,40.58511],[-105.0769,40.58528],[-105.0769,40.58547],[-105.0769,40.58564],[-105.0769,40.58582],[-105.0769,40.58598],[-105.0769,40.58611],[-105.0769,40.58627],[-105.0769,40.58644],[-105.0769,40.58661],[-105.0769,40.58678],[-105.07688,40.58694],[-105.0767,40.58703],[-105.0765,40.58702],[-105.07631,40.58702],[-105.07611,40.58702],[-105.07589,40.58702],[-105.07569,40.58702],[-105.07547,40.58702],[-105.07523,40.58701],[-105.07501,40.587],[-105.07497,40.587]]}},{"type":"Feature","properties":{"name":"GOLD:51"},"geometry":{"type":"LineString","coordinates":[[-105.07497,40.587],[-105.0748,40.58698],[-105.07462,40.58698],[-105.07444,40.58697],[-105.07426,40.58697],[-105.07408,40.58697],[-105.07408,40.58684],[-105.07408,40.58671],[-105.07408,40.58659],[-105.07408,40.58646],[-105.07408,40.58637],[-105.07408,40.58629],[-105.07408,40.5862],[-105.07408,40.58612],[-105.07408,40.58604],[-105.07408,40.58595],[-105.07408,40.58586],[-105.07408,40.58578],[-105.07408,40.5857],[-105.07408,40.58561],[-105.07408,40.58546],[-105.07408,40.5853],[-105.07408,40.58515],[-105.07408,40.585],[-105.07408,40.58486],[-105.07408,40.58473],[-105.07407,40.58459],[-105.07407,40.58445],[-105.07407,40.58432],[-105.07407,40.5842],[-105.07425,40.5842],[-105.07443,40.58421],[-105.07444,40.58421],[-105.07462,40.58421],[-105.07467,40.58421],[-105.07478,40.58422],[-105.07494,40.58422],[-105.07512,40.58422],[-105.0753,40.58421],[-105.07548,40.58421],[-105.07552,40.58421],[-105.0757,40.58422],[-105.07585,40.58422],[-105.07603,40.58422],[-105.07621,40.58422],[-105.07624,40.58422],[-105.07642,40.58422],[-105.0766,40.58423],[-105.07678,40.58423],[-105.07696,40.58423],[-105.07712,40.58423],[-105.07712,40.58412],[-105.07712,40.58401],[-105.07712,40.58388],[-105.07712,40.58373],[-105.07712,40.58359],[-105.07712,40.58344],[-105.07712,40.5833],[-105.07712,40.58319],[-105.07712,40.58308],[-105.07712,40.58297],[-105.07712,40.58286],[-105.07712,40.58272],[-105.07712,40.58259],[-105.07713,40.58245],[-105.07713,40.58231],[-105.07713,40.58223],[-105.07712,40.58209],[-105.07712,40.58205],[-105.07712,40.58191],[-105.07712,40.58178],[-105.07713,40.58164],[-105.07713,40.5815],[-105.07713,40.5815],[-105.07713,40.58136],[-105.07713,40.58123],[-105.07714,40.58109],[-105.07714,40.58099],[-105.07713,40.5808],[-105.07714,40.58057],[-105.07714,40.58046],[-105.07714,40.58036],[-105.07714,40.58026],[-105.07714,40.58015],[-105.07714,40.58001],[-105.07714,40.57988],[-105.07715,40.57974],[-105.07715,40.5796],[-105.07715,40.57947],[-105.07715,40.57943],[-105.07715,40.57929],[-105.07716,40.57916],[-105.07716,40.57902],[-105.07716,40.57888],[-105.07717,40.57875],[-105.07717,40.57864],[-105.07717,40.5785],[-105.07717,40.57837],[-105.07718,40.57823],[-105.07718,40.57811],[-105.07736,40.57811],[-105.07754,40.57811],[-105.07772,40.57811],[-105.07773,40.57811],[-105.07785,40.57811],[-105.07803,40.57811],[-105.07805,40.57811],[-105.07815,40.57811],[-105.07833,40.57811],[-105.07836,40.57811],[-105.07854,40.57811],[-105.07872,40.57811],[-105.07886,40.57811],[-105.07893,40.57811],[-105.07898,40.57811],[-105.07916,40.57811],[-105.07934,40.57811],[-105.07944,40.57811],[-105.07958,40.57811],[-105.07976,40.57811],[-105.07983,40.57811],[-105.08001,40.57811],[-105.08012,40.57811],[-105.0803,40.57811],[-105.08048,40.57812],[-105.08066,40.57812],[-105.08076,40.57812],[-105.08094,40.57812],[-105.08112,40.57812],[-105.0813,40.57812],[-105.08148,40.57812],[-105.08164,40.57812],[-105.08182,40.57812],[-105.082,40.57812],[-105.08218,40.57812],[-105.08236,40.57812],[-105.08251,40.57812],[-105.0826,40.57812],[-105.08271,40.57812],[-105.08289,40.57812],[-105.08307,40.57812],[-105.08325,40.57812],[-105.08343,40.57812],[-105.08361,40.57812],[-105.08375,40.57812],[-105.08393,40.57812],[-105.08411,40.57812],[-105.08429,40.57812],[-105.08436,40.57812],[-105.08454,40.57812],[-105.08472,40.57812],[-105.0849,40.57812],[-105.08491,40.57812],[-105.08515,40.57816],[-105.08539,40.57815],[-105.08562,40.57815],[-105.0859,40.57815],[-105.08622,40.57815],[-105.08654,40.57815],[-105.08688,40.57815],[-105.08717,40.57815],[-105.08747,40.57815],[-105.08779,40.57816],[-105.08813,40.57816],[-105.08846,40.57816],[-105.0888,40.57816],[-105.08914,40.57816],[-105.08948,40.57816],[-105.08982,40.57816],[-105.09015,40.57816],[-105.09049,40.57816],[-105.09081,40.57819],[-105.09105,40.5782],[-105.09127,40.5782],[-105.09131,40.5782]]}},{"type":"Feature","properties":{"name":"GREEN:01"},"geometry":{"type":"LineString","coordinates":[[-105.07553,40.58643],[-105.07553,40.58647],[-105.07553,40.58655],[-105.07553,40.58664],[-105.07553,40.58673],[-105.07553,40.58681],[-105.07553,40.5869],[-105.07553,40.58698],[-105.07537,40.58698],[-105.07519,40.58698],[-105.07513,40.58698],[-105.07495,40.58698],[-105.07477,40.58698],[-105.07464,40.58698],[-105.07446,40.58698],[-105.07428,40.58697],[-105.0741,40.58697],[-105.07408,40.58697],[-105.07408,40.58687],[-105.07408,40.58678],[-105.07408,40.58669],[-105.07408,40.58659],[-105.07408,40.58646],[-105.07408,40.58637],[-105.07408,40.58629],[-105.07408,40.5862],[-105.07408,40.58612],[-105.07408,40.58604],[-105.07408,40.58595],[-105.07408,40.58586],[-105.07408,40.58578],[-105.07408,40.5857],[-105.07408,40.58561],[-105.07408,40.58548],[-105.07408,40.58535],[-105.07408,40.58523],[-105.07408,40.5851],[-105.07408,40.58496],[-105.07408,40.58483],[-105.07407,40.58469],[-105.07407,40.58455],[-105.07407,40.58442],[-105.07407,40.58428],[-105.07407,40.5842],[-105.07425,40.5842],[-105.07443,40.58421],[-105.07444,40.58421],[-105.07456,40.58421],[-105.07467,40.58421],[-105.07478,40.58422],[-105.07494,40.58422],[-105.07512,40.58422],[-105.0753,40.58421],[-105.07548,40.58421],[-105.07552,40.58421],[-105.0757,40.58422],[-105.07585,40.58422],[-105.07603,40.58422],[-105.07621,40.58422],[-105.07624,40.58422],[-105.07642,40.58422],[-105.0766,40.58423],[-105.07678,40.58423],[-105.07696,40.58423],[-105.07712,40.58423],[-105.07712,40.58414],[-105.07712,40.58405],[-105.07712,40.58397],[-105.07712,40.58388],[-105.07712,40.58378],[-105.07712,40.58368],[-105.07712,40.58359],[-105.07712,40.58344],[-105.07712,40.5833],[-105.07712,40.58319],[-105.07712,40.58308],[-105.07712,40.58297],[-105.07712,40.58286],[-105.07712,40.58272],[-105.07712,40.58259],[-105.07713,40.58245],[-105.07713,40.58231],[-105.07713,40.58223],[-105.07712,40.58209],[-105.07712,40.58205],[-105.07712,40.58191],[-105.07712,40.58178],[-105.07713,40.58164],[-105.07713,40.5815],[-105.07713,40.5815],[-105.07731,40.5815],[-105.07749,40.58149],[-105.07757,40.58149],[-105.07775,40.58149],[-105.07793,40.58149],[-105.07811,40.58149],[-105.07816,40.58149],[-105.07834,40.58149],[-105.07846,40.58149],[-105.07864,40.58149],[-105.07882,40.58149],[-105.07887,40.58149],[-105.07892,40.58149],[-105.07899,40.58149],[-105.07907,40.58149],[-105.07925,40.58149],[-105.07943,40.58149],[-105.07948,40.58149],[-105.07966,40.58149],[-105.07982,40.5815],[-105.08,40.5815],[-105.08018,40.5815],[-105.08036,40.5815],[-105.08054,40.5815],[-105.08072,40.5815],[-105.08073,40.5815],[-105.08091,40.5815],[-105.08109,40.5815],[-105.08127,40.58151],[-105.08145,40.58151],[-105.08162,40.58151],[-105.0818,40.58151],[-105.08198,40.58151],[-105.08216,40.58151],[-105.08234,40.58151],[-105.08252,40.58151],[-105.08253,40.58151],[-105.08271,40.58151],[-105.08289,40.58151],[-105.08307,40.58151],[-105.08325,40.58151],[-105.08339,40.58151],[-105.08357,40.58151],[-105.08375,40.58151],[-105.08386,40.58151],[-105.08404,40.58159],[-105.08431,40.58158],[-105.08455,40.58159],[-105.08479,40.58159],[-105.08505,40.58159],[-105.08531,40.58159],[-105.08558,40.58159],[-105.08584,40.58163],[-105.08612,40.58168],[-105.08642,40.58172],[-105.08672,40.58174],[-105.08704,40.58174],[-105.08729,40.58175],[-105.08751,40.58176],[-105.08773,40.58177],[-105.08797,40.58176],[-105.08817,40.58177],[-105.0884,40.58179],[-105.0887,40.58177],[-105.089,40.58179],[-105.08932,40.58177],[-105.08966,40.58177],[-105.09,40.58179],[-105.09031,40.58179],[-105.09063,40.58179],[-105.09089,40.5818],[-105.09111,40.58181],[-105.09127,40.58181],[-105.09144,40.58181],[-105.09166,40.58181],[-105.0919,40.58181],[-105.0922,40.58182],[-105.0925,40.58182],[-105.09282,40.58183],[-105.09314,40.58183],[-105.09345,40.58184],[-105.09377,40.58184],[-105.09407,40.58184],[-105.09437,40.58185],[-105.09464,40.58185],[-105.0949,40.58185],[-105.09516,40.58186],[-105.09538,40.58187],[-105.0956,40.58187],[-105.09584,40.58186],[-105.09611,40.58188],[-105.09635,40.58188],[-105.09663,40.58188],[-105.09695,40.58188],[-105.09725,40.58189],[-105.09754,40.5819],[-105.09782,40.5819],[-105.09802,40.5819],[-105.09814,40.58191],[-105.0984,40.58191],[-105.0986,40.58191],[-105.09886,40.58192],[-105.09914,40.58192],[-105.09943,40.58193],[-105.09975,40.58195],[-105.10005,40.58195],[-105.10035,40.58196],[-105.10062,40.58198],[-105.10084,40.58199],[-105.101,40.58199],[-105.10119,40.58186],[-105.10137,40.58187],[-105.10155,40.58187],[-105.10173,40.58188],[-105.10186,40.58188],[-105.10204,40.58188],[-105.10207,40.58188],[-105.10221,40.58187],[-105.10233,40.58186],[-105.10245,40.58184],[-105.10258,40.5818],[-105.10271,40.58176],[-105.10287,40.5817],[-105.10294,40.58168],[-105.1031,40.58162],[-105.10326,40.58156],[-105.10342,40.5815],[-105.10358,40.58143],[-105.10365,40.58141],[-105.10381,40.58136],[-105.10395,40.58131],[-105.10408,40.58127],[-105.10417,40.58124],[-105.10424,40.58122],[-105.10437,40.5812],[-105.10449,40.58119],[-105.10463,40.58118],[-105.10474,40.58119],[-105.10482,40.58119],[-105.10489,40.5812],[-105.10499,40.58122],[-105.10508,40.58124],[-105.10515,40.58125],[-105.10522,40.58128],[-105.10532,40.58132],[-105.10547,40.58139],[-105.10563,40.58146],[-105.10578,40.58153],[-105.10591,40.58159],[-105.10606,40.58166],[-105.10622,40.58174],[-105.10635,40.5818],[-105.10651,40.58186],[-105.10653,40.58187],[-105.10661,40.58189],[-105.10668,40.58189],[-105.10677,40.5819],[-105.10695,40.5819],[-105.10713,40.58191],[-105.10721,40.58191],[-105.10729,40.58191],[-105.1074,40.58191],[-105.10768,40.582],[-105.10796,40.582],[-105.10825,40.582],[-105.10861,40.58199],[-105.10893,40.58199],[-105.10927,40.58199],[-105.10962,40.58199],[-105.11,40.58199],[-105.11034,40.582],[-105.1107,40.582],[-105.11088,40.582],[-105.11107,40.582],[-105.11125,40.582],[-105.11143,40.582],[-105.11163,40.582],[-105.11183,40.582],[-105.11203,40.582],[-105.11221,40.582],[-105.11239,40.582],[-105.11257,40.582],[-105.11276,40.58201],[-105.11292,40.58201],[-105.11312,40.58201],[-105.1133,40.58201],[-105.1135,40.58201],[-105.11368,40.58201],[-105.11386,40.58202],[-105.11423,40.58202],[-105.11453,40.58202],[-105.11479,40.58202],[-105.11497,40.58203],[-105.11511,40.58191],[-105.11513,40.58176],[-105.11513,40.58159],[-105.11513,40.58143],[-105.11513,40.58126],[-105.11513,40.58121],[-105.11513,40.58106],[-105.11513,40.58089],[-105.11513,40.58069],[-105.11513,40.58045],[-105.11513,40.58023],[-105.11513,40.58],[-105.11513,40.57976],[-105.11513,40.57952],[-105.11513,40.57928],[-105.11513,40.57905],[-105.11513,40.57881],[-105.11513,40.57855],[-105.11513,40.5783],[-105.11513,40.57804],[-105.11515,40.5778],[-105.11515,40.57759],[-105.11515,40.57743],[-105.11517,40.57731],[-105.11515,40.57713],[-105.11515,40.57697],[-105.11515,40.57677],[-105.11515,40.57656],[-105.11517,40.57635],[-105.11517,40.57614],[-105.11519,40.57592],[-105.11519,40.57571],[-105.11519,40.57549],[-105.11517,40.57527],[-105.11517,40.57505],[-105.11517,40.57484],[-105.11519,40.57468],[-105.11519,40.57452],[-105.11519,40.57436],[-105.11519,40.57422],[-105.11519,40.57406],[-105.11519,40.57406],[-105.11519,40.57386],[-105.11519,40.57368],[-105.11519,40.57348],[-105.11519,40.57325],[-105.11517,40.573],[-105.11517,40.57274],[-105.11519,40.57249],[-105.11519,40.57223],[-105.11519,40.57198],[-105.11519,40.57173],[-105.11519,40.57147],[-105.11519,40.5712],[-105.11519,40.57094],[-105.11519,40.57079],[-105.11519,40.57053],[-105.11519,40.57026],[-105.11519,40.57001],[-105.11519,40.56974],[-105.11521,40.56948],[-105.11521,40.56922],[-105.11521,40.56895],[-105.11523,40.56869],[-105.11523,40.56843],[-105.11523,40.56818],[-105.11523,40.56799],[-105.11523,40.56783],[-105.11523,40.56768],[-105.11523,40.56752],[-105.11523,40.56736],[-105.11523,40.56717],[-105.11523,40.56698],[-105.11523,40.56682],[-105.11525,40.56668],[-105.11523,40.56653],[-105.11523,40.56636],[-105.11523,40.56616],[-105.11523,40.56591],[-105.11525,40.56566],[-105.11525,40.56539],[-105.11525,40.56511],[-105.11525,40.56484],[-105.11525,40.5647],[-105.11527,40.56457],[-105.11527,40.56442],[-105.11525,40.56428],[-105.11525,40.56413],[-105.11525,40.56399],[-105.11525,40.56383],[-105.11525,40.56368],[-105.11525,40.56354],[-105.11525,40.56339],[-105.11525,40.56324],[-105.11525,40.5631],[-105.11525,40.56295],[-105.11525,40.56281],[-105.11525,40.56266],[-105.11525,40.56251],[-105.11527,40.56236],[-105.11527,40.56221],[-105.11527,40.56206],[-105.11527,40.56191],[-105.11527,40.56175],[-105.11525,40.56161],[-105.11525,40.56146],[-105.11527,40.56132],[-105.11527,40.56117],[-105.11527,40.56103],[-105.11527,40.56089],[-105.11527,40.56075],[-105.11527,40.56061],[-105.11527,40.56047],[-105.11529,40.56021],[-105.11529,40.55995],[-105.11531,40.55974],[-105.11533,40.55957],[-105.11533,40.55948],[-105.11531,40.5593],[-105.11529,40.55915],[-105.11523,40.55894],[-105.11523,40.5587],[-105.11523,40.55844],[-105.11523,40.55819],[-105.11523,40.55792],[-105.11523,40.55767],[-105.11523,40.55745],[-105.11523,40.55727],[-105.11523,40.55713],[-105.11523,40.55711],[-105.11523,40.55694],[-105.11523,40.55677],[-105.11523,40.55656],[-105.11523,40.55633],[-105.11523,40.55608],[-105.11523,40.55583],[-105.11523,40.55559],[-105.11523,40.55537],[-105.11523,40.55518],[-105.11523,40.55501],[-105.11523,40.55498],[-105.11519,40.55482],[-105.11517,40.55467],[-105.11515,40.55448],[-105.11515,40.55425],[-105.11515,40.55399],[-105.11513,40.55373],[-105.11513,40.55351],[-105.11513,40.55332],[-105.11513,40.55316],[-105.11513,40.55302],[-105.11511,40.55285],[-105.11491,40.55274],[-105.11471,40.55274],[-105.11449,40.55274],[-105.11429,40.55274],[-105.1141,40.55273],[-105.1139,40.55273],[-105.1137,40.55273],[-105.11352,40.55273],[-105.11346,40.55273],[-105.11326,40.55274],[-105.11304,40.55275],[-105.11276,40.55276],[-105.11245,40.55276],[-105.11209,40.55275],[-105.11189,40.55275],[-105.11171,40.55275],[-105.11151,40.55274],[-105.11131,40.55274],[-105.11111,40.55274],[-105.11094,40.55274],[-105.11078,40.55274],[-105.11042,40.55273],[-105.11006,40.55273],[-105.10971,40.55273],[-105.10943,40.55273],[-105.10923,40.55272],[-105.10909,40.55272],[-105.10887,40.55273],[-105.10863,40.55273],[-105.10833,40.55273],[-105.108,40.55273],[-105.10768,40.55273],[-105.10748,40.55273],[-105.1073,40.55273],[-105.1071,40.55273],[-105.1069,40.55273],[-105.10674,40.55273],[-105.10639,40.55273],[-105.10605,40.55273],[-105.10569,40.55273],[-105.10537,40.55273],[-105.1051,40.55273],[-105.10486,40.55272],[-105.10464,40.55272],[-105.10456,40.55272],[-105.10434,40.55273],[-105.10414,40.55273],[-105.10388,40.55273],[-105.10357,40.55273],[-105.10323,40.55273],[-105.10303,40.55272],[-105.10281,40.55272],[-105.10263,40.55272],[-105.10243,40.55272],[-105.10221,40.55272],[-105.10204,40.55272],[-105.10184,40.55272],[-105.10164,40.55272],[-105.10144,40.55271],[-105.10124,40.55271],[-105.10104,40.55271],[-105.10084,40.55271],[-105.10065,40.55271],[-105.10049,40.55271],[-105.10029,40.55271],[-105.10009,40.55271],[-105.09993,40.5527],[-105.09973,40.5527],[-105.09955,40.55269],[-105.09939,40.55269],[-105.09904,40.55267],[-105.09876,40.55266],[-105.09856,40.55266],[-105.09842,40.55265],[-105.0983,40.55267],[-105.09812,40.55267],[-105.09794,40.55267],[-105.09776,40.55266],[-105.09758,40.55266],[-105.0974,40.55266],[-105.09737,40.55266],[-105.09719,40.55266],[-105.09706,40.55266],[-105.09688,40.55266],[-105.0967,40.55266],[-105.09652,40.55265],[-105.09634,40.55265],[-105.09616,40.55265],[-105.09615,40.55265],[-105.09602,40.55265],[-105.09584,40.55265],[-105.09566,40.55265],[-105.09548,40.55265],[-105.0953,40.55265],[-105.09528,40.55265],[-105.0951,40.55265],[-105.09492,40.55264],[-105.09474,40.55264],[-105.09456,40.55264],[-105.09438,40.55264],[-105.0942,40.55263],[-105.09402,40.55263],[-105.09391,40.55263],[-105.09373,40.55263],[-105.09355,40.55263],[-105.09337,40.55263],[-105.09319,40.55263],[-105.09293,40.55258],[-105.09276,40.55258],[-105.09246,40.55259],[-105.09214,40.55259],[-105.0918,40.55258],[-105.09144,40.55258],[-105.09127,40.55258],[-105.09109,40.55258],[-105.09075,40.55258],[-105.09043,40.55258],[-105.09017,40.55257],[-105.08997,40.55257],[-105.08986,40.55257],[-105.08962,40.55257],[-105.0894,40.55257],[-105.08914,40.55257],[-105.08882,40.55257],[-105.0885,40.55257],[-105.08819,40.55257],[-105.08783,40.55257],[-105.08749,40.55257],[-105.08715,40.55257],[-105.08682,40.55256],[-105.0865,40.55256],[-105.0862,40.55256],[-105.08594,40.55256],[-105.08574,40.55254],[-105.08564,40.55254],[-105.08544,40.55255],[-105.08523,40.55256],[-105.08495,40.55255],[-105.08463,40.55254],[-105.08427,40.55254],[-105.0841,40.55254],[-105.08392,40.55254],[-105.08374,40.55254],[-105.08356,40.55254],[-105.0832,40.55254],[-105.08286,40.55254],[-105.08254,40.55253],[-105.08231,40.55252],[-105.08213,40.55251],[-105.08195,40.55261],[-105.08177,40.55261],[-105.08169,40.55261],[-105.08158,40.55261],[-105.0814,40.55261],[-105.08122,40.55261],[-105.08104,40.55261],[-105.08086,40.55261],[-105.08068,40.55261],[-105.08059,40.55261],[-105.08047,40.55261],[-105.08033,40.55261],[-105.08017,40.55261],[-105.0801,40.55261],[-105.08003,40.55259],[-105.07986,40.55254],[-105.07981,40.55253],[-105.07963,40.55253],[-105.07945,40.55253],[-105.07927,40.55253],[-105.07913,40.55253],[-105.07903,40.55253],[-105.07885,40.55253],[-105.07867,40.55253],[-105.07856,40.55253],[-105.07838,40.55254],[-105.0782,40.55255],[-105.07808,40.55255],[-105.07803,40.55255],[-105.07785,40.55255],[-105.07767,40.55255],[-105.07749,40.55254],[-105.07731,40.55254],[-105.0772,40.55254],[-105.07702,40.55253],[-105.07697,40.55253],[-105.07698,40.55261],[-105.07698,40.55275],[-105.07697,40.55288],[-105.07697,40.55302],[-105.07697,40.55305],[-105.07697,40.55335],[-105.07697,40.55347],[-105.07697,40.55358],[-105.07697,40.55373],[-105.07697,40.55387],[-105.07697,40.554],[-105.07697,40.55412],[-105.07697,40.55425],[-105.07697,40.55438],[-105.07697,40.55442],[-105.07697,40.55456],[-105.07697,40.55469],[-105.07697,40.55483],[-105.07696,40.55497],[-105.07696,40.5551],[-105.07696,40.55517],[-105.07696,40.55526],[-105.07696,40.55535],[-105.07696,40.55543],[-105.07696,40.55552],[-105.07696,40.55566],[-105.07695,40.55579],[-105.07695,40.55593],[-105.07695,40.55594],[-105.07695,40.55609],[-105.07695,40.55624],[-105.07695,40.55638],[-105.07694,40.55651],[-105.07694,40.55665],[-105.07694,40.55668],[-105.07694,40.55683],[-105.07694,40.55697],[-105.07694,40.5571],[-105.07694,40.55723],[-105.07694,40.55736],[-105.07694,40.55749],[-105.07694,40.55763],[-105.07694,40.55777],[-105.07694,40.5579],[-105.07694,40.55804],[-105.07694,40.55818],[-105.07693,40.55831],[-105.07693,40.55845],[-105.07693,40.55859],[-105.07693,40.55866],[-105.07693,40.5588],[-105.07693,40.55893],[-105.07692,40.55907],[-105.07692,40.55921],[-105.07692,40.5593],[-105.07692,40.55938],[-105.07692,40.55952],[-105.07691,40.55965],[-105.07691,40.55979],[-105.07691,40.55983],[-105.07692,40.55993],[-105.07691,40.56007],[-105.0769,40.5602],[-105.0769,40.56024],[-105.07689,40.56038],[-105.07689,40.56038],[-105.07689,40.56052],[-105.07688,40.56063],[-105.07687,40.56075],[-105.07687,40.56085],[-105.07687,40.56095],[-105.07687,40.5611],[-105.07687,40.56124],[-105.07687,40.56138],[-105.07688,40.56151],[-105.07688,40.56159],[-105.07689,40.56173],[-105.07689,40.56186],[-105.07689,40.56187],[-105.0769,40.56201],[-105.0769,40.56211],[-105.0769,40.56217],[-105.0769,40.56227],[-105.0769,40.56233],[-105.0769,40.56235],[-105.0769,40.56249],[-105.0769,40.5626],[-105.0769,40.56272],[-105.0769,40.56283],[-105.0769,40.56294],[-105.0769,40.56304],[-105.0769,40.56315],[-105.0769,40.56329],[-105.07691,40.56342],[-105.07691,40.56345],[-105.07691,40.56359],[-105.07691,40.56372],[-105.07691,40.56386],[-105.07691,40.564],[-105.0769,40.56413],[-105.0769,40.56427],[-105.0769,40.56441],[-105.0769,40.56455],[-105.0769,40.56467],[-105.0769,40.56477],[-105.0769,40.56486],[-105.0769,40.56495],[-105.0769,40.56505],[-105.07689,40.56519],[-105.07689,40.56529],[-105.07689,40.56543],[-105.07688,40.56556],[-105.07688,40.5657],[-105.07688,40.56584],[-105.07687,40.56597],[-105.07687,40.56611],[-105.07687,40.56612],[-105.07686,40.56626],[-105.07684,40.56639],[-105.07684,40.56644],[-105.07684,40.56658],[-105.07683,40.56671],[-105.07683,40.56685],[-105.07682,40.56699],[-105.07682,40.56708],[-105.07682,40.56717],[-105.07682,40.56726],[-105.07682,40.56735],[-105.07682,40.56744],[-105.07682,40.56759],[-105.07682,40.56773],[-105.07682,40.56787],[-105.07683,40.568],[-105.07683,40.5681],[-105.07683,40.56822],[-105.07683,40.56835],[-105.07683,40.56847],[-105.07683,40.5686],[-105.07683,40.56871],[-105.07684,40.56885],[-105.07684,40.56898],[-105.07685,40.56912],[-105.07685,40.56913],[-105.07686,40.56927],[-105.07687,40.56939],[-105.07687,40.56947],[-105.07687,40.56956],[-105.07687,40.5696],[-105.07688,40.56966],[-105.07689,40.56978],[-105.0769,40.56992],[-105.0769,40.56996],[-105.07691,40.5701],[-105.07692,40.57023],[-105.07692,40.57028],[-105.07693,40.57035],[-105.07694,40.57049],[-105.07695,40.57062],[-105.07695,40.57076],[-105.07696,40.5709],[-105.07697,40.571],[-105.07697,40.57111],[-105.07697,40.57125],[-105.07696,40.57138],[-105.07696,40.57152],[-105.07696,40.57156],[-105.07696,40.5717],[-105.07696,40.57184],[-105.07696,40.57197],[-105.07696,40.57211],[-105.07696,40.57225],[-105.07696,40.57238],[-105.07696,40.57252],[-105.07696,40.57265],[-105.07696,40.57279],[-105.07696,40.57293],[-105.07696,40.57306],[-105.07696,40.5732],[-105.07697,40.57334],[-105.07698,40.57347],[-105.07699,40.57361],[-105.077,40.57369],[-105.07701,40.57383],[-105.07701,40.5739],[-105.07701,40.574],[-105.07701,40.57409],[-105.07701,40.57419],[-105.07701,40.57429],[-105.07701,40.57442],[-105.07701,40.57456],[-105.07701,40.5747],[-105.077,40.57487],[-105.077,40.57506],[-105.077,40.57527],[-105.077,40.5755],[-105.077,40.57576],[-105.07698,40.57602],[-105.07698,40.57628],[-105.07698,40.57643],[-105.07698,40.57657],[-105.07698,40.5767],[-105.07698,40.57684],[-105.07698,40.577],[-105.07698,40.57713],[-105.07698,40.57728],[-105.07698,40.57753],[-105.07698,40.57773],[-105.07698,40.57787],[-105.07696,40.57801],[-105.07694,40.57819],[-105.07692,40.57835],[-105.07692,40.57841],[-105.07698,40.57855],[-105.07698,40.57869],[-105.07699,40.57882],[-105.07699,40.5789],[-105.07699,40.57904],[-105.077,40.57917],[-105.077,40.57931],[-105.077,40.57933],[-105.077,40.57944],[-105.077,40.57955],[-105.077,40.57966],[-105.077,40.57978],[-105.07699,40.57992],[-105.07699,40.58003],[-105.07699,40.58017],[-105.07698,40.5803],[-105.07698,40.58044],[-105.07697,40.58058],[-105.07697,40.58071],[-105.07697,40.58085],[-105.07696,40.58099],[-105.07696,40.58106],[-105.07695,40.5812],[-105.07695,40.58133],[-105.07694,40.58147],[-105.07694,40.5815],[-105.07694,40.58164],[-105.07695,40.58177],[-105.07695,40.58191],[-105.07696,40.58205],[-105.07696,40.58209],[-105.07696,40.58225],[-105.07696,40.58241],[-105.07696,40.58262],[-105.07696,40.58279],[-105.07696,40.58298],[-105.07696,40.58319],[-105.07696,40.5834],[-105.07696,40.58358],[-105.07696,40.58378],[-105.07696,40.58394],[-105.07694,40.58409],[-105.0769,40.58425],[-105.07668,40.58429],[-105.07649,40.58429],[-105.07629,40.58429],[-105.07609,40.58429],[-105.07583,40.58429],[-105.07563,40.58429],[-105.07551,40.5844],[-105.07549,40.58453],[-105.07547,40.5847],[-105.07547,40.5849],[-105.07549,40.5851],[-105.07549,40.5853],[-105.07549,40.58549],[-105.07549,40.58568],[-105.07549,40.58587],[-105.07547,40.58606],[-105.07547,40.58622],[-105.07547,40.58637],[-105.07545,40.58645]]}},{"type":"Feature","properties":{"name":"GREEN:51"},"geometry":{"type":"LineString","coordinates":[[-105.07553,40.58643],[-105.07553,40.58647],[-105.07553,40.58655],[-105.07553,40.58664],[-105.07553,40.58673],[-105.07553,40.58681],[-105.07553,40.5869],[-105.07553,40.58698],[-105.07537,40.58698],[-105.07519,40.58698],[-105.07513,40.58698],[-105.07495,40.58698],[-105.07477,40.58698],[-105.07464,40.58698],[-105.07446,40.58698],[-105.07428,40.58697],[-105.0741,40.58697],[-105.07408,40.58697],[-105.07408,40.58687],[-105.07408,40.58678],[-105.07408,40.58669],[-105.07408,40.58659],[-105.07408,40.58646],[-105.07408,40.58637],[-105.07408,40.58629],[-105.07408,40.5862],[-105.07408,40.58612],[-105.07408,40.58604],[-105.07408,40.58595],[-105.07408,40.58586],[-105.07408,40.58578],[-105.07408,40.5857],[-105.07408,40.58561],[-105.07408,40.58548],[-105.07408,40.58535],[-105.07408,40.58523],[-105.07408,40.5851],[-105.07408,40.58496],[-105.07408,40.58483],[-105.07407,40.58469],[-105.07407,40.58455],[-105.07407,40.58442],[-105.07407,40.58428],[-105.07407,40.5842],[-105.07425,40.5842],[-105.07443,40.58421],[-105.07444,40.58421],[-105.07456,40.58421],[-105.07467,40.58421],[-105.07478,40.58422],[-105.07494,40.58422],[-105.07512,40.58422],[-105.0753,40.58421],[-105.07548,40.58421],[-105.07552,40.58421],[-105.0757,40.58422],[-105.07585,40.58422],[-105.07603,40.58422],[-105.07621,40.58422],[-105.07624,40.58422],[-105.07642,40.58422],[-105.0766,40.58423],[-105.07678,40.58423],[-105.07696,40.58423],[-105.07712,40.58423],[-105.07712,40.58414],[-105.07712,40.58405],[-105.07712,40.58397],[-105.07712,40.58388],[-105.07712,40.58378],[-105.07712,40.58368],[-105.07712,40.58359],[-105.07712,40.58344],[-105.07712,40.5833],[-105.07712,40.58319],[-105.07712,40.58308],[-105.07712,40.58297],[-105.07712,40.58286],[-105.07712,40.58272],[-105.07712,40.58259],[-105.07713,40.58245],[-105.07713,40.58231],[-105.07713,40.58223],[-105.07712,40.58209],[-105.07712,40.58205],[-105.07712,40.58191],[-105.07712,40.58178],[-105.07713,40.58164],[-105.07713,40.5815],[-105.07713,40.5815],[-105.07731,40.5815],[-105.07749,40.58149],[-105.07757,40.58149],[-105.07775,40.58149],[-105.07793,40.58149],[-105.07811,40.58149],[-105.07816,40.58149],[-105.07834,40.58149],[-105.07846,40.58149],[-105.07864,40.58149],[-105.07882,40.58149],[-105.07887,40.58149],[-105.07892,40.58149],[-105.07899,40.58149],[-105.07907,40.58149],[-105.07925,40.58149],[-105.07943,40.58149],[-105.07948,40.58149],[-105.07966,40.58149],[-105.07982,40.5815],[-105.08,40.5815],[-105.08018,40.5815],[-105.08036,40.5815],[-105.08054,40.5815],[-105.08072,40.5815],[-105.08073,40.5815],[-105.08091,40.5815],[-105.08109,40.5815],[-105.08127,40.58151],[-105.08145,40.58151],[-105.08162,40.58151],[-105.0818,40.58151],[-105.08198,40.58151],[-105.08216,40.58151],[-105.08234,40.58151],[-105.08252,40.58151],[-105.08253,40.58151],[-105.08271,40.58151],[-105.08289,40.58151],[-105.08307,40.58151],[-105.08325,40.58151],[-105.08339,40.58151],[-105.08357,40.58151],[-105.08375,40.58151],[-105.08386,40.58151],[-105.08404,40.58159],[-105.08431,40.58158],[-105.08455,40.58159],[-105.08479,40.58159],[-105.08505,40.58159],[-105.08531,40.58159],[-105.08558,40.58159],[-105.08584,40.58163],[-105.08612,40.58168],[-105.08642,40.58172],[-105.08672,40.58174],[-105.08704,40.58174],[-105.08729,40.58175],[-105.08751,40.58176],[-105.08773,40.58177],[-105.08797,40.58176],[-105.08817,40.58177],[-105.0884,40.58179],[-105.0887,40.58177],[-105.089,40.58179],[-105.08932,40.58177],[-105.08966,40.58177],[-105.09,40.58179],[-105.09031,40.58179],[-105.09063,40.58179],[-105.09089,40.5818],[-105.09111,40.58181],[-105.09127,40.58181]]}},{"type":"Feature","properties":{"name":"HORN:01"},"geometry":{"type":"LineString","coordinates":[[-105.08276,40.56855],[-105.08272,40.5687],[-105.08254,40.56874],[-105.08233,40.56874],[-105.08209,40.56874],[-105.08189,40.56873],[-105.08173,40.56873],[-105.08153,40.56873],[-105.08135,40.56873],[-105.08117,40.56873],[-105.081,40.56873],[-105.08074,40.56873],[-105.08058,40.56873],[-105.08038,40.56876],[-105.08034,40.5689],[-105.08034,40.56906],[-105.08034,40.56924],[-105.08034,40.56944],[-105.08034,40.56963],[-105.08034,40.56978],[-105.08034,40.56992],[-105.08034,40.57008],[-105.08034,40.57023],[-105.08038,40.5704],[-105.08042,40.57053],[-105.08042,40.57067],[-105.08028,40.57077],[-105.0801,40.57076],[-105.07982,40.57079],[-105.07962,40.57081],[-105.07945,40.57081],[-105.07923,40.57081],[-105.07913,40.57092],[-105.07913,40.57107],[-105.07913,40.57124],[-105.07913,40.57142],[-105.07913,40.57159],[-105.07913,40.57177],[-105.07909,40.57195],[-105.07909,40.57213],[-105.07909,40.57232],[-105.07909,40.57246],[-105.07909,40.5726],[-105.07909,40.57275],[-105.07909,40.5729],[-105.07909,40.57305],[-105.07909,40.57319],[-105.07909,40.57334],[-105.07909,40.57351],[-105.07913,40.57366],[-105.07931,40.57373],[-105.07949,40.57374],[-105.07972,40.57372],[-105.07992,40.57372],[-105.08012,40.57372],[-105.08028,40.57377],[-105.08032,40.57391],[-105.08028,40.5741],[-105.08028,40.57427],[-105.08024,40.57443],[-105.08024,40.57454],[-105.0803,40.57465],[-105.0803,40.57476],[-105.0803,40.57486],[-105.0803,40.57496],[-105.0803,40.57507],[-105.08031,40.57521],[-105.08031,40.57525],[-105.08031,40.57533],[-105.08019,40.57539],[-105.08007,40.57549],[-105.08003,40.57553],[-105.08,40.57557],[-105.07998,40.57561],[-105.07996,40.57565],[-105.07993,40.5758],[-105.07993,40.57594],[-105.07994,40.57607],[-105.07994,40.57617],[-105.07994,40.57631],[-105.07994,40.57644],[-105.07993,40.57658],[-105.07993,40.57672],[-105.07993,40.57685],[-105.07993,40.5769],[-105.07993,40.57696],[-105.07996,40.57701],[-105.08002,40.57711],[-105.08011,40.5772],[-105.08017,40.57724],[-105.08019,40.57726],[-105.08026,40.5773],[-105.08034,40.57734],[-105.08044,40.57738],[-105.08051,40.57741],[-105.0806,40.57743],[-105.08076,40.57746],[-105.08094,40.57743],[-105.08102,40.57742],[-105.08112,40.57738],[-105.08119,40.57736],[-105.08123,40.57734],[-105.08126,40.57737],[-105.08131,40.57733],[-105.0814,40.57724],[-105.08151,40.57712],[-105.08167,40.57708],[-105.08183,40.57704],[-105.08194,40.57701],[-105.08205,40.57699],[-105.08216,40.57696],[-105.08227,40.57693],[-105.08245,40.57694],[-105.08263,40.57695],[-105.08276,40.57697],[-105.08289,40.577],[-105.08306,40.57702],[-105.0832,40.57702],[-105.08334,40.57702],[-105.08348,40.57702],[-105.08363,40.57702],[-105.08377,40.57702],[-105.08391,40.57702],[-105.08405,40.57702],[-105.08418,40.57702],[-105.08425,40.57699],[-105.08432,40.57692],[-105.08439,40.57686],[-105.08446,40.57679],[-105.08453,40.57673],[-105.0846,40.57666],[-105.08467,40.57659],[-105.08474,40.57653],[-105.08481,40.57646],[-105.08487,40.57642],[-105.08497,40.57639],[-105.08513,40.5764],[-105.08529,40.5764],[-105.0854,40.5764],[-105.08551,40.5764],[-105.08564,40.5764],[-105.08577,40.57641],[-105.0859,40.57641],[-105.08603,40.57642],[-105.08617,40.57641],[-105.08624,40.57639],[-105.08625,40.57636],[-105.08615,40.57624],[-105.08607,40.57617],[-105.08599,40.57609],[-105.0859,40.57601],[-105.08581,40.57592],[-105.08573,40.57583],[-105.08564,40.57574],[-105.08558,40.5757],[-105.0855,40.57568],[-105.08539,40.57574],[-105.08528,40.57579],[-105.08519,40.57587],[-105.08501,40.57596],[-105.08485,40.57605],[-105.08475,40.57619],[-105.08489,40.57634],[-105.08509,40.57637],[-105.08536,40.57639],[-105.08561,40.5764],[-105.0858,40.57642],[-105.08598,40.57642],[-105.08624,40.57643],[-105.0865,40.57643],[-105.0867,40.57643],[-105.08689,40.57643],[-105.0871,40.57643],[-105.08727,40.57643],[-105.08751,40.57643],[-105.08773,40.57643],[-105.08795,40.57643],[-105.08817,40.57643],[-105.0884,40.57643],[-105.08861,40.57643],[-105.08876,40.57643],[-105.08898,40.57643],[-105.0892,40.57643],[-105.0894,40.57643],[-105.0896,40.57643],[-105.08982,40.57643],[-105.09001,40.57644],[-105.09021,40.57644],[-105.09039,40.57644],[-105.09059,40.57644],[-105.09081,40.57644],[-105.09099,40.57644],[-105.09117,40.57646],[-105.09133,40.57648],[-105.0914,40.57644],[-105.09168,40.57644],[-105.0919,40.57644],[-105.0921,40.57644],[-105.0923,40.57644],[-105.0925,40.57645],[-105.0927,40.57645],[-105.09289,40.57645],[-105.09311,40.57646],[-105.09333,40.57646],[-105.09353,40.57646],[-105.09375,40.57646],[-105.09393,40.57646],[-105.09413,40.57646],[-105.09429,40.57636],[-105.09437,40.5762],[-105.09439,40.57602],[-105.09439,40.57585],[-105.09439,40.57569],[-105.09439,40.57555],[-105.09439,40.57537],[-105.09439,40.57519],[-105.09439,40.57501],[-105.09439,40.57484],[-105.09439,40.5747],[-105.09429,40.57461],[-105.09417,40.57473],[-105.09417,40.57483]]}},{"type":"Feature","properties":{"name":"HORN:51"},"geometry":{"type":"LineString","coordinates":[[-105.09417,40.57483],[-105.09423,40.57499],[-105.09425,40.57519],[-105.09425,40.57533],[-105.09427,40.57551],[-105.09427,40.57569],[-105.09425,40.57585],[-105.09423,40.57602],[-105.09425,40.57618],[-105.09427,40.57633],[-105.09413,40.57643],[-105.09397,40.57642],[-105.09397,40.57642],[-105.09375,40.57644],[-105.09345,40.57644],[-105.09325,40.57644],[-105.09306,40.57644],[-105.09286,40.57644],[-105.09266,40.57644],[-105.09246,40.57644],[-105.09228,40.57644],[-105.09206,40.57644],[-105.09188,40.57644],[-105.0917,40.57644],[-105.09144,40.57644],[-105.09121,40.57644],[-105.09105,40.57643],[-105.09081,40.57643],[-105.09063,40.5764],[-105.09045,40.57639],[-105.09027,40.57642],[-105.09001,40.57642],[-105.08986,40.57642],[-105.08966,40.57642],[-105.08946,40.57642],[-105.08926,40.57642],[-105.08906,40.57642],[-105.08886,40.57642],[-105.08866,40.57642],[-105.08846,40.57642],[-105.08823,40.57642],[-105.08803,40.57642],[-105.08783,40.57642],[-105.08757,40.57642],[-105.08737,40.57642],[-105.08715,40.57642],[-105.08696,40.57642],[-105.08678,40.57642],[-105.08658,40.57642],[-105.08636,40.5764],[-105.08618,40.5763],[-105.08604,40.57616],[-105.0859,40.57602],[-105.08578,40.57589],[-105.08564,40.57578],[-105.08553,40.57569],[-105.08539,40.57575],[-105.08521,40.57583],[-105.08513,40.57585],[-105.08499,40.57596],[-105.08483,40.57605],[-105.08475,40.57619],[-105.08475,40.57635],[-105.08469,40.57652],[-105.08455,40.57662],[-105.08443,40.57676],[-105.08427,40.57689],[-105.08411,40.577],[-105.08392,40.577],[-105.08374,40.577],[-105.08352,40.577],[-105.0833,40.577],[-105.08312,40.577],[-105.08292,40.57698],[-105.08276,40.57693],[-105.08257,40.57693],[-105.08239,40.57693],[-105.08219,40.57694],[-105.08197,40.57699],[-105.08187,40.577],[-105.08187,40.57702],[-105.08172,40.57706],[-105.08163,40.57707],[-105.08158,40.57705],[-105.08159,40.57695],[-105.08162,40.57688],[-105.08162,40.57674],[-105.08162,40.5766],[-105.08163,40.57646],[-105.08163,40.57632],[-105.08164,40.57622],[-105.08164,40.57612],[-105.08165,40.57602],[-105.08165,40.57592],[-105.08164,40.57576],[-105.08162,40.57567],[-105.08159,40.57559],[-105.0815,40.5755],[-105.08141,40.57541],[-105.08141,40.57541],[-105.08133,40.57536],[-105.08128,40.57531],[-105.08126,40.57522],[-105.08127,40.57506],[-105.08127,40.5749],[-105.08127,40.5748],[-105.08127,40.5747],[-105.08127,40.5746],[-105.08127,40.5745],[-105.08126,40.57441],[-105.08126,40.57431],[-105.08126,40.57421],[-105.08126,40.57411],[-105.08125,40.57395],[-105.08125,40.57379],[-105.08122,40.5737],[-105.0811,40.57366],[-105.08092,40.57367],[-105.08074,40.57368],[-105.08054,40.5737],[-105.08034,40.57369],[-105.08026,40.57354],[-105.08026,40.57334],[-105.08026,40.57321],[-105.08026,40.57302],[-105.08026,40.57284],[-105.08024,40.5727],[-105.08024,40.57253],[-105.08026,40.57237],[-105.08026,40.57229],[-105.08024,40.57213],[-105.08026,40.57194],[-105.08026,40.57181],[-105.08026,40.5716],[-105.08026,40.57141],[-105.08026,40.57121],[-105.08028,40.57104],[-105.08032,40.57088],[-105.08044,40.57074],[-105.08048,40.5706],[-105.08048,40.57046],[-105.08048,40.57044],[-105.08048,40.57038],[-105.08038,40.57023],[-105.08034,40.57008],[-105.08034,40.5699],[-105.08034,40.56975],[-105.08034,40.5696],[-105.08034,40.56945],[-105.08034,40.5693],[-105.08034,40.56917],[-105.08034,40.56899],[-105.08034,40.56885],[-105.08048,40.56876],[-105.08076,40.56874],[-105.08097,40.56874],[-105.08121,40.56874],[-105.08143,40.56874],[-105.08165,40.56874],[-105.08185,40.56874],[-105.08205,40.56874],[-105.08225,40.56874],[-105.08236,40.56865],[-105.08246,40.56854],[-105.0826,40.56845],[-105.08276,40.5685],[-105.08276,40.56855]]}},{"type":"Feature","properties":{"name":"MAX:01"},"geometry":{"type":"LineString","coordinates":[[-105.08028,40.5184],[-105.08028,40.5184],[-105.08038,40.51837],[-105.08053,40.51833],[-105.08058,40.51837],[-105.08058,40.51853],[-105.08059,40.5187],[-105.08059,40.51886],[-105.0806,40.51903],[-105.0806,40.51919],[-105.08061,40.51936],[-105.08061,40.51952],[-105.08061,40.5196],[-105.08061,40.51969],[-105.08061,40.51985],[-105.08062,40.52001],[-105.08062,40.52016],[-105.08062,40.52032],[-105.08062,40.52048],[-105.08062,40.52064],[-105.08063,40.5208],[-105.08063,40.52096],[-105.08063,40.52112],[-105.08063,40.52128],[-105.08064,40.52144],[-105.08064,40.5216],[-105.08064,40.52175],[-105.08064,40.52191],[-105.08064,40.52207],[-105.08065,40.52223],[-105.08064,40.52239],[-105.08064,40.52255],[-105.08064,40.52271],[-105.08063,40.52287],[-105.08063,40.52303],[-105.08063,40.52319],[-105.08063,40.52335],[-105.08062,40.52351],[-105.08063,40.52363],[-105.08064,40.52375],[-105.08065,40.52387],[-105.08066,40.52399],[-105.08067,40.52411],[-105.08068,40.52423],[-105.08069,40.52435],[-105.0807,40.52447],[-105.0807,40.52464],[-105.08072,40.52479],[-105.08072,40.52497],[-105.08072,40.52513],[-105.08072,40.52529],[-105.0807,40.52548],[-105.0807,40.52566],[-105.0807,40.52586],[-105.0807,40.52605],[-105.0807,40.5262],[-105.08068,40.52636],[-105.08068,40.52651],[-105.08068,40.52666],[-105.08068,40.52681],[-105.08066,40.52697],[-105.08066,40.52713],[-105.08066,40.52729],[-105.08066,40.52745],[-105.08066,40.52759],[-105.08066,40.52775],[-105.08066,40.52789],[-105.08066,40.52804],[-105.08064,40.52819],[-105.08064,40.52833],[-105.08062,40.52853],[-105.0806,40.52869],[-105.0806,40.52884],[-105.08058,40.529],[-105.08058,40.52902],[-105.0806,40.52918],[-105.0806,40.52932],[-105.08062,40.52948],[-105.08062,40.52965],[-105.08062,40.52985],[-105.0806,40.53005],[-105.0806,40.53019],[-105.0806,40.53035],[-105.08058,40.5305],[-105.08058,40.53066],[-105.08058,40.53084],[-105.08058,40.531],[-105.08058,40.53117],[-105.08058,40.53133],[-105.08058,40.53149],[-105.08058,40.53165],[-105.08054,40.53181],[-105.08054,40.53197],[-105.08054,40.53213],[-105.08054,40.5323],[-105.08054,40.53247],[-105.08054,40.53263],[-105.08054,40.53281],[-105.08054,40.53298],[-105.08052,40.53315],[-105.08052,40.53334],[-105.08052,40.53352],[-105.08052,40.5337],[-105.0805,40.5339],[-105.0805,40.53409],[-105.08048,40.53428],[-105.08048,40.53449],[-105.08048,40.53469],[-105.08048,40.53488],[-105.08048,40.53509],[-105.08048,40.53528],[-105.08048,40.53549],[-105.08048,40.53568],[-105.08048,40.53587],[-105.08046,40.53605],[-105.08044,40.53619],[-105.08044,40.53639],[-105.08042,40.53655],[-105.0804,40.53673],[-105.08038,40.53685],[-105.0804,40.53701],[-105.0804,40.53717],[-105.08042,40.53734],[-105.0804,40.53751],[-105.08038,40.53766],[-105.08038,40.5378],[-105.08038,40.53795],[-105.08038,40.53809],[-105.0804,40.53825],[-105.08038,40.53838],[-105.08038,40.53854],[-105.08038,40.53873],[-105.08038,40.53887],[-105.08038,40.53903],[-105.08038,40.53919],[-105.08034,40.53934],[-105.08034,40.53951],[-105.08034,40.53968],[-105.08034,40.53983],[-105.08034,40.53997],[-105.08034,40.54015],[-105.08032,40.54028],[-105.08028,40.54042],[-105.08018,40.54057],[-105.08016,40.54075],[-105.08016,40.54089],[-105.08016,40.54106],[-105.08014,40.54122],[-105.08014,40.54137],[-105.08014,40.54153],[-105.08014,40.54169],[-105.0801,40.54185],[-105.08002,40.54203],[-105.07996,40.54219],[-105.07994,40.54235],[-105.07992,40.54251],[-105.07992,40.54267],[-105.07992,40.54282],[-105.07992,40.54298],[-105.07992,40.54314],[-105.07992,40.54328],[-105.07992,40.54344],[-105.07992,40.54358],[-105.0799,40.54372],[-105.07988,40.54392],[-105.07988,40.54409],[-105.07988,40.54423],[-105.07986,40.54437],[-105.07986,40.54454],[-105.07986,40.54461],[-105.07986,40.54479],[-105.07986,40.54499],[-105.07986,40.54516],[-105.07986,40.54535],[-105.07982,40.54553],[-105.07982,40.54573],[-105.07986,40.54592],[-105.07986,40.54614],[-105.07988,40.54634],[-105.07986,40.54655],[-105.07986,40.54676],[-105.07982,40.54698],[-105.07982,40.5472],[-105.07982,40.54743],[-105.07982,40.54767],[-105.0798,40.54791],[-105.07978,40.54815],[-105.07978,40.54839],[-105.07976,40.54863],[-105.07976,40.54886],[-105.07974,40.54909],[-105.07974,40.54933],[-105.07974,40.54955],[-105.07972,40.54977],[-105.07972,40.54997],[-105.07976,40.55016],[-105.07982,40.55034],[-105.07982,40.55052],[-105.07982,40.55071],[-105.07982,40.5509],[-105.07982,40.5511],[-105.07982,40.5513],[-105.07982,40.55148],[-105.07982,40.55165],[-105.07978,40.55183],[-105.07978,40.55198],[-105.07976,40.55217],[-105.07976,40.55232],[-105.07976,40.55246],[-105.07976,40.55262],[-105.07974,40.55278],[-105.07978,40.55294],[-105.07982,40.55311],[-105.07982,40.55326],[-105.07982,40.55329],[-105.07982,40.55345],[-105.0798,40.55359],[-105.07978,40.55377],[-105.07978,40.55396],[-105.07976,40.55415],[-105.07976,40.55436],[-105.07974,40.55449],[-105.07974,40.55464],[-105.07974,40.55478],[-105.07974,40.55493],[-105.07974,40.55509],[-105.07972,40.55524],[-105.07972,40.5554],[-105.07972,40.55555],[-105.07972,40.55571],[-105.0797,40.55586],[-105.0797,40.55602],[-105.07968,40.55618],[-105.07968,40.55633],[-105.07968,40.55649],[-105.07968,40.55664],[-105.07966,40.55679],[-105.07966,40.55693],[-105.07966,40.55713],[-105.07966,40.55732],[-105.07966,40.55745],[-105.07966,40.55761],[-105.07966,40.55775],[-105.07966,40.5579],[-105.07966,40.55804],[-105.07966,40.55823],[-105.07964,40.55842],[-105.07964,40.55859],[-105.07966,40.55878],[-105.07968,40.55897],[-105.0797,40.55915],[-105.07968,40.55932],[-105.07966,40.55947],[-105.07964,40.55963],[-105.07958,40.55978],[-105.07958,40.55978],[-105.07958,40.55993],[-105.07958,40.56009],[-105.07958,40.56025],[-105.07958,40.56042],[-105.07958,40.56059],[-105.07954,40.56074],[-105.07954,40.5609],[-105.07953,40.56105],[-105.07949,40.56121],[-105.07949,40.56136],[-105.07945,40.56151],[-105.07943,40.56164],[-105.0794,40.5618],[-105.07939,40.56196],[-105.07935,40.56213],[-105.07933,40.56229],[-105.07931,40.56245],[-105.07929,40.5626],[-105.07927,40.56276],[-105.07923,40.56293],[-105.07923,40.56308],[-105.07919,40.56323],[-105.07917,40.56338],[-105.07913,40.56351],[-105.07913,40.56365],[-105.07909,40.56381],[-105.07909,40.56395],[-105.07907,40.56408],[-105.07903,40.56424],[-105.07903,40.56441],[-105.07901,40.56454],[-105.07899,40.5647],[-105.07897,40.56486],[-105.07895,40.56502],[-105.07893,40.56518],[-105.07893,40.56535],[-105.07893,40.5655],[-105.07893,40.56564],[-105.07893,40.5658],[-105.07893,40.56595],[-105.07893,40.5661],[-105.07893,40.56625],[-105.07893,40.5664],[-105.07893,40.56655],[-105.07891,40.56669],[-105.07887,40.56684],[-105.07883,40.56698],[-105.07883,40.56714],[-105.07883,40.56728],[-105.07883,40.56744],[-105.07877,40.56758],[-105.07871,40.56774],[-105.07871,40.5679],[-105.07871,40.56795],[-105.07873,40.5681],[-105.07877,40.56823],[-105.07881,40.56837],[-105.07883,40.56853],[-105.07881,40.56867],[-105.07881,40.56881],[-105.07881,40.56895],[-105.07881,40.56909],[-105.07881,40.56926],[-105.07881,40.56942],[-105.07881,40.5696],[-105.07881,40.56975],[-105.07881,40.5699],[-105.07881,40.57004],[-105.07881,40.57019],[-105.07881,40.57033],[-105.07881,40.57049],[-105.07881,40.57064],[-105.07881,40.57078],[-105.07879,40.57093],[-105.07881,40.5711],[-105.07883,40.57125],[-105.07883,40.57142],[-105.07883,40.57158],[-105.07883,40.57175],[-105.07883,40.57191],[-105.07883,40.57208],[-105.07883,40.57225],[-105.07883,40.5724],[-105.07881,40.57253],[-105.07875,40.57269],[-105.07869,40.57283],[-105.07867,40.57298],[-105.07867,40.57299],[-105.07871,40.57314],[-105.07875,40.57327],[-105.07877,40.57342],[-105.07881,40.57355],[-105.07881,40.5737],[-105.07881,40.57386],[-105.07881,40.57405],[-105.07879,40.57425],[-105.07877,40.57445],[-105.07875,40.57464],[-105.07875,40.57481],[-105.07875,40.57499],[-105.07875,40.57518],[-105.07875,40.57538],[-105.07875,40.57552],[-105.07875,40.57566],[-105.07875,40.57585],[-105.07877,40.57598],[-105.07879,40.57612],[-105.07881,40.57626],[-105.07881,40.57642],[-105.07881,40.57658],[-105.07881,40.57673],[-105.07881,40.57688],[-105.07883,40.57703],[-105.07883,40.57721],[-105.07883,40.57735],[-105.07883,40.57749],[-105.07883,40.57767],[-105.07883,40.57785],[-105.07883,40.578],[-105.07887,40.57814],[-105.07887,40.5783],[-105.07883,40.57846],[-105.07883,40.57852],[-105.07887,40.57867],[-105.07887,40.57883],[-105.07887,40.57897],[-105.07887,40.57911],[-105.07887,40.57926],[-105.07887,40.57941],[-105.07887,40.57955],[-105.07887,40.5797],[-105.07887,40.57985],[-105.07887,40.57999],[-105.07887,40.58014],[-105.07887,40.58029],[-105.07887,40.58045],[-105.07887,40.58063],[-105.07887,40.58082],[-105.07887,40.581],[-105.07887,40.58118],[-105.07887,40.58134],[-105.07883,40.58149],[-105.07883,40.58167],[-105.07883,40.58182],[-105.07883,40.58185],[-105.07883,40.58185],[-105.07883,40.58193],[-105.07883,40.58202],[-105.07883,40.58211],[-105.07882,40.5822],[-105.07882,40.58229],[-105.07882,40.58238],[-105.07882,40.58247],[-105.07882,40.58255],[-105.07882,40.58264],[-105.07882,40.58273],[-105.07882,40.58282],[-105.07882,40.58291],[-105.07882,40.583],[-105.07882,40.58309],[-105.07882,40.58318],[-105.07882,40.58327],[-105.07881,40.58342],[-105.07881,40.58357],[-105.0788,40.58373],[-105.0788,40.58388],[-105.0788,40.58404],[-105.07879,40.58419],[-105.07879,40.58434],[-105.07878,40.5845],[-105.07878,40.58461],[-105.07877,40.58471],[-105.07877,40.58489],[-105.07881,40.58505],[-105.07881,40.58525],[-105.07881,40.58539],[-105.07881,40.58555],[-105.07881,40.58572],[-105.07881,40.58587],[-105.07881,40.58602],[-105.07881,40.5862],[-105.07881,40.58637],[-105.07881,40.58653],[-105.07881,40.58671],[-105.07881,40.58687],[-105.07881,40.58702],[-105.07879,40.58719],[-105.07877,40.58734],[-105.07877,40.58745],[-105.07877,40.58745],[-105.07877,40.58753],[-105.07877,40.58761],[-105.07877,40.5877],[-105.07877,40.58778],[-105.07878,40.58786],[-105.07878,40.58794],[-105.07878,40.58803],[-105.07878,40.58811],[-105.07876,40.58822],[-105.07877,40.58837],[-105.07877,40.58852],[-105.07878,40.5886],[-105.07879,40.58869],[-105.07881,40.58877],[-105.07882,40.58885],[-105.07882,40.58897],[-105.07882,40.58909],[-105.07882,40.58924],[-105.07883,40.58939],[-105.07874,40.58943],[-105.0786,40.58954],[-105.0786,40.58966],[-105.07859,40.58979],[-105.0786,40.5899],[-105.07861,40.59002]]}},{"type":"Feature","properties":{"name":"MAX:51"},"geometry":{"type":"LineString","coordinates":[[-105.07861,40.59002],[-105.07861,40.59002],[-105.0786,40.59014],[-105.07858,40.59026],[-105.07848,40.59038],[-105.07841,40.59045],[-105.0784,40.5906],[-105.07841,40.59069],[-105.07841,40.59078],[-105.07844,40.59081],[-105.07861,40.59081],[-105.07879,40.59081],[-105.07894,40.59081],[-105.07896,40.59079],[-105.07896,40.59069],[-105.07896,40.5906],[-105.07896,40.5905],[-105.07896,40.5904],[-105.07896,40.59031],[-105.07896,40.59021],[-105.07896,40.59011],[-105.07896,40.59001],[-105.07895,40.58991],[-105.07895,40.58981],[-105.07895,40.58971],[-105.07895,40.58961],[-105.07895,40.58952],[-105.07895,40.58942],[-105.07895,40.58932],[-105.07895,40.58922],[-105.07895,40.58912],[-105.07895,40.58902],[-105.07895,40.58888],[-105.07895,40.58873],[-105.07895,40.58859],[-105.07895,40.58845],[-105.07896,40.58831],[-105.07896,40.58816],[-105.07896,40.58802],[-105.07896,40.58788],[-105.07896,40.58773],[-105.07896,40.58759],[-105.07896,40.58745],[-105.07896,40.5873],[-105.07896,40.58716],[-105.07897,40.58702],[-105.07897,40.58687],[-105.07897,40.58673],[-105.07897,40.58659],[-105.07893,40.58643],[-105.07893,40.58626],[-105.07893,40.58606],[-105.07893,40.58587],[-105.07893,40.58566],[-105.07893,40.58552],[-105.07895,40.58537],[-105.07895,40.5852],[-105.07895,40.58503],[-105.07895,40.58487],[-105.07897,40.5847],[-105.07897,40.58456],[-105.07897,40.58441],[-105.07899,40.58423],[-105.07901,40.58405],[-105.07903,40.58397],[-105.07901,40.58382],[-105.07899,40.58367],[-105.07899,40.58347],[-105.07899,40.58333],[-105.07899,40.58317],[-105.07899,40.58301],[-105.07899,40.58285],[-105.07899,40.5827],[-105.07899,40.58252],[-105.07897,40.58234],[-105.07897,40.58218],[-105.07897,40.58204],[-105.07899,40.58188],[-105.07901,40.58172],[-105.07901,40.58154],[-105.07901,40.58138],[-105.07901,40.58122],[-105.07901,40.58114],[-105.07901,40.58098],[-105.07899,40.58078],[-105.07899,40.58063],[-105.07899,40.58047],[-105.07899,40.58032],[-105.07901,40.58017],[-105.07901,40.58004],[-105.07901,40.57988],[-105.07901,40.57971],[-105.07903,40.57954],[-105.07903,40.57937],[-105.07903,40.57921],[-105.07903,40.57907],[-105.07903,40.5789],[-105.07903,40.57873],[-105.07907,40.57863],[-105.07903,40.57847],[-105.07903,40.57834],[-105.07903,40.5782],[-105.07893,40.57805],[-105.07887,40.5779],[-105.07887,40.57772],[-105.07887,40.57758],[-105.07887,40.57744],[-105.07887,40.57728],[-105.07887,40.57713],[-105.07883,40.57697],[-105.07883,40.57681],[-105.07883,40.5766],[-105.07883,40.57644],[-105.07883,40.57629],[-105.07883,40.57613],[-105.07883,40.57596],[-105.07881,40.57578],[-105.07881,40.57559],[-105.07881,40.57541],[-105.07881,40.57523],[-105.07881,40.57504],[-105.07881,40.57484],[-105.07881,40.57464],[-105.07883,40.57444],[-105.07883,40.57427],[-105.07883,40.57412],[-105.07887,40.57397],[-105.07887,40.57381],[-105.07883,40.57367],[-105.07883,40.57352],[-105.07881,40.57338],[-105.07875,40.57324],[-105.07869,40.5731],[-105.07871,40.57295],[-105.07871,40.57292],[-105.07871,40.57279],[-105.07877,40.57263],[-105.07883,40.57247],[-105.07883,40.5723],[-105.07883,40.57216],[-105.07883,40.572],[-105.07883,40.57183],[-105.07883,40.57167],[-105.07883,40.5715],[-105.07883,40.57135],[-105.07883,40.57117],[-105.07881,40.57102],[-105.07883,40.57088],[-105.07883,40.57072],[-105.07883,40.57056],[-105.07883,40.5704],[-105.07883,40.57026],[-105.07883,40.57011],[-105.07883,40.56997],[-105.07883,40.56982],[-105.07883,40.56967],[-105.07883,40.56951],[-105.07881,40.56937],[-105.07881,40.56922],[-105.07883,40.56905],[-105.07883,40.5689],[-105.07883,40.56876],[-105.07883,40.56858],[-105.07883,40.56841],[-105.07881,40.56825],[-105.07875,40.56812],[-105.07873,40.56795],[-105.07873,40.56787],[-105.07875,40.56772],[-105.07881,40.56759],[-105.07883,40.56744],[-105.07883,40.56728],[-105.07887,40.56715],[-105.07887,40.56701],[-105.07893,40.56686],[-105.07893,40.5667],[-105.07893,40.56654],[-105.07893,40.5664],[-105.07893,40.56624],[-105.07893,40.56609],[-105.07893,40.56594],[-105.07893,40.5658],[-105.07895,40.56565],[-105.07895,40.5655],[-105.07895,40.56535],[-105.07897,40.56521],[-105.07897,40.56505],[-105.07899,40.56489],[-105.07901,40.56472],[-105.07903,40.56454],[-105.07903,40.56439],[-105.07907,40.56423],[-105.07909,40.56408],[-105.07909,40.56394],[-105.07913,40.56376],[-105.07913,40.56362],[-105.07917,40.56347],[-105.07919,40.56332],[-105.07923,40.56317],[-105.07923,40.56301],[-105.07927,40.56284],[-105.07929,40.56267],[-105.07931,40.56253],[-105.07933,40.56239],[-105.07935,40.56222],[-105.07935,40.56209],[-105.07939,40.56195],[-105.0794,40.5618],[-105.07943,40.56164],[-105.07945,40.56149],[-105.07949,40.56134],[-105.07949,40.56117],[-105.07953,40.56102],[-105.07954,40.56086],[-105.07958,40.5607],[-105.07958,40.56057],[-105.07958,40.56049],[-105.0796,40.56035],[-105.07958,40.56019],[-105.07958,40.56004],[-105.07958,40.55985],[-105.07964,40.5597],[-105.07966,40.55956],[-105.07968,40.55942],[-105.0797,40.55924],[-105.0797,40.55908],[-105.07968,40.55893],[-105.07968,40.55877],[-105.07966,40.55859],[-105.07966,40.55841],[-105.07966,40.55822],[-105.07966,40.55801],[-105.07966,40.55787],[-105.07966,40.55774],[-105.07966,40.55759],[-105.07966,40.55745],[-105.07966,40.55729],[-105.07968,40.55714],[-105.07968,40.55699],[-105.07968,40.55686],[-105.07968,40.5567],[-105.0797,40.55655],[-105.0797,40.55638],[-105.0797,40.55622],[-105.07972,40.55604],[-105.07972,40.55588],[-105.07972,40.55572],[-105.07974,40.55555],[-105.07974,40.55539],[-105.07974,40.55522],[-105.07974,40.55506],[-105.07974,40.55489],[-105.07976,40.55472],[-105.07976,40.55454],[-105.07976,40.55438],[-105.07976,40.55421],[-105.07978,40.55405],[-105.07978,40.5539],[-105.07978,40.55377],[-105.0798,40.55357],[-105.07982,40.5534],[-105.07982,40.55326],[-105.07982,40.55315],[-105.07982,40.553],[-105.07978,40.55286],[-105.07976,40.55272],[-105.07982,40.55257],[-105.07986,40.55242],[-105.07986,40.55221],[-105.07986,40.55205],[-105.07986,40.55188],[-105.07986,40.55171],[-105.07986,40.55152],[-105.07988,40.55133],[-105.07988,40.55113],[-105.07988,40.55094],[-105.07988,40.55075],[-105.0799,40.55056],[-105.07988,40.55038],[-105.07986,40.55022],[-105.07978,40.55004],[-105.07978,40.54987],[-105.07978,40.54968],[-105.07978,40.54948],[-105.0798,40.54925],[-105.07982,40.54903],[-105.07982,40.54881],[-105.07982,40.54859],[-105.07982,40.54836],[-105.07982,40.54813],[-105.07986,40.54792],[-105.07986,40.54769],[-105.07988,40.54747],[-105.07988,40.54725],[-105.0799,40.54704],[-105.07992,40.54681],[-105.07992,40.5466],[-105.07992,40.5464],[-105.07992,40.54623],[-105.07992,40.54608],[-105.07992,40.54591],[-105.07992,40.54576],[-105.07992,40.54559],[-105.07992,40.54542],[-105.07992,40.54526],[-105.07994,40.5451],[-105.07994,40.54503],[-105.07992,40.54487],[-105.07994,40.54467],[-105.07996,40.54454],[-105.07996,40.54438],[-105.07996,40.54421],[-105.07996,40.54402],[-105.07996,40.54384],[-105.07998,40.54366],[-105.07998,40.54347],[-105.07998,40.54328],[-105.07998,40.5431],[-105.08,40.54291],[-105.08,40.54274],[-105.08002,40.54259],[-105.08002,40.54243],[-105.08002,40.54227],[-105.08002,40.54213],[-105.08008,40.54198],[-105.08014,40.54183],[-105.08018,40.54168],[-105.08018,40.54153],[-105.08022,40.54134],[-105.08024,40.54119],[-105.08026,40.54105],[-105.08028,40.54087],[-105.08032,40.54073],[-105.08034,40.54058],[-105.08034,40.54044],[-105.08034,40.54027],[-105.08034,40.54008],[-105.08038,40.53988],[-105.08038,40.53974],[-105.08038,40.5396],[-105.08038,40.53945],[-105.08038,40.5393],[-105.08038,40.53917],[-105.08038,40.53903],[-105.08038,40.53883],[-105.08038,40.53865],[-105.08038,40.53849],[-105.08042,40.53833],[-105.08042,40.53818],[-105.0804,40.53803],[-105.08042,40.53789],[-105.08042,40.53775],[-105.08042,40.5376],[-105.08042,40.53744],[-105.08042,40.53726],[-105.08038,40.53712],[-105.08032,40.53695],[-105.08032,40.5368],[-105.08032,40.5367],[-105.08034,40.53655],[-105.08044,40.53641],[-105.08044,40.53627],[-105.08046,40.5361],[-105.08048,40.53592],[-105.08048,40.53574],[-105.08048,40.53557],[-105.08048,40.53539],[-105.08048,40.53523],[-105.08048,40.53504],[-105.08048,40.53485],[-105.08048,40.53466],[-105.08048,40.53448],[-105.0805,40.53428],[-105.0805,40.5341],[-105.08052,40.53392],[-105.08052,40.53372],[-105.08052,40.53358],[-105.08052,40.53342],[-105.08052,40.53327],[-105.08052,40.53311],[-105.08054,40.53296],[-105.08054,40.53281],[-105.08054,40.53266],[-105.08054,40.53251],[-105.08054,40.53236],[-105.08054,40.53221],[-105.08054,40.53207],[-105.08054,40.53192],[-105.08054,40.53178],[-105.08058,40.53163],[-105.08058,40.5315],[-105.08058,40.53135],[-105.08058,40.5312],[-105.08058,40.53104],[-105.08058,40.5309],[-105.08058,40.53075],[-105.08058,40.53061],[-105.08058,40.53045],[-105.08058,40.53031],[-105.0806,40.53016],[-105.0806,40.52996],[-105.08062,40.52977],[-105.08062,40.52961],[-105.08062,40.52946],[-105.08058,40.5293],[-105.08054,40.52916],[-105.08048,40.52902],[-105.08048,40.52888],[-105.08048,40.52888],[-105.08054,40.52872],[-105.0806,40.52856],[-105.08064,40.52837],[-105.08066,40.52821],[-105.08066,40.52803],[-105.08066,40.52785],[-105.08066,40.52771],[-105.08066,40.52756],[-105.08066,40.52741],[-105.08066,40.52725],[-105.08066,40.5271],[-105.08068,40.52695],[-105.08068,40.5268],[-105.08068,40.52665],[-105.0807,40.5265],[-105.0807,40.52634],[-105.0807,40.52617],[-105.0807,40.52602],[-105.0807,40.52584],[-105.0807,40.52567],[-105.0807,40.52551],[-105.08072,40.52533],[-105.08072,40.52518],[-105.08072,40.52503],[-105.08072,40.52484],[-105.08068,40.52468],[-105.08062,40.52455],[-105.0806,40.52439],[-105.08062,40.52432],[-105.08062,40.52432],[-105.08062,40.52418],[-105.08061,40.52404],[-105.08061,40.52391],[-105.08061,40.52377],[-105.08061,40.52363],[-105.08061,40.52349],[-105.08061,40.52335],[-105.08061,40.52321],[-105.08061,40.52307],[-105.08061,40.52293],[-105.08061,40.5228],[-105.08061,40.52266],[-105.08061,40.52252],[-105.0806,40.52238],[-105.0806,40.52224],[-105.0806,40.5221],[-105.0806,40.52199],[-105.08061,40.52189],[-105.08061,40.52178],[-105.08061,40.52167],[-105.08061,40.52157],[-105.08061,40.52146],[-105.08062,40.52135],[-105.08062,40.52124],[-105.08062,40.52114],[-105.08062,40.52103],[-105.08062,40.52092],[-105.08063,40.52081],[-105.08063,40.5207],[-105.08063,40.5206],[-105.08063,40.52049],[-105.08063,40.52038],[-105.08064,40.52028],[-105.08064,40.52019],[-105.08064,40.52009],[-105.08064,40.51999],[-105.08064,40.51989],[-105.08064,40.51979],[-105.08064,40.5197],[-105.08065,40.5196],[-105.08058,40.51948],[-105.08052,40.51937],[-105.08038,40.51928],[-105.08029,40.51919],[-105.08019,40.5191],[-105.08019,40.51898],[-105.08019,40.51886],[-105.08019,40.51873],[-105.08018,40.51861],[-105.08023,40.51851],[-105.08028,40.5184]]}}]}
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/ruby
2
+
3
+ require_relative 'test_helper'
4
+
5
+ class TestGtfs < Minitest::Test
6
+ def test_valid_gtfs
7
+ geojson = GTFS::GeoJSON.generate("test/fixtures/valid_gtfs.zip")
8
+ shapes = File.read("test/fixtures/shapes.geojson")
9
+
10
+ assert_equal String, geojson.class
11
+ assert_equal shapes, geojson
12
+ end
13
+
14
+ def test_invalid_gtfs
15
+ assert_raises(GTFS::InvalidSourceException) { GTFS::GeoJSON.generate("test/fixtures/missing_shapes.zip") }
16
+ end
17
+ end
@@ -0,0 +1,11 @@
1
+ if ENV['COVERAGE']
2
+ require 'simplecov'
3
+ SimpleCov.start do
4
+ add_filter 'test'
5
+ command_name 'Minitest'
6
+ end
7
+ end
8
+
9
+ require 'minitest/autorun'
10
+ require 'gtfs'
11
+ require_relative '../lib/gtfs-geojson'
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gtfs-geojson
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - tyleragreen
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-03-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: gtfs
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.2.5
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.2.5
27
+ - !ruby/object:Gem::Dependency
28
+ name: simplecov
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 0.11.2
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: 0.11.2
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '='
46
+ - !ruby/object:Gem::Version
47
+ version: 5.8.4
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '='
53
+ - !ruby/object:Gem::Version
54
+ version: 5.8.4
55
+ description: gtfs-geojson is a Ruby utility to convert the shapes.txt file from a
56
+ GTFS feed into a GeoJSON file.
57
+ email:
58
+ - greent@tyleragreen.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - Gemfile
65
+ - Gemfile.lock
66
+ - README.md
67
+ - Rakefile
68
+ - gtfs-geojson.gemspec
69
+ - lib/gtfs-geojson.rb
70
+ - lib/gtfs-geojson/version.rb
71
+ - test/fixtures/missing_shapes.zip
72
+ - test/fixtures/shapes.geojson
73
+ - test/fixtures/valid_gtfs.zip
74
+ - test/test.rb
75
+ - test/test_helper.rb
76
+ homepage: https://github.com/tyleragreen/gtfs-geojson
77
+ licenses:
78
+ - MIT
79
+ metadata: {}
80
+ post_install_message:
81
+ rdoc_options: []
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ requirements: []
95
+ rubyforge_project:
96
+ rubygems_version: 2.5.1
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: Convert GTFS to GeoJSON
100
+ test_files:
101
+ - test/fixtures/missing_shapes.zip
102
+ - test/fixtures/shapes.geojson
103
+ - test/fixtures/valid_gtfs.zip
104
+ - test/test.rb
105
+ - test/test_helper.rb