From 8d0a59400183e0987d7121fba2a71cbd4fe0cd5a Mon Sep 17 00:00:00 2001 From: timothyaveni Date: Tue, 7 Nov 2023 23:14:34 +0000 Subject: [PATCH] automated commit --- .browserslistrc | 2 + .editorconfig | 22 + .eslintignore | 3 + .eslintrc.js | 24 + .github/ISSUE_TEMPLATE.md | 19 + .github/PULL_REQUEST_TEMPLATE.md | 24 + .github/workflows/linters.yml | 24 + .github/workflows/specs.yml | 37 + .gitignore | 81 + .haml-lint.yml | 13 + .rubocop.yml | 137 + .ruby-version | 1 + Gemfile | 107 + Gemfile.lock | 572 ++ Guardfile | 102 + Procfile | 1 + Procfile.dev | 2 + README.md | 18 + Rakefile | 8 + app/assets/config/manifest.js | 4 + .../images/favicon/android-chrome-192x192.png | Bin 0 -> 55018 bytes .../images/favicon/android-chrome-256x256.png | Bin 0 -> 93297 bytes .../images/favicon/apple-touch-icon.png | Bin 0 -> 42214 bytes .../images/favicon/browserconfig.xml.erb | 9 + app/assets/images/favicon/favicon-16x16.png | Bin 0 -> 1187 bytes app/assets/images/favicon/favicon-32x32.png | Bin 0 -> 2340 bytes app/assets/images/favicon/favicon.ico | Bin 0 -> 15086 bytes app/assets/images/favicon/mstile-150x150.png | Bin 0 -> 25765 bytes .../images/favicon/safari-pinned-tab.svg | 14 + .../images/favicon/site.webmanifest.erb | 19 + app/assets/images/saasbook.jpeg | Bin 0 -> 13664 bytes app/assets/stylesheets/scaffold.css | 80 + .../national/states/us-states.topo.json | 1 + app/assets/topojson/states/ak.topo.json | 1 + app/assets/topojson/states/al.topo.json | 1 + app/assets/topojson/states/ar.topo.json | 1 + app/assets/topojson/states/as.topo.json | 1 + app/assets/topojson/states/az.topo.json | 1 + app/assets/topojson/states/ca.topo.json | 1 + app/assets/topojson/states/co.topo.json | 1 + app/assets/topojson/states/ct.topo.json | 1 + app/assets/topojson/states/dc.topo.json | 1 + app/assets/topojson/states/de.topo.json | 1 + app/assets/topojson/states/fl.topo.json | 1 + app/assets/topojson/states/ga.topo.json | 1 + app/assets/topojson/states/gu.topo.json | 1 + app/assets/topojson/states/hi.topo.json | 1 + app/assets/topojson/states/ia.topo.json | 1 + app/assets/topojson/states/id.topo.json | 1 + app/assets/topojson/states/il.topo.json | 1 + app/assets/topojson/states/in.topo.json | 1 + app/assets/topojson/states/ks.topo.json | 1 + app/assets/topojson/states/ky.topo.json | 1 + app/assets/topojson/states/la.topo.json | 1 + app/assets/topojson/states/ma.topo.json | 1 + app/assets/topojson/states/md.topo.json | 1 + app/assets/topojson/states/me.topo.json | 1 + app/assets/topojson/states/mi.topo.json | 1 + app/assets/topojson/states/mn.topo.json | 1 + app/assets/topojson/states/mo.topo.json | 1 + app/assets/topojson/states/mp.topo.json | 1 + app/assets/topojson/states/ms.topo.json | 1 + app/assets/topojson/states/mt.topo.json | 1 + app/assets/topojson/states/nc.topo.json | 1 + app/assets/topojson/states/nd.topo.json | 1 + app/assets/topojson/states/ne.topo.json | 1 + app/assets/topojson/states/nh.topo.json | 1 + app/assets/topojson/states/nj.topo.json | 1 + app/assets/topojson/states/nm.topo.json | 1 + app/assets/topojson/states/nv.topo.json | 1 + app/assets/topojson/states/ny.topo.json | 1 + app/assets/topojson/states/oh.topo.json | 1 + app/assets/topojson/states/ok.topo.json | 1 + app/assets/topojson/states/or.topo.json | 1 + app/assets/topojson/states/pa.topo.json | 1 + app/assets/topojson/states/pr.topo.json | 1 + app/assets/topojson/states/ri.topo.json | 1 + app/assets/topojson/states/sc.topo.json | 1 + app/assets/topojson/states/sd.topo.json | 1 + app/assets/topojson/states/tn.topo.json | 1 + app/assets/topojson/states/tx.topo.json | 1 + app/assets/topojson/states/ut.topo.json | 1 + app/assets/topojson/states/va.topo.json | 1 + app/assets/topojson/states/vi.topo.json | 1 + app/assets/topojson/states/vt.topo.json | 1 + app/assets/topojson/states/wa.topo.json | 1 + app/assets/topojson/states/wi.topo.json | 1 + app/assets/topojson/states/wv.topo.json | 1 + app/assets/topojson/states/wy.topo.json | 1 + app/controllers/ajax_controller.rb | 9 + app/controllers/application_controller.rb | 11 + app/controllers/events_controller.rb | 31 + app/controllers/login_controller.rb | 75 + app/controllers/map_controller.rb | 48 + app/controllers/my_events_controller.rb | 45 + app/controllers/my_news_items_controller.rb | 59 + app/controllers/news_items_controller.rb | 24 + app/controllers/representatives_controller.rb | 7 + app/controllers/search_controller.rb | 15 + app/controllers/session_controller.rb | 15 + app/controllers/user_controller.rb | 7 + app/helpers/application_helper.rb | 39 + .../my_news_items_controller_helper.rb | 4 + app/helpers/news_item_helper.rb | 4 + app/helpers/ratings_helper.rb | 4 + app/helpers/representatives_helper.rb | 4 + app/helpers/session_helper.rb | 4 + app/javascript/packs/application.js | 38 + app/javascript/packs/county_map.js | 27 + app/javascript/packs/events_index.js | 52 + app/javascript/packs/events_new.js | 26 + app/javascript/packs/map_utils.js | 23 + app/javascript/packs/national_states_map.js | 64 + .../packs/state_county_filter_util.js | 73 + app/javascript/packs/state_map.js | 21 + app/javascript/packs/state_map_utils.js | 70 + app/javascript/stylesheets/application.scss | 24 + app/javascript/stylesheets/map.scss | 22 + app/jobs/application_job.rb | 4 + app/mailers/application_mailer.rb | 6 + app/models/application_record.rb | 5 + app/models/county.rb | 10 + app/models/event.rb | 17 + app/models/news_item.rb | 12 + app/models/representative.rb | 27 + app/models/state.rb | 10 + app/models/user.rb | 34 + app/views/application/_favicon.html.haml | 9 + app/views/events/index.html.haml | 73 + app/views/events/show.html.haml | 43 + app/views/layouts/_footer.html.haml | 29 + app/views/layouts/_navbar.html.haml | 29 + app/views/layouts/application.html.haml | 24 + app/views/layouts/mailer.html.haml | 8 + app/views/layouts/mailer.text.haml | 1 + app/views/login/login.html.haml | 15 + app/views/map/county.html.haml | 15 + app/views/map/index.html.haml | 15 + app/views/map/state.html.haml | 43 + app/views/my_events/_form.html.haml | 48 + app/views/my_events/edit.html.haml | 13 + app/views/my_events/new.html.haml | 13 + app/views/my_news_items/_form.html.haml | 32 + app/views/my_news_items/edit.html.haml | 19 + app/views/my_news_items/new.html.haml | 15 + app/views/news_items/index.html.haml | 46 + app/views/news_items/show.html.haml | 39 + app/views/representatives/index.html.haml | 15 + app/views/representatives/search.html.haml | 20 + app/views/shared/_flash_messages.html.haml | 7 + app/views/user/profile.html.haml | 31 + babel.config.js | 72 + bin/bundle | 3 + bin/rails | 9 + bin/rake | 9 + bin/setup | 36 + bin/spring | 17 + bin/update | 31 + bin/webpack | 18 + bin/webpack-dev-server | 18 + bin/yarn | 11 + config.ru | 7 + config/application.rb | 38 + config/boot.rb | 6 + config/cucumber.yml | 9 + config/database.yml | 95 + config/environment.rb | 7 + config/environments/development.rb | 55 + config/environments/production.rb | 82 + config/environments/test.rb | 48 + config/favicon.json | 62 + .../application_controller_renderer.rb | 9 + config/initializers/backtrace_silencers.rb | 8 + config/initializers/cookies_serializer.rb | 7 + .../initializers/filter_parameter_logging.rb | 6 + config/initializers/inflections.rb | 17 + config/initializers/mime_types.rb | 5 + config/initializers/omniauth.rb | 54 + config/initializers/web_app_manifest.rb | 23 + config/initializers/wrap_parameters.rb | 16 + config/locales/en.yml | 33 + config/puma.rb | 40 + config/routes.rb | 43 + config/spring.rb | 8 + config/storage.yml | 34 + config/webpack/development.js | 5 + config/webpack/environment.js | 25 + config/webpack/production.js | 5 + config/webpack/test.js | 5 + config/webpacker.yml | 97 + db/migrate/20200519225752_create_users.rb | 18 + db/migrate/20200519230125_create_states.rb | 21 + db/migrate/20200519230441_create_counties.rb | 17 + db/migrate/20200519231212_create_events.rb | 18 + .../20200520030218_create_representatives.rb | 14 + ...4064017_add_uid_provider_index_to_users.rb | 12 + .../20200616205245_create_news_items.rb | 17 + ...28065604_add_columns_to_representatives.rb | 8 + db/schema.rb | 78 + db/seed_data.rb | 655 ++ db/seeds.rb | 50 + docs/Checkpoint-1-Spec-1a05.md | 1 + docs/Checkpoint-2-Spec-2684.md | 1 + docs/Checkpoint-3-Spec-b9c9.md | 1 + ...-Management--Heroku--and-Travis-CI-6b5d.md | 1 + docs/End-of-Iteration-1-b43f.md | 1 + docs/End-of-Iteration-2-3d4f.md | 1 + docs/Getting-Started-a6c3.md | 1 + docs/Intro-23fe.md | 1 + docs/Iteration-Instructions-581b.md | 1 + docs/Linters-ef5d.md | 1 + docs/README.md | 14 + features/step_definitions/.gitkeep | 0 features/step_definitions/web_steps.rb | 254 + features/support/env.rb | 71 + features/support/paths.rb | 38 + features/support/selectors.rb | 44 + lib/assets/counties_fips_data/ak.json | 147 + lib/assets/counties_fips_data/al.json | 337 + lib/assets/counties_fips_data/ar.json | 377 + lib/assets/counties_fips_data/as.json | 27 + lib/assets/counties_fips_data/az.json | 77 + lib/assets/counties_fips_data/ca.json | 292 + lib/assets/counties_fips_data/co.json | 322 + lib/assets/counties_fips_data/ct.json | 42 + lib/assets/counties_fips_data/dc.json | 7 + lib/assets/counties_fips_data/de.json | 17 + lib/assets/counties_fips_data/fl.json | 337 + lib/assets/counties_fips_data/ga.json | 797 ++ lib/assets/counties_fips_data/gu.json | 7 + lib/assets/counties_fips_data/hi.json | 27 + lib/assets/counties_fips_data/ia.json | 497 + lib/assets/counties_fips_data/id.json | 222 + lib/assets/counties_fips_data/il.json | 512 + lib/assets/counties_fips_data/in.json | 462 + lib/assets/counties_fips_data/ks.json | 527 + lib/assets/counties_fips_data/ky.json | 602 ++ lib/assets/counties_fips_data/la.json | 322 + lib/assets/counties_fips_data/ma.json | 72 + lib/assets/counties_fips_data/md.json | 122 + lib/assets/counties_fips_data/me.json | 82 + lib/assets/counties_fips_data/mi.json | 417 + lib/assets/counties_fips_data/mn.json | 437 + lib/assets/counties_fips_data/mo.json | 577 ++ lib/assets/counties_fips_data/mp.json | 22 + lib/assets/counties_fips_data/ms.json | 412 + lib/assets/counties_fips_data/mt.json | 282 + lib/assets/counties_fips_data/nc.json | 502 + lib/assets/counties_fips_data/nd.json | 267 + lib/assets/counties_fips_data/ne.json | 467 + lib/assets/counties_fips_data/nh.json | 52 + lib/assets/counties_fips_data/nj.json | 107 + lib/assets/counties_fips_data/nm.json | 167 + lib/assets/counties_fips_data/nv.json | 87 + lib/assets/counties_fips_data/ny.json | 312 + lib/assets/counties_fips_data/oh.json | 442 + lib/assets/counties_fips_data/ok.json | 387 + lib/assets/counties_fips_data/or.json | 182 + lib/assets/counties_fips_data/pa.json | 337 + lib/assets/counties_fips_data/pr.json | 392 + lib/assets/counties_fips_data/ri.json | 27 + lib/assets/counties_fips_data/sc.json | 232 + lib/assets/counties_fips_data/sd.json | 332 + lib/assets/counties_fips_data/tn.json | 477 + lib/assets/counties_fips_data/tx.json | 1272 +++ lib/assets/counties_fips_data/ut.json | 147 + lib/assets/counties_fips_data/va.json | 667 ++ lib/assets/counties_fips_data/vi.json | 17 + lib/assets/counties_fips_data/vt.json | 72 + lib/assets/counties_fips_data/wa.json | 197 + lib/assets/counties_fips_data/wi.json | 362 + lib/assets/counties_fips_data/wv.json | 277 + lib/assets/counties_fips_data/wy.json | 117 + .../national_shapefile_request.rb | 32 + lib/task_helpers/state_consistency_checker.rb | 44 + lib/task_helpers/state_fips_task_helper.rb | 89 + lib/task_helpers/state_shapefile_request.rb | 37 + lib/task_helpers/task_helper.rb | 35 + lib/task_helpers/topojson_task_helper.rb | 64 + lib/tasks/cucumber.rake | 80 + lib/tasks/national.rake | 16 + lib/tasks/states.rake | 63 + package.json | 46 + postcss.config.js | 12 + public/404.html | 67 + public/422.html | 67 + public/500.html | 66 + public/apple-touch-icon-precomposed.png | 0 public/apple-touch-icon.png | 0 public/favicon.ico | 0 public/robots.txt | 1 + script/cucumber | 11 + spec/linters/eslint_spec.rb | 14 + spec/linters/haml_lint_spec.rb | 14 + spec/linters/rubocop_spec.rb | 12 + spec/rails_helper.rb | 97 + spec/spec_helper.rb | 96 + yarn.lock | 8713 +++++++++++++++++ 298 files changed, 31317 insertions(+) create mode 100644 .browserslistrc create mode 100644 .editorconfig create mode 100644 .eslintignore create mode 100644 .eslintrc.js create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/workflows/linters.yml create mode 100644 .github/workflows/specs.yml create mode 100644 .gitignore create mode 100644 .haml-lint.yml create mode 100644 .rubocop.yml create mode 100644 .ruby-version create mode 100755 Gemfile create mode 100644 Gemfile.lock create mode 100755 Guardfile create mode 100644 Procfile create mode 100644 Procfile.dev create mode 100755 README.md create mode 100755 Rakefile create mode 100755 app/assets/config/manifest.js create mode 100755 app/assets/images/favicon/android-chrome-192x192.png create mode 100755 app/assets/images/favicon/android-chrome-256x256.png create mode 100755 app/assets/images/favicon/apple-touch-icon.png create mode 100755 app/assets/images/favicon/browserconfig.xml.erb create mode 100755 app/assets/images/favicon/favicon-16x16.png create mode 100755 app/assets/images/favicon/favicon-32x32.png create mode 100755 app/assets/images/favicon/favicon.ico create mode 100755 app/assets/images/favicon/mstile-150x150.png create mode 100755 app/assets/images/favicon/safari-pinned-tab.svg create mode 100755 app/assets/images/favicon/site.webmanifest.erb create mode 100755 app/assets/images/saasbook.jpeg create mode 100755 app/assets/stylesheets/scaffold.css create mode 100755 app/assets/topojson/national/states/us-states.topo.json create mode 100755 app/assets/topojson/states/ak.topo.json create mode 100755 app/assets/topojson/states/al.topo.json create mode 100755 app/assets/topojson/states/ar.topo.json create mode 100755 app/assets/topojson/states/as.topo.json create mode 100755 app/assets/topojson/states/az.topo.json create mode 100755 app/assets/topojson/states/ca.topo.json create mode 100755 app/assets/topojson/states/co.topo.json create mode 100755 app/assets/topojson/states/ct.topo.json create mode 100755 app/assets/topojson/states/dc.topo.json create mode 100755 app/assets/topojson/states/de.topo.json create mode 100755 app/assets/topojson/states/fl.topo.json create mode 100755 app/assets/topojson/states/ga.topo.json create mode 100755 app/assets/topojson/states/gu.topo.json create mode 100755 app/assets/topojson/states/hi.topo.json create mode 100755 app/assets/topojson/states/ia.topo.json create mode 100755 app/assets/topojson/states/id.topo.json create mode 100755 app/assets/topojson/states/il.topo.json create mode 100755 app/assets/topojson/states/in.topo.json create mode 100755 app/assets/topojson/states/ks.topo.json create mode 100755 app/assets/topojson/states/ky.topo.json create mode 100755 app/assets/topojson/states/la.topo.json create mode 100755 app/assets/topojson/states/ma.topo.json create mode 100755 app/assets/topojson/states/md.topo.json create mode 100755 app/assets/topojson/states/me.topo.json create mode 100755 app/assets/topojson/states/mi.topo.json create mode 100755 app/assets/topojson/states/mn.topo.json create mode 100755 app/assets/topojson/states/mo.topo.json create mode 100755 app/assets/topojson/states/mp.topo.json create mode 100755 app/assets/topojson/states/ms.topo.json create mode 100755 app/assets/topojson/states/mt.topo.json create mode 100755 app/assets/topojson/states/nc.topo.json create mode 100755 app/assets/topojson/states/nd.topo.json create mode 100755 app/assets/topojson/states/ne.topo.json create mode 100755 app/assets/topojson/states/nh.topo.json create mode 100755 app/assets/topojson/states/nj.topo.json create mode 100755 app/assets/topojson/states/nm.topo.json create mode 100755 app/assets/topojson/states/nv.topo.json create mode 100755 app/assets/topojson/states/ny.topo.json create mode 100755 app/assets/topojson/states/oh.topo.json create mode 100755 app/assets/topojson/states/ok.topo.json create mode 100755 app/assets/topojson/states/or.topo.json create mode 100755 app/assets/topojson/states/pa.topo.json create mode 100755 app/assets/topojson/states/pr.topo.json create mode 100755 app/assets/topojson/states/ri.topo.json create mode 100755 app/assets/topojson/states/sc.topo.json create mode 100755 app/assets/topojson/states/sd.topo.json create mode 100755 app/assets/topojson/states/tn.topo.json create mode 100755 app/assets/topojson/states/tx.topo.json create mode 100755 app/assets/topojson/states/ut.topo.json create mode 100755 app/assets/topojson/states/va.topo.json create mode 100755 app/assets/topojson/states/vi.topo.json create mode 100755 app/assets/topojson/states/vt.topo.json create mode 100755 app/assets/topojson/states/wa.topo.json create mode 100755 app/assets/topojson/states/wi.topo.json create mode 100755 app/assets/topojson/states/wv.topo.json create mode 100755 app/assets/topojson/states/wy.topo.json create mode 100755 app/controllers/ajax_controller.rb create mode 100755 app/controllers/application_controller.rb create mode 100755 app/controllers/events_controller.rb create mode 100755 app/controllers/login_controller.rb create mode 100755 app/controllers/map_controller.rb create mode 100755 app/controllers/my_events_controller.rb create mode 100755 app/controllers/my_news_items_controller.rb create mode 100755 app/controllers/news_items_controller.rb create mode 100755 app/controllers/representatives_controller.rb create mode 100755 app/controllers/search_controller.rb create mode 100755 app/controllers/session_controller.rb create mode 100755 app/controllers/user_controller.rb create mode 100755 app/helpers/application_helper.rb create mode 100755 app/helpers/my_news_items_controller_helper.rb create mode 100755 app/helpers/news_item_helper.rb create mode 100755 app/helpers/ratings_helper.rb create mode 100755 app/helpers/representatives_helper.rb create mode 100755 app/helpers/session_helper.rb create mode 100755 app/javascript/packs/application.js create mode 100755 app/javascript/packs/county_map.js create mode 100755 app/javascript/packs/events_index.js create mode 100755 app/javascript/packs/events_new.js create mode 100755 app/javascript/packs/map_utils.js create mode 100755 app/javascript/packs/national_states_map.js create mode 100755 app/javascript/packs/state_county_filter_util.js create mode 100755 app/javascript/packs/state_map.js create mode 100755 app/javascript/packs/state_map_utils.js create mode 100755 app/javascript/stylesheets/application.scss create mode 100755 app/javascript/stylesheets/map.scss create mode 100755 app/jobs/application_job.rb create mode 100755 app/mailers/application_mailer.rb create mode 100755 app/models/application_record.rb create mode 100755 app/models/county.rb create mode 100755 app/models/event.rb create mode 100755 app/models/news_item.rb create mode 100755 app/models/representative.rb create mode 100755 app/models/state.rb create mode 100755 app/models/user.rb create mode 100755 app/views/application/_favicon.html.haml create mode 100755 app/views/events/index.html.haml create mode 100755 app/views/events/show.html.haml create mode 100755 app/views/layouts/_footer.html.haml create mode 100755 app/views/layouts/_navbar.html.haml create mode 100755 app/views/layouts/application.html.haml create mode 100755 app/views/layouts/mailer.html.haml create mode 100755 app/views/layouts/mailer.text.haml create mode 100755 app/views/login/login.html.haml create mode 100755 app/views/map/county.html.haml create mode 100755 app/views/map/index.html.haml create mode 100755 app/views/map/state.html.haml create mode 100755 app/views/my_events/_form.html.haml create mode 100755 app/views/my_events/edit.html.haml create mode 100755 app/views/my_events/new.html.haml create mode 100755 app/views/my_news_items/_form.html.haml create mode 100755 app/views/my_news_items/edit.html.haml create mode 100755 app/views/my_news_items/new.html.haml create mode 100755 app/views/news_items/index.html.haml create mode 100755 app/views/news_items/show.html.haml create mode 100755 app/views/representatives/index.html.haml create mode 100755 app/views/representatives/search.html.haml create mode 100755 app/views/shared/_flash_messages.html.haml create mode 100755 app/views/user/profile.html.haml create mode 100755 babel.config.js create mode 100755 bin/bundle create mode 100755 bin/rails create mode 100755 bin/rake create mode 100755 bin/setup create mode 100755 bin/spring create mode 100755 bin/update create mode 100755 bin/webpack create mode 100755 bin/webpack-dev-server create mode 100755 bin/yarn create mode 100755 config.ru create mode 100755 config/application.rb create mode 100755 config/boot.rb create mode 100755 config/cucumber.yml create mode 100755 config/database.yml create mode 100755 config/environment.rb create mode 100755 config/environments/development.rb create mode 100755 config/environments/production.rb create mode 100755 config/environments/test.rb create mode 100755 config/favicon.json create mode 100755 config/initializers/application_controller_renderer.rb create mode 100755 config/initializers/backtrace_silencers.rb create mode 100755 config/initializers/cookies_serializer.rb create mode 100755 config/initializers/filter_parameter_logging.rb create mode 100755 config/initializers/inflections.rb create mode 100755 config/initializers/mime_types.rb create mode 100755 config/initializers/omniauth.rb create mode 100755 config/initializers/web_app_manifest.rb create mode 100755 config/initializers/wrap_parameters.rb create mode 100755 config/locales/en.yml create mode 100755 config/puma.rb create mode 100755 config/routes.rb create mode 100755 config/spring.rb create mode 100755 config/storage.yml create mode 100755 config/webpack/development.js create mode 100755 config/webpack/environment.js create mode 100755 config/webpack/production.js create mode 100755 config/webpack/test.js create mode 100755 config/webpacker.yml create mode 100755 db/migrate/20200519225752_create_users.rb create mode 100755 db/migrate/20200519230125_create_states.rb create mode 100755 db/migrate/20200519230441_create_counties.rb create mode 100755 db/migrate/20200519231212_create_events.rb create mode 100755 db/migrate/20200520030218_create_representatives.rb create mode 100755 db/migrate/20200614064017_add_uid_provider_index_to_users.rb create mode 100755 db/migrate/20200616205245_create_news_items.rb create mode 100755 db/migrate/20200728065604_add_columns_to_representatives.rb create mode 100755 db/schema.rb create mode 100755 db/seed_data.rb create mode 100755 db/seeds.rb create mode 120000 docs/Checkpoint-1-Spec-1a05.md create mode 120000 docs/Checkpoint-2-Spec-2684.md create mode 120000 docs/Checkpoint-3-Spec-b9c9.md create mode 120000 docs/Credentials-Management--Heroku--and-Travis-CI-6b5d.md create mode 120000 docs/End-of-Iteration-1-b43f.md create mode 120000 docs/End-of-Iteration-2-3d4f.md create mode 120000 docs/Getting-Started-a6c3.md create mode 120000 docs/Intro-23fe.md create mode 120000 docs/Iteration-Instructions-581b.md create mode 120000 docs/Linters-ef5d.md create mode 100644 docs/README.md create mode 100644 features/step_definitions/.gitkeep create mode 100644 features/step_definitions/web_steps.rb create mode 100755 features/support/env.rb create mode 100644 features/support/paths.rb create mode 100644 features/support/selectors.rb create mode 100755 lib/assets/counties_fips_data/ak.json create mode 100755 lib/assets/counties_fips_data/al.json create mode 100755 lib/assets/counties_fips_data/ar.json create mode 100755 lib/assets/counties_fips_data/as.json create mode 100755 lib/assets/counties_fips_data/az.json create mode 100755 lib/assets/counties_fips_data/ca.json create mode 100755 lib/assets/counties_fips_data/co.json create mode 100755 lib/assets/counties_fips_data/ct.json create mode 100755 lib/assets/counties_fips_data/dc.json create mode 100755 lib/assets/counties_fips_data/de.json create mode 100755 lib/assets/counties_fips_data/fl.json create mode 100755 lib/assets/counties_fips_data/ga.json create mode 100755 lib/assets/counties_fips_data/gu.json create mode 100755 lib/assets/counties_fips_data/hi.json create mode 100755 lib/assets/counties_fips_data/ia.json create mode 100755 lib/assets/counties_fips_data/id.json create mode 100755 lib/assets/counties_fips_data/il.json create mode 100755 lib/assets/counties_fips_data/in.json create mode 100755 lib/assets/counties_fips_data/ks.json create mode 100755 lib/assets/counties_fips_data/ky.json create mode 100755 lib/assets/counties_fips_data/la.json create mode 100755 lib/assets/counties_fips_data/ma.json create mode 100755 lib/assets/counties_fips_data/md.json create mode 100755 lib/assets/counties_fips_data/me.json create mode 100755 lib/assets/counties_fips_data/mi.json create mode 100755 lib/assets/counties_fips_data/mn.json create mode 100755 lib/assets/counties_fips_data/mo.json create mode 100755 lib/assets/counties_fips_data/mp.json create mode 100755 lib/assets/counties_fips_data/ms.json create mode 100755 lib/assets/counties_fips_data/mt.json create mode 100755 lib/assets/counties_fips_data/nc.json create mode 100755 lib/assets/counties_fips_data/nd.json create mode 100755 lib/assets/counties_fips_data/ne.json create mode 100755 lib/assets/counties_fips_data/nh.json create mode 100755 lib/assets/counties_fips_data/nj.json create mode 100755 lib/assets/counties_fips_data/nm.json create mode 100755 lib/assets/counties_fips_data/nv.json create mode 100755 lib/assets/counties_fips_data/ny.json create mode 100755 lib/assets/counties_fips_data/oh.json create mode 100755 lib/assets/counties_fips_data/ok.json create mode 100755 lib/assets/counties_fips_data/or.json create mode 100755 lib/assets/counties_fips_data/pa.json create mode 100755 lib/assets/counties_fips_data/pr.json create mode 100755 lib/assets/counties_fips_data/ri.json create mode 100755 lib/assets/counties_fips_data/sc.json create mode 100755 lib/assets/counties_fips_data/sd.json create mode 100755 lib/assets/counties_fips_data/tn.json create mode 100755 lib/assets/counties_fips_data/tx.json create mode 100755 lib/assets/counties_fips_data/ut.json create mode 100755 lib/assets/counties_fips_data/va.json create mode 100755 lib/assets/counties_fips_data/vi.json create mode 100755 lib/assets/counties_fips_data/vt.json create mode 100755 lib/assets/counties_fips_data/wa.json create mode 100755 lib/assets/counties_fips_data/wi.json create mode 100755 lib/assets/counties_fips_data/wv.json create mode 100755 lib/assets/counties_fips_data/wy.json create mode 100755 lib/task_helpers/national_shapefile_request.rb create mode 100755 lib/task_helpers/state_consistency_checker.rb create mode 100755 lib/task_helpers/state_fips_task_helper.rb create mode 100755 lib/task_helpers/state_shapefile_request.rb create mode 100755 lib/task_helpers/task_helper.rb create mode 100755 lib/task_helpers/topojson_task_helper.rb create mode 100755 lib/tasks/cucumber.rake create mode 100755 lib/tasks/national.rake create mode 100755 lib/tasks/states.rake create mode 100755 package.json create mode 100755 postcss.config.js create mode 100755 public/404.html create mode 100755 public/422.html create mode 100755 public/500.html create mode 100644 public/apple-touch-icon-precomposed.png create mode 100644 public/apple-touch-icon.png create mode 100644 public/favicon.ico create mode 100755 public/robots.txt create mode 100755 script/cucumber create mode 100755 spec/linters/eslint_spec.rb create mode 100755 spec/linters/haml_lint_spec.rb create mode 100755 spec/linters/rubocop_spec.rb create mode 100755 spec/rails_helper.rb create mode 100755 spec/spec_helper.rb create mode 100755 yarn.lock diff --git a/.browserslistrc b/.browserslistrc new file mode 100644 index 00000000..a623956e --- /dev/null +++ b/.browserslistrc @@ -0,0 +1,2 @@ +defaults + diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..eac146fc --- /dev/null +++ b/.editorconfig @@ -0,0 +1,22 @@ + +# EditorConfig helps developers define and maintain consistent +# coding styles between different editors and IDEs +# editorconfig.org + +root = true + +[*] + +# We recommend you to keep these unchanged +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +# Change these settings to your own preference +indent_style = space +indent_size = 4 + +[*.md] +trim_trailing_whitespace = false + diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 00000000..f32018bb --- /dev/null +++ b/.eslintignore @@ -0,0 +1,3 @@ +/node_modules/* +/public/* +postcss.config.js diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 00000000..09ee62e2 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,24 @@ + +module.exports = { + env: { + browser: true, + commonjs: true, + es6: true, + jquery: true + }, + extends: [ + 'airbnb-base' + ], + globals: { + Atomics: 'readonly', + SharedArrayBuffer: 'readonly', + }, + parserOptions: { + ecmaVersion: 2018, + }, + rules: { + indent: ['error', 4], + 'linebreak-style': ['error', 'unix'], + }, +}; + diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 00000000..39655548 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,19 @@ + + +## Describe the issue + +Is this a... ?: +- [ ] Feature +- [ ] Bug +- [ ] Chore + +... + +## Are there any blockers or related stories? + + +### Checklist + +- [ ] Fillout the GitHub Tags / Assign to teammates when ready +- [ ] Is this a 1-point story? If not, note why above +- [ ] Has this story been prioritized? (Go to the project board) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..3ebca968 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,24 @@ +## What does this PR do? + + + +### Who else worked on this? + + +## How should this be tested? + +- [ ] Are there rspec tests? (Or are they not needed? Why?) +- [ ] Are there cucumber tests? (Or are they not needed? Why?) + + + +## Is there anything that needs special attention? + + + +### Checklist + +- [ ] Assign someone to review +- [ ] CI is all Green / Passing +- [ ] Resolved all code linter comments, review comments, etc. +- [ ] Is `main` up to date? Is there rebasing / merging needed? diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml new file mode 100644 index 00000000..7e5b513e --- /dev/null +++ b/.github/workflows/linters.yml @@ -0,0 +1,24 @@ +name: Code Linters +on: + - pull_request + - workflow_dispatch + +jobs: + pronto: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + - name: Install pronto + run: bundle install --without default development test production + - name: Run Pronto + run: bundle exec pronto run -f github_combined_status github_pr_review -c origin/${{ github.base_ref }} + env: + PRONTO_PULL_REQUEST_ID: ${{ github.event.pull_request.number }} + PRONTO_GITHUB_ACCESS_TOKEN: "${{ github.token }}" diff --git a/.github/workflows/specs.yml b/.github/workflows/specs.yml new file mode 100644 index 00000000..078783aa --- /dev/null +++ b/.github/workflows/specs.yml @@ -0,0 +1,37 @@ +name: All Specs +on: + - push + - pull_request + - workflow_dispatch + +jobs: + # TODO: Environment variables? + build: + runs-on: '${{ matrix.os }}' + strategy: + matrix: + os: + - ubuntu-18.04 + steps: + - name: Cache multiple paths + uses: actions/cache@v2 + with: + path: |- + node_modules + vendor/bundle + key: '${{ runner.os }}-${{ hashFiles(''TODO'') }}' + - uses: actions/checkout@v2 + - uses: actions/setup-node@v3 + with: + node-version: 12.13.1 + - uses: ruby/setup-ruby@v1 + with: + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + - run: gem install bundler:2.1.4 + - run: npm install -g yarn@1.22.4 + - run: bundle install + - run: yarn install + - run: bundle exec rake db:setup + - run: bundle exec rake db:test:prepare + - run: bundle exec rspec + - run: CUCUMBER_PUBLISH_QUIET=true bundle exec cucumber diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..0b5b8af6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,81 @@ + +*.rbc +capybara-*.html +.rspec +/db/*.sqlite3 +/db/*.sqlite3-journal +/db/*.sqlite3-[0-9]* +/public/system +/coverage/ +/spec/tmp +*.orig +rerun.txt +pickle-email-*.html + +# Ignore all logfiles and tempfiles. +/log/* +/tmp/* +!/log/.keep +!/tmp/.keep + +# Note: It is not OK to publish secrets in repo, use figaro instead. +config/initializers/secret_token.rb +config/master.key + +# Only include if you have production secrets in this file, which is no longer a Rails default +# config/secrets.yml + +# dotenv, dotenv-rails +# TODO Comment out these rules if environment variables can be committed +.env +.env.* + +## Environment normalization: +/.bundle +/vendor/bundle + +# these should all be checked in to normalize the environment: +# Gemfile.lock, .ruby-version, .ruby-gemset + +# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: +.rvmrc + +# Ignore erb files generated by rails_real_favicon +# Instead use `bundle exec rails haml:erb2haml app/views/application/_favicon.html.erb` to convert to haml. +app/views/application/_favicon.html.erb + +# if using bower-rails ignore default bower_components path bower.json files +/vendor/assets/bower_components +*.bowerrc +bower.json + +# Ignore pow environment settings +.powenv + +# Ignore Byebug command history file. +.byebug_history + +# Ignore node_modules +/node_modules + +# Use yarn instead of npm +package-lock.json + +# Ignore precompiled javascript packs +/public/packs +/public/packs-test +/public/assets + +# Ignore yarn files +/yarn-error.log +yarn-debug.log* +.yarn-integrity + +# Ignore uploaded files in development +/storage/* +!/storage/.keep +/public/uploads + + +# Ignore master key for decrypting credentials and more. +/config/master.key diff --git a/.haml-lint.yml b/.haml-lint.yml new file mode 100644 index 00000000..69697d17 --- /dev/null +++ b/.haml-lint.yml @@ -0,0 +1,13 @@ + +linters: + LineLength: + max: 120 + severity: error + Indentation: # For consistency with default rubocop rules. + character: space + width: 4 + severity: error +exclude: + - 'node_modules/**/*' + - 'vendor/**/*' + diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 00000000..3fe4a045 --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,137 @@ +# This file defines all the linter rules for the project. +# See the list of the rules which are called "cops" +# https://docs.rubocop.org/rubocop/cops.html +# https://docs.rubocop.org/rubocop-rails/cops_rails.html + +# These configurations are *largely* the rubocop defaults. +# We've relaxed some configurations that may be harder to meet while +# you are learning. + +# rubocop allows us to go simply beyond code formatting and also focus on +# best practices, like code complexity. + +require: + - rubocop-rails + - rubocop-rspec + +AllCops: + NewCops: enable + TargetRubyVersion: 2.6 + Exclude: + - bin/* + - config/routes.rb + - db/schema.rb + - db/seed_data.rb + - db/seeds.rb + - features/step_definitions/web_steps.rb + - features/support/paths.rb + - features/support/selectors.rb + - Guardfile + - lib/tasks/cucumber.rake + - node_modules/**/* + - vendor/**/* + +Layout/EndOfLine: + EnforcedStyle: lf + +Lint/AmbiguousRegexpLiteral: + Exclude: + - features/step_definitions/* + +Style/CommentAnnotation: + Keywords: + - CS169 + - ACTION-MAP + - TODO + - HACK + - REVIEW + +Rails: + Enabled: true + +Gemspec/RequiredRubyVersion: + Enabled: true + +Layout/EmptyLineAfterGuardClause: + Enabled: true + +# No space makes the method definition shorter and differentiates +# from a regular assignment. +Layout/SpaceAroundEqualsInParameterDefault: + EnforcedStyle: no_space + +# Most readable form. +Layout/HashAlignment: + EnforcedHashRocketStyle: table + EnforcedColonStyle: table + +Layout/LineLength: + Max: 120 + +Lint/RaiseException: + Enabled: true + +Lint/StructNewOverride: + Enabled: true + +# https://docs.rubocop.org/rubocop/cops_metrics.html#metricsabcsize +Metrics/AbcSize: + Max: 30 + Enabled: true + +Metrics/BlockLength: + IgnoredMethods: + - describe + - context + - shared_examples + - namespace + - ActiveRecord::Schema.define + +# Skips style of child classes and modules. +Style/ClassAndModuleChildren: + Enabled: false + +Style/CollectionMethods: + Enabled: true + PreferredMethods: + reduce: "inject" + +Style/Documentation: + Enabled: false + +Style/HashEachMethods: + Enabled: true + AutoCorrect: false # Unsafe autocorrect + +Style/HashTransformKeys: + Enabled: true + AutoCorrect: false # Unsafe autocorrect + +Style/HashTransformValues: + Enabled: true + AutoCorrect: false # Unsafe autocorrect + +# Mixing the styles looks just silly. +Style/HashSyntax: + EnforcedStyle: ruby19_no_mixed_keys + +# has_key? and has_value? are far more readable than key? and value? +Style/PreferredHashMethods: + EnforcedStyle: verbose + +Metrics/MethodLength: + Max: 20 + +RSpec/InstanceVariable: + Enabled: false + +RSpec/DescribeClass: + Exclude: + - spec/linters/* + +# Ideally, you'd want no more than 2. +RSpec/MultipleExpectations: + Max: 4 + +RSpec/RepeatedExample: + Enabled: false diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 00000000..338a5b5d --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +2.6.6 diff --git a/Gemfile b/Gemfile new file mode 100755 index 00000000..319e8c1b --- /dev/null +++ b/Gemfile @@ -0,0 +1,107 @@ +# frozen_string_literal: true + +source 'https://rubygems.org' +git_source(:github) { |repo| "https://github.com/#{repo}.git" } + +ruby '2.6.6' # Make sure that this matches .ruby-version file. + +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '5.2.8.1' +# Use Puma as the app server +gem 'puma' + +# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker +# Note: Pin the webpacker version to the same version used in package.json +gem 'webpacker', '5.1.1' +# Use assets pipeline to serve topojson files. +gem 'sprockets', '4.0.0' + +# Use ActiveModel has_secure_password +# gem 'bcrypt', '~> 3.1.7' + +# Use third party sign on authenticate users +gem 'omniauth', github: 'omniauth/omniauth' +gem 'omniauth-github' +gem 'omniauth-google-oauth2' +gem 'omniauth-rails_csrf_protection' + +# Use Haml instead of erb +gem 'haml-rails' + +# Google Civic Client +gem 'google-api-client', '~> 0.34' + +# Use ActiveStorage variant +# gem 'mini_magick', '~> 4.8' + +# Reduces boot times through caching; required in config/boot.rb +gem 'bootsnap', '>= 1.1.0', require: false + +# Even though this gem is only required for rake tasks, heroku needs it to run +# pre-receive rake tasks hook so it is included for production environment. +gem 'rubyzip' + +gem 'date_validator' + +group :development, :test do + gem 'axe-core-cucumber' + gem 'axe-core-rspec' + gem 'cucumber-rails', require: false + gem 'database_cleaner' + gem 'factory_bot' + gem 'rails-controller-testing' + gem 'rspec-rails' + gem 'sqlite3' + + # Guard Plugins + gem 'guard' + gem 'guard-cucumber', require: false + gem 'guard-rspec', require: false + gem 'guard-rubocop', require: false + + # Generate different sizes of favicon from a single image. + gem 'rails_real_favicon' + + # Report coverage. + gem 'codecov', require: false + gem 'simplecov' +end + +# Define a group which includes 'linters' +# This allows you to install just the linter gems in certain environments. +group :development, :test, :linters do + # Call 'byebug' anywhere in the code to stop execution and get a debugger console + # You may which to move these to the "default" group to use in production. + gem 'byebug' + gem 'pry' + gem 'pry-byebug' + + # Linters and static analysis. + gem 'haml-lint', require: false + # Tool to run all the linters + gem 'pronto', require: false + gem 'pronto-flay', require: false + gem 'pronto-haml', require: false + gem 'pronto-rubocop', require: false + gem 'rubocop', require: false + gem 'rubocop-faker', require: false + gem 'rubocop-rails', require: false + gem 'rubocop-rspec', require: false +end + +group :development do + # Access an interactive console on exception pages or by calling 'console' anywhere in the code. + gem 'listen', '>= 3.0.5', '< 3.2' + gem 'web-console', '>= 3.3.0' + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' + gem 'spring-watcher-listen', '~> 2.0.0' +end + +group :production do + # Use postgresql as the database for Active Record in production (Heroku) + gem 'pg', '>= 0.18', '< 2.0' +end + +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby] diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 00000000..f1b6d336 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,572 @@ +GIT + remote: https://github.com/omniauth/omniauth.git + revision: a13cd110beb9538ea51be6c614bf43351c3f4e95 + specs: + omniauth (2.1.1) + hashie (>= 3.4.6) + rack (>= 2.2.3) + rack-protection + +GEM + remote: https://rubygems.org/ + specs: + actioncable (5.2.8.1) + actionpack (= 5.2.8.1) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + actionmailer (5.2.8.1) + actionpack (= 5.2.8.1) + actionview (= 5.2.8.1) + activejob (= 5.2.8.1) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 2.0) + actionpack (5.2.8.1) + actionview (= 5.2.8.1) + activesupport (= 5.2.8.1) + rack (~> 2.0, >= 2.0.8) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (5.2.8.1) + activesupport (= 5.2.8.1) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activejob (5.2.8.1) + activesupport (= 5.2.8.1) + globalid (>= 0.3.6) + activemodel (5.2.8.1) + activesupport (= 5.2.8.1) + activerecord (5.2.8.1) + activemodel (= 5.2.8.1) + activesupport (= 5.2.8.1) + arel (>= 9.0) + activestorage (5.2.8.1) + actionpack (= 5.2.8.1) + activerecord (= 5.2.8.1) + marcel (~> 1.0.0) + activesupport (5.2.8.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + addressable (2.8.0) + public_suffix (>= 2.0.2, < 5.0) + arel (9.0.0) + ast (2.4.2) + axe-core-api (4.8.0) + dumb_delegator + virtus + axe-core-cucumber (4.8.0) + axe-core-api + dumb_delegator + virtus + axe-core-rspec (4.8.0) + axe-core-api + dumb_delegator + virtus + axiom-types (0.1.1) + descendants_tracker (~> 0.0.4) + ice_nine (~> 0.11.0) + thread_safe (~> 0.3, >= 0.3.1) + bindex (0.8.1) + bootsnap (1.9.1) + msgpack (~> 1.0) + builder (3.2.4) + byebug (11.1.3) + capybara (3.36.0) + addressable + matrix + mini_mime (>= 0.1.3) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (>= 1.5, < 3.0) + xpath (~> 3.2) + codecov (0.6.0) + simplecov (>= 0.15, < 0.22) + coderay (1.1.3) + coercible (1.0.0) + descendants_tracker (~> 0.0.1) + concurrent-ruby (1.1.10) + crass (1.0.6) + cucumber (7.1.0) + builder (~> 3.2, >= 3.2.4) + cucumber-core (~> 10.1, >= 10.1.0) + cucumber-create-meta (~> 6.0, >= 6.0.1) + cucumber-cucumber-expressions (~> 14.0, >= 14.0.0) + cucumber-gherkin (~> 22.0, >= 22.0.0) + cucumber-html-formatter (~> 17.0, >= 17.0.0) + cucumber-messages (~> 17.1, >= 17.1.1) + cucumber-wire (~> 6.2, >= 6.2.0) + diff-lcs (~> 1.4, >= 1.4.4) + mime-types (~> 3.3, >= 3.3.1) + multi_test (~> 0.1, >= 0.1.2) + sys-uname (~> 1.2, >= 1.2.2) + cucumber-core (10.1.1) + cucumber-gherkin (~> 22.0, >= 22.0.0) + cucumber-messages (~> 17.1, >= 17.1.1) + cucumber-tag-expressions (~> 4.1, >= 4.1.0) + cucumber-create-meta (6.0.2) + cucumber-messages (~> 17.1, >= 17.1.1) + sys-uname (~> 1.2, >= 1.2.2) + cucumber-cucumber-expressions (14.0.0) + cucumber-gherkin (22.0.0) + cucumber-messages (~> 17.1, >= 17.1.1) + cucumber-html-formatter (17.0.0) + cucumber-messages (~> 17.1, >= 17.1.0) + cucumber-messages (17.1.1) + cucumber-rails (2.4.0) + capybara (>= 2.18, < 4) + cucumber (>= 3.2, < 8) + mime-types (~> 3.3) + nokogiri (~> 1.10) + railties (>= 5.0, < 7) + rexml (~> 3.0) + webrick (~> 1.7) + cucumber-tag-expressions (4.1.0) + cucumber-wire (6.2.0) + cucumber-core (~> 10.1, >= 10.1.0) + cucumber-cucumber-expressions (~> 14.0, >= 14.0.0) + cucumber-messages (~> 17.1, >= 17.1.1) + database_cleaner (2.0.1) + database_cleaner-active_record (~> 2.0.0) + database_cleaner-active_record (2.0.1) + activerecord (>= 5.a) + database_cleaner-core (~> 2.0.0) + database_cleaner-core (2.0.1) + date_validator (0.12.0) + activemodel (>= 3) + activesupport (>= 3) + declarative (0.0.20) + descendants_tracker (0.0.4) + thread_safe (~> 0.3, >= 0.3.1) + diff-lcs (1.4.4) + docile (1.4.0) + dumb_delegator (1.0.0) + erubi (1.11.0) + erubis (2.7.0) + factory_bot (6.2.1) + activesupport (>= 5.0.0) + faker (2.22.0) + i18n (>= 1.8.11, < 2) + faraday (1.8.0) + faraday-em_http (~> 1.0) + faraday-em_synchrony (~> 1.0) + faraday-excon (~> 1.1) + faraday-httpclient (~> 1.0.1) + faraday-net_http (~> 1.0) + faraday-net_http_persistent (~> 1.1) + faraday-patron (~> 1.0) + faraday-rack (~> 1.0) + multipart-post (>= 1.2, < 3) + ruby2_keywords (>= 0.0.4) + faraday-em_http (1.0.0) + faraday-em_synchrony (1.0.0) + faraday-excon (1.1.0) + faraday-httpclient (1.0.1) + faraday-net_http (1.0.1) + faraday-net_http_persistent (1.2.0) + faraday-patron (1.0.0) + faraday-rack (1.0.0) + ffi (1.15.5) + flay (2.13.0) + erubi (~> 1.10) + path_expander (~> 1.0) + ruby_parser (~> 3.0) + sexp_processor (~> 4.0) + formatador (0.3.0) + gems (1.2.0) + gitlab (4.17.0) + httparty (~> 0.18) + terminal-table (~> 1.5, >= 1.5.1) + globalid (1.0.0) + activesupport (>= 5.0) + google-api-client (0.53.0) + google-apis-core (~> 0.1) + google-apis-generator (~> 0.1) + google-apis-core (0.4.1) + addressable (~> 2.5, >= 2.5.1) + googleauth (>= 0.16.2, < 2.a) + httpclient (>= 2.8.1, < 3.a) + mini_mime (~> 1.0) + representable (~> 3.0) + retriable (>= 2.0, < 4.a) + rexml + webrick + google-apis-discovery_v1 (0.7.0) + google-apis-core (>= 0.4, < 2.a) + google-apis-generator (0.4.0) + activesupport (>= 5.0) + gems (~> 1.2) + google-apis-core (>= 0.4, < 2.a) + google-apis-discovery_v1 (~> 0.5) + thor (>= 0.20, < 2.a) + googleauth (1.1.0) + faraday (>= 0.17.3, < 2.0) + jwt (>= 1.4, < 3.0) + memoist (~> 0.16) + multi_json (~> 1.11) + os (>= 0.9, < 2.0) + signet (>= 0.16, < 2.a) + guard (2.18.0) + formatador (>= 0.2.4) + listen (>= 2.7, < 4.0) + lumberjack (>= 1.0.12, < 2.0) + nenv (~> 0.1) + notiffany (~> 0.0) + pry (>= 0.13.0) + shellany (~> 0.0) + thor (>= 0.18.1) + guard-compat (1.2.1) + guard-cucumber (3.0.0) + cucumber (>= 3.1) + nenv (>= 0.1) + guard-rspec (4.7.3) + guard (~> 2.1) + guard-compat (~> 1.1) + rspec (>= 2.99.0, < 4.0) + guard-rubocop (1.5.0) + guard (~> 2.0) + rubocop (< 2.0) + haml (5.2.2) + temple (>= 0.8.0) + tilt + haml-lint (0.999.999) + haml_lint + haml-rails (2.0.1) + actionpack (>= 5.1) + activesupport (>= 5.1) + haml (>= 4.0.6, < 6.0) + html2haml (>= 1.0.1) + railties (>= 5.1) + haml_lint (0.42.0) + haml (>= 4.0, < 6.1) + parallel (~> 1.10) + rainbow + rubocop (>= 0.50.0) + sysexits (~> 1.1) + hashie (5.0.0) + html2haml (2.2.0) + erubis (~> 2.7.0) + haml (>= 4.0, < 6) + nokogiri (>= 1.6.0) + ruby_parser (~> 3.5) + httparty (0.18.1) + mime-types (~> 3.0) + multi_xml (>= 0.5.2) + httpclient (2.8.3) + i18n (1.12.0) + concurrent-ruby (~> 1.0) + ice_nine (0.11.2) + json (2.6.2) + jwt (2.3.0) + listen (3.1.5) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + ruby_dep (~> 1.2) + loofah (2.19.0) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + lumberjack (1.2.8) + mail (2.7.1) + mini_mime (>= 0.1.1) + marcel (1.0.2) + matrix (0.4.2) + memoist (0.16.2) + method_source (1.0.0) + mime-types (3.3.1) + mime-types-data (~> 3.2015) + mime-types-data (3.2021.0901) + mini_mime (1.1.2) + mini_portile2 (2.8.0) + minitest (5.16.3) + msgpack (1.4.2) + multi_json (1.15.0) + multi_test (0.1.2) + multi_xml (0.6.0) + multipart-post (2.1.1) + nenv (0.3.0) + nio4r (2.5.8) + nokogiri (1.13.9) + mini_portile2 (~> 2.8.0) + racc (~> 1.4) + notiffany (0.1.3) + nenv (~> 0.1) + shellany (~> 0.0) + oauth2 (1.4.7) + faraday (>= 0.8, < 2.0) + jwt (>= 1.0, < 3.0) + multi_json (~> 1.3) + multi_xml (~> 0.5) + rack (>= 1.2, < 3) + octokit (4.22.0) + faraday (>= 0.9) + sawyer (~> 0.8.0, >= 0.5.3) + omniauth-github (2.0.0) + omniauth (~> 2.0) + omniauth-oauth2 (~> 1.7.1) + omniauth-google-oauth2 (1.0.0) + jwt (>= 2.0) + oauth2 (~> 1.1) + omniauth (~> 2.0) + omniauth-oauth2 (~> 1.7.1) + omniauth-oauth2 (1.7.2) + oauth2 (~> 1.4) + omniauth (>= 1.9, < 3) + omniauth-rails_csrf_protection (1.0.0) + actionpack (>= 4.2) + omniauth (~> 2.0) + os (1.1.4) + parallel (1.21.0) + parser (3.0.2.0) + ast (~> 2.4.1) + path_expander (1.1.1) + pg (1.2.3) + pronto (0.11.0) + gitlab (~> 4.4, >= 4.4.0) + httparty (>= 0.13.7) + octokit (~> 4.7, >= 4.7.0) + rainbow (>= 2.2, < 4.0) + rexml (~> 3.2) + rugged (>= 0.23.0, < 1.1.0) + thor (>= 0.20.3, < 2.0) + pronto-flay (0.11.1) + flay (~> 2.8) + pronto (~> 0.11.0) + pronto-haml (0.11.1) + haml_lint (~> 0.23) + pronto (~> 0.11.0) + pronto-rubocop (0.11.2) + pronto (~> 0.11.0) + rubocop (>= 0.63.1, < 2.0) + pry (0.14.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-byebug (3.8.0) + byebug (~> 11.0) + pry (~> 0.10) + public_suffix (4.0.6) + puma (6.0.0) + nio4r (~> 2.0) + racc (1.6.0) + rack (2.2.8) + rack-protection (3.1.0) + rack (~> 2.2, >= 2.2.4) + rack-proxy (0.7.0) + rack + rack-test (2.0.2) + rack (>= 1.3) + rails (5.2.8.1) + actioncable (= 5.2.8.1) + actionmailer (= 5.2.8.1) + actionpack (= 5.2.8.1) + actionview (= 5.2.8.1) + activejob (= 5.2.8.1) + activemodel (= 5.2.8.1) + activerecord (= 5.2.8.1) + activestorage (= 5.2.8.1) + activesupport (= 5.2.8.1) + bundler (>= 1.3.0) + railties (= 5.2.8.1) + sprockets-rails (>= 2.0.0) + rails-controller-testing (1.0.5) + actionpack (>= 5.0.1.rc1) + actionview (>= 5.0.1.rc1) + activesupport (>= 5.0.1.rc1) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.4.3) + loofah (~> 2.3) + rails_real_favicon (0.1.1) + json (>= 1.7, < 3) + rails + rubyzip (~> 2) + railties (5.2.8.1) + actionpack (= 5.2.8.1) + activesupport (= 5.2.8.1) + method_source + rake (>= 0.8.7) + thor (>= 0.19.0, < 2.0) + rainbow (3.0.0) + rake (13.0.6) + rb-fsevent (0.11.0) + rb-inotify (0.10.1) + ffi (~> 1.0) + regexp_parser (2.1.1) + representable (3.1.1) + declarative (< 0.1.0) + trailblazer-option (>= 0.1.1, < 0.2.0) + uber (< 0.2.0) + retriable (3.1.2) + rexml (3.2.5) + rspec (3.10.0) + rspec-core (~> 3.10.0) + rspec-expectations (~> 3.10.0) + rspec-mocks (~> 3.10.0) + rspec-core (3.10.2) + rspec-support (~> 3.10.0) + rspec-expectations (3.10.2) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.10.0) + rspec-mocks (3.10.3) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.10.0) + rspec-rails (5.0.3) + actionpack (>= 5.2) + activesupport (>= 5.2) + railties (>= 5.2) + rspec-core (~> 3.10) + rspec-expectations (~> 3.10) + rspec-mocks (~> 3.10) + rspec-support (~> 3.10) + rspec-support (3.10.3) + rubocop (1.22.3) + parallel (~> 1.10) + parser (>= 3.0.0.0) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml + rubocop-ast (>= 1.12.0, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 3.0) + rubocop-ast (1.13.0) + parser (>= 3.0.1.1) + rubocop-faker (1.1.0) + faker (>= 2.12.0) + rubocop (>= 0.82.0) + rubocop-rails (2.12.4) + activesupport (>= 4.2.0) + rack (>= 1.1) + rubocop (>= 1.7.0, < 2.0) + rubocop-rspec (2.11.1) + rubocop (~> 1.19) + ruby-progressbar (1.11.0) + ruby2_keywords (0.0.5) + ruby_dep (1.5.0) + ruby_parser (3.18.1) + sexp_processor (~> 4.16) + rubyzip (2.3.2) + rugged (1.0.1) + sawyer (0.8.2) + addressable (>= 2.3.5) + faraday (> 0.8, < 2.0) + semantic_range (3.0.0) + sexp_processor (4.16.0) + shellany (0.0.1) + signet (0.16.0) + addressable (~> 2.8) + faraday (>= 0.17.3, < 2.0) + jwt (>= 1.5, < 3.0) + multi_json (~> 1.10) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + spring (2.1.1) + spring-watcher-listen (2.0.1) + listen (>= 2.7, < 4.0) + spring (>= 1.2, < 3.0) + sprockets (4.0.0) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.4.2) + actionpack (>= 5.2) + activesupport (>= 5.2) + sprockets (>= 3.0.0) + sqlite3 (1.4.2) + sys-uname (1.2.2) + ffi (~> 1.1) + sysexits (1.2.0) + temple (0.8.2) + terminal-table (1.8.0) + unicode-display_width (~> 1.1, >= 1.1.1) + thor (1.2.1) + thread_safe (0.3.6) + tilt (2.0.11) + trailblazer-option (0.1.2) + tzinfo (1.2.10) + thread_safe (~> 0.1) + uber (0.1.0) + unicode-display_width (1.6.1) + virtus (2.0.0) + axiom-types (~> 0.1) + coercible (~> 1.0) + descendants_tracker (~> 0.0, >= 0.0.3) + web-console (3.7.0) + actionview (>= 5.0) + activemodel (>= 5.0) + bindex (>= 0.4.0) + railties (>= 5.0) + webpacker (5.1.1) + activesupport (>= 5.2) + rack-proxy (>= 0.6.1) + railties (>= 5.2) + semantic_range (>= 2.3.0) + webrick (1.7.0) + websocket-driver (0.7.5) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) + xpath (3.2.0) + nokogiri (~> 1.8) + +PLATFORMS + ruby + +DEPENDENCIES + axe-core-cucumber + axe-core-rspec + bootsnap (>= 1.1.0) + byebug + codecov + cucumber-rails + database_cleaner + date_validator + factory_bot + google-api-client (~> 0.34) + guard + guard-cucumber + guard-rspec + guard-rubocop + haml-lint + haml-rails + listen (>= 3.0.5, < 3.2) + omniauth! + omniauth-github + omniauth-google-oauth2 + omniauth-rails_csrf_protection + pg (>= 0.18, < 2.0) + pronto + pronto-flay + pronto-haml + pronto-rubocop + pry + pry-byebug + puma + rails (= 5.2.8.1) + rails-controller-testing + rails_real_favicon + rspec-rails + rubocop + rubocop-faker + rubocop-rails + rubocop-rspec + rubyzip + simplecov + spring + spring-watcher-listen (~> 2.0.0) + sprockets (= 4.0.0) + sqlite3 + tzinfo-data + web-console (>= 3.3.0) + webpacker (= 5.1.1) + +RUBY VERSION + ruby 2.6.6p146 + +BUNDLED WITH + 2.3.24 diff --git a/Guardfile b/Guardfile new file mode 100755 index 00000000..21035e67 --- /dev/null +++ b/Guardfile @@ -0,0 +1,102 @@ +# frozen_string_literal: true + +# A sample Guardfile +# More info at https://github.com/guard/guard#readme + +## Uncomment and set this to only include directories you want to watch +# directories %w(app lib config test spec features) \ +# .select{|d| Dir.exist?(d) ? d : UI.warning("Directory #{d} does not exist")} + +## Note: if you are using the `directories` clause above and you are not +## watching the project directory ('.'), then you will want to move +## the Guardfile to a watched dir and symlink it back, e.g. +# +# $ mkdir config +# $ mv Guardfile config/ +# $ ln -s config/Guardfile . +# +# and, you'll have to watch "config/Guardfile" instead of "Guardfile" + +# Note: The cmd option is now required due to the increasing number of ways +# rspec may be run, below are examples of the most common uses. +# * bundler: 'bundle exec rspec' +# * bundler binstubs: 'bin/rspec' +# * spring: 'bin/rspec' (This will use spring if running and you have +# installed the spring binstubs per the docs) +# * zeus: 'zeus rspec' (requires the server to be started separately) +# * 'just' rspec: 'rspec' + +guard :rspec, cmd: 'bundle exec rspec' do + require 'guard/rspec/dsl' + dsl = Guard::RSpec::Dsl.new(self) + + # Feel free to open issues for suggestions and improvements + + # RSpec files + rspec = dsl.rspec + watch(rspec.spec_helper) { rspec.spec_dir } + watch(rspec.spec_support) { rspec.spec_dir } + watch(rspec.spec_files) + + # Ruby files + ruby = dsl.ruby + dsl.watch_spec_files_for(ruby.lib_files) + + # Rails files + rails = dsl.rails(view_extensions: %w[erb haml slim]) + dsl.watch_spec_files_for(rails.app_files) + dsl.watch_spec_files_for(rails.views) + + watch(rails.controllers) do |m| + [ + rspec.spec.call("routing/#{m[1]}_routing"), + rspec.spec.call("controllers/#{m[1]}_controller"), + rspec.spec.call("acceptance/#{m[1]}") + ] + end + + # Rails config changes + watch(rails.spec_helper) { rspec.spec_dir } + watch(rails.routes) { "#{rspec.spec_dir}/routing" } + watch(rails.app_controller) { "#{rspec.spec_dir}/controllers" } + + # Capybara features specs + watch(rails.view_dirs) { |m| rspec.spec.call("features/#{m[1]}") } + watch(rails.layouts) { |m| rspec.spec.call("features/#{m[1]}") } + + # Turnip features and steps + watch(%r{^spec/acceptance/(.+)\.feature$}) + watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) do |m| + Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance' + end +end + +cucumber_options = { + # Below are examples overriding defaults + + # cmd: 'bin/cucumber', + # cmd_additional_args: '--profile guard', + + # all_after_pass: false, + # all_on_start: false, + # keep_failed: false, + # feature_sets: ['features/frontend', 'features/experimental'], + + # run_all: { cmd_additional_args: '--profile guard_all' }, + # focus_on: { 'wip' }, # @wip + # notification: false +} + +guard 'cucumber', cucumber_options do + watch(%r{^features/.+\.feature$}) + watch(%r{^features/support/.+$}) { 'features' } + + watch(%r{^features/step_definitions/(.+)_steps\.rb$}) do |m| + Dir[File.join("**/#{m[1]}.feature")][0] || 'features' + end +end + +guard :rubocop do + watch(/.+\.rb$/) + watch(%r{(?:.+/)?\.rubocop(?:_todo)?\.yml$}) { |m| File.dirname(m[0]) } +end diff --git a/Procfile b/Procfile new file mode 100644 index 00000000..c2c566e8 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: bundle exec puma -C config/puma.rb diff --git a/Procfile.dev b/Procfile.dev new file mode 100644 index 00000000..9c8ab845 --- /dev/null +++ b/Procfile.dev @@ -0,0 +1,2 @@ +web: bin/rails server -b 0.0.0.0 +webpack: bin/webpack-dev-server diff --git a/README.md b/README.md new file mode 100755 index 00000000..18397e32 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# Actionmap + +
+ +Actionmap is an app that allows users to learn more about their representatives, +political events in their area as well as aggregate, share and view news items in their locality. + +
+ + + +[![All Specs](https://github.com/saasbook/hw-agile-iterations/actions/workflows/specs.yml/badge.svg)](https://github.com/saasbook/hw-agile-iterations/actions/workflows/specs.yml) + +[![codecov](https://codecov.io/gh/saasbook/hw-agile-iterations/branch/master/graph/badge.svg?token=SGYCvQX4Us)](https://codecov.io/gh/saasbook/hw-agile-iterations) + +### Getting Setup Locally + +Follow the [Getting Started Guide](./docs/01-getting-started.md) to get your localhost environment setup. diff --git a/Rakefile b/Rakefile new file mode 100755 index 00000000..488c551f --- /dev/null +++ b/Rakefile @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require_relative 'config/application' + +Rails.application.load_tasks diff --git a/app/assets/config/manifest.js b/app/assets/config/manifest.js new file mode 100755 index 00000000..633b3c4d --- /dev/null +++ b/app/assets/config/manifest.js @@ -0,0 +1,4 @@ +// Use Webpacker to compile and serve stylesheets and javascript. +// Reserve assets pipeline for other assets like images. +//= link_tree ../images +//= link_tree ../topojson diff --git a/app/assets/images/favicon/android-chrome-192x192.png b/app/assets/images/favicon/android-chrome-192x192.png new file mode 100755 index 0000000000000000000000000000000000000000..691be47045fb866e7386ae0d18a21740e40495b9 GIT binary patch literal 55018 zcmV*rKt#WZP)004R>004l5008;`004mK004C`008P>0026e000+ooVrmw00006 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�_7|6|zlT_u5Dn4kdd=FTxv$x`dB*G%6kg3HOL2>Vdi zmCN>o-*!bxA+=gGbxZ+FF4eORi}xmY0LF?M2)?d7^+c17PnVM6=)$Gw}q1Q4PS6}J=eu+)x;#M zx2j4;;3Orz!?7l**?jb-ni2=lu@dxWy zSt&zeAm{g+R=->3Yo8FigKfSe;4q9dzKhvnzU1+;Ugg}Z{e)=Z|}`cZGMU2gJ5x#rVYFs%EtwqFU*M5-uh1w^C+&{B2aTk*gTsI)RC}U~1bUCPMUn!!Red zuna{z_)|2ZRS4sWCORTOfdnQxq?(r%m?9H`qu+7NoI}IHzKL9IG&`=EySs;w>N^!( zTm*^6RS>*QNmas-l(a_l`)v!u8Lg)O| z>&WDMH(laSC8~qQLqGr5#k1O$#$S(n$f#f(0-)LBJ=`dT4D{zPhw{Snr%DIw>mSG7 z(cSNB20<7I#E4{qeo@L!9l>f4&Jg&`q)?9p$)J@@aRMIEyK`<4zMePOVzQM@1AvEc zSSI8<$`_NO62pHmkX2YzLNUbZ#IDVnz9=B9v|>`CSL3{Y_Fgv4+1>*oIef*$Zsy3* z>^i1&fNwPQm1csQo|EPkPoB?>CjC%2*j(AQK^Y_$gAos8djYf+o#27ATWH=h?x_{u&Mo|1p zoe6+g8Erg62M0Igy*+_t&?k708j9DpFY5Z-B$2k-u8qYqAlx1RP?*Z~;@cV1|vzX{Gy4U(n+Q zC-cngk-D&8SKrd9*mJM=gMXSROg^rt^lLdjOpR)!d_G(wASiTz?t522wsb}R zUw>a)0aNi#i5{;eB9$FD#j)`xsm?C)aGFZ?OR`Vtk$t5HE{E4Vtz?rH1BMJe!`F;jIHvo^mMZ9ERjh&}iA42?~T=i`O$m!NLh4ukRvQ$|31R9+{-rdlj=8t|(> z?~YpX^9u+*O&NY=pl2j{i-C!a-~1n~AFZPaFHfV8JRn0e?r=d;f4E7`ka@ayJ%+Qn zr2+GK6RT~W;B9eW`q!gvyfoU0D%HxuFUN&IgO%jUA~*iu6$1c=OTg()ez(eGiysU1 zDmMOP6`fK&RmSKHDmsLZj{^-=L0VBpa`m;fl8l4{#u}Aa4gXF8e(bSdy*LGgkj9#+ zJ%{hv_B&{(u<$XMAiI-b@zd_zB>Eg9cAW&mMwFufbIrn?F@l)5+(MhW+ zEukJb6nb=y1qh^Xnf0>DF*5Yk`)m`9SBs-ld{iR$ejrHvB^2OA@pL!76-thz{qVo~ zaK%G4#~0+uYjP7q6YuY{wtu=_mb+95b=)bF<9erRsqtnI$^>;OH87Qti`4*-bt__1kn{e8 z=ymiML9`_>P*h4GuHHOn;pc{`j(TN01tPcJJTn3CWU&#O%gKUfmAjYkZrc}Y;DZZT zG4pDXD(0H#-4fP!V*Mls>@-8=*zqoZmI&`CM7tHlp956d!{S7qr>!N%p4OgBt$>#F z85nR%RuLnKSD2xx_aDr=U*r%s3&hE0zZcSvmVV}0Ej5?AuRs1V?zkgT9&4T!-v3Ro zH(UDZmF^d?tdve>c!PStm43b*e>R8z)_lNrS;tPGi5tRBW{-AKYAN5^&jvVAg`|n2ON(q%CII0}Y& zHAy=wt1SJGUou<&$bGfG!@b8N7j#Xl@xL{k$n{M=p0A;{AKdSHu(SszwQ6P|_Sh?=VvdGkdp~h9T^0g|2_ZVRpcw zEs6077HMkhLT&3U&be>jP5dWMy5-@^Q-w;)Qeg-I!&%OF$+T$Idg0PN+czUGqJMWp zY%pSHj&3qZDlbsJJPiGcgL^;xqH+UW^cTlpTt!RJ9^L{TC~%6b-5fJd1CPCf!=^I0 zYi{f63J(Q)lF~tGX}QG65ho0g1XXZ)eAk``#y!Frt7g^BuS|CE+o5WK5`TU<@$l+= zxsiAdR~NfKJ@*^)>{UV2EDTHvHf;`>7Alnv5*@ek6o!@Jg_^&HVn_>rT;f$d81f(8 z#YO%}Pbxqh4Riwjhs^wICO@}qNi4Q01>k~vq2QFRhM6ZH5P zz;46Cs0?a38{I)~fU&aVYOCnW5wPPVTf*+=mp#$u^Ir{fM?elvzEq1gQbaaUAsgh)wucXvuir*w;ebV+x2cQf?RL-RfF_m3Z}1#9BD@3YUf_ZGQ4kOrDPU44YeJ+j4+uTQl5@{CS!obOfokZoMWBmOhVCjL{8CnZtwq4)Y4 zemti`0>>)b8J#xNMi|LO9x>z8!ZndQP3} zLhwRa?CsE*v+F^pC<=M6Hjhr}oAcl}-VZL`q7WU@5VSp-Lgin#09U78_6~=<{(%$t z?I<;Ov zq$-m2G%wW5!vk&UIH8yr3HeXapR1c1bZgAizw7(s-FVone;w}zxoTL=0l+T!5u1~H zHh0ro-HPw!&RL(@Z|^!RF}zX1h);?BuhV=60Fqtb`LgxH(6NToO{zJE)cU95Gd2*;u@_44}lvw|H%@z}!n%?NVRH5zrWDtZwT!T`g3Iw^*h z?W84&#*RX!o>Jv$m4pU zTxs}6XX{_7?*wzQ1Ue{JzklSGq!G3VwPN9&0T{b7ujDWi1evyvksLV83;OwK~9DD zk4t)%(*@1dL)I+Ex-BjdR<=LfJD|i$If9C-ug#qEu_4tl&Gl~=lT`6!sW3T@R0xbd z1teKj-LbVpTwGe=b3YwN`>j&^<^&;3FpO{~;q-dOl=#Gu36JmYg4~ISH1+k(Cr zZLR2YvO}>y7~f-}71?R-Y8o+9665r;%Hnh6e{YK(if4)Lef#PBpa5Hq`J>NWFolVa z*Dt${fl^~Rt+b9FAkVG$-kE68>O-@~J#�yzSd%&BBDVM+xtCC^RlP1P9hME|p-t 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%0D`Xx1DQv=@SOH?eAOEk5qVWvoy5V!); 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 + + diff --git a/public/422.html b/public/422.html new file mode 100755 index 00000000..c08eac0d --- /dev/null +++ b/public/422.html @@ -0,0 +1,67 @@ + + + + The change you wanted was rejected (422) + + + + + + +
+
+

The change you wanted was rejected.

+

Maybe you tried to change something you didn't have access to.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/500.html b/public/500.html new file mode 100755 index 00000000..78a030af --- /dev/null +++ b/public/500.html @@ -0,0 +1,66 @@ + + + + We're sorry, but something went wrong (500) + + + + + + +
+
+

We're sorry, but something went wrong.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/apple-touch-icon-precomposed.png b/public/apple-touch-icon-precomposed.png new file mode 100644 index 00000000..e69de29b diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 00000000..e69de29b diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 00000000..e69de29b diff --git a/public/robots.txt b/public/robots.txt new file mode 100755 index 00000000..37b576a4 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1 @@ +# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file diff --git a/script/cucumber b/script/cucumber new file mode 100755 index 00000000..eb5e962e --- /dev/null +++ b/script/cucumber @@ -0,0 +1,11 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +vendored_cucumber_bin = Dir["#{File.dirname(__FILE__)}/../vendor/{gems,plugins}/cucumber*/bin/cucumber"].first +if vendored_cucumber_bin + load File.expand_path(vendored_cucumber_bin) +else + require 'rubygems' unless ENV['NO_RUBYGEMS'] + require 'cucumber' + load Cucumber::BINARY +end diff --git a/spec/linters/eslint_spec.rb b/spec/linters/eslint_spec.rb new file mode 100755 index 00000000..6279708a --- /dev/null +++ b/spec/linters/eslint_spec.rb @@ -0,0 +1,14 @@ +# frozen_string_literal: true + +require 'spec_helper' + +RSpec.describe 'eslint analysis' do + subject(:report) { `yarn run lint` } # `lint` in `package.json` $.scripts.lint + + # Run `yarn run lint` to see the errors. + # Run `yarn run lint_fix` to fix eslint errors. + it 'has no offenses' do + # Example success: Done in 1.00s. + expect(report).to match(/Done in \d+\.\d+s\.\s$/) + end +end diff --git a/spec/linters/haml_lint_spec.rb b/spec/linters/haml_lint_spec.rb new file mode 100755 index 00000000..9b8d7757 --- /dev/null +++ b/spec/linters/haml_lint_spec.rb @@ -0,0 +1,14 @@ +# frozen_string_literal: true + +require 'spec_helper' + +RSpec.describe 'haml-lint analysis' do + subject(:report) { `bundle exec haml-lint` } + + # Unfortunately, as of this writing haml-lint does not yet have auto-correct functionality. + # See: https://github.com/sds/haml-lint/issues/217 + # Run `bundle exec haml-lint` to see the errors. + it 'has no offenses' do + expect(report).to match(/\s\d+ files? inspected, 0 lints detected\s$/) + end +end diff --git a/spec/linters/rubocop_spec.rb b/spec/linters/rubocop_spec.rb new file mode 100755 index 00000000..1949e0cf --- /dev/null +++ b/spec/linters/rubocop_spec.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +require 'spec_helper' + +RSpec.describe 'rubocop analysis' do + subject(:report) { `bundle exec rubocop` } + + # Run `bundle exec rubocop -a` to auto-correct some linter errors + it 'has no offenses' do + expect(report).to match(/no offenses detected$/) + end +end diff --git a/spec/rails_helper.rb b/spec/rails_helper.rb new file mode 100755 index 00000000..eab22966 --- /dev/null +++ b/spec/rails_helper.rb @@ -0,0 +1,97 @@ +# frozen_string_literal: true + +# See: https://github.com/codecov/example-ruby + +require 'simplecov' +SimpleCov.start 'rails' + +if ENV['CI'] + require 'codecov' + SimpleCov.formatter = SimpleCov::Formatter::Codecov +end + +# This file is copied to spec/ when you run 'rails generate rspec:install' +require 'spec_helper' +ENV['RAILS_ENV'] ||= 'test' +require File.expand_path('../config/environment', __dir__) +# Prevent database truncation if the environment is production +abort('The Rails environment is running in production mode!') if Rails.env.production? +require 'rspec/rails' +# Add additional requires below this line. Rails is not loaded until this point! + +# Requires supporting ruby files with custom matchers and macros, etc, in +# spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are +# run as spec files by default. This means that files in spec/support that end +# in _spec.rb will both be required and run as specs, causing the specs to be +# run twice. It is recommended that you do not name files matching this glob to +# end with _spec.rb. You can configure this pattern with the --pattern +# option on the command line or in ~/.rspec, .rspec or `.rspec-local`. +# +# The following line is provided for convenience purposes. It has the downside +# of increasing the boot-up time by auto-requiring all files in the support +# directory. Alternatively, in the individual `*_spec.rb` files, manually +# require only the support files necessary. +# +# Dir[Rails.root.join('spec', 'support', '**', '*.rb')].sort.each { |f| require f } + +# Checks for pending migrations and applies them before tests are run. +# If you are not using ActiveRecord, you can remove these lines. +begin + ActiveRecord::Migration.maintain_test_schema! +rescue ActiveRecord::PendingMigrationError => e + puts e.to_s.strip + exit 1 +end +RSpec.configure do |config| + config.before(:suite) do + DatabaseCleaner.clean_with(:truncation) + end + config.before do + DatabaseCleaner.strategy = :transaction + end + config.before(:each, js: true) do + DatabaseCleaner.strategy = :truncation + end + config.before do + DatabaseCleaner.start + end + config.after do + DatabaseCleaner.clean + end + + # FactoryBot Config. + config.include FactoryBot::Syntax::Methods + config.before(:suite) do + FactoryBot.find_definitions + end + # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures + config.fixture_path = "#{::Rails.root}/spec/fixtures" + + # If you're not using ActiveRecord, or you'd prefer not to run each of your + # examples within a transaction, remove the following line or assign false + # instead of true. + config.use_transactional_fixtures = true + + # You can uncomment this line to turn off ActiveRecord support entirely. + # config.use_active_record = false + + # RSpec Rails can automatically mix in different behaviours to your tests + # based on their file location, for example enabling you to call `get` and + # `post` in specs under `spec/controllers`. + # + # You can disable this behaviour by removing the line below, and instead + # explicitly tag your specs with their type, e.g.: + # + # RSpec.describe UsersController, type: :controller do + # # ... + # end + # + # The different available types are documented in the features, such as in + # https://relishapp.com/rspec/rspec-rails/docs + config.infer_spec_type_from_file_location! + + # Filter lines from Rails gems in backtraces. + config.filter_rails_from_backtrace! + # arbitrary gems may also be filtered via: + # config.filter_gems_from_backtrace("gem name") +end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb new file mode 100755 index 00000000..01f7c974 --- /dev/null +++ b/spec/spec_helper.rb @@ -0,0 +1,96 @@ +# frozen_string_literal: true + +# This file was generated by the `rails generate rspec:install` command. Conventionally, all +# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`. +# The generated `.rspec` file contains `--require spec_helper` which will cause +# this file to always be loaded, without a need to explicitly require it in any +# files. +# +# Given that it is always loaded, you are encouraged to keep this file as +# light-weight as possible. Requiring heavyweight dependencies from this file +# will add to the boot time of your test suite on EVERY test run, even for an +# individual file that may not need all of that loaded. Instead, consider making +# a separate helper file that requires the additional dependencies and performs +# the additional setup, and require it from the spec files that actually need +# it. +# +# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration +RSpec.configure do |config| + # rspec-expectations config goes here. You can use an alternate + # assertion/expectation library such as wrong or the stdlib/minitest + # assertions if you prefer. + config.expect_with :rspec do |expectations| + # This option will default to `true` in RSpec 4. It makes the `description` + # and `failure_message` of custom matchers include text for helper methods + # defined using `chain`, e.g.: + # be_bigger_than(2).and_smaller_than(4).description + # # => "be bigger than 2 and smaller than 4" + # ...rather than: + # # => "be bigger than 2" + expectations.include_chain_clauses_in_custom_matcher_descriptions = true + end + + # rspec-mocks config goes here. You can use an alternate test double + # library (such as bogus or mocha) by changing the `mock_with` option here. + config.mock_with :rspec do |mocks| + # Prevents you from mocking or stubbing a method that does not exist on + # a real object. This is generally recommended, and will default to + # `true` in RSpec 4. + mocks.verify_partial_doubles = true + end + + # This option will default to `:apply_to_host_groups` in RSpec 4 (and will + # have no way to turn it off -- the option exists only for backwards + # compatibility in RSpec 3). It causes shared context metadata to be + # inherited by the metadata hash of host groups and examples, rather than + # triggering implicit auto-inclusion in groups with matching metadata. + config.shared_context_metadata_behavior = :apply_to_host_groups + + # The settings below are suggested to provide a good initial experience + # with RSpec, but feel free to customize to your heart's content. + # # This allows you to limit a spec run to individual examples or groups + # # you care about by tagging them with `:focus` metadata. When nothing + # # is tagged with `:focus`, all examples get run. RSpec also provides + # # aliases for `it`, `describe`, and `context` that include `:focus` + # # metadata: `fit`, `fdescribe` and `fcontext`, respectively. + # config.filter_run_when_matching :focus + # + # # Allows RSpec to persist some state between runs in order to support + # # the `--only-failures` and `--next-failure` CLI options. We recommend + # # you configure your source control system to ignore this file. + # config.example_status_persistence_file_path = "spec/examples.txt" + # + # # Limits the available syntax to the non-monkey patched syntax that is + # # recommended. For more details, see: + # # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/ + # # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/ + # # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode + # config.disable_monkey_patching! + # + # # Many RSpec users commonly either run the entire suite or an individual + # # file, and it's useful to allow more verbose output when running an + # # individual spec file. + # if config.files_to_run.one? + # # Use the documentation formatter for detailed output, + # # unless a formatter has already been configured + # # (e.g. via a command-line flag). + # config.default_formatter = "doc" + # end + # + # # Print the 10 slowest examples and example groups at the + # # end of the spec run, to help surface which specs are running + # # particularly slow. + # config.profile_examples = 10 + # + # # Run specs in random order to surface order dependencies. If you find an + # # order dependency and want to debug it, you can fix the order by providing + # # the seed, which is printed after each run. + # # --seed 1234 + # config.order = :random + # + # # Seed global randomization in this process using the `--seed` CLI option. + # # Setting this allows you to use `--seed` to deterministically reproduce + # # test failures related to randomization by passing the same `--seed` value + # # as the one that triggered the failure. + # Kernel.srand config.seed +end diff --git a/yarn.lock b/yarn.lock new file mode 100755 index 00000000..800adaa3 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,8713 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.1.tgz#d5481c5095daa1c57e16e54c6f9198443afb49ff" + integrity sha512-IGhtTmpjGbYzcEDOw7DcQtbQSXcG9ftmAXtWTu9V936vDye4xjjekktFAtgZsWpzTj/X01jocB46mTywm/4SZw== + dependencies: + "@babel/highlight" "^7.10.1" + +"@babel/compat-data@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.1.tgz#b1085ffe72cd17bf2c0ee790fc09f9626011b2db" + integrity sha512-CHvCj7So7iCkGKPRFUfryXIkU2gSBw7VSZFYLsqVhrS47269VK2Hfi9S/YcublPMW8k1u2bQBlbDruoQEm4fgw== + dependencies: + browserslist "^4.12.0" + invariant "^2.2.4" + semver "^5.5.0" + +"@babel/core@^7.9.0": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.2.tgz#bd6786046668a925ac2bd2fd95b579b92a23b36a" + integrity sha512-KQmV9yguEjQsXqyOUGKjS4+3K8/DlOCE2pZcq4augdQmtTy5iv5EHtmMSJ7V4c1BIPjuwtZYqYLCq9Ga+hGBRQ== + dependencies: + "@babel/code-frame" "^7.10.1" + "@babel/generator" "^7.10.2" + "@babel/helper-module-transforms" "^7.10.1" + "@babel/helpers" "^7.10.1" + "@babel/parser" "^7.10.2" + "@babel/template" "^7.10.1" + "@babel/traverse" "^7.10.1" + "@babel/types" "^7.10.2" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.1" + json5 "^2.1.2" + lodash "^4.17.13" + resolve "^1.3.2" + semver "^5.4.1" + source-map "^0.5.0" + +"@babel/generator@^7.10.1", "@babel/generator@^7.10.2": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.2.tgz#0fa5b5b2389db8bfdfcc3492b551ee20f5dd69a9" + integrity sha512-AxfBNHNu99DTMvlUPlt1h2+Hn7knPpH5ayJ8OqDWSeLld+Fi2AYBTC/IejWDM9Edcii4UzZRCsbUt0WlSDsDsA== + dependencies: + "@babel/types" "^7.10.2" + jsesc "^2.5.1" + lodash "^4.17.13" + source-map "^0.5.0" + +"@babel/helper-annotate-as-pure@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.1.tgz#f6d08acc6f70bbd59b436262553fb2e259a1a268" + integrity sha512-ewp3rvJEwLaHgyWGe4wQssC2vjks3E80WiUe2BpMb0KhreTjMROCbxXcEovTrbeGVdQct5VjQfrv9EgC+xMzCw== + dependencies: + "@babel/types" "^7.10.1" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.1.tgz#0ec7d9be8174934532661f87783eb18d72290059" + integrity sha512-cQpVq48EkYxUU0xozpGCLla3wlkdRRqLWu1ksFMXA9CM5KQmyyRpSEsYXbao7JUkOw/tAaYKCaYyZq6HOFYtyw== + dependencies: + "@babel/helper-explode-assignable-expression" "^7.10.1" + "@babel/types" "^7.10.1" + +"@babel/helper-compilation-targets@^7.10.2": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.2.tgz#a17d9723b6e2c750299d2a14d4637c76936d8285" + integrity sha512-hYgOhF4To2UTB4LTaZepN/4Pl9LD4gfbJx8A34mqoluT8TLbof1mhUlYuNWTEebONa8+UlCC4X0TEXu7AOUyGA== + dependencies: + "@babel/compat-data" "^7.10.1" + browserslist "^4.12.0" + invariant "^2.2.4" + levenary "^1.1.1" + semver "^5.5.0" + +"@babel/helper-create-class-features-plugin@^7.10.1": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.2.tgz#7474295770f217dbcf288bf7572eb213db46ee67" + integrity sha512-5C/QhkGFh1vqcziq1vAL6SI9ymzUp8BCYjFpvYVhWP4DlATIb3u5q3iUd35mvlyGs8fO7hckkW7i0tmH+5+bvQ== + dependencies: + "@babel/helper-function-name" "^7.10.1" + "@babel/helper-member-expression-to-functions" "^7.10.1" + "@babel/helper-optimise-call-expression" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-replace-supers" "^7.10.1" + "@babel/helper-split-export-declaration" "^7.10.1" + +"@babel/helper-create-regexp-features-plugin@^7.10.1", "@babel/helper-create-regexp-features-plugin@^7.8.3": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.1.tgz#1b8feeab1594cbcfbf3ab5a3bbcabac0468efdbd" + integrity sha512-Rx4rHS0pVuJn5pJOqaqcZR4XSgeF9G/pO/79t+4r7380tXFJdzImFnxMU19f83wjSrmKHq6myrM10pFHTGzkUA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.1" + "@babel/helper-regex" "^7.10.1" + regexpu-core "^4.7.0" + +"@babel/helper-define-map@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.1.tgz#5e69ee8308648470dd7900d159c044c10285221d" + integrity sha512-+5odWpX+OnvkD0Zmq7panrMuAGQBu6aPUgvMzuMGo4R+jUOvealEj2hiqI6WhxgKrTpFoFj0+VdsuA8KDxHBDg== + dependencies: + "@babel/helper-function-name" "^7.10.1" + "@babel/types" "^7.10.1" + lodash "^4.17.13" + +"@babel/helper-explode-assignable-expression@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.1.tgz#e9d76305ee1162ca467357ae25df94f179af2b7e" + integrity sha512-vcUJ3cDjLjvkKzt6rHrl767FeE7pMEYfPanq5L16GRtrXIoznc0HykNW2aEYkcnP76P0isoqJ34dDMFZwzEpJg== + dependencies: + "@babel/traverse" "^7.10.1" + "@babel/types" "^7.10.1" + +"@babel/helper-function-name@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.1.tgz#92bd63829bfc9215aca9d9defa85f56b539454f4" + integrity sha512-fcpumwhs3YyZ/ttd5Rz0xn0TpIwVkN7X0V38B9TWNfVF42KEkhkAAuPCQ3oXmtTRtiPJrmZ0TrfS0GKF0eMaRQ== + dependencies: + "@babel/helper-get-function-arity" "^7.10.1" + "@babel/template" "^7.10.1" + "@babel/types" "^7.10.1" + +"@babel/helper-get-function-arity@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.1.tgz#7303390a81ba7cb59613895a192b93850e373f7d" + integrity sha512-F5qdXkYGOQUb0hpRaPoetF9AnsXknKjWMZ+wmsIRsp5ge5sFh4c3h1eH2pRTTuy9KKAA2+TTYomGXAtEL2fQEw== + dependencies: + "@babel/types" "^7.10.1" + +"@babel/helper-hoist-variables@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.1.tgz#7e77c82e5dcae1ebf123174c385aaadbf787d077" + integrity sha512-vLm5srkU8rI6X3+aQ1rQJyfjvCBLXP8cAGeuw04zeAM2ItKb1e7pmVmLyHb4sDaAYnLL13RHOZPLEtcGZ5xvjg== + dependencies: + "@babel/types" "^7.10.1" + +"@babel/helper-member-expression-to-functions@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.1.tgz#432967fd7e12a4afef66c4687d4ca22bc0456f15" + integrity sha512-u7XLXeM2n50gb6PWJ9hoO5oO7JFPaZtrh35t8RqKLT1jFKj9IWeD1zrcrYp1q1qiZTdEarfDWfTIP8nGsu0h5g== + dependencies: + "@babel/types" "^7.10.1" + +"@babel/helper-module-imports@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.1.tgz#dd331bd45bccc566ce77004e9d05fe17add13876" + integrity sha512-SFxgwYmZ3HZPyZwJRiVNLRHWuW2OgE5k2nrVs6D9Iv4PPnXVffuEHy83Sfx/l4SqF+5kyJXjAyUmrG7tNm+qVg== + dependencies: + "@babel/types" "^7.10.1" + +"@babel/helper-module-transforms@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.1.tgz#24e2f08ee6832c60b157bb0936c86bef7210c622" + integrity sha512-RLHRCAzyJe7Q7sF4oy2cB+kRnU4wDZY/H2xJFGof+M+SJEGhZsb+GFj5j1AD8NiSaVBJ+Pf0/WObiXu/zxWpFg== + dependencies: + "@babel/helper-module-imports" "^7.10.1" + "@babel/helper-replace-supers" "^7.10.1" + "@babel/helper-simple-access" "^7.10.1" + "@babel/helper-split-export-declaration" "^7.10.1" + "@babel/template" "^7.10.1" + "@babel/types" "^7.10.1" + lodash "^4.17.13" + +"@babel/helper-optimise-call-expression@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.1.tgz#b4a1f2561870ce1247ceddb02a3860fa96d72543" + integrity sha512-a0DjNS1prnBsoKx83dP2falChcs7p3i8VMzdrSbfLhuQra/2ENC4sbri34dz/rWmDADsmF1q5GbfaXydh0Jbjg== + dependencies: + "@babel/types" "^7.10.1" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.1", "@babel/helper-plugin-utils@^7.8.0": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz#ec5a5cf0eec925b66c60580328b122c01230a127" + integrity sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA== + +"@babel/helper-regex@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.1.tgz#021cf1a7ba99822f993222a001cc3fec83255b96" + integrity sha512-7isHr19RsIJWWLLFn21ubFt223PjQyg1HY7CZEMRr820HttHPpVvrsIN3bUOo44DEfFV4kBXO7Abbn9KTUZV7g== + dependencies: + lodash "^4.17.13" + +"@babel/helper-remap-async-to-generator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.1.tgz#bad6aaa4ff39ce8d4b82ccaae0bfe0f7dbb5f432" + integrity sha512-RfX1P8HqsfgmJ6CwaXGKMAqbYdlleqglvVtht0HGPMSsy2V6MqLlOJVF/0Qyb/m2ZCi2z3q3+s6Pv7R/dQuZ6A== + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.1" + "@babel/helper-wrap-function" "^7.10.1" + "@babel/template" "^7.10.1" + "@babel/traverse" "^7.10.1" + "@babel/types" "^7.10.1" + +"@babel/helper-replace-supers@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.1.tgz#ec6859d20c5d8087f6a2dc4e014db7228975f13d" + integrity sha512-SOwJzEfpuQwInzzQJGjGaiG578UYmyi2Xw668klPWV5n07B73S0a9btjLk/52Mlcxa+5AdIYqws1KyXRfMoB7A== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.10.1" + "@babel/helper-optimise-call-expression" "^7.10.1" + "@babel/traverse" "^7.10.1" + "@babel/types" "^7.10.1" + +"@babel/helper-simple-access@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.1.tgz#08fb7e22ace9eb8326f7e3920a1c2052f13d851e" + integrity sha512-VSWpWzRzn9VtgMJBIWTZ+GP107kZdQ4YplJlCmIrjoLVSi/0upixezHCDG8kpPVTBJpKfxTH01wDhh+jS2zKbw== + dependencies: + "@babel/template" "^7.10.1" + "@babel/types" "^7.10.1" + +"@babel/helper-split-export-declaration@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.1.tgz#c6f4be1cbc15e3a868e4c64a17d5d31d754da35f" + integrity sha512-UQ1LVBPrYdbchNhLwj6fetj46BcFwfS4NllJo/1aJsT+1dLTEnXJL0qHqtY7gPzF8S2fXBJamf1biAXV3X077g== + dependencies: + "@babel/types" "^7.10.1" + +"@babel/helper-validator-identifier@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.1.tgz#5770b0c1a826c4f53f5ede5e153163e0318e94b5" + integrity sha512-5vW/JXLALhczRCWP0PnFDMCJAchlBvM7f4uk/jXritBnIa6E1KmqmtrS3yn1LAnxFBypQ3eneLuXjsnfQsgILw== + +"@babel/helper-wrap-function@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.1.tgz#956d1310d6696257a7afd47e4c42dfda5dfcedc9" + integrity sha512-C0MzRGteVDn+H32/ZgbAv5r56f2o1fZSA/rj/TYo8JEJNHg+9BdSmKBUND0shxWRztWhjlT2cvHYuynpPsVJwQ== + dependencies: + "@babel/helper-function-name" "^7.10.1" + "@babel/template" "^7.10.1" + "@babel/traverse" "^7.10.1" + "@babel/types" "^7.10.1" + +"@babel/helpers@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.1.tgz#a6827b7cb975c9d9cef5fd61d919f60d8844a973" + integrity sha512-muQNHF+IdU6wGgkaJyhhEmI54MOZBKsFfsXFhboz1ybwJ1Kl7IHlbm2a++4jwrmY5UYsgitt5lfqo1wMFcHmyw== + dependencies: + "@babel/template" "^7.10.1" + "@babel/traverse" "^7.10.1" + "@babel/types" "^7.10.1" + +"@babel/highlight@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.1.tgz#841d098ba613ba1a427a2b383d79e35552c38ae0" + integrity sha512-8rMof+gVP8mxYZApLF/JgNDAkdKa+aJt3ZYxF8z6+j/hpeXL7iMsKCPHa2jNMHu/qqBwzQF4OHNoYi8dMA/rYg== + dependencies: + "@babel/helper-validator-identifier" "^7.10.1" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/parser@^7.10.1", "@babel/parser@^7.10.2": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.2.tgz#871807f10442b92ff97e4783b9b54f6a0ca812d0" + integrity sha512-PApSXlNMJyB4JiGVhCOlzKIif+TKFTvu0aQAhnTvfP/z3vVSN6ZypH5bfUNwFXXjRQtUEBNFd2PtmCmG2Py3qQ== + +"@babel/plugin-proposal-async-generator-functions@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.1.tgz#6911af5ba2e615c4ff3c497fe2f47b35bf6d7e55" + integrity sha512-vzZE12ZTdB336POZjmpblWfNNRpMSua45EYnRigE2XsZxcXcIyly2ixnTJasJE4Zq3U7t2d8rRF7XRUuzHxbOw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-remap-async-to-generator" "^7.10.1" + "@babel/plugin-syntax-async-generators" "^7.8.0" + +"@babel/plugin-proposal-class-properties@^7.10.1", "@babel/plugin-proposal-class-properties@^7.8.3": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.1.tgz#046bc7f6550bb08d9bd1d4f060f5f5a4f1087e01" + integrity sha512-sqdGWgoXlnOdgMXU+9MbhzwFRgxVLeiGBqTrnuS7LC2IBU31wSsESbTUreT2O418obpfPdGUR2GbEufZF1bpqw== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-proposal-dynamic-import@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.1.tgz#e36979dc1dc3b73f6d6816fc4951da2363488ef0" + integrity sha512-Cpc2yUVHTEGPlmiQzXj026kqwjEQAD9I4ZC16uzdbgWgitg/UHKHLffKNCQZ5+y8jpIZPJcKcwsr2HwPh+w3XA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-dynamic-import" "^7.8.0" + +"@babel/plugin-proposal-json-strings@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.1.tgz#b1e691ee24c651b5a5e32213222b2379734aff09" + integrity sha512-m8r5BmV+ZLpWPtMY2mOKN7wre6HIO4gfIiV+eOmsnZABNenrt/kzYBwrh+KOfgumSWpnlGs5F70J8afYMSJMBg== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-json-strings" "^7.8.0" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.1.tgz#02dca21673842ff2fe763ac253777f235e9bbf78" + integrity sha512-56cI/uHYgL2C8HVuHOuvVowihhX0sxb3nnfVRzUeVHTWmRHTZrKuAh/OBIMggGU/S1g/1D2CRCXqP+3u7vX7iA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + +"@babel/plugin-proposal-numeric-separator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.1.tgz#a9a38bc34f78bdfd981e791c27c6fdcec478c123" + integrity sha512-jjfym4N9HtCiNfyyLAVD8WqPYeHUrw4ihxuAynWj6zzp2gf9Ey2f7ImhFm6ikB3CLf5Z/zmcJDri6B4+9j9RsA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-numeric-separator" "^7.10.1" + +"@babel/plugin-proposal-object-rest-spread@^7.10.1", "@babel/plugin-proposal-object-rest-spread@^7.9.0": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.1.tgz#cba44908ac9f142650b4a65b8aa06bf3478d5fb6" + integrity sha512-Z+Qri55KiQkHh7Fc4BW6o+QBuTagbOp9txE+4U1i79u9oWlf2npkiDx+Rf3iK3lbcHBuNy9UOkwuR5wOMH3LIQ== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" + "@babel/plugin-transform-parameters" "^7.10.1" + +"@babel/plugin-proposal-optional-catch-binding@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.1.tgz#c9f86d99305f9fa531b568ff5ab8c964b8b223d2" + integrity sha512-VqExgeE62YBqI3ogkGoOJp1R6u12DFZjqwJhqtKc2o5m1YTUuUWnos7bZQFBhwkxIFpWYJ7uB75U7VAPPiKETA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" + +"@babel/plugin-proposal-optional-chaining@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.1.tgz#15f5d6d22708629451a91be28f8facc55b0e818c" + integrity sha512-dqQj475q8+/avvok72CF3AOSV/SGEcH29zT5hhohqqvvZ2+boQoOr7iGldBG5YXTO2qgCgc2B3WvVLUdbeMlGA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + +"@babel/plugin-proposal-private-methods@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.1.tgz#ed85e8058ab0fe309c3f448e5e1b73ca89cdb598" + integrity sha512-RZecFFJjDiQ2z6maFprLgrdnm0OzoC23Mx89xf1CcEsxmHuzuXOdniEuI+S3v7vjQG4F5sa6YtUp+19sZuSxHg== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-proposal-unicode-property-regex@^7.10.1", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.1.tgz#dc04feb25e2dd70c12b05d680190e138fa2c0c6f" + integrity sha512-JjfngYRvwmPwmnbRZyNiPFI8zxCZb8euzbCG/LxyKdeTb59tVciKo9GK9bi6JYKInk1H11Dq9j/zRqIH4KigfQ== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-syntax-async-generators@^7.8.0": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.1.tgz#d5bc0645913df5b17ad7eda0fa2308330bde34c5" + integrity sha512-Gf2Yx/iRs1JREDtVZ56OrjjgFHCaldpTnuy9BHla10qyVT3YkIIGEtoDWhyop0ksu1GvNjHIoYRBqm3zoR1jyQ== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-json-strings@^7.8.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.1.tgz#25761ee7410bc8cf97327ba741ee94e4a61b7d99" + integrity sha512-uTd0OsHrpe3tH5gRPTxG8Voh99/WCU78vIm5NMRYPAqC8lR4vajt6KkCAknCHrx24vkPdd/05yfdGSB4EIY2mg== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-syntax-object-rest-spread@^7.8.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-top-level-await@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.1.tgz#8b8733f8c57397b3eaa47ddba8841586dcaef362" + integrity sha512-hgA5RYkmZm8FTFT3yu2N9Bx7yVVOKYT6yEdXXo6j2JTm0wNxgqaGeQVaSHRjhfnQbX91DtjFB6McRFSlcJH3xQ== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-arrow-functions@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.1.tgz#cb5ee3a36f0863c06ead0b409b4cc43a889b295b" + integrity sha512-6AZHgFJKP3DJX0eCNJj01RpytUa3SOGawIxweHkNX2L6PYikOZmoh5B0d7hIHaIgveMjX990IAa/xK7jRTN8OA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-async-to-generator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.1.tgz#e5153eb1a3e028f79194ed8a7a4bf55f862b2062" + integrity sha512-XCgYjJ8TY2slj6SReBUyamJn3k2JLUIiiR5b6t1mNCMSvv7yx+jJpaewakikp0uWFQSF7ChPPoe3dHmXLpISkg== + dependencies: + "@babel/helper-module-imports" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-remap-async-to-generator" "^7.10.1" + +"@babel/plugin-transform-block-scoped-functions@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.1.tgz#146856e756d54b20fff14b819456b3e01820b85d" + integrity sha512-B7K15Xp8lv0sOJrdVAoukKlxP9N59HS48V1J3U/JGj+Ad+MHq+am6xJVs85AgXrQn4LV8vaYFOB+pr/yIuzW8Q== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-block-scoping@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.1.tgz#47092d89ca345811451cd0dc5d91605982705d5e" + integrity sha512-8bpWG6TtF5akdhIm/uWTyjHqENpy13Fx8chg7pFH875aNLwX8JxIxqm08gmAT+Whe6AOmaTeLPe7dpLbXt+xUw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + lodash "^4.17.13" + +"@babel/plugin-transform-classes@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.1.tgz#6e11dd6c4dfae70f540480a4702477ed766d733f" + integrity sha512-P9V0YIh+ln/B3RStPoXpEQ/CoAxQIhRSUn7aXqQ+FZJ2u8+oCtjIXR3+X0vsSD8zv+mb56K7wZW1XiDTDGiDRQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.1" + "@babel/helper-define-map" "^7.10.1" + "@babel/helper-function-name" "^7.10.1" + "@babel/helper-optimise-call-expression" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-replace-supers" "^7.10.1" + "@babel/helper-split-export-declaration" "^7.10.1" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.1.tgz#59aa399064429d64dce5cf76ef9b90b7245ebd07" + integrity sha512-mqSrGjp3IefMsXIenBfGcPXxJxweQe2hEIwMQvjtiDQ9b1IBvDUjkAtV/HMXX47/vXf14qDNedXsIiNd1FmkaQ== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-destructuring@^7.10.1", "@babel/plugin-transform-destructuring@^7.8.8": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.1.tgz#abd58e51337815ca3a22a336b85f62b998e71907" + integrity sha512-V/nUc4yGWG71OhaTH705pU8ZSdM6c1KmmLP8ys59oOYbT7RpMYAR3MsVOt6OHL0WzG7BlTU076va9fjJyYzJMA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-dotall-regex@^7.10.1", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.1.tgz#920b9fec2d78bb57ebb64a644d5c2ba67cc104ee" + integrity sha512-19VIMsD1dp02RvduFUmfzj8uknaO3uiHHF0s3E1OHnVsNj8oge8EQ5RzHRbJjGSetRnkEuBYO7TG1M5kKjGLOA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-duplicate-keys@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.1.tgz#c900a793beb096bc9d4d0a9d0cde19518ffc83b9" + integrity sha512-wIEpkX4QvX8Mo9W6XF3EdGttrIPZWozHfEaDTU0WJD/TDnXMvdDh30mzUl/9qWhnf7naicYartcEfUghTCSNpA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-exponentiation-operator@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.1.tgz#279c3116756a60dd6e6f5e488ba7957db9c59eb3" + integrity sha512-lr/przdAbpEA2BUzRvjXdEDLrArGRRPwbaF9rvayuHRvdQ7lUTTkZnhZrJ4LE2jvgMRFF4f0YuPQ20vhiPYxtA== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-for-of@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.1.tgz#ff01119784eb0ee32258e8646157ba2501fcfda5" + integrity sha512-US8KCuxfQcn0LwSCMWMma8M2R5mAjJGsmoCBVwlMygvmDUMkTCykc84IqN1M7t+agSfOmLYTInLCHJM+RUoz+w== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-function-name@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.1.tgz#4ed46fd6e1d8fde2a2ec7b03c66d853d2c92427d" + integrity sha512-//bsKsKFBJfGd65qSNNh1exBy5Y9gD9ZN+DvrJ8f7HXr4avE5POW6zB7Rj6VnqHV33+0vXWUwJT0wSHubiAQkw== + dependencies: + "@babel/helper-function-name" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-literals@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.1.tgz#5794f8da82846b22e4e6631ea1658bce708eb46a" + integrity sha512-qi0+5qgevz1NHLZroObRm5A+8JJtibb7vdcPQF1KQE12+Y/xxl8coJ+TpPW9iRq+Mhw/NKLjm+5SHtAHCC7lAw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-member-expression-literals@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.1.tgz#90347cba31bca6f394b3f7bd95d2bbfd9fce2f39" + integrity sha512-UmaWhDokOFT2GcgU6MkHC11i0NQcL63iqeufXWfRy6pUOGYeCGEKhvfFO6Vz70UfYJYHwveg62GS83Rvpxn+NA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-modules-amd@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.1.tgz#65950e8e05797ebd2fe532b96e19fc5482a1d52a" + integrity sha512-31+hnWSFRI4/ACFr1qkboBbrTxoBIzj7qA69qlq8HY8p7+YCzkCT6/TvQ1a4B0z27VeWtAeJd6pr5G04dc1iHw== + dependencies: + "@babel/helper-module-transforms" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + babel-plugin-dynamic-import-node "^2.3.3" + +"@babel/plugin-transform-modules-commonjs@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.1.tgz#d5ff4b4413ed97ffded99961056e1fb980fb9301" + integrity sha512-AQG4fc3KOah0vdITwt7Gi6hD9BtQP/8bhem7OjbaMoRNCH5Djx42O2vYMfau7QnAzQCa+RJnhJBmFFMGpQEzrg== + dependencies: + "@babel/helper-module-transforms" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-simple-access" "^7.10.1" + babel-plugin-dynamic-import-node "^2.3.3" + +"@babel/plugin-transform-modules-systemjs@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.1.tgz#9962e4b0ac6aaf2e20431ada3d8ec72082cbffb6" + integrity sha512-ewNKcj1TQZDL3YnO85qh9zo1YF1CHgmSTlRQgHqe63oTrMI85cthKtZjAiZSsSNjPQ5NCaYo5QkbYqEw1ZBgZA== + dependencies: + "@babel/helper-hoist-variables" "^7.10.1" + "@babel/helper-module-transforms" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + babel-plugin-dynamic-import-node "^2.3.3" + +"@babel/plugin-transform-modules-umd@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.1.tgz#ea080911ffc6eb21840a5197a39ede4ee67b1595" + integrity sha512-EIuiRNMd6GB6ulcYlETnYYfgv4AxqrswghmBRQbWLHZxN4s7mupxzglnHqk9ZiUpDI4eRWewedJJNj67PWOXKA== + dependencies: + "@babel/helper-module-transforms" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz#a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c" + integrity sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.8.3" + +"@babel/plugin-transform-new-target@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.1.tgz#6ee41a5e648da7632e22b6fb54012e87f612f324" + integrity sha512-MBlzPc1nJvbmO9rPr1fQwXOM2iGut+JC92ku6PbiJMMK7SnQc1rytgpopveE3Evn47gzvGYeCdgfCDbZo0ecUw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-object-super@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.1.tgz#2e3016b0adbf262983bf0d5121d676a5ed9c4fde" + integrity sha512-WnnStUDN5GL+wGQrJylrnnVlFhFmeArINIR9gjhSeYyvroGhBrSAXYg/RHsnfzmsa+onJrTJrEClPzgNmmQ4Gw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-replace-supers" "^7.10.1" + +"@babel/plugin-transform-parameters@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.1.tgz#b25938a3c5fae0354144a720b07b32766f683ddd" + integrity sha512-tJ1T0n6g4dXMsL45YsSzzSDZCxiHXAQp/qHrucOq5gEHncTA3xDxnd5+sZcoQp+N1ZbieAaB8r/VUCG0gqseOg== + dependencies: + "@babel/helper-get-function-arity" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-property-literals@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.1.tgz#cffc7315219230ed81dc53e4625bf86815b6050d" + integrity sha512-Kr6+mgag8auNrgEpbfIWzdXYOvqDHZOF0+Bx2xh4H2EDNwcbRb9lY6nkZg8oSjsX+DH9Ebxm9hOqtKW+gRDeNA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-regenerator@^7.10.1", "@babel/plugin-transform-regenerator@^7.8.7": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.1.tgz#10e175cbe7bdb63cc9b39f9b3f823c5c7c5c5490" + integrity sha512-B3+Y2prScgJ2Bh/2l9LJxKbb8C8kRfsG4AdPT+n7ixBHIxJaIG8bi8tgjxUMege1+WqSJ+7gu1YeoMVO3gPWzw== + dependencies: + regenerator-transform "^0.14.2" + +"@babel/plugin-transform-reserved-words@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.1.tgz#0fc1027312b4d1c3276a57890c8ae3bcc0b64a86" + integrity sha512-qN1OMoE2nuqSPmpTqEM7OvJ1FkMEV+BjVeZZm9V9mq/x1JLKQ4pcv8riZJMNN3u2AUGl0ouOMjRr2siecvHqUQ== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-runtime@^7.9.0": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.10.1.tgz#fd1887f749637fb2ed86dc278e79eb41df37f4b1" + integrity sha512-4w2tcglDVEwXJ5qxsY++DgWQdNJcCCsPxfT34wCUwIf2E7dI7pMpH8JczkMBbgBTNzBX62SZlNJ9H+De6Zebaw== + dependencies: + "@babel/helper-module-imports" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + resolve "^1.8.1" + semver "^5.5.1" + +"@babel/plugin-transform-shorthand-properties@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.1.tgz#e8b54f238a1ccbae482c4dce946180ae7b3143f3" + integrity sha512-AR0E/lZMfLstScFwztApGeyTHJ5u3JUKMjneqRItWeEqDdHWZwAOKycvQNCasCK/3r5YXsuNG25funcJDu7Y2g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-spread@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.1.tgz#0c6d618a0c4461a274418460a28c9ccf5239a7c8" + integrity sha512-8wTPym6edIrClW8FI2IoaePB91ETOtg36dOkj3bYcNe7aDMN2FXEoUa+WrmPc4xa1u2PQK46fUX2aCb+zo9rfw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-sticky-regex@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.1.tgz#90fc89b7526228bed9842cff3588270a7a393b00" + integrity sha512-j17ojftKjrL7ufX8ajKvwRilwqTok4q+BjkknmQw9VNHnItTyMP5anPFzxFJdCQs7clLcWpCV3ma+6qZWLnGMA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/helper-regex" "^7.10.1" + +"@babel/plugin-transform-template-literals@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.1.tgz#914c7b7f4752c570ea00553b4284dad8070e8628" + integrity sha512-t7B/3MQf5M1T9hPCRG28DNGZUuxAuDqLYS03rJrIk2prj/UV7Z6FOneijhQhnv/Xa039vidXeVbvjK2SK5f7Gg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-typeof-symbol@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.1.tgz#60c0239b69965d166b80a84de7315c1bc7e0bb0e" + integrity sha512-qX8KZcmbvA23zDi+lk9s6hC1FM7jgLHYIjuLgULgc8QtYnmB3tAVIYkNoKRQ75qWBeyzcoMoK8ZQmogGtC/w0g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-unicode-escapes@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.1.tgz#add0f8483dab60570d9e03cecef6c023aa8c9940" + integrity sha512-zZ0Poh/yy1d4jeDWpx/mNwbKJVwUYJX73q+gyh4bwtG0/iUlzdEu0sLMda8yuDFS6LBQlT/ST1SJAR6zYwXWgw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/plugin-transform-unicode-regex@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.1.tgz#6b58f2aea7b68df37ac5025d9c88752443a6b43f" + integrity sha512-Y/2a2W299k0VIUdbqYm9X2qS6fE0CUBhhiPpimK6byy7OJ/kORLlIX+J6UrjgNu5awvs62k+6RSslxhcvVw2Tw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + +"@babel/preset-env@^7.9.0": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.10.2.tgz#715930f2cf8573b0928005ee562bed52fb65fdfb" + integrity sha512-MjqhX0RZaEgK/KueRzh+3yPSk30oqDKJ5HP5tqTSB1e2gzGS3PLy7K0BIpnp78+0anFuSwOeuCf1zZO7RzRvEA== + dependencies: + "@babel/compat-data" "^7.10.1" + "@babel/helper-compilation-targets" "^7.10.2" + "@babel/helper-module-imports" "^7.10.1" + "@babel/helper-plugin-utils" "^7.10.1" + "@babel/plugin-proposal-async-generator-functions" "^7.10.1" + "@babel/plugin-proposal-class-properties" "^7.10.1" + "@babel/plugin-proposal-dynamic-import" "^7.10.1" + "@babel/plugin-proposal-json-strings" "^7.10.1" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.1" + "@babel/plugin-proposal-numeric-separator" "^7.10.1" + "@babel/plugin-proposal-object-rest-spread" "^7.10.1" + "@babel/plugin-proposal-optional-catch-binding" "^7.10.1" + "@babel/plugin-proposal-optional-chaining" "^7.10.1" + "@babel/plugin-proposal-private-methods" "^7.10.1" + "@babel/plugin-proposal-unicode-property-regex" "^7.10.1" + "@babel/plugin-syntax-async-generators" "^7.8.0" + "@babel/plugin-syntax-class-properties" "^7.10.1" + "@babel/plugin-syntax-dynamic-import" "^7.8.0" + "@babel/plugin-syntax-json-strings" "^7.8.0" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + "@babel/plugin-syntax-numeric-separator" "^7.10.1" + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + "@babel/plugin-syntax-top-level-await" "^7.10.1" + "@babel/plugin-transform-arrow-functions" "^7.10.1" + "@babel/plugin-transform-async-to-generator" "^7.10.1" + "@babel/plugin-transform-block-scoped-functions" "^7.10.1" + "@babel/plugin-transform-block-scoping" "^7.10.1" + "@babel/plugin-transform-classes" "^7.10.1" + "@babel/plugin-transform-computed-properties" "^7.10.1" + "@babel/plugin-transform-destructuring" "^7.10.1" + "@babel/plugin-transform-dotall-regex" "^7.10.1" + "@babel/plugin-transform-duplicate-keys" "^7.10.1" + "@babel/plugin-transform-exponentiation-operator" "^7.10.1" + "@babel/plugin-transform-for-of" "^7.10.1" + "@babel/plugin-transform-function-name" "^7.10.1" + "@babel/plugin-transform-literals" "^7.10.1" + "@babel/plugin-transform-member-expression-literals" "^7.10.1" + "@babel/plugin-transform-modules-amd" "^7.10.1" + "@babel/plugin-transform-modules-commonjs" "^7.10.1" + "@babel/plugin-transform-modules-systemjs" "^7.10.1" + "@babel/plugin-transform-modules-umd" "^7.10.1" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3" + "@babel/plugin-transform-new-target" "^7.10.1" + "@babel/plugin-transform-object-super" "^7.10.1" + "@babel/plugin-transform-parameters" "^7.10.1" + "@babel/plugin-transform-property-literals" "^7.10.1" + "@babel/plugin-transform-regenerator" "^7.10.1" + "@babel/plugin-transform-reserved-words" "^7.10.1" + "@babel/plugin-transform-shorthand-properties" "^7.10.1" + "@babel/plugin-transform-spread" "^7.10.1" + "@babel/plugin-transform-sticky-regex" "^7.10.1" + "@babel/plugin-transform-template-literals" "^7.10.1" + "@babel/plugin-transform-typeof-symbol" "^7.10.1" + "@babel/plugin-transform-unicode-escapes" "^7.10.1" + "@babel/plugin-transform-unicode-regex" "^7.10.1" + "@babel/preset-modules" "^0.1.3" + "@babel/types" "^7.10.2" + browserslist "^4.12.0" + core-js-compat "^3.6.2" + invariant "^2.2.2" + levenary "^1.1.1" + semver "^5.5.0" + +"@babel/preset-modules@^0.1.3": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72" + integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + +"@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.2.tgz#d103f21f2602497d38348a32e008637d506db839" + integrity sha512-6sF3uQw2ivImfVIl62RZ7MXhO2tap69WeWK57vAaimT6AZbE4FbqjdEJIN1UqoD6wI6B+1n9UiagafH1sxjOtg== + dependencies: + regenerator-runtime "^0.13.4" + +"@babel/template@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.1.tgz#e167154a94cb5f14b28dc58f5356d2162f539811" + integrity sha512-OQDg6SqvFSsc9A0ej6SKINWrpJiNonRIniYondK2ViKhB06i3c0s+76XUft71iqBEe9S1OKsHwPAjfHnuvnCig== + dependencies: + "@babel/code-frame" "^7.10.1" + "@babel/parser" "^7.10.1" + "@babel/types" "^7.10.1" + +"@babel/traverse@^7.10.1": + version "7.10.1" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.1.tgz#bbcef3031e4152a6c0b50147f4958df54ca0dd27" + integrity sha512-C/cTuXeKt85K+p08jN6vMDz8vSV0vZcI0wmQ36o6mjbuo++kPMdpOYw23W2XH04dbRt9/nMEfA4W3eR21CD+TQ== + dependencies: + "@babel/code-frame" "^7.10.1" + "@babel/generator" "^7.10.1" + "@babel/helper-function-name" "^7.10.1" + "@babel/helper-split-export-declaration" "^7.10.1" + "@babel/parser" "^7.10.1" + "@babel/types" "^7.10.1" + debug "^4.1.0" + globals "^11.1.0" + lodash "^4.17.13" + +"@babel/types@^7.10.1", "@babel/types@^7.10.2", "@babel/types@^7.4.4": + version "7.10.2" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.2.tgz#30283be31cad0dbf6fb00bd40641ca0ea675172d" + integrity sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng== + dependencies: + "@babel/helper-validator-identifier" "^7.10.1" + lodash "^4.17.13" + to-fast-properties "^2.0.0" + +"@csstools/convert-colors@^1.4.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7" + integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw== + +"@fortawesome/fontawesome-free@^5.13.0": + version "5.13.0" + resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.13.0.tgz#fcb113d1aca4b471b709e8c9c168674fbd6e06d9" + integrity sha512-xKOeQEl5O47GPZYIMToj6uuA2syyFlq9EMSl2ui0uytjY9xbe8XS0pexNWmxrdcCyNGyDmLyYw5FtKsalBUeOg== + +"@rails/ujs@^6.0.3-1": + version "6.0.3-1" + resolved "https://registry.yarnpkg.com/@rails/ujs/-/ujs-6.0.3-1.tgz#7eef443207cc50ac70604216e8bb02f63d97324e" + integrity sha512-OjbJo15U5Gn8FGfmJnbnTcE1MyVdtGrEbAXVS0u1/n4th0jWxJX5G5W793Ll85K31/VDr5Pbz4S8hdR0iXsh/g== + +"@rails/webpacker@^5.1.1": + version "5.1.1" + resolved "https://registry.yarnpkg.com/@rails/webpacker/-/webpacker-5.1.1.tgz#3c937aa719e46341f037a3f37349ef58085950df" + integrity sha512-ho5Stv9naZgG4HbHNFPqbA1OLPJyj6QXfgAc7VGCu4kkMe/RnVFLoLJFW6TZ9wYelKodBjRA2tKKiCaugv0sZw== + dependencies: + "@babel/core" "^7.9.0" + "@babel/plugin-proposal-class-properties" "^7.8.3" + "@babel/plugin-proposal-object-rest-spread" "^7.9.0" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-transform-destructuring" "^7.8.8" + "@babel/plugin-transform-regenerator" "^7.8.7" + "@babel/plugin-transform-runtime" "^7.9.0" + "@babel/preset-env" "^7.9.0" + "@babel/runtime" "^7.9.2" + babel-loader "^8.1.0" + babel-plugin-dynamic-import-node "^2.3.0" + babel-plugin-macros "^2.8.0" + case-sensitive-paths-webpack-plugin "^2.3.0" + compression-webpack-plugin "^3.1.0" + core-js "^3.6.4" + css-loader "^3.4.2" + file-loader "^6.0.0" + flatted "^2.0.1" + glob "^7.1.6" + js-yaml "^3.13.1" + mini-css-extract-plugin "^0.9.0" + node-sass "^4.13.1" + optimize-css-assets-webpack-plugin "^5.0.3" + path-complete-extname "^1.0.0" + pnp-webpack-plugin "^1.6.4" + postcss-flexbugs-fixes "^4.2.0" + postcss-import "^12.0.1" + postcss-loader "^3.0.0" + postcss-preset-env "^6.7.0" + postcss-safe-parser "^4.0.2" + regenerator-runtime "^0.13.5" + sass-loader "^8.0.2" + style-loader "^1.1.3" + terser-webpack-plugin "^2.3.5" + webpack "^4.42.1" + webpack-assets-manifest "^3.1.1" + webpack-cli "^3.3.11" + webpack-sources "^1.4.3" + +"@types/color-name@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" + integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== + +"@types/concat-stream@^1.6.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@types/concat-stream/-/concat-stream-1.6.0.tgz#394dbe0bb5fee46b38d896735e8b68ef2390d00d" + integrity sha1-OU2+C7X+5Gs42JZzXoto7yOQ0A0= + dependencies: + "@types/node" "*" + +"@types/events@*": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" + integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== + +"@types/form-data@0.0.33": + version "0.0.33" + resolved "https://registry.yarnpkg.com/@types/form-data/-/form-data-0.0.33.tgz#c9ac85b2a5fd18435b8c85d9ecb50e6d6c893ff8" + integrity sha1-yayFsqX9GENbjIXZ7LUObWyJP/g= + dependencies: + "@types/node" "*" + +"@types/glob@^7.1.1": + version "7.1.1" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" + integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== + dependencies: + "@types/events" "*" + "@types/minimatch" "*" + "@types/node" "*" + +"@types/json-schema@^7.0.4": + version "7.0.4" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339" + integrity sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA== + +"@types/minimatch@*": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" + integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== + +"@types/node@*": + version "14.0.6" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.6.tgz#f9e178b2da31a4b0ec60b64649e244c31ce18daf" + integrity sha512-FbNmu4F67d3oZMWBV6Y4MaPER+0EpE9eIYf2yaHhCWovc1dlXCZkqGX4NLHfVVr6umt20TNBdRzrNJIzIKfdbw== + +"@types/node@^10.0.3": + version "10.17.24" + resolved "https://registry.yarnpkg.com/@types/node/-/node-10.17.24.tgz#c57511e3a19c4b5e9692bb2995c40a3a52167944" + integrity sha512-5SCfvCxV74kzR3uWgTYiGxrd69TbT1I6+cMx1A5kEly/IVveJBimtAMlXiEyVFn5DvUFewQWxOOiJhlxeQwxgA== + +"@types/node@^7.0.31": + version "7.10.11" + resolved "https://registry.yarnpkg.com/@types/node/-/node-7.10.11.tgz#2e533ffcc777d2a6ee8d00b6f82e0cdd3c3781e1" + integrity sha512-uEqP1HlJFhsgD8DOBFdC72/5selvor0mzdQY97zlyo8Q6qPl849cFBWkNpgTXw3jIvb7iNyWsId51/A8HYKzbQ== + +"@types/node@^8.0.0": + version "8.10.61" + resolved "https://registry.yarnpkg.com/@types/node/-/node-8.10.61.tgz#d299136ce54bcaf1abaa4a487f9e4bedf6b0d393" + integrity sha512-l+zSbvT8TPRaCxL1l9cwHCb0tSqGAGcjPJFItGGYat5oCTiq1uQQKYg5m7AF1mgnEBzFXGLJ2LRmNjtreRX76Q== + +"@types/parse-json@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== + +"@types/q@^1.5.1": + version "1.5.4" + resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" + integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== + +"@types/qs@^6.2.31": + version "6.9.3" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.3.tgz#b755a0934564a200d3efdf88546ec93c369abd03" + integrity sha512-7s9EQWupR1fTc2pSMtXRQ9w9gLOcrJn+h7HOXw4evxyvVqMi4f+q7d2tnFe3ng3SNHjtK+0EzGMGFUQX4/AQRA== + +"@webassemblyjs/ast@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964" + integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA== + dependencies: + "@webassemblyjs/helper-module-context" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/wast-parser" "1.9.0" + +"@webassemblyjs/floating-point-hex-parser@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4" + integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA== + +"@webassemblyjs/helper-api-error@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2" + integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw== + +"@webassemblyjs/helper-buffer@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00" + integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA== + +"@webassemblyjs/helper-code-frame@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27" + integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA== + dependencies: + "@webassemblyjs/wast-printer" "1.9.0" + +"@webassemblyjs/helper-fsm@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8" + integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw== + +"@webassemblyjs/helper-module-context@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07" + integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g== + dependencies: + "@webassemblyjs/ast" "1.9.0" + +"@webassemblyjs/helper-wasm-bytecode@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790" + integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw== + +"@webassemblyjs/helper-wasm-section@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346" + integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-buffer" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/wasm-gen" "1.9.0" + +"@webassemblyjs/ieee754@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4" + integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95" + integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw== + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab" + integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w== + +"@webassemblyjs/wasm-edit@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf" + integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-buffer" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/helper-wasm-section" "1.9.0" + "@webassemblyjs/wasm-gen" "1.9.0" + "@webassemblyjs/wasm-opt" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + "@webassemblyjs/wast-printer" "1.9.0" + +"@webassemblyjs/wasm-gen@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c" + integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/ieee754" "1.9.0" + "@webassemblyjs/leb128" "1.9.0" + "@webassemblyjs/utf8" "1.9.0" + +"@webassemblyjs/wasm-opt@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61" + integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-buffer" "1.9.0" + "@webassemblyjs/wasm-gen" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + +"@webassemblyjs/wasm-parser@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e" + integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-api-error" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/ieee754" "1.9.0" + "@webassemblyjs/leb128" "1.9.0" + "@webassemblyjs/utf8" "1.9.0" + +"@webassemblyjs/wast-parser@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914" + integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/floating-point-hex-parser" "1.9.0" + "@webassemblyjs/helper-api-error" "1.9.0" + "@webassemblyjs/helper-code-frame" "1.9.0" + "@webassemblyjs/helper-fsm" "1.9.0" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/wast-printer@1.9.0": + version "1.9.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899" + integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/wast-parser" "1.9.0" + "@xtuc/long" "4.2.2" + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: + version "1.3.7" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" + integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== + dependencies: + mime-types "~2.1.24" + negotiator "0.6.2" + +acorn-jsx@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" + integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== + +acorn@^6.4.1: + version "6.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" + integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== + +acorn@^7.1.1: + version "7.2.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.2.0.tgz#17ea7e40d7c8640ff54a694c889c26f31704effe" + integrity sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ== + +aggregate-error@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" + integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + +ajv-errors@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" + integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== + +ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" + integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== + +ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.5.5: + version "6.12.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd" + integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +alphanum-sort@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" + integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= + +amdefine@>=0.0.4: + version "1.0.1" + resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= + +ansi-colors@^3.0.0: + version "3.2.4" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" + integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== + +ansi-escapes@^4.2.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" + integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== + dependencies: + type-fest "^0.11.0" + +ansi-html@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" + integrity sha1-gTWEAhliqenm/QOflA0S9WynhZ4= + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + +ansi-regex@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" + integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== + +ansi-regex@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" + integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= + +ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.1.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" + integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== + dependencies: + "@types/color-name" "^1.1.1" + color-convert "^2.0.1" + +anymatch@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== + dependencies: + micromatch "^3.1.4" + normalize-path "^2.1.1" + +anymatch@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" + integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +aproba@^1.0.3, aproba@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== + +are-we-there-yet@~1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" + integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= + +arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= + +array-find-index@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= + +array-flatten@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" + integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== + +array-includes@^3.0.3: + version "3.1.1" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" + integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0" + is-string "^1.0.5" + +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= + dependencies: + array-uniq "^1.0.1" + +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= + +array.prototype.flat@^1.2.1: + version "1.2.3" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" + integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" + +asap@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= + +asn1.js@^4.0.0: + version "4.10.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" + integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +asn1@~0.2.3: + version "0.2.4" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" + integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== + dependencies: + safer-buffer "~2.1.0" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= + +assert@^1.1.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" + integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== + dependencies: + object-assign "^4.1.1" + util "0.10.3" + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= + +astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + +async-each@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" + integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== + +async-foreach@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" + integrity sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI= + +async-limiter@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== + +async@^2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" + integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== + dependencies: + lodash "^4.17.14" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + +atob@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + +autoprefixer@^9.6.1: + version "9.8.0" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.0.tgz#68e2d2bef7ba4c3a65436f662d0a56a741e56511" + integrity sha512-D96ZiIHXbDmU02dBaemyAg53ez+6F5yZmapmgKcjm35yEe1uVDYI8hGW3VYoGRaG290ZFf91YxHrR518vC0u/A== + dependencies: + browserslist "^4.12.0" + caniuse-lite "^1.0.30001061" + chalk "^2.4.2" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + postcss "^7.0.30" + postcss-value-parser "^4.1.0" + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= + +aws4@^1.8.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.0.tgz#a17b3a8ea811060e74d47d306122400ad4497ae2" + integrity sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA== + +babel-loader@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3" + integrity sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw== + dependencies: + find-cache-dir "^2.1.0" + loader-utils "^1.4.0" + mkdirp "^0.5.3" + pify "^4.0.1" + schema-utils "^2.6.5" + +babel-plugin-dynamic-import-node@^2.3.0, babel-plugin-dynamic-import-node@^2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" + integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== + dependencies: + object.assign "^4.1.0" + +babel-plugin-macros@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138" + integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg== + dependencies: + "@babel/runtime" "^7.7.2" + cosmiconfig "^6.0.0" + resolve "^1.12.0" + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= + +base64-js@^1.0.2: + version "1.3.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" + integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + +batch@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + integrity sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY= + +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= + dependencies: + tweetnacl "^0.14.3" + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +binary-extensions@^1.0.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" + integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== + +binary-extensions@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" + integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== + +bindings@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +block-stream@*: + version "0.0.9" + resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" + integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo= + dependencies: + inherits "~2.0.0" + +bluebird@^3.5.5: + version "3.7.2" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: + version "4.11.9" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" + integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== + +bn.js@^5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0" + integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA== + +body-parser@1.19.0: + version "1.19.0" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" + integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== + dependencies: + bytes "3.1.0" + content-type "~1.0.4" + debug "2.6.9" + depd "~1.1.2" + http-errors "1.7.2" + iconv-lite "0.4.24" + on-finished "~2.3.0" + qs "6.7.0" + raw-body "2.4.0" + type-is "~1.6.17" + +bonjour@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5" + integrity sha1-jokKGD2O6aI5OzhExpGkK897yfU= + dependencies: + array-flatten "^2.1.0" + deep-equal "^1.0.1" + dns-equal "^1.0.0" + dns-txt "^2.0.2" + multicast-dns "^6.0.1" + multicast-dns-service-types "^1.1.0" + +boolbase@^1.0.0, boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= + +bootstrap@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.5.0.tgz#97d9dbcb5a8972f8722c9962483543b907d9b9ec" + integrity sha512-Z93QoXvodoVslA+PWNdk23Hze4RBYIkpb5h8I2HY2Tu2h7A0LpAgLcyrhrSUyo2/Oxm2l1fRZPs1e5hnxnliXA== + +bootswatch@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/bootswatch/-/bootswatch-4.5.0.tgz#1f4ea460118d0da8113418f1627ca755697d7e0f" + integrity sha512-kAfYTTWIsgUOA5nybJNM4yvOpwxm37eIb1DFZlD5jLgPttK+bLJTt9UpKWAoMQZRBQbWfC1O1w1P5PGU7lz83Q== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^2.3.1, braces@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +brorand@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.2.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" + integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= + dependencies: + bn.js "^4.1.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.0.tgz#545d0b1b07e6b2c99211082bf1b12cce7a0b0e11" + integrity sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA== + dependencies: + bn.js "^5.1.1" + browserify-rsa "^4.0.1" + create-hash "^1.2.0" + create-hmac "^1.1.7" + elliptic "^6.5.2" + inherits "^2.0.4" + parse-asn1 "^5.1.5" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" + +browserify-zlib@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== + dependencies: + pako "~1.0.5" + +browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.6.4, browserslist@^4.8.5: + version "4.12.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.12.0.tgz#06c6d5715a1ede6c51fc39ff67fd647f740b656d" + integrity sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg== + dependencies: + caniuse-lite "^1.0.30001043" + electron-to-chromium "^1.3.413" + node-releases "^1.1.53" + pkg-up "^2.0.0" + +buffer-from@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + +buffer-indexof@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" + integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g== + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= + +buffer@^4.3.0: + version "4.9.2" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" + integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= + +bytes@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" + integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== + +cacache@^12.0.2: + version "12.0.4" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c" + integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ== + dependencies: + bluebird "^3.5.5" + chownr "^1.1.1" + figgy-pudding "^3.5.1" + glob "^7.1.4" + graceful-fs "^4.1.15" + infer-owner "^1.0.3" + lru-cache "^5.1.1" + mississippi "^3.0.0" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + promise-inflight "^1.0.1" + rimraf "^2.6.3" + ssri "^6.0.1" + unique-filename "^1.1.1" + y18n "^4.0.0" + +cacache@^13.0.1: + version "13.0.1" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-13.0.1.tgz#a8000c21697089082f85287a1aec6e382024a71c" + integrity sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w== + dependencies: + chownr "^1.1.2" + figgy-pudding "^3.5.1" + fs-minipass "^2.0.0" + glob "^7.1.4" + graceful-fs "^4.2.2" + infer-owner "^1.0.4" + lru-cache "^5.1.1" + minipass "^3.0.0" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.2" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + p-map "^3.0.0" + promise-inflight "^1.0.1" + rimraf "^2.7.1" + ssri "^7.0.0" + unique-filename "^1.1.1" + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + +caller-callsite@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= + dependencies: + callsites "^2.0.0" + +caller-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= + dependencies: + caller-callsite "^2.0.0" + +callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" + integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc= + dependencies: + camelcase "^2.0.0" + map-obj "^1.0.0" + +camelcase@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= + +camelcase@^5.0.0, camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +caniuse-api@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" + integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== + dependencies: + browserslist "^4.0.0" + caniuse-lite "^1.0.0" + lodash.memoize "^4.1.2" + lodash.uniq "^4.5.0" + +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001043, caniuse-lite@^1.0.30001061: + version "1.0.30001066" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001066.tgz#0a8a58a10108f2b9bf38e7b65c237b12fd9c5f04" + integrity sha512-Gfj/WAastBtfxLws0RCh2sDbTK/8rJuSeZMecrSkNGYxPcv7EzblmDGfWQCFEQcSqYE2BRgQiJh8HOD07N5hIw== + +case-sensitive-paths-webpack-plugin@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz#23ac613cc9a856e4f88ff8bb73bbb5e989825cf7" + integrity sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ== + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= + +chalk@2.4.2, chalk@^2.0, chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +"chokidar@>=2.0.0 <4.0.0", chokidar@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.0.tgz#b30611423ce376357c765b9b8f904b9fba3c0be8" + integrity sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ== + dependencies: + anymatch "~3.1.1" + braces "~3.0.2" + glob-parent "~5.1.0" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.4.0" + optionalDependencies: + fsevents "~2.1.2" + +chokidar@^2.1.8: + version "2.1.8" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" + integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== + dependencies: + anymatch "^2.0.0" + async-each "^1.0.1" + braces "^2.3.2" + glob-parent "^3.1.0" + inherits "^2.0.3" + is-binary-path "^1.0.0" + is-glob "^4.0.0" + normalize-path "^3.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.2.1" + upath "^1.1.1" + optionalDependencies: + fsevents "^1.2.7" + +chownr@^1.1.1, chownr@^1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + +chrome-trace-event@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" + integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== + dependencies: + tslib "^1.9.0" + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-width@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" + integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== + +cliui@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" + integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== + dependencies: + string-width "^3.1.0" + strip-ansi "^5.2.0" + wrap-ansi "^5.1.0" + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +coa@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" + integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== + dependencies: + "@types/q" "^1.5.1" + chalk "^2.4.1" + q "^1.1.2" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + +color-convert@^1.9.0, color-convert@^1.9.1: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +color-name@^1.0.0, color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-string@^1.5.2: + version "1.5.3" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" + integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + +color@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" + integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== + dependencies: + color-convert "^1.9.1" + color-string "^1.5.2" + +combined-stream@^1.0.6, combined-stream@~1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@2, commander@^2.20.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= + +component-emitter@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" + integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== + +compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + +compression-webpack-plugin@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-3.1.0.tgz#9f510172a7b5fae5aad3b670652e8bd7997aeeca" + integrity sha512-iqTHj3rADN4yHwXMBrQa/xrncex/uEQy8QHlaTKxGchT/hC0SdlJlmL/5eRqffmWq2ep0/Romw6Ld39JjTR/ug== + dependencies: + cacache "^13.0.1" + find-cache-dir "^3.0.0" + neo-async "^2.5.0" + schema-utils "^2.6.1" + serialize-javascript "^2.1.2" + webpack-sources "^1.0.1" + +compression@^1.7.4: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.16" + debug "2.6.9" + on-headers "~1.0.2" + safe-buffer "5.1.2" + vary "~1.1.2" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + +concat-stream@^1.4.6, concat-stream@^1.5.0, concat-stream@^1.6.0: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +confusing-browser-globals@^1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz#72bc13b483c0276801681871d4898516f8f54fdd" + integrity sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw== + +connect-history-api-fallback@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc" + integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg== + +console-browserify@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" + integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= + +constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= + +contains-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" + integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= + +content-disposition@0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" + integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== + dependencies: + safe-buffer "5.1.2" + +content-type@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + +convert-source-map@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" + integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== + dependencies: + safe-buffer "~5.1.1" + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= + +cookie@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" + integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== + +cookies@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/cookies/-/cookies-0.8.0.tgz#1293ce4b391740a8406e3c9870e828c4b54f3f90" + integrity sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow== + dependencies: + depd "~2.0.0" + keygrip "~1.1.0" + +copy-concurrently@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" + integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== + dependencies: + aproba "^1.1.1" + fs-write-stream-atomic "^1.0.8" + iferr "^0.1.5" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.0" + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= + +core-js-compat@^3.6.2: + version "3.6.5" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c" + integrity sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng== + dependencies: + browserslist "^4.8.5" + semver "7.0.0" + +core-js@^3.6.4: + version "3.6.5" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a" + integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA== + +core-util-is@1.0.2, core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + +cosmiconfig@^5.0.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" + integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== + dependencies: + import-fresh "^2.0.0" + is-directory "^0.3.1" + js-yaml "^3.13.1" + parse-json "^4.0.0" + +cosmiconfig@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" + integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.1.0" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.7.2" + +create-ecdh@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" + integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== + dependencies: + bn.js "^4.1.0" + elliptic "^6.0.0" + +create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + md5.js "^1.3.4" + ripemd160 "^2.0.1" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" + integrity sha1-ElYDfsufDF9549bvE14wdwGEuYI= + dependencies: + lru-cache "^4.0.1" + which "^1.2.9" + +crypto-browserify@^3.11.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + randomfill "^1.0.3" + +css-blank-pseudo@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz#dfdefd3254bf8a82027993674ccf35483bfcb3c5" + integrity sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w== + dependencies: + postcss "^7.0.5" + +css-color-names@0.0.4, css-color-names@^0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" + integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= + +css-declaration-sorter@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22" + integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA== + dependencies: + postcss "^7.0.1" + timsort "^0.3.0" + +css-has-pseudo@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz#3c642ab34ca242c59c41a125df9105841f6966ee" + integrity sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ== + dependencies: + postcss "^7.0.6" + postcss-selector-parser "^5.0.0-rc.4" + +css-loader@^3.4.2: + version "3.5.3" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.5.3.tgz#95ac16468e1adcd95c844729e0bb167639eb0bcf" + integrity sha512-UEr9NH5Lmi7+dguAm+/JSPovNjYbm2k3TK58EiwQHzOHH5Jfq1Y+XoP2bQO6TMn7PptMd0opxxedAWcaSTRKHw== + dependencies: + camelcase "^5.3.1" + cssesc "^3.0.0" + icss-utils "^4.1.1" + loader-utils "^1.2.3" + normalize-path "^3.0.0" + postcss "^7.0.27" + postcss-modules-extract-imports "^2.0.0" + postcss-modules-local-by-default "^3.0.2" + postcss-modules-scope "^2.2.0" + postcss-modules-values "^3.0.0" + postcss-value-parser "^4.0.3" + schema-utils "^2.6.6" + semver "^6.3.0" + +css-prefers-color-scheme@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz#6f830a2714199d4f0d0d0bb8a27916ed65cff1f4" + integrity sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg== + dependencies: + postcss "^7.0.5" + +css-select-base-adapter@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" + integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== + +css-select@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" + integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== + dependencies: + boolbase "^1.0.0" + css-what "^3.2.1" + domutils "^1.7.0" + nth-check "^1.0.2" + +css-tree@1.0.0-alpha.37: + version "1.0.0-alpha.37" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" + integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== + dependencies: + mdn-data "2.0.4" + source-map "^0.6.1" + +css-tree@1.0.0-alpha.39: + version "1.0.0-alpha.39" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.39.tgz#2bff3ffe1bb3f776cf7eefd91ee5cba77a149eeb" + integrity sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA== + dependencies: + mdn-data "2.0.6" + source-map "^0.6.1" + +css-what@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.3.0.tgz#10fec696a9ece2e591ac772d759aacabac38cd39" + integrity sha512-pv9JPyatiPaQ6pf4OvD/dbfm0o5LviWmwxNWzblYf/1u9QZd0ihV+PMwy5jdQWQ3349kZmKEx9WXuSka2dM4cg== + +cssdb@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.4.0.tgz#3bf2f2a68c10f5c6a08abd92378331ee803cddb0" + integrity sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ== + +cssesc@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" + integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg== + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +cssnano-preset-default@^4.0.7: + version "4.0.7" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76" + integrity sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA== + dependencies: + css-declaration-sorter "^4.0.1" + cssnano-util-raw-cache "^4.0.1" + postcss "^7.0.0" + postcss-calc "^7.0.1" + postcss-colormin "^4.0.3" + postcss-convert-values "^4.0.1" + postcss-discard-comments "^4.0.2" + postcss-discard-duplicates "^4.0.2" + postcss-discard-empty "^4.0.1" + postcss-discard-overridden "^4.0.1" + postcss-merge-longhand "^4.0.11" + postcss-merge-rules "^4.0.3" + postcss-minify-font-values "^4.0.2" + postcss-minify-gradients "^4.0.2" + postcss-minify-params "^4.0.2" + postcss-minify-selectors "^4.0.2" + postcss-normalize-charset "^4.0.1" + postcss-normalize-display-values "^4.0.2" + postcss-normalize-positions "^4.0.2" + postcss-normalize-repeat-style "^4.0.2" + postcss-normalize-string "^4.0.2" + postcss-normalize-timing-functions "^4.0.2" + postcss-normalize-unicode "^4.0.1" + postcss-normalize-url "^4.0.1" + postcss-normalize-whitespace "^4.0.2" + postcss-ordered-values "^4.1.2" + postcss-reduce-initial "^4.0.3" + postcss-reduce-transforms "^4.0.2" + postcss-svgo "^4.0.2" + postcss-unique-selectors "^4.0.1" + +cssnano-util-get-arguments@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f" + integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8= + +cssnano-util-get-match@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d" + integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0= + +cssnano-util-raw-cache@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282" + integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA== + dependencies: + postcss "^7.0.0" + +cssnano-util-same-parent@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3" + integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== + +cssnano@^4.1.10: + version "4.1.10" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2" + integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ== + dependencies: + cosmiconfig "^5.0.0" + cssnano-preset-default "^4.0.7" + is-resolvable "^1.0.0" + postcss "^7.0.0" + +csso@^4.0.2: + version "4.0.3" + resolved "https://registry.yarnpkg.com/csso/-/csso-4.0.3.tgz#0d9985dc852c7cc2b2cacfbbe1079014d1a8e903" + integrity sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ== + dependencies: + css-tree "1.0.0-alpha.39" + +currently-unhandled@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" + integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= + dependencies: + array-find-index "^1.0.1" + +cyclist@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" + integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= + +d3-array@1, d3-array@^1.1.1, d3-array@^1.2.0: + version "1.2.4" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.4.tgz#635ce4d5eea759f6f605863dbcfc30edc737f71f" + integrity sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw== + +d3-axis@1: + version "1.0.12" + resolved "https://registry.yarnpkg.com/d3-axis/-/d3-axis-1.0.12.tgz#cdf20ba210cfbb43795af33756886fb3638daac9" + integrity sha512-ejINPfPSNdGFKEOAtnBtdkpr24c4d4jsei6Lg98mxf424ivoDP2956/5HDpIAtmHo85lqT4pruy+zEgvRUBqaQ== + +d3-brush@1: + version "1.1.5" + resolved "https://registry.yarnpkg.com/d3-brush/-/d3-brush-1.1.5.tgz#066b8e84d17b192986030446c97c0fba7e1bacdc" + integrity sha512-rEaJ5gHlgLxXugWjIkolTA0OyMvw8UWU1imYXy1v642XyyswmI1ybKOv05Ft+ewq+TFmdliD3VuK0pRp1VT/5A== + dependencies: + d3-dispatch "1" + d3-drag "1" + d3-interpolate "1" + d3-selection "1" + d3-transition "1" + +d3-chord@1: + version "1.0.6" + resolved "https://registry.yarnpkg.com/d3-chord/-/d3-chord-1.0.6.tgz#309157e3f2db2c752f0280fedd35f2067ccbb15f" + integrity sha512-JXA2Dro1Fxw9rJe33Uv+Ckr5IrAa74TlfDEhE/jfLOaXegMQFQTAgAw9WnZL8+HxVBRXaRGCkrNU7pJeylRIuA== + dependencies: + d3-array "1" + d3-path "1" + +d3-collection@1: + version "1.0.7" + resolved "https://registry.yarnpkg.com/d3-collection/-/d3-collection-1.0.7.tgz#349bd2aa9977db071091c13144d5e4f16b5b310e" + integrity sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A== + +d3-color@1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-1.4.1.tgz#c52002bf8846ada4424d55d97982fef26eb3bc8a" + integrity sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q== + +d3-contour@1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/d3-contour/-/d3-contour-1.3.2.tgz#652aacd500d2264cb3423cee10db69f6f59bead3" + integrity sha512-hoPp4K/rJCu0ladiH6zmJUEz6+u3lgR+GSm/QdM2BBvDraU39Vr7YdDCicJcxP1z8i9B/2dJLgDC1NcvlF8WCg== + dependencies: + d3-array "^1.1.1" + +d3-dispatch@1: + version "1.0.6" + resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-1.0.6.tgz#00d37bcee4dd8cd97729dd893a0ac29caaba5d58" + integrity sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA== + +d3-drag@1: + version "1.2.5" + resolved "https://registry.yarnpkg.com/d3-drag/-/d3-drag-1.2.5.tgz#2537f451acd39d31406677b7dc77c82f7d988f70" + integrity sha512-rD1ohlkKQwMZYkQlYVCrSFxsWPzI97+W+PaEIBNTMxRuxz9RF0Hi5nJWHGVJ3Om9d2fRTe1yOBINJyy/ahV95w== + dependencies: + d3-dispatch "1" + d3-selection "1" + +d3-dsv@1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-1.2.0.tgz#9d5f75c3a5f8abd611f74d3f5847b0d4338b885c" + integrity sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g== + dependencies: + commander "2" + iconv-lite "0.4" + rw "1" + +d3-ease@1: + version "1.0.6" + resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-1.0.6.tgz#ebdb6da22dfac0a22222f2d4da06f66c416a0ec0" + integrity sha512-SZ/lVU7LRXafqp7XtIcBdxnWl8yyLpgOmzAk0mWBI9gXNzLDx5ybZgnRbH9dN/yY5tzVBqCQ9avltSnqVwessQ== + +d3-fetch@1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/d3-fetch/-/d3-fetch-1.1.2.tgz#957c8fbc6d4480599ba191b1b2518bf86b3e1be2" + integrity sha512-S2loaQCV/ZeyTyIF2oP8D1K9Z4QizUzW7cWeAOAS4U88qOt3Ucf6GsmgthuYSdyB2HyEm4CeGvkQxWsmInsIVA== + dependencies: + d3-dsv "1" + +d3-force@1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/d3-force/-/d3-force-1.2.1.tgz#fd29a5d1ff181c9e7f0669e4bd72bdb0e914ec0b" + integrity sha512-HHvehyaiUlVo5CxBJ0yF/xny4xoaxFxDnBXNvNcfW9adORGZfyNF1dj6DGLKyk4Yh3brP/1h3rnDzdIAwL08zg== + dependencies: + d3-collection "1" + d3-dispatch "1" + d3-quadtree "1" + d3-timer "1" + +d3-format@1: + version "1.4.4" + resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-1.4.4.tgz#356925f28d0fd7c7983bfad593726fce46844030" + integrity sha512-TWks25e7t8/cqctxCmxpUuzZN11QxIA7YrMbram94zMQ0PXjE4LVIMe/f6a4+xxL8HQ3OsAFULOINQi1pE62Aw== + +d3-geo@1: + version "1.12.1" + resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-1.12.1.tgz#7fc2ab7414b72e59fbcbd603e80d9adc029b035f" + integrity sha512-XG4d1c/UJSEX9NfU02KwBL6BYPj8YKHxgBEw5om2ZnTRSbIcego6dhHwcxuSR3clxh0EpE38os1DVPOmnYtTPg== + dependencies: + d3-array "1" + +d3-hierarchy@1: + version "1.1.9" + resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz#2f6bee24caaea43f8dc37545fa01628559647a83" + integrity sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ== + +d3-interpolate@1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-1.4.0.tgz#526e79e2d80daa383f9e0c1c1c7dcc0f0583e987" + integrity sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA== + dependencies: + d3-color "1" + +d3-path@1: + version "1.0.9" + resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.9.tgz#48c050bb1fe8c262493a8caf5524e3e9591701cf" + integrity sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg== + +d3-polygon@1: + version "1.0.6" + resolved "https://registry.yarnpkg.com/d3-polygon/-/d3-polygon-1.0.6.tgz#0bf8cb8180a6dc107f518ddf7975e12abbfbd38e" + integrity sha512-k+RF7WvI08PC8reEoXa/w2nSg5AUMTi+peBD9cmFc+0ixHfbs4QmxxkarVal1IkVkgxVuk9JSHhJURHiyHKAuQ== + +d3-quadtree@1: + version "1.0.7" + resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-1.0.7.tgz#ca8b84df7bb53763fe3c2f24bd435137f4e53135" + integrity sha512-RKPAeXnkC59IDGD0Wu5mANy0Q2V28L+fNe65pOCXVdVuTJS3WPKaJlFHer32Rbh9gIo9qMuJXio8ra4+YmIymA== + +d3-random@1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/d3-random/-/d3-random-1.1.2.tgz#2833be7c124360bf9e2d3fd4f33847cfe6cab291" + integrity sha512-6AK5BNpIFqP+cx/sreKzNjWbwZQCSUatxq+pPRmFIQaWuoD+NrbVWw7YWpHiXpCQ/NanKdtGDuB+VQcZDaEmYQ== + +d3-scale-chromatic@1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-1.5.0.tgz#54e333fc78212f439b14641fb55801dd81135a98" + integrity sha512-ACcL46DYImpRFMBcpk9HhtIyC7bTBR4fNOPxwVSl0LfulDAwyiHyPOTqcDG1+t5d4P9W7t/2NAuWu59aKko/cg== + dependencies: + d3-color "1" + d3-interpolate "1" + +d3-scale@2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-2.2.2.tgz#4e880e0b2745acaaddd3ede26a9e908a9e17b81f" + integrity sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw== + dependencies: + d3-array "^1.2.0" + d3-collection "1" + d3-format "1" + d3-interpolate "1" + d3-time "1" + d3-time-format "2" + +d3-selection@1, d3-selection@^1.1.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-1.4.1.tgz#98eedbbe085fbda5bafa2f9e3f3a2f4d7d622a98" + integrity sha512-BTIbRjv/m5rcVTfBs4AMBLKs4x8XaaLkwm28KWu9S2vKNqXkXt2AH2Qf0sdPZHjFxcWg/YL53zcqAz+3g4/7PA== + +d3-shape@1: + version "1.3.7" + resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz#df63801be07bc986bc54f63789b4fe502992b5d7" + integrity sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw== + dependencies: + d3-path "1" + +d3-time-format@2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-2.2.3.tgz#0c9a12ee28342b2037e5ea1cf0b9eb4dd75f29cb" + integrity sha512-RAHNnD8+XvC4Zc4d2A56Uw0yJoM7bsvOlJR33bclxq399Rak/b9bhvu/InjxdWhPtkgU53JJcleJTGkNRnN6IA== + dependencies: + d3-time "1" + +d3-time@1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-1.1.0.tgz#b1e19d307dae9c900b7e5b25ffc5dcc249a8a0f1" + integrity sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA== + +d3-timer@1: + version "1.0.10" + resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-1.0.10.tgz#dfe76b8a91748831b13b6d9c793ffbd508dd9de5" + integrity sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw== + +d3-transition@1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/d3-transition/-/d3-transition-1.3.2.tgz#a98ef2151be8d8600543434c1ca80140ae23b398" + integrity sha512-sc0gRU4PFqZ47lPVHloMn9tlPcv8jxgOQg+0zjhfZXMQuvppjG6YuwdMBE0TuqCZjeJkLecku/l9R0JPcRhaDA== + dependencies: + d3-color "1" + d3-dispatch "1" + d3-ease "1" + d3-interpolate "1" + d3-selection "^1.1.0" + d3-timer "1" + +d3-voronoi@1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/d3-voronoi/-/d3-voronoi-1.1.4.tgz#dd3c78d7653d2bb359284ae478645d95944c8297" + integrity sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg== + +d3-zoom@1: + version "1.8.3" + resolved "https://registry.yarnpkg.com/d3-zoom/-/d3-zoom-1.8.3.tgz#b6a3dbe738c7763121cd05b8a7795ffe17f4fc0a" + integrity sha512-VoLXTK4wvy1a0JpH2Il+F2CiOhVu7VRXWF5M/LroMIh3/zBAC3WAt7QoIvPibOavVo20hN6/37vwAsdBejLyKQ== + dependencies: + d3-dispatch "1" + d3-drag "1" + d3-interpolate "1" + d3-selection "1" + d3-transition "1" + +d3@^5.16.0: + version "5.16.0" + resolved "https://registry.yarnpkg.com/d3/-/d3-5.16.0.tgz#9c5e8d3b56403c79d4ed42fbd62f6113f199c877" + integrity sha512-4PL5hHaHwX4m7Zr1UapXW23apo6pexCgdetdJ5kTmADpG/7T9Gkxw0M0tf/pjoB63ezCCm0u5UaFYy2aMt0Mcw== + dependencies: + d3-array "1" + d3-axis "1" + d3-brush "1" + d3-chord "1" + d3-collection "1" + d3-color "1" + d3-contour "1" + d3-dispatch "1" + d3-drag "1" + d3-dsv "1" + d3-ease "1" + d3-fetch "1" + d3-force "1" + d3-format "1" + d3-geo "1" + d3-hierarchy "1" + d3-interpolate "1" + d3-path "1" + d3-polygon "1" + d3-quadtree "1" + d3-random "1" + d3-scale "2" + d3-scale-chromatic "1" + d3-selection "1" + d3-shape "1" + d3-time "1" + d3-time-format "2" + d3-timer "1" + d3-transition "1" + d3-voronoi "1" + d3-zoom "1" + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= + dependencies: + assert-plus "^1.0.0" + +debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^3.0.0, debug@^3.1.1, debug@^3.2.5: + version "3.2.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" + integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== + dependencies: + ms "^2.1.1" + +debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== + dependencies: + ms "^2.1.1" + +decamelize@^1.1.2, decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + +decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= + +deep-equal@^1.0.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" + integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== + dependencies: + is-arguments "^1.0.4" + is-date-object "^1.0.1" + is-regex "^1.0.4" + object-is "^1.0.1" + object-keys "^1.1.1" + regexp.prototype.flags "^1.2.0" + +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= + +default-gateway@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b" + integrity sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA== + dependencies: + execa "^1.0.0" + ip-regex "^2.1.0" + +define-properties@^1.1.2, define-properties@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== + dependencies: + object-keys "^1.0.12" + +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= + dependencies: + is-descriptor "^0.1.0" + +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= + dependencies: + is-descriptor "^1.0.0" + +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + +del@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4" + integrity sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ== + dependencies: + "@types/glob" "^7.1.1" + globby "^6.1.0" + is-path-cwd "^2.0.0" + is-path-in-cwd "^2.0.0" + p-map "^2.0.0" + pify "^4.0.1" + rimraf "^2.6.3" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= + +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= + +depd@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +des.js@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" + integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +destroy@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= + +detect-file@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" + integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= + +detect-node@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" + integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw== + +diffie-hellman@^5.0.0: + version "5.0.3" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +dns-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" + integrity sha1-s55/HabrCnW6nBcySzR1PEfgZU0= + +dns-packet@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.1.tgz#12aa426981075be500b910eedcd0b47dd7deda5a" + integrity sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg== + dependencies: + ip "^1.1.0" + safe-buffer "^5.0.1" + +dns-txt@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6" + integrity sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY= + dependencies: + buffer-indexof "^1.0.0" + +doctrine@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" + integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-serializer@0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +domain-browser@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" + integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== + +domelementtype@1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + +domelementtype@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d" + integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ== + +domutils@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + dependencies: + dom-serializer "0" + domelementtype "1" + +dot-prop@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb" + integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A== + dependencies: + is-obj "^2.0.0" + +duplexify@^3.4.2, duplexify@^3.6.0: + version "3.7.1" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" + integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== + dependencies: + end-of-stream "^1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.0" + stream-shift "^1.0.0" + +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= + +electron-to-chromium@^1.3.413: + version "1.3.455" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.455.tgz#fd65a3f5db6ffa83eb7c84f16ea9b1b7396f537d" + integrity sha512-4lwnxp+ArqOX9hiLwLpwhfqvwzUHFuDgLz4NTiU3lhygUzWtocIJ/5Vix+mWVNE2HQ9aI1k2ncGe5H/0OktMvA== + +elliptic@^6.0.0, elliptic@^6.5.2: + version "6.5.2" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762" + integrity sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw== + dependencies: + bn.js "^4.4.0" + brorand "^1.0.1" + hash.js "^1.0.0" + hmac-drbg "^1.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.0" + +emoji-regex@^7.0.1: + version "7.0.3" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emojis-list@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= + +emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= + +end-of-stream@^1.0.0, end-of-stream@^1.1.0: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +enhanced-resolve@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f" + integrity sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng== + dependencies: + graceful-fs "^4.1.2" + memory-fs "^0.4.0" + tapable "^1.0.0" + +enhanced-resolve@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66" + integrity sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA== + dependencies: + graceful-fs "^4.1.2" + memory-fs "^0.5.0" + tapable "^1.0.0" + +entities@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.2.tgz#ac74db0bba8d33808bbf36809c3a5c3683531436" + integrity sha512-dmD3AvJQBUjKpcNkoqr+x+IF0SdRtPz9Vk0uTy4yWqga9ibB6s4v++QFWNohjiUGoMlF552ZvNyXDxz5iW0qmw== + +errno@^0.1.3, errno@~0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" + integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== + dependencies: + prr "~1.0.1" + +error-ex@^1.2.0, error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.5: + version "1.17.5" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9" + integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== + dependencies: + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.1" + is-callable "^1.1.5" + is-regex "^1.0.5" + object-inspect "^1.7.0" + object-keys "^1.1.1" + object.assign "^4.1.0" + string.prototype.trimleft "^2.1.1" + string.prototype.trimright "^2.1.1" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +eslint-config-airbnb-base@^14.1.0: + version "14.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.1.0.tgz#2ba4592dd6843258221d9bff2b6831bd77c874e4" + integrity sha512-+XCcfGyCnbzOnktDVhwsCAx+9DmrzEmuwxyHUJpw+kqBVT744OUBrB09khgFKlK1lshVww6qXGsYPZpavoNjJw== + dependencies: + confusing-browser-globals "^1.0.9" + object.assign "^4.1.0" + object.entries "^1.1.1" + +eslint-import-resolver-node@^0.3.2: + version "0.3.3" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz#dbaa52b6b2816b50bc6711af75422de808e98404" + integrity sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg== + dependencies: + debug "^2.6.9" + resolve "^1.13.1" + +eslint-module-utils@^2.4.1: + version "2.6.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6" + integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA== + dependencies: + debug "^2.6.9" + pkg-dir "^2.0.0" + +eslint-plugin-import@^2.20.2: + version "2.20.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.2.tgz#91fc3807ce08be4837141272c8b99073906e588d" + integrity sha512-FObidqpXrR8OnCh4iNsxy+WACztJLXAHBO5hK79T1Hc77PgQZkyDGA5Ag9xAvRpglvLNxhH/zSmZ70/pZ31dHg== + dependencies: + array-includes "^3.0.3" + array.prototype.flat "^1.2.1" + contains-path "^0.1.0" + debug "^2.6.9" + doctrine "1.5.0" + eslint-import-resolver-node "^0.3.2" + eslint-module-utils "^2.4.1" + has "^1.0.3" + minimatch "^3.0.4" + object.values "^1.1.0" + read-pkg-up "^2.0.0" + resolve "^1.12.0" + +eslint-scope@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" + integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-scope@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9" + integrity sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw== + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-utils@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" + integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-visitor-keys@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" + integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== + +eslint@^6.8.0: + version "6.8.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb" + integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig== + dependencies: + "@babel/code-frame" "^7.0.0" + ajv "^6.10.0" + chalk "^2.1.0" + cross-spawn "^6.0.5" + debug "^4.0.1" + doctrine "^3.0.0" + eslint-scope "^5.0.0" + eslint-utils "^1.4.3" + eslint-visitor-keys "^1.1.0" + espree "^6.1.2" + esquery "^1.0.1" + esutils "^2.0.2" + file-entry-cache "^5.0.1" + functional-red-black-tree "^1.0.1" + glob-parent "^5.0.0" + globals "^12.1.0" + ignore "^4.0.6" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + inquirer "^7.0.0" + is-glob "^4.0.0" + js-yaml "^3.13.1" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.14" + minimatch "^3.0.4" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.3" + progress "^2.0.0" + regexpp "^2.0.1" + semver "^6.1.2" + strip-ansi "^5.2.0" + strip-json-comments "^3.0.1" + table "^5.2.3" + text-table "^0.2.0" + v8-compile-cache "^2.0.3" + +espree@^6.1.2: + version "6.2.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a" + integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw== + dependencies: + acorn "^7.1.1" + acorn-jsx "^5.2.0" + eslint-visitor-keys "^1.1.0" + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.0.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" + integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.1.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" + integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== + dependencies: + estraverse "^4.1.0" + +estraverse@^4.1.0, estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642" + integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= + +eventemitter3@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.4.tgz#b5463ace635a083d018bdc7c917b4c5f10a85384" + integrity sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ== + +events@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59" + integrity sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg== + +eventsource@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-1.0.7.tgz#8fbc72c93fcd34088090bc0a4e64f4b5cee6d8d0" + integrity sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ== + dependencies: + original "^1.0.0" + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + dependencies: + cross-spawn "^6.0.0" + get-stream "^4.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= + dependencies: + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +expand-tilde@^2.0.0, expand-tilde@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" + integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI= + dependencies: + homedir-polyfill "^1.0.1" + +expose-loader@^0.7.5: + version "0.7.5" + resolved "https://registry.yarnpkg.com/expose-loader/-/expose-loader-0.7.5.tgz#e29ea2d9aeeed3254a3faa1b35f502db9f9c3f6f" + integrity sha512-iPowgKUZkTPX5PznYsmifVj9Bob0w2wTHVkt/eYNPSzyebkUgIedmskf/kcfEIWpiWjg3JRjnW+a17XypySMuw== + +express@^4.17.1: + version "4.17.1" + resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" + integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== + dependencies: + accepts "~1.3.7" + array-flatten "1.1.1" + body-parser "1.19.0" + content-disposition "0.5.3" + content-type "~1.0.4" + cookie "0.4.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~1.1.2" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "~1.1.2" + fresh "0.5.2" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.5" + qs "6.7.0" + range-parser "~1.2.1" + safe-buffer "5.1.2" + send "0.17.1" + serve-static "1.14.1" + setprototypeof "1.1.1" + statuses "~1.5.0" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extend@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +external-editor@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= + +extsprintf@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" + integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= + +fast-deep-equal@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" + integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= + +faye-websocket@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" + integrity sha1-TkkvjQTftviQA1B/btvy1QHnxvQ= + dependencies: + websocket-driver ">=0.5.1" + +faye-websocket@~0.11.1: + version "0.11.3" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.3.tgz#5c0e9a8968e8912c286639fde977a8b209f2508e" + integrity sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA== + dependencies: + websocket-driver ">=0.5.1" + +figgy-pudding@^3.5.1: + version "3.5.2" + resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" + integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== + +figures@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + +file-entry-cache@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" + integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== + dependencies: + flat-cache "^2.0.1" + +file-loader@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.0.0.tgz#97bbfaab7a2460c07bcbd72d3a6922407f67649f" + integrity sha512-/aMOAYEFXDdjG0wytpTL5YQLfZnnTmLNjn+AIrJ/6HVnTfDqLsVKUUwkDf4I4kgex36BvjuXEn/TX9B/1ESyqQ== + dependencies: + loader-utils "^2.0.0" + schema-utils "^2.6.5" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +finalhandler@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" + integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.3" + statuses "~1.5.0" + unpipe "~1.0.0" + +find-cache-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== + dependencies: + commondir "^1.0.1" + make-dir "^2.0.0" + pkg-dir "^3.0.0" + +find-cache-dir@^3.0.0, find-cache-dir@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" + integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== + dependencies: + commondir "^1.0.1" + make-dir "^3.0.2" + pkg-dir "^4.1.0" + +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + +find-up@^2.0.0, find-up@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= + dependencies: + locate-path "^2.0.0" + +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +find-up@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +findup-sync@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" + integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg== + dependencies: + detect-file "^1.0.0" + is-glob "^4.0.0" + micromatch "^3.0.4" + resolve-dir "^1.0.1" + +flat-cache@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" + integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== + dependencies: + flatted "^2.0.0" + rimraf "2.6.3" + write "1.0.3" + +flatbush@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/flatbush/-/flatbush-3.3.0.tgz#b68c9149107ae86d2bce6373491f404ba4f4534e" + integrity sha512-F3EzQvKpdmXUbFwWxLKBpytOFEGYQMCTBLuqZ4GEajFOEAvnOIBiyxW3OFSZXIOtpCS8teN6bFEpNZtnVXuDQA== + dependencies: + flatqueue "^1.2.0" + +flatqueue@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/flatqueue/-/flatqueue-1.2.1.tgz#82f501758fc5925742fbeb478637230456157ef2" + integrity sha512-X86TpWS1rGuY7m382HuA9vngLeDuWA9lJvhEG+GfgKMV5onSvx5a71cl7GMbXzhWtlN9dGfqOBrpfqeOtUfGYQ== + +flatted@^2.0.0, flatted@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" + integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== + +flatten@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b" + integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg== + +flush-write-stream@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" + integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== + dependencies: + inherits "^2.0.3" + readable-stream "^2.3.6" + +follow-redirects@^1.0.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.11.0.tgz#afa14f08ba12a52963140fe43212658897bc0ecb" + integrity sha512-KZm0V+ll8PfBrKwMzdo5D13b1bur9Iq9Zd/RMmAoQQcl2PxxFml8cxXPaaPYVbV0RjNjq1CU7zIzAOqtUPudmA== + dependencies: + debug "^3.0.0" + +for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= + +form-data@^2.2.0: + version "2.5.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.5.1.tgz#f2cbec57b5e59e23716e128fe44d4e5dd23895f4" + integrity sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + +form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + +forwarded@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" + integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= + dependencies: + map-cache "^0.2.2" + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= + +from2@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" + integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.0" + +fs-minipass@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + dependencies: + minipass "^3.0.0" + +fs-write-stream-atomic@^1.0.8: + version "1.0.10" + resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" + integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk= + dependencies: + graceful-fs "^4.1.2" + iferr "^0.1.5" + imurmurhash "^0.1.4" + readable-stream "1 || 2" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +fsevents@^1.2.7: + version "1.2.13" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38" + integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw== + dependencies: + bindings "^1.5.0" + nan "^2.12.1" + +fsevents@~2.1.2: + version "2.1.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" + integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== + +fstream@^1.0.0, fstream@^1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" + integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg== + dependencies: + graceful-fs "^4.1.2" + inherits "~2.0.0" + mkdirp ">=0.5 0" + rimraf "2" + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +gaze@^1.0.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" + integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g== + dependencies: + globule "^1.0.0" + +gensync@^1.0.0-beta.1: + version "1.0.0-beta.1" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" + integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== + +geographiclib@1.48.0: + version "1.48.0" + resolved "https://registry.yarnpkg.com/geographiclib/-/geographiclib-1.48.0.tgz#8ff2ae185ad380f675db6a243935fadd147def82" + integrity sha1-j/KuGFrTgPZ122okOTX63RR974I= + +get-caller-file@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-port@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" + integrity sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw= + +get-stdin@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" + integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= + +get-stream@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= + dependencies: + assert-plus "^1.0.0" + +glob-parent@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" + integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= + dependencies: + is-glob "^3.1.0" + path-dirname "^1.0.0" + +glob-parent@^5.0.0, glob-parent@~5.1.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" + integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== + dependencies: + is-glob "^4.0.1" + +glob@^7.0.0, glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@~7.1.1: + version "7.1.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global-modules@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" + integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== + dependencies: + global-prefix "^3.0.0" + +global-modules@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" + integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== + dependencies: + global-prefix "^1.0.1" + is-windows "^1.0.1" + resolve-dir "^1.0.0" + +global-prefix@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" + integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= + dependencies: + expand-tilde "^2.0.2" + homedir-polyfill "^1.0.1" + ini "^1.3.4" + is-windows "^1.0.1" + which "^1.2.14" + +global-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" + integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== + dependencies: + ini "^1.3.5" + kind-of "^6.0.2" + which "^1.3.1" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^12.1.0: + version "12.4.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" + integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== + dependencies: + type-fest "^0.8.1" + +globby@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" + integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= + dependencies: + array-union "^1.0.1" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +globule@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/globule/-/globule-1.3.1.tgz#90a25338f22b7fbeb527cee63c629aea754d33b9" + integrity sha512-OVyWOHgw29yosRHCHo7NncwR1hW5ew0W/UrvtwvjefVJeQ26q4/8r8FmPsSF1hJ93IgWkyv16pCTz6WblMzm/g== + dependencies: + glob "~7.1.1" + lodash "~4.17.12" + minimatch "~3.0.2" + +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.2.2: + version "4.2.4" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" + integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== + +handle-thing@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" + integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= + +har-validator@~5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" + integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== + dependencies: + ajv "^6.5.5" + har-schema "^2.0.0" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + dependencies: + ansi-regex "^2.0.0" + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-symbols@^1.0.0, has-symbols@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" + integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= + +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= + +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +has@^1.0.0, has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hash-base@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" + integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== + dependencies: + inherits "^2.0.4" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +hex-color-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" + integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== + +hmac-drbg@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +homedir-polyfill@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" + integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== + dependencies: + parse-passwd "^1.0.0" + +hosted-git-info@^2.1.4: + version "2.8.8" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" + integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== + +hpack.js@^2.1.6: + version "2.1.6" + resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" + integrity sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI= + dependencies: + inherits "^2.0.1" + obuf "^1.0.0" + readable-stream "^2.0.1" + wbuf "^1.1.0" + +hsl-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e" + integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4= + +hsla-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" + integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg= + +html-comment-regex@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" + integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== + +html-entities@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.3.1.tgz#fb9a1a4b5b14c5daba82d3e34c6ae4fe701a0e44" + integrity sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA== + +http-basic@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/http-basic/-/http-basic-6.0.0.tgz#1d63df8f891e1e25e0c2c84d7a2d94702d6ae229" + integrity sha512-7ScbVjuiReYe8S+OZOpNjoKGXrbhJHIrQQe7eq1TpLTJkxH8MPKvnTUzq/TNLjww1hdFQy8yUIC42wuLhCjYcQ== + dependencies: + "@types/concat-stream" "^1.6.0" + "@types/node" "^7.0.31" + caseless "~0.12.0" + concat-stream "^1.4.6" + http-response-object "^3.0.1" + parse-cache-control "^1.0.1" + +http-deceiver@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" + integrity sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc= + +http-errors@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" + integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + +http-errors@~1.6.2: + version "1.6.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.0" + statuses ">= 1.4.0 < 2" + +http-errors@~1.7.2: + version "1.7.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" + integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== + dependencies: + depd "~1.1.2" + inherits "2.0.4" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + +http-parser-js@>=0.5.1: + version "0.5.2" + resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.2.tgz#da2e31d237b393aae72ace43882dd7e270a8ff77" + integrity sha512-opCO9ASqg5Wy2FNo7A0sxy71yGbbkJJXLdgMK04Tcypw9jr2MgWbyubb0+WdmDmGnFflO7fRbqbaihh/ENDlRQ== + +http-proxy-middleware@0.19.1: + version "0.19.1" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz#183c7dc4aa1479150306498c210cdaf96080a43a" + integrity sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q== + dependencies: + http-proxy "^1.17.0" + is-glob "^4.0.0" + lodash "^4.17.11" + micromatch "^3.1.10" + +http-proxy@^1.17.0: + version "1.18.1" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" + integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== + dependencies: + eventemitter3 "^4.0.0" + follow-redirects "^1.0.0" + requires-port "^1.0.0" + +http-response-object@^3.0.1: + version "3.0.2" + resolved "https://registry.yarnpkg.com/http-response-object/-/http-response-object-3.0.2.tgz#7f435bb210454e4360d074ef1f989d5ea8aa9810" + integrity sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA== + dependencies: + "@types/node" "^10.0.3" + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= + +iconv-lite@0.4, iconv-lite@0.4.24, iconv-lite@^0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +icss-utils@^4.0.0, icss-utils@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" + integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== + dependencies: + postcss "^7.0.14" + +ieee754@^1.1.4: + version "1.1.13" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" + integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== + +iferr@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" + integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +import-cwd@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9" + integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk= + dependencies: + import-from "^2.1.0" + +import-fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= + dependencies: + caller-path "^2.0.0" + resolve-from "^3.0.0" + +import-fresh@^3.0.0, import-fresh@^3.1.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" + integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-from@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" + integrity sha1-M1238qev/VOqpHHUuAId7ja387E= + dependencies: + resolve-from "^3.0.0" + +import-local@2.0.0, import-local@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" + integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== + dependencies: + pkg-dir "^3.0.0" + resolve-cwd "^2.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + +in-publish@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.1.tgz#948b1a535c8030561cea522f73f78f4be357e00c" + integrity sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ== + +indent-string@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" + integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA= + dependencies: + repeating "^2.0.0" + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +indexes-of@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= + +infer-owner@^1.0.3, infer-owner@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" + integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + +ini@^1.3.4, ini@^1.3.5: + version "1.3.5" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== + +inquirer@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.1.0.tgz#1298a01859883e17c7264b82870ae1034f92dd29" + integrity sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg== + dependencies: + ansi-escapes "^4.2.1" + chalk "^3.0.0" + cli-cursor "^3.1.0" + cli-width "^2.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.15" + mute-stream "0.0.8" + run-async "^2.4.0" + rxjs "^6.5.3" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + +internal-ip@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907" + integrity sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg== + dependencies: + default-gateway "^4.2.0" + ipaddr.js "^1.9.0" + +interpret@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" + integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== + +invariant@^2.2.2, invariant@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + +invert-kv@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" + integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== + +ip-regex@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" + integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= + +ip@^1.1.0, ip@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" + integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= + +ipaddr.js@1.9.1, ipaddr.js@^1.9.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + +is-absolute-url@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" + integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= + +is-absolute-url@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698" + integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q== + +is-accessor-descriptor@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= + dependencies: + kind-of "^3.0.2" + +is-accessor-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== + dependencies: + kind-of "^6.0.0" + +is-arguments@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.0.4.tgz#3faf966c7cba0ff437fb31f6250082fcf0448cf3" + integrity sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA== + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= + dependencies: + binary-extensions "^1.0.0" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-callable@^1.1.4, is-callable@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" + integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== + +is-color-stop@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" + integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= + dependencies: + css-color-names "^0.0.4" + hex-color-regex "^1.1.0" + hsl-regex "^1.0.0" + hsla-regex "^1.0.0" + rgb-regex "^1.0.1" + rgba-regex "^1.0.0" + +is-data-descriptor@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= + dependencies: + kind-of "^3.0.2" + +is-data-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== + dependencies: + kind-of "^6.0.0" + +is-date-object@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" + integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== + +is-descriptor@^0.1.0: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== + dependencies: + is-accessor-descriptor "^0.1.6" + is-data-descriptor "^0.1.4" + kind-of "^5.0.0" + +is-descriptor@^1.0.0, is-descriptor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^2.1.0, is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + +is-finite@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" + integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= + dependencies: + is-extglob "^2.1.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" + integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== + dependencies: + is-extglob "^2.1.1" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= + dependencies: + kind-of "^3.0.2" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" + integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== + +is-path-cwd@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" + integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== + +is-path-in-cwd@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz#bfe2dca26c69f397265a4009963602935a053acb" + integrity sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ== + dependencies: + is-path-inside "^2.1.0" + +is-path-inside@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2" + integrity sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg== + dependencies: + path-is-inside "^1.0.2" + +is-plain-obj@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= + +is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-regex@^1.0.4, is-regex@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" + integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== + dependencies: + has "^1.0.3" + +is-resolvable@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" + integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== + +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + +is-string@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" + integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== + +is-svg@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" + integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== + dependencies: + html-comment-regex "^1.1.0" + +is-symbol@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" + integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== + dependencies: + has-symbols "^1.0.1" + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= + +is-windows@^1.0.1, is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + +is-wsl@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= + +jest-worker@^25.4.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.5.0.tgz#2611d071b79cea0f43ee57a3d118593ac1547db1" + integrity sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw== + dependencies: + merge-stream "^2.0.0" + supports-color "^7.0.0" + +"jquery@>=1.5.0 <4.0", jquery@^3.5.1: + version "3.5.1" + resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.5.1.tgz#d7b4d08e1bfdb86ad2f1a3d039ea17304717abb5" + integrity sha512-XwIBPqcMn57FxfT+Go5pzySnm4KWkT1Tv7gjrpT1srtf8Weynl6R273VJ5GjkRb51IzMp5nbaPjJXMWeju2MKg== + +js-base64@^2.1.8: + version "2.5.2" + resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.2.tgz#313b6274dda718f714d00b3330bbae6e38e90209" + integrity sha512-Vg8czh0Q7sFBSUMWWArX/miJeBWYBPpdU/3M/DKSaekLMqrqVPaedp+5mZhie/r0lgrcaYBfwXatEew6gwgiQQ== + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^3.13.1: + version "3.14.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" + integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= + +json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= + +json3@^3.3.2: + version "3.3.3" + resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81" + integrity sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA== + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +json5@^2.1.2: + version "2.1.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" + integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== + dependencies: + minimist "^1.2.5" + +jsprim@^1.2.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.2.3" + verror "1.10.0" + +keygrip@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/keygrip/-/keygrip-1.1.0.tgz#871b1681d5e159c62a445b0c74b615e0917e7226" + integrity sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ== + dependencies: + tsscmp "1.0.6" + +killable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892" + integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg== + +kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= + dependencies: + is-buffer "^1.1.5" + +kind-of@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== + +kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +last-call-webpack-plugin@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555" + integrity sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w== + dependencies: + lodash "^4.17.5" + webpack-sources "^1.1.0" + +lcid@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" + integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== + dependencies: + invert-kv "^2.0.0" + +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + +levenary@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77" + integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ== + dependencies: + leven "^3.1.0" + +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +lines-and-columns@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" + integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= + +load-json-file@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" + integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA= + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + pinkie-promise "^2.0.0" + strip-bom "^2.0.0" + +load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + +loader-runner@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" + integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== + +loader-utils@1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" + integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== + dependencies: + big.js "^5.2.2" + emojis-list "^2.0.0" + json5 "^1.0.1" + +loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" + integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^1.0.1" + +loader-utils@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" + integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +lodash._reinterpolate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" + integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= + +lodash.get@^4.0: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= + +lodash.has@^4.0: + version "4.5.2" + resolved "https://registry.yarnpkg.com/lodash.has/-/lodash.has-4.5.2.tgz#d19f4dc1095058cccbe2b0cdf4ee0fe4aa37c862" + integrity sha1-0Z9NwQlQWMzL4rDN9O4P5Ko3yGI= + +lodash.memoize@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= + +lodash.template@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" + integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== + dependencies: + lodash._reinterpolate "^3.0.0" + lodash.templatesettings "^4.0.0" + +lodash.templatesettings@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" + integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== + dependencies: + lodash._reinterpolate "^3.0.0" + +lodash.uniq@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= + +lodash@^4.0.0, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.5, lodash@~4.17.12: + version "4.17.15" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" + integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== + +loglevel@^1.6.8: + version "1.6.8" + resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.8.tgz#8a25fb75d092230ecd4457270d80b54e28011171" + integrity sha512-bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA== + +loose-envify@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +loud-rejection@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" + integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= + dependencies: + currently-unhandled "^0.4.1" + signal-exit "^3.0.0" + +lru-cache@^4.0.1: + version "4.1.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +make-dir@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + +make-dir@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +map-age-cleaner@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" + integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== + dependencies: + p-defer "^1.0.0" + +map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= + +map-obj@^1.0.0, map-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= + dependencies: + object-visit "^1.0.0" + +mapshaper@^0.5.10: + version "0.5.10" + resolved "https://registry.yarnpkg.com/mapshaper/-/mapshaper-0.5.10.tgz#5a4e655416583c729914d93f0be8f844727d0dfe" + integrity sha512-AMsLoB8HVcwNc13G/gSrP4pp5L5/9jGs23vnBNd4yeVy/TFDlelMkQHizcnhVy5zy6vzel5vJSwmdfHZ4YC55A== + dependencies: + cookies "^0.8.0" + flatbush "^3.2.1" + iconv-lite "0.4.24" + mproj "0.0.26" + opn "^5.3.0" + optimist "~0.6.0" + rw "~1.3.3" + sync-request "5.0.0" + +md5.js@^1.3.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" + integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +mdn-data@2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" + integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== + +mdn-data@2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.6.tgz#852dc60fcaa5daa2e8cf6c9189c440ed3e042978" + integrity sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA== + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= + +mem@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" + integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== + dependencies: + map-age-cleaner "^0.1.1" + mimic-fn "^2.0.0" + p-is-promise "^2.0.0" + +memory-fs@^0.4.0, memory-fs@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" + integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +memory-fs@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c" + integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA== + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +meow@^3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" + integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs= + dependencies: + camelcase-keys "^2.0.0" + decamelize "^1.1.2" + loud-rejection "^1.0.0" + map-obj "^1.0.1" + minimist "^1.1.3" + normalize-package-data "^2.3.4" + object-assign "^4.0.1" + read-pkg-up "^1.0.1" + redent "^1.0.0" + trim-newlines "^1.0.0" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= + +micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4: + version "3.1.10" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +mime-db@1.44.0, "mime-db@>= 1.43.0 < 2": + version "1.44.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" + integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== + +mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: + version "2.1.27" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" + integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== + dependencies: + mime-db "1.44.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mime@^2.4.4: + version "2.4.6" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.6.tgz#e5b407c90db442f2beb5b162373d07b69affa4d1" + integrity sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA== + +mimic-fn@^2.0.0, mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mini-css-extract-plugin@^0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz#47f2cf07aa165ab35733b1fc97d4c46c0564339e" + integrity sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A== + dependencies: + loader-utils "^1.1.0" + normalize-url "1.9.1" + schema-utils "^1.0.0" + webpack-sources "^1.1.0" + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= + +minimatch@^3.0.4, minimatch@~3.0.2: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" + integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== + +minimist@~0.0.1: + version "0.0.10" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" + integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= + +minipass-collect@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" + integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== + dependencies: + minipass "^3.0.0" + +minipass-flush@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" + integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== + dependencies: + minipass "^3.0.0" + +minipass-pipeline@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.3.tgz#55f7839307d74859d6e8ada9c3ebe72cec216a34" + integrity sha512-cFOknTvng5vqnwOpDsZTWhNll6Jf8o2x+/diplafmxpuIymAjzoOolZG0VvQf3V2HgqzJNhnuKHYp2BqDgz8IQ== + dependencies: + minipass "^3.0.0" + +minipass@^3.0.0, minipass@^3.1.1: + version "3.1.3" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd" + integrity sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg== + dependencies: + yallist "^4.0.0" + +mississippi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" + integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== + dependencies: + concat-stream "^1.5.0" + duplexify "^3.4.2" + end-of-stream "^1.1.0" + flush-write-stream "^1.0.0" + from2 "^2.1.0" + parallel-transform "^1.1.0" + pump "^3.0.0" + pumpify "^1.3.3" + stream-each "^1.1.0" + through2 "^2.0.0" + +mixin-deep@^1.2.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +"mkdirp@>=0.5 0", mkdirp@^0.5, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: + version "0.5.5" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" + integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== + dependencies: + minimist "^1.2.5" + +move-concurrently@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" + integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I= + dependencies: + aproba "^1.1.1" + copy-concurrently "^1.0.0" + fs-write-stream-atomic "^1.0.8" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.3" + +mproj@0.0.26: + version "0.0.26" + resolved "https://registry.yarnpkg.com/mproj/-/mproj-0.0.26.tgz#3ce562a87bf5acf65fc5a5b0e3c15c8006915de4" + integrity sha512-8A0hXbhi3qzDAU5mRyc9XhqgF1v3OLR1SKa4sopRvyKZKQIouwKke5wyQ9ouz6UmpAYK05ZTwUD0gfDw2Ny9kA== + dependencies: + geographiclib "1.48.0" + rw "~1.3.2" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + +ms@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== + +ms@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +multicast-dns-service-types@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901" + integrity sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE= + +multicast-dns@^6.0.1: + version "6.2.3" + resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229" + integrity sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g== + dependencies: + dns-packet "^1.3.1" + thunky "^1.0.2" + +mute-stream@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + +nan@^2.12.1, nan@^2.13.2: + version "2.14.1" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" + integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== + +nanomatch@^1.2.9: + version "1.2.13" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^2.0.2" + extend-shallow "^3.0.2" + fragment-cache "^0.2.1" + is-windows "^1.0.2" + kind-of "^6.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + +negotiator@0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" + integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== + +neo-async@^2.5.0, neo-async@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" + integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +node-forge@0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.9.0.tgz#d624050edbb44874adca12bb9a52ec63cb782579" + integrity sha512-7ASaDa3pD+lJ3WvXFsxekJQelBKRpne+GOVbLbtHYdd7pFspyeuJHnWfLplGf3SwKGbfs/aYl5V/JCIaHVUKKQ== + +node-gyp@^3.8.0: + version "3.8.0" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.8.0.tgz#540304261c330e80d0d5edce253a68cb3964218c" + integrity sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA== + dependencies: + fstream "^1.0.0" + glob "^7.0.3" + graceful-fs "^4.1.2" + mkdirp "^0.5.0" + nopt "2 || 3" + npmlog "0 || 1 || 2 || 3 || 4" + osenv "0" + request "^2.87.0" + rimraf "2" + semver "~5.3.0" + tar "^2.0.0" + which "1" + +node-libs-browser@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" + integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== + dependencies: + assert "^1.1.1" + browserify-zlib "^0.2.0" + buffer "^4.3.0" + console-browserify "^1.1.0" + constants-browserify "^1.0.0" + crypto-browserify "^3.11.0" + domain-browser "^1.1.1" + events "^3.0.0" + https-browserify "^1.0.0" + os-browserify "^0.3.0" + path-browserify "0.0.1" + process "^0.11.10" + punycode "^1.2.4" + querystring-es3 "^0.2.0" + readable-stream "^2.3.3" + stream-browserify "^2.0.1" + stream-http "^2.7.2" + string_decoder "^1.0.0" + timers-browserify "^2.0.4" + tty-browserify "0.0.0" + url "^0.11.0" + util "^0.11.0" + vm-browserify "^1.0.1" + +node-releases@^1.1.53: + version "1.1.57" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.57.tgz#f6754ce225fad0611e61228df3e09232e017ea19" + integrity sha512-ZQmnWS7adi61A9JsllJ2gdj2PauElcjnOwTp2O011iGzoakTxUsDGSe+6vD7wXbKdqhSFymC0OSx35aAMhrSdw== + +node-sass@^4.13.1: + version "4.14.1" + resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.14.1.tgz#99c87ec2efb7047ed638fb4c9db7f3a42e2217b5" + integrity sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g== + dependencies: + async-foreach "^0.1.3" + chalk "^1.1.1" + cross-spawn "^3.0.0" + gaze "^1.0.0" + get-stdin "^4.0.1" + glob "^7.0.3" + in-publish "^2.0.0" + lodash "^4.17.15" + meow "^3.7.0" + mkdirp "^0.5.1" + nan "^2.13.2" + node-gyp "^3.8.0" + npmlog "^4.0.0" + request "^2.88.0" + sass-graph "2.2.5" + stdout-stream "^1.4.0" + "true-case-path" "^1.0.2" + +"nopt@2 || 3": + version "3.0.6" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" + integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k= + dependencies: + abbrev "1" + +normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= + +normalize-url@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" + integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw= + dependencies: + object-assign "^4.0.1" + prepend-http "^1.0.0" + query-string "^4.1.0" + sort-keys "^1.0.0" + +normalize-url@^3.0.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" + integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + dependencies: + path-key "^2.0.0" + +"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +nth-check@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== + dependencies: + boolbase "~1.0.0" + +num2fraction@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= + +oauth-sign@~0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + +object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + +object-inspect@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" + integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== + +object-is@^1.0.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.2.tgz#c5d2e87ff9e119f78b7a088441519e2eec1573b6" + integrity sha512-5lHCz+0uufF6wZ7CRFWJN3hp8Jqblpgve06U5CMQ3f//6iDjPr2PEo9MWCjEssDsa+UZEL4PkFpr+BMop6aKzQ== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + +object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= + dependencies: + isobject "^3.0.0" + +object.assign@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" + integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== + dependencies: + define-properties "^1.1.2" + function-bind "^1.1.1" + has-symbols "^1.0.0" + object-keys "^1.0.11" + +object.entries@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.2.tgz#bc73f00acb6b6bb16c203434b10f9a7e797d3add" + integrity sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + has "^1.0.3" + +object.getownpropertydescriptors@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649" + integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" + +object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= + dependencies: + isobject "^3.0.1" + +object.values@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" + integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" + function-bind "^1.1.1" + has "^1.0.3" + +obuf@^1.0.0, obuf@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" + integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== + +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +onetime@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" + integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== + dependencies: + mimic-fn "^2.1.0" + +opn@^5.3.0, opn@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc" + integrity sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA== + dependencies: + is-wsl "^1.1.0" + +optimist@~0.6.0: + version "0.6.1" + resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" + integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= + dependencies: + minimist "~0.0.1" + wordwrap "~0.0.2" + +optimize-css-assets-webpack-plugin@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.3.tgz#e2f1d4d94ad8c0af8967ebd7cf138dcb1ef14572" + integrity sha512-q9fbvCRS6EYtUKKSwI87qm2IxlyJK5b4dygW1rKUBT6mMDhdG5e5bZT63v6tnJR9F9FB/H5a0HTmtw+laUBxKA== + dependencies: + cssnano "^4.1.10" + last-call-webpack-plugin "^3.0.0" + +optionator@^0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.6" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + word-wrap "~1.2.3" + +original@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f" + integrity sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg== + dependencies: + url-parse "^1.4.3" + +os-browserify@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= + +os-homedir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= + +os-locale@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" + integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== + dependencies: + execa "^1.0.0" + lcid "^2.0.0" + mem "^4.0.0" + +os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + +osenv@0: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +p-defer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" + integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + +p-is-promise@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" + integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== + +p-limit@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" + integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== + dependencies: + p-try "^1.0.0" + +p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= + dependencies: + p-limit "^1.1.0" + +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-map@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" + integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== + +p-map@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d" + integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== + dependencies: + aggregate-error "^3.0.0" + +p-retry@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-3.0.1.tgz#316b4c8893e2c8dc1cfa891f406c4b422bebf328" + integrity sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w== + dependencies: + retry "^0.12.0" + +p-try@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +pako@~1.0.5: + version "1.0.11" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" + integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== + +parallel-transform@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc" + integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg== + dependencies: + cyclist "^1.0.1" + inherits "^2.0.3" + readable-stream "^2.1.5" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-asn1@^5.0.0, parse-asn1@^5.1.5: + version "5.1.5" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" + integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ== + dependencies: + asn1.js "^4.0.0" + browserify-aes "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + safe-buffer "^5.1.1" + +parse-cache-control@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parse-cache-control/-/parse-cache-control-1.0.1.tgz#8eeab3e54fa56920fe16ba38f77fa21aacc2d74e" + integrity sha1-juqz5U+laSD+Fro493+iGqzC104= + +parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= + dependencies: + error-ex "^1.2.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse-json@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f" + integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + lines-and-columns "^1.1.6" + +parse-passwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" + integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= + +parseurl@~1.3.2, parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= + +path-browserify@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" + integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== + +path-complete-extname@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/path-complete-extname/-/path-complete-extname-1.0.0.tgz#f889985dc91000c815515c0bfed06c5acda0752b" + integrity sha512-CVjiWcMRdGU8ubs08YQVzhutOR5DEfO97ipRIlOGMK5Bek5nQySknBpuxVAVJ36hseTNs+vdIcv57ZrWxH7zvg== + +path-dirname@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" + integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= + +path-exists@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= + dependencies: + pinkie-promise "^2.0.0" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +path-is-inside@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= + +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + +path-parse@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" + integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= + +path-type@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" + integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE= + dependencies: + graceful-fs "^4.1.2" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= + dependencies: + pify "^2.0.0" + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +pbkdf2@^3.0.3: + version "3.0.17" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" + integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA== + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= + +picomatch@^2.0.4, picomatch@^2.2.1: + version "2.2.2" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" + integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== + +pify@^2.0.0, pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= + +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= + +pkg-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" + integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= + dependencies: + find-up "^2.1.0" + +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + +pkg-dir@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" + integrity sha1-yBmscoBZpGHKscOImivjxJoATX8= + dependencies: + find-up "^2.1.0" + +pnp-webpack-plugin@^1.6.4: + version "1.6.4" + resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149" + integrity sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg== + dependencies: + ts-pnp "^1.1.6" + +popper.js@^1.16.1: + version "1.16.1" + resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b" + integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ== + +portfinder@^1.0.26: + version "1.0.26" + resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.26.tgz#475658d56ca30bed72ac7f1378ed350bd1b64e70" + integrity sha512-Xi7mKxJHHMI3rIUrnm/jjUgwhbYMkp/XKEcZX3aG4BrumLpq3nmoQMX+ClYnDZnZ/New7IatC1no5RX0zo1vXQ== + dependencies: + async "^2.6.2" + debug "^3.1.1" + mkdirp "^0.5.1" + +posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= + +postcss-attribute-case-insensitive@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz#d93e46b504589e94ac7277b0463226c68041a880" + integrity sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA== + dependencies: + postcss "^7.0.2" + postcss-selector-parser "^6.0.2" + +postcss-calc@^7.0.1: + version "7.0.2" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.2.tgz#504efcd008ca0273120568b0792b16cdcde8aac1" + integrity sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ== + dependencies: + postcss "^7.0.27" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.0.2" + +postcss-color-functional-notation@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz#5efd37a88fbabeb00a2966d1e53d98ced93f74e0" + integrity sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-color-gray@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz#532a31eb909f8da898ceffe296fdc1f864be8547" + integrity sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw== + dependencies: + "@csstools/convert-colors" "^1.4.0" + postcss "^7.0.5" + postcss-values-parser "^2.0.0" + +postcss-color-hex-alpha@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz#a8d9ca4c39d497c9661e374b9c51899ef0f87388" + integrity sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw== + dependencies: + postcss "^7.0.14" + postcss-values-parser "^2.0.1" + +postcss-color-mod-function@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz#816ba145ac11cc3cb6baa905a75a49f903e4d31d" + integrity sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ== + dependencies: + "@csstools/convert-colors" "^1.4.0" + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-color-rebeccapurple@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz#c7a89be872bb74e45b1e3022bfe5748823e6de77" + integrity sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-colormin@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381" + integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== + dependencies: + browserslist "^4.0.0" + color "^3.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-convert-values@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f" + integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== + dependencies: + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-custom-media@^7.0.8: + version "7.0.8" + resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz#fffd13ffeffad73621be5f387076a28b00294e0c" + integrity sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg== + dependencies: + postcss "^7.0.14" + +postcss-custom-properties@^8.0.11: + version "8.0.11" + resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz#2d61772d6e92f22f5e0d52602df8fae46fa30d97" + integrity sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA== + dependencies: + postcss "^7.0.17" + postcss-values-parser "^2.0.1" + +postcss-custom-selectors@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz#64858c6eb2ecff2fb41d0b28c9dd7b3db4de7fba" + integrity sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w== + dependencies: + postcss "^7.0.2" + postcss-selector-parser "^5.0.0-rc.3" + +postcss-dir-pseudo-class@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz#6e3a4177d0edb3abcc85fdb6fbb1c26dabaeaba2" + integrity sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw== + dependencies: + postcss "^7.0.2" + postcss-selector-parser "^5.0.0-rc.3" + +postcss-discard-comments@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033" + integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== + dependencies: + postcss "^7.0.0" + +postcss-discard-duplicates@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb" + integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== + dependencies: + postcss "^7.0.0" + +postcss-discard-empty@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765" + integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== + dependencies: + postcss "^7.0.0" + +postcss-discard-overridden@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57" + integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg== + dependencies: + postcss "^7.0.0" + +postcss-double-position-gradients@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz#fc927d52fddc896cb3a2812ebc5df147e110522e" + integrity sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA== + dependencies: + postcss "^7.0.5" + postcss-values-parser "^2.0.0" + +postcss-env-function@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-env-function/-/postcss-env-function-2.0.2.tgz#0f3e3d3c57f094a92c2baf4b6241f0b0da5365d7" + integrity sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-flexbugs-fixes@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz#9218a65249f30897deab1033aced8578562a6690" + integrity sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ== + dependencies: + postcss "^7.0.26" + +postcss-focus-visible@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz#477d107113ade6024b14128317ade2bd1e17046e" + integrity sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g== + dependencies: + postcss "^7.0.2" + +postcss-focus-within@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz#763b8788596cee9b874c999201cdde80659ef680" + integrity sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w== + dependencies: + postcss "^7.0.2" + +postcss-font-variant@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-4.0.0.tgz#71dd3c6c10a0d846c5eda07803439617bbbabacc" + integrity sha512-M8BFYKOvCrI2aITzDad7kWuXXTm0YhGdP9Q8HanmN4EF1Hmcgs1KK5rSHylt/lUJe8yLxiSwWAHdScoEiIxztg== + dependencies: + postcss "^7.0.2" + +postcss-gap-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz#431c192ab3ed96a3c3d09f2ff615960f902c1715" + integrity sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg== + dependencies: + postcss "^7.0.2" + +postcss-image-set-function@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz#28920a2f29945bed4c3198d7df6496d410d3f288" + integrity sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-import@^12.0.1: + version "12.0.1" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-12.0.1.tgz#cf8c7ab0b5ccab5649024536e565f841928b7153" + integrity sha512-3Gti33dmCjyKBgimqGxL3vcV8w9+bsHwO5UrBawp796+jdardbcFl4RP5w/76BwNL7aGzpKstIfF9I+kdE8pTw== + dependencies: + postcss "^7.0.1" + postcss-value-parser "^3.2.3" + read-cache "^1.0.0" + resolve "^1.1.7" + +postcss-initial@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-3.0.2.tgz#f018563694b3c16ae8eaabe3c585ac6319637b2d" + integrity sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA== + dependencies: + lodash.template "^4.5.0" + postcss "^7.0.2" + +postcss-lab-function@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz#bb51a6856cd12289ab4ae20db1e3821ef13d7d2e" + integrity sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg== + dependencies: + "@csstools/convert-colors" "^1.4.0" + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-load-config@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.0.tgz#c84d692b7bb7b41ddced94ee62e8ab31b417b003" + integrity sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q== + dependencies: + cosmiconfig "^5.0.0" + import-cwd "^2.0.0" + +postcss-loader@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d" + integrity sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA== + dependencies: + loader-utils "^1.1.0" + postcss "^7.0.0" + postcss-load-config "^2.0.0" + schema-utils "^1.0.0" + +postcss-logical@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-3.0.0.tgz#2495d0f8b82e9f262725f75f9401b34e7b45d5b5" + integrity sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA== + dependencies: + postcss "^7.0.2" + +postcss-media-minmax@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz#b75bb6cbc217c8ac49433e12f22048814a4f5ed5" + integrity sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw== + dependencies: + postcss "^7.0.2" + +postcss-merge-longhand@^4.0.11: + version "4.0.11" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24" + integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== + dependencies: + css-color-names "0.0.4" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + stylehacks "^4.0.0" + +postcss-merge-rules@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650" + integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== + dependencies: + browserslist "^4.0.0" + caniuse-api "^3.0.0" + cssnano-util-same-parent "^4.0.0" + postcss "^7.0.0" + postcss-selector-parser "^3.0.0" + vendors "^1.0.0" + +postcss-minify-font-values@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6" + integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg== + dependencies: + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-minify-gradients@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471" + integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q== + dependencies: + cssnano-util-get-arguments "^4.0.0" + is-color-stop "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-minify-params@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874" + integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg== + dependencies: + alphanum-sort "^1.0.0" + browserslist "^4.0.0" + cssnano-util-get-arguments "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + uniqs "^2.0.0" + +postcss-minify-selectors@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8" + integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g== + dependencies: + alphanum-sort "^1.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-selector-parser "^3.0.0" + +postcss-modules-extract-imports@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" + integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== + dependencies: + postcss "^7.0.5" + +postcss-modules-local-by-default@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz#e8a6561be914aaf3c052876377524ca90dbb7915" + integrity sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ== + dependencies: + icss-utils "^4.1.1" + postcss "^7.0.16" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.0.0" + +postcss-modules-scope@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee" + integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ== + dependencies: + postcss "^7.0.6" + postcss-selector-parser "^6.0.0" + +postcss-modules-values@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10" + integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg== + dependencies: + icss-utils "^4.0.0" + postcss "^7.0.6" + +postcss-nesting@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-7.0.1.tgz#b50ad7b7f0173e5b5e3880c3501344703e04c052" + integrity sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg== + dependencies: + postcss "^7.0.2" + +postcss-normalize-charset@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4" + integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g== + dependencies: + postcss "^7.0.0" + +postcss-normalize-display-values@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a" + integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ== + dependencies: + cssnano-util-get-match "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-positions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f" + integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA== + dependencies: + cssnano-util-get-arguments "^4.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-repeat-style@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c" + integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q== + dependencies: + cssnano-util-get-arguments "^4.0.0" + cssnano-util-get-match "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-string@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c" + integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA== + dependencies: + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-timing-functions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9" + integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== + dependencies: + cssnano-util-get-match "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-unicode@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb" + integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg== + dependencies: + browserslist "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-url@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1" + integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== + dependencies: + is-absolute-url "^2.0.0" + normalize-url "^3.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-whitespace@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82" + integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA== + dependencies: + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-ordered-values@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee" + integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== + dependencies: + cssnano-util-get-arguments "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-overflow-shorthand@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz#31ecf350e9c6f6ddc250a78f0c3e111f32dd4c30" + integrity sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g== + dependencies: + postcss "^7.0.2" + +postcss-page-break@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-page-break/-/postcss-page-break-2.0.0.tgz#add52d0e0a528cabe6afee8b46e2abb277df46bf" + integrity sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ== + dependencies: + postcss "^7.0.2" + +postcss-place@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-4.0.1.tgz#e9f39d33d2dc584e46ee1db45adb77ca9d1dcc62" + integrity sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-preset-env@^6.7.0: + version "6.7.0" + resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz#c34ddacf8f902383b35ad1e030f178f4cdf118a5" + integrity sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg== + dependencies: + autoprefixer "^9.6.1" + browserslist "^4.6.4" + caniuse-lite "^1.0.30000981" + css-blank-pseudo "^0.1.4" + css-has-pseudo "^0.10.0" + css-prefers-color-scheme "^3.1.1" + cssdb "^4.4.0" + postcss "^7.0.17" + postcss-attribute-case-insensitive "^4.0.1" + postcss-color-functional-notation "^2.0.1" + postcss-color-gray "^5.0.0" + postcss-color-hex-alpha "^5.0.3" + postcss-color-mod-function "^3.0.3" + postcss-color-rebeccapurple "^4.0.1" + postcss-custom-media "^7.0.8" + postcss-custom-properties "^8.0.11" + postcss-custom-selectors "^5.1.2" + postcss-dir-pseudo-class "^5.0.0" + postcss-double-position-gradients "^1.0.0" + postcss-env-function "^2.0.2" + postcss-focus-visible "^4.0.0" + postcss-focus-within "^3.0.0" + postcss-font-variant "^4.0.0" + postcss-gap-properties "^2.0.0" + postcss-image-set-function "^3.0.1" + postcss-initial "^3.0.0" + postcss-lab-function "^2.0.1" + postcss-logical "^3.0.0" + postcss-media-minmax "^4.0.0" + postcss-nesting "^7.0.0" + postcss-overflow-shorthand "^2.0.0" + postcss-page-break "^2.0.0" + postcss-place "^4.0.1" + postcss-pseudo-class-any-link "^6.0.0" + postcss-replace-overflow-wrap "^3.0.0" + postcss-selector-matches "^4.0.0" + postcss-selector-not "^4.0.0" + +postcss-pseudo-class-any-link@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz#2ed3eed393b3702879dec4a87032b210daeb04d1" + integrity sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew== + dependencies: + postcss "^7.0.2" + postcss-selector-parser "^5.0.0-rc.3" + +postcss-reduce-initial@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df" + integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA== + dependencies: + browserslist "^4.0.0" + caniuse-api "^3.0.0" + has "^1.0.0" + postcss "^7.0.0" + +postcss-reduce-transforms@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29" + integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== + dependencies: + cssnano-util-get-match "^4.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-replace-overflow-wrap@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz#61b360ffdaedca84c7c918d2b0f0d0ea559ab01c" + integrity sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw== + dependencies: + postcss "^7.0.2" + +postcss-safe-parser@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz#a6d4e48f0f37d9f7c11b2a581bf00f8ba4870b96" + integrity sha512-Uw6ekxSWNLCPesSv/cmqf2bY/77z11O7jZGPax3ycZMFU/oi2DMH9i89AdHc1tRwFg/arFoEwX0IS3LCUxJh1g== + dependencies: + postcss "^7.0.26" + +postcss-selector-matches@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz#71c8248f917ba2cc93037c9637ee09c64436fcff" + integrity sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww== + dependencies: + balanced-match "^1.0.0" + postcss "^7.0.2" + +postcss-selector-not@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-4.0.0.tgz#c68ff7ba96527499e832724a2674d65603b645c0" + integrity sha512-W+bkBZRhqJaYN8XAnbbZPLWMvZD1wKTu0UxtFKdhtGjWYmxhkUneoeOhRJKdAE5V7ZTlnbHfCR+6bNwK9e1dTQ== + dependencies: + balanced-match "^1.0.0" + postcss "^7.0.2" + +postcss-selector-parser@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270" + integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA== + dependencies: + dot-prop "^5.2.0" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-selector-parser@^5.0.0-rc.3, postcss-selector-parser@^5.0.0-rc.4: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c" + integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ== + dependencies: + cssesc "^2.0.0" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" + integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== + dependencies: + cssesc "^3.0.0" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-svgo@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258" + integrity sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw== + dependencies: + is-svg "^3.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + svgo "^1.0.0" + +postcss-unique-selectors@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac" + integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg== + dependencies: + alphanum-sort "^1.0.0" + postcss "^7.0.0" + uniqs "^2.0.0" + +postcss-value-parser@^3.0.0, postcss-value-parser@^3.2.3: + version "3.3.1" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" + integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== + +postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.0.3, postcss-value-parser@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" + integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== + +postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz#da8b472d901da1e205b47bdc98637b9e9e550e5f" + integrity sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg== + dependencies: + flatten "^1.0.2" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.30, postcss@^7.0.5, postcss@^7.0.6: + version "7.0.31" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.31.tgz#332af45cb73e26c0ee2614d7c7fb02dfcc2bd6dd" + integrity sha512-a937VDHE1ftkjk+8/7nj/mrjtmkn69xxzJgRETXdAUU+IgOYPQNJF17haGWbeDxSyk++HA14UA98FurvPyBJOA== + dependencies: + chalk "^2.4.2" + source-map "^0.6.1" + supports-color "^6.1.0" + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= + +prepend-http@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" + integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= + +private@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +process@^0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= + +promise@^8.0.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/promise/-/promise-8.1.0.tgz#697c25c3dfe7435dd79fcd58c38a135888eaf05e" + integrity sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q== + dependencies: + asap "~2.0.6" + +proxy-addr@~2.0.5: + version "2.0.6" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" + integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw== + dependencies: + forwarded "~0.1.2" + ipaddr.js "1.9.1" + +prr@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" + integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= + +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= + +psl@^1.1.28: + version "1.8.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" + integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== + +public-encrypt@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" + integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + safe-buffer "^5.1.2" + +pump@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" + integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pumpify@^1.3.3: + version "1.5.1" + resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" + integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== + dependencies: + duplexify "^3.6.0" + inherits "^2.0.3" + pump "^2.0.0" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= + +punycode@^1.2.4: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= + +punycode@^2.1.0, punycode@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +q@^1.1.2: + version "1.5.1" + resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" + integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= + +qs@6.7.0: + version "6.7.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" + integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== + +qs@^6.4.0: + version "6.9.4" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.4.tgz#9090b290d1f91728d3c22e54843ca44aea5ab687" + integrity sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ== + +qs@~6.5.2: + version "6.5.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" + integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== + +query-string@^4.1.0: + version "4.3.4" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" + integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s= + dependencies: + object-assign "^4.1.0" + strict-uri-encode "^1.0.0" + +querystring-es3@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= + +querystringify@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" + integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA== + +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +randomfill@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" + +range-parser@^1.2.1, range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" + integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== + dependencies: + bytes "3.1.0" + http-errors "1.7.2" + iconv-lite "0.4.24" + unpipe "1.0.0" + +read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + integrity sha1-5mTvMRYRZsl1HNvo28+GtftY93Q= + dependencies: + pify "^2.3.0" + +read-pkg-up@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" + integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI= + dependencies: + find-up "^1.0.0" + read-pkg "^1.0.0" + +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + +read-pkg@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" + integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg= + dependencies: + load-json-file "^1.0.0" + normalize-package-data "^2.3.2" + path-type "^1.0.0" + +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: + version "2.3.7" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.0.6, readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" + integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== + dependencies: + graceful-fs "^4.1.11" + micromatch "^3.1.10" + readable-stream "^2.0.2" + +readdirp@~3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada" + integrity sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ== + dependencies: + picomatch "^2.2.1" + +redent@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" + integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94= + dependencies: + indent-string "^2.1.0" + strip-indent "^1.0.1" + +regenerate-unicode-properties@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" + integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== + dependencies: + regenerate "^1.4.0" + +regenerate@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" + integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== + +regenerator-runtime@^0.13.4, regenerator-runtime@^0.13.5: + version "0.13.5" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" + integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== + +regenerator-transform@^0.14.2: + version "0.14.4" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7" + integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw== + dependencies: + "@babel/runtime" "^7.8.4" + private "^0.1.8" + +regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== + dependencies: + extend-shallow "^3.0.2" + safe-regex "^1.1.0" + +regexp.prototype.flags@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" + integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" + +regexpp@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" + integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== + +regexpu-core@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" + integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== + dependencies: + regenerate "^1.4.0" + regenerate-unicode-properties "^8.2.0" + regjsgen "^0.5.1" + regjsparser "^0.6.4" + unicode-match-property-ecmascript "^1.0.4" + unicode-match-property-value-ecmascript "^1.2.0" + +regjsgen@^0.5.1: + version "0.5.2" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" + integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== + +regjsparser@^0.6.4: + version "0.6.4" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" + integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== + dependencies: + jsesc "~0.5.0" + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= + +repeat-element@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" + integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== + +repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= + +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= + dependencies: + is-finite "^1.0.0" + +request@^2.87.0, request@^2.88.0: + version "2.88.2" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + har-validator "~5.1.3" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + oauth-sign "~0.9.0" + performance-now "^2.1.0" + qs "~6.5.2" + safe-buffer "^5.1.2" + tough-cookie "~2.5.0" + tunnel-agent "^0.6.0" + uuid "^3.3.2" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + +require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= + +resolve-cwd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" + integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= + dependencies: + resolve-from "^3.0.0" + +resolve-dir@^1.0.0, resolve-dir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" + integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M= + dependencies: + expand-tilde "^2.0.0" + global-modules "^1.0.0" + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + integrity sha1-six699nWiBvItuZTM17rywoYh0g= + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= + +resolve@^1.1.7, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.3.2, resolve@^1.8.1: + version "1.17.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" + integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== + dependencies: + path-parse "^1.0.6" + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + +retry@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" + integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs= + +rgb-regex@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" + integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE= + +rgba-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" + integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= + +rimraf@2, rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + +rimraf@2.6.3: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +run-async@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== + +run-queue@^1.0.0, run-queue@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" + integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= + dependencies: + aproba "^1.1.1" + +rw@1, rw@~1.3.2, rw@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" + integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= + +rxjs@^6.5.3: + version "6.5.5" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec" + integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ== + dependencies: + tslib "^1.9.0" + +safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= + dependencies: + ret "~0.1.10" + +"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sass-graph@2.2.5: + version "2.2.5" + resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.5.tgz#a981c87446b8319d96dce0671e487879bd24c2e8" + integrity sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag== + dependencies: + glob "^7.0.0" + lodash "^4.0.0" + scss-tokenizer "^0.2.3" + yargs "^13.3.2" + +sass-loader@^8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-8.0.2.tgz#debecd8c3ce243c76454f2e8290482150380090d" + integrity sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ== + dependencies: + clone-deep "^4.0.1" + loader-utils "^1.2.3" + neo-async "^2.6.1" + schema-utils "^2.6.1" + semver "^6.3.0" + +sass@^1.26.5: + version "1.26.7" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.26.7.tgz#d3c9f3dd9771632bfb60af8746c308da3765166d" + integrity sha512-xgNazdkr6yvgHEfNaOjKtZzhDZmKYMCmoRKMPrTDo7YvjaITIzU2DDYsIUuN/atAg7/JOxPeCQHH7TtCo5Tq2g== + dependencies: + chokidar ">=2.0.0 <4.0.0" + +sax@~1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + +schema-utils@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" + integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== + dependencies: + ajv "^6.1.0" + ajv-errors "^1.0.0" + ajv-keywords "^3.1.0" + +schema-utils@^2.6.1, schema-utils@^2.6.5, schema-utils@^2.6.6: + version "2.7.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7" + integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== + dependencies: + "@types/json-schema" "^7.0.4" + ajv "^6.12.2" + ajv-keywords "^3.4.1" + +scss-tokenizer@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" + integrity sha1-jrBtualyMzOCTT9VMGQRSYR85dE= + dependencies: + js-base64 "^2.1.8" + source-map "^0.4.2" + +select-hose@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" + integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo= + +select2@^4.0.13: + version "4.0.13" + resolved "https://registry.yarnpkg.com/select2/-/select2-4.0.13.tgz#0dbe377df3f96167c4c1626033e924372d8ef44d" + integrity sha512-1JeB87s6oN/TDxQQYCvS5EFoQyvV6eYMZZ0AeA4tdFDYWN3BAGZ8npr17UBFddU0lgAt3H0yjX3X6/ekOj1yjw== + +selfsigned@^1.10.7: + version "1.10.7" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.7.tgz#da5819fd049d5574f28e88a9bcc6dbc6e6f3906b" + integrity sha512-8M3wBCzeWIJnQfl43IKwOmC4H/RAp50S8DF60znzjW5GVqTcSe2vWclt7hmYVPkKPlHWOu5EaWOMZ2Y6W8ZXTA== + dependencies: + node-forge "0.9.0" + +"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" + integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== + +semver@^6.0.0, semver@^6.1.2, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +semver@~5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" + integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8= + +send@0.17.1: + version "0.17.1" + resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" + integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== + dependencies: + debug "2.6.9" + depd "~1.1.2" + destroy "~1.0.4" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "~1.7.2" + mime "1.6.0" + ms "2.1.1" + on-finished "~2.3.0" + range-parser "~1.2.1" + statuses "~1.5.0" + +serialize-javascript@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61" + integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ== + +serialize-javascript@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-3.1.0.tgz#8bf3a9170712664ef2561b44b691eafe399214ea" + integrity sha512-JIJT1DGiWmIKhzRsG91aS6Ze4sFUrYbltlkg2onR5OrnNM02Kl/hnY/T4FN2omvyeBbQmMJv+K4cPOpGzOTFBg== + dependencies: + randombytes "^2.1.0" + +serve-index@^1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" + integrity sha1-03aNabHn2C5c4FD/9bRTvqEqkjk= + dependencies: + accepts "~1.3.4" + batch "0.6.1" + debug "2.6.9" + escape-html "~1.0.3" + http-errors "~1.6.2" + mime-types "~2.1.17" + parseurl "~1.3.2" + +serve-static@1.14.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" + integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.17.1" + +set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +set-value@^2.0.0, set-value@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" + integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +setimmediate@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== + +setprototypeof@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.11" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" + integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== + +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= + dependencies: + is-arrayish "^0.3.1" + +slice-ansi@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" + integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== + dependencies: + ansi-styles "^3.2.0" + astral-regex "^1.0.0" + is-fullwidth-code-point "^2.0.0" + +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^3.1.0" + +sockjs-client@1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.4.0.tgz#c9f2568e19c8fd8173b4997ea3420e0bb306c7d5" + integrity sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g== + dependencies: + debug "^3.2.5" + eventsource "^1.0.7" + faye-websocket "~0.11.1" + inherits "^2.0.3" + json3 "^3.3.2" + url-parse "^1.4.3" + +sockjs@0.3.20: + version "0.3.20" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.20.tgz#b26a283ec562ef8b2687b44033a4eeceac75d855" + integrity sha512-SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA== + dependencies: + faye-websocket "^0.10.0" + uuid "^3.4.0" + websocket-driver "0.6.5" + +sort-keys@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" + integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0= + dependencies: + is-plain-obj "^1.0.0" + +source-list-map@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" + integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== + +source-map-resolve@^0.5.0: + version "0.5.3" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" + integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== + dependencies: + atob "^2.1.2" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + +source-map-support@~0.5.12: + version "0.5.19" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" + integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-url@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" + integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= + +source-map@^0.4.2: + version "0.4.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" + integrity sha1-66T12pwNyZneaAMti092FzZSA2s= + dependencies: + amdefine ">=0.0.4" + +source-map@^0.5.0, source-map@^0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= + +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.5" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" + integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== + +spdy-transport@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" + integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== + dependencies: + debug "^4.1.0" + detect-node "^2.0.4" + hpack.js "^2.1.6" + obuf "^1.1.2" + readable-stream "^3.0.6" + wbuf "^1.7.3" + +spdy@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" + integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== + dependencies: + debug "^4.1.0" + handle-thing "^2.0.0" + http-deceiver "^1.2.7" + select-hose "^2.0.0" + spdy-transport "^3.0.0" + +split-string@^3.0.1, split-string@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== + dependencies: + extend-shallow "^3.0.0" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + +sshpk@^1.7.0: + version "1.16.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" + integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + bcrypt-pbkdf "^1.0.0" + dashdash "^1.12.0" + ecc-jsbn "~0.1.1" + getpass "^0.1.1" + jsbn "~0.1.0" + safer-buffer "^2.0.2" + tweetnacl "~0.14.0" + +ssri@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" + integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA== + dependencies: + figgy-pudding "^3.5.1" + +ssri@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-7.1.0.tgz#92c241bf6de82365b5c7fb4bd76e975522e1294d" + integrity sha512-77/WrDZUWocK0mvA5NTRQyveUf+wsrIc6vyrxpS8tVvYBcX215QbafrJR3KtkpskIzoFLqqNuuYQvxaMjXJ/0g== + dependencies: + figgy-pudding "^3.5.1" + minipass "^3.1.1" + +stable@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + +"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= + +stdout-stream@^1.4.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de" + integrity sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA== + dependencies: + readable-stream "^2.0.1" + +stream-browserify@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" + integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-each@^1.1.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" + integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== + dependencies: + end-of-stream "^1.1.0" + stream-shift "^1.0.0" + +stream-http@^2.7.2: + version "2.8.3" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" + integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.3.6" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +stream-shift@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" + integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== + +strict-uri-encode@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" + integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +"string-width@^1.0.2 || 2": + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string-width@^3.0.0, string-width@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== + dependencies: + emoji-regex "^7.0.1" + is-fullwidth-code-point "^2.0.0" + strip-ansi "^5.1.0" + +string-width@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" + integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.0" + +string.prototype.trimend@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" + integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + +string.prototype.trimleft@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc" + integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + string.prototype.trimstart "^1.0.0" + +string.prototype.trimright@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3" + integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + string.prototype.trimend "^1.0.0" + +string.prototype.trimstart@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" + integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.5" + +string_decoder@^1.0.0, string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + +strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-ansi@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" + integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== + dependencies: + ansi-regex "^5.0.0" + +strip-bom@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" + integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4= + dependencies: + is-utf8 "^0.2.0" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + +strip-indent@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" + integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI= + dependencies: + get-stdin "^4.0.1" + +strip-json-comments@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.0.tgz#7638d31422129ecf4457440009fba03f9f9ac180" + integrity sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w== + +style-loader@^1.1.3: + version "1.2.1" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.2.1.tgz#c5cbbfbf1170d076cfdd86e0109c5bba114baa1a" + integrity sha512-ByHSTQvHLkWE9Ir5+lGbVOXhxX10fbprhLvdg96wedFZb4NDekDPxVKv5Fwmio+QcMlkkNfuK+5W1peQ5CUhZg== + dependencies: + loader-utils "^2.0.0" + schema-utils "^2.6.6" + +stylehacks@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" + integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== + dependencies: + browserslist "^4.0.0" + postcss "^7.0.0" + postcss-selector-parser "^3.0.0" + +supports-color@6.1.0, supports-color@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" + integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + dependencies: + has-flag "^3.0.0" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.0.0, supports-color@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" + integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== + dependencies: + has-flag "^4.0.0" + +svgo@^1.0.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" + integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== + dependencies: + chalk "^2.4.1" + coa "^2.0.2" + css-select "^2.0.0" + css-select-base-adapter "^0.1.1" + css-tree "1.0.0-alpha.37" + csso "^4.0.2" + js-yaml "^3.13.1" + mkdirp "~0.5.1" + object.values "^1.1.0" + sax "~1.2.4" + stable "^0.1.8" + unquote "~1.1.1" + util.promisify "~1.0.0" + +sync-request@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/sync-request/-/sync-request-5.0.0.tgz#b815d5c6e16193392ec4139a4881db5e90e88676" + integrity sha512-NKhEA4WacR3mRBIFz1niXrIUTrUVFtP2spzrLMINangebvJ/EFyVv+LMJKvVl6UIrJM4Fburnnj91lRnqb4WkA== + dependencies: + http-response-object "^3.0.1" + sync-rpc "^1.2.0" + then-request "^5.0.0" + +sync-rpc@^1.2.0: + version "1.3.6" + resolved "https://registry.yarnpkg.com/sync-rpc/-/sync-rpc-1.3.6.tgz#b2e8b2550a12ccbc71df8644810529deb68665a7" + integrity sha512-J8jTXuZzRlvU7HemDgHi3pGnh/rkoqR/OZSjhTyyZrEkkYQbk7Z33AXp37mkPfPpfdOuj7Ex3H/TJM1z48uPQw== + dependencies: + get-port "^3.1.0" + +table@^5.2.3: + version "5.4.6" + resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" + integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== + dependencies: + ajv "^6.10.2" + lodash "^4.17.14" + slice-ansi "^2.1.0" + string-width "^3.0.0" + +tapable@^1.0.0, tapable@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" + integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== + +tar@^2.0.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" + integrity sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA== + dependencies: + block-stream "*" + fstream "^1.0.12" + inherits "2" + +terser-webpack-plugin@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz#5ecaf2dbdc5fb99745fd06791f46fc9ddb1c9a7c" + integrity sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA== + dependencies: + cacache "^12.0.2" + find-cache-dir "^2.1.0" + is-wsl "^1.1.0" + schema-utils "^1.0.0" + serialize-javascript "^2.1.2" + source-map "^0.6.1" + terser "^4.1.2" + webpack-sources "^1.4.0" + worker-farm "^1.7.0" + +terser-webpack-plugin@^2.3.5: + version "2.3.6" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.6.tgz#a4014b311a61f87c6a1b217ef4f5a75bd0665a69" + integrity sha512-I8IDsQwZrqjdmOicNeE8L/MhwatAap3mUrtcAKJuilsemUNcX+Hier/eAzwStVqhlCxq0aG3ni9bK/0BESXkTg== + dependencies: + cacache "^13.0.1" + find-cache-dir "^3.3.1" + jest-worker "^25.4.0" + p-limit "^2.3.0" + schema-utils "^2.6.6" + serialize-javascript "^3.0.0" + source-map "^0.6.1" + terser "^4.6.12" + webpack-sources "^1.4.3" + +terser@^4.1.2, terser@^4.6.12: + version "4.7.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.7.0.tgz#15852cf1a08e3256a80428e865a2fa893ffba006" + integrity sha512-Lfb0RiZcjRDXCC3OSHJpEkxJ9Qeqs6mp2v4jf2MHfy8vGERmVDuvjXdd/EnP5Deme5F2yBRBymKmKHCBg2echw== + dependencies: + commander "^2.20.0" + source-map "~0.6.1" + source-map-support "~0.5.12" + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= + +then-request@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/then-request/-/then-request-5.0.0.tgz#7a23f616799597621de8cfebc77c61fd28c00d64" + integrity sha512-A3uIVLD33SAvB10PfsxLuQBMV8GVC/6xKBMPOvkJchi6251e5AMJ+Yy+RVKsVsnj0iYNhN2E5SkNSi58H19wsw== + dependencies: + "@types/concat-stream" "^1.6.0" + "@types/form-data" "0.0.33" + "@types/node" "^8.0.0" + "@types/qs" "^6.2.31" + caseless "~0.12.0" + concat-stream "^1.6.0" + form-data "^2.2.0" + http-basic "^6.0.0" + http-response-object "^3.0.1" + promise "^8.0.0" + qs "^6.4.0" + +through2@^2.0.0: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + +thunky@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" + integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== + +timeago@^1.6.7: + version "1.6.7" + resolved "https://registry.yarnpkg.com/timeago/-/timeago-1.6.7.tgz#afd467c29a911e697fc22a81888c7c3022783cb5" + integrity sha512-FikcjN98+ij0siKH4VO4dZ358PR3oDDq4Vdl1+sN9gWz1/+JXGr3uZbUShYH/hL7bMhcTpPbplJU5Tej4b4jbQ== + dependencies: + jquery ">=1.5.0 <4.0" + +timers-browserify@^2.0.4: + version "2.0.11" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f" + integrity sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ== + dependencies: + setimmediate "^1.0.4" + +timsort@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" + integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= + dependencies: + kind-of "^3.0.2" + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" + +toidentifier@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" + integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== + +topojson-client@3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/topojson-client/-/topojson-client-3.1.0.tgz#22e8b1ed08a2b922feeb4af6f53b6ef09a467b99" + integrity sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw== + dependencies: + commander "2" + +topojson-client@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/topojson-client/-/topojson-client-3.0.0.tgz#1f99293a77ef42a448d032a81aa982b73f360d2f" + integrity sha1-H5kpOnfvQqRI0DKoGqmCtz82DS8= + dependencies: + commander "2" + +topojson-server@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/topojson-server/-/topojson-server-3.0.0.tgz#378e78e87c3972a7b5be2c5d604369b6bae69c5e" + integrity sha1-N4546Hw5cqe1vixdYENptrrmnF4= + dependencies: + commander "2" + +topojson-simplify@3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/topojson-simplify/-/topojson-simplify-3.0.2.tgz#8a2403e639531500fafa0c6594e8b0fadebc2c02" + integrity sha512-gyYSVRt4jO/0RJXKZQPzTDQRWV+D/nOfiljNUv0HBXslFLtq3yxRHrl7jbrjdbda5Ytdr7M8BZUI4OxU7tnbRQ== + dependencies: + commander "2" + topojson-client "3" + +topojson@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/topojson/-/topojson-3.0.2.tgz#fcb927306c3e0fa76656fa58deed4555d2346fb4" + integrity sha512-u3zeuL6WEVL0dmsRn7uHZKc4Ao4gpW3sORUv+N3ezLTvY3JdCuyg0hvpWiIfFw8p/JwVN++SvAsFgcFEeR15rQ== + dependencies: + topojson-client "3.0.0" + topojson-server "3.0.0" + topojson-simplify "3.0.2" + +tough-cookie@~2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + +trim-newlines@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" + integrity sha1-WIeWa7WCpFA6QetST301ARgVphM= + +"true-case-path@^1.0.2": + version "1.0.3" + resolved "https://registry.yarnpkg.com/true-case-path/-/true-case-path-1.0.3.tgz#f813b5a8c86b40da59606722b144e3225799f47d" + integrity sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew== + dependencies: + glob "^7.1.2" + +ts-pnp@^1.1.6: + version "1.2.0" + resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92" + integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== + +tslib@^1.9.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" + integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== + +tsscmp@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.6.tgz#85b99583ac3589ec4bfef825b5000aa911d605eb" + integrity sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA== + +tty-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + dependencies: + safe-buffer "^5.0.1" + +turbolinks@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/turbolinks/-/turbolinks-5.2.0.tgz#e6877a55ea5c1cb3bb225f0a4ae303d6d32ff77c" + integrity sha512-pMiez3tyBo6uRHFNNZoYMmrES/IaGgMhQQM+VFF36keryjb5ms0XkVpmKHkfW/4Vy96qiGW3K9bz0tF5sK9bBw== + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= + dependencies: + prelude-ls "~1.1.2" + +type-fest@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" + integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== + +type-fest@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + +type-is@~1.6.17, type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + +unicode-canonical-property-names-ecmascript@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" + integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== + +unicode-match-property-ecmascript@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" + integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== + dependencies: + unicode-canonical-property-names-ecmascript "^1.0.4" + unicode-property-aliases-ecmascript "^1.0.4" + +unicode-match-property-value-ecmascript@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" + integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== + +unicode-property-aliases-ecmascript@^1.0.4: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" + integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== + +union-value@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" + integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^2.0.1" + +uniq@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= + +uniqs@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" + integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI= + +unique-filename@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" + integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== + dependencies: + unique-slug "^2.0.0" + +unique-slug@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" + integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== + dependencies: + imurmurhash "^0.1.4" + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= + +unquote@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" + integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= + +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + +upath@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" + integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== + +uri-js@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" + integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== + dependencies: + punycode "^2.1.0" + +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= + +url-parse@^1.4.3: + version "1.4.7" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.7.tgz#a8a83535e8c00a316e403a5db4ac1b9b853ae278" + integrity sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg== + dependencies: + querystringify "^2.1.1" + requires-port "^1.0.0" + +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +use@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + +util-deprecate@^1.0.1, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +util.promisify@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" + integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.2" + has-symbols "^1.0.1" + object.getownpropertydescriptors "^2.1.0" + +util@0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= + dependencies: + inherits "2.0.1" + +util@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" + integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== + dependencies: + inherits "2.0.3" + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= + +uuid@^3.3.2, uuid@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== + +v8-compile-cache@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" + integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w== + +v8-compile-cache@^2.0.3: + version "2.1.1" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745" + integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= + +vendors@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e" + integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w== + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +vm-browserify@^1.0.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" + integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== + +watchpack-chokidar2@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz#9948a1866cbbd6cb824dea13a7ed691f6c8ddff0" + integrity sha512-9TyfOyN/zLUbA288wZ8IsMZ+6cbzvsNyEzSBp6e/zkifi6xxbl8SmQ/CxQq32k8NNqrdVEVUVSEf56L4rQ/ZxA== + dependencies: + chokidar "^2.1.8" + +watchpack@^1.6.1: + version "1.7.2" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.2.tgz#c02e4d4d49913c3e7e122c3325365af9d331e9aa" + integrity sha512-ymVbbQP40MFTp+cNMvpyBpBtygHnPzPkHqoIwRRj/0B8KhqQwV8LaKjtbaxF2lK4vl8zN9wCxS46IFCU5K4W0g== + dependencies: + graceful-fs "^4.1.2" + neo-async "^2.5.0" + optionalDependencies: + chokidar "^3.4.0" + watchpack-chokidar2 "^2.0.0" + +wbuf@^1.1.0, wbuf@^1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" + integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== + dependencies: + minimalistic-assert "^1.0.0" + +webpack-assets-manifest@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/webpack-assets-manifest/-/webpack-assets-manifest-3.1.1.tgz#39bbc3bf2ee57fcd8ba07cda51c9ba4a3c6ae1de" + integrity sha512-JV9V2QKc5wEWQptdIjvXDUL1ucbPLH2f27toAY3SNdGZp+xSaStAgpoMcvMZmqtFrBc9a5pTS1058vxyMPOzRQ== + dependencies: + chalk "^2.0" + lodash.get "^4.0" + lodash.has "^4.0" + mkdirp "^0.5" + schema-utils "^1.0.0" + tapable "^1.0.0" + webpack-sources "^1.0.0" + +webpack-cli@^3.3.11: + version "3.3.11" + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.11.tgz#3bf21889bf597b5d82c38f215135a411edfdc631" + integrity sha512-dXlfuml7xvAFwYUPsrtQAA9e4DOe58gnzSxhgrO/ZM/gyXTBowrsYeubyN4mqGhYdpXMFNyQ6emjJS9M7OBd4g== + dependencies: + chalk "2.4.2" + cross-spawn "6.0.5" + enhanced-resolve "4.1.0" + findup-sync "3.0.0" + global-modules "2.0.0" + import-local "2.0.0" + interpret "1.2.0" + loader-utils "1.2.3" + supports-color "6.1.0" + v8-compile-cache "2.0.3" + yargs "13.2.4" + +webpack-dev-middleware@^3.7.2: + version "3.7.2" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz#0019c3db716e3fa5cecbf64f2ab88a74bab331f3" + integrity sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw== + dependencies: + memory-fs "^0.4.1" + mime "^2.4.4" + mkdirp "^0.5.1" + range-parser "^1.2.1" + webpack-log "^2.0.0" + +webpack-dev-server@^3.11.0: + version "3.11.0" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz#8f154a3bce1bcfd1cc618ef4e703278855e7ff8c" + integrity sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg== + dependencies: + ansi-html "0.0.7" + bonjour "^3.5.0" + chokidar "^2.1.8" + compression "^1.7.4" + connect-history-api-fallback "^1.6.0" + debug "^4.1.1" + del "^4.1.1" + express "^4.17.1" + html-entities "^1.3.1" + http-proxy-middleware "0.19.1" + import-local "^2.0.0" + internal-ip "^4.3.0" + ip "^1.1.5" + is-absolute-url "^3.0.3" + killable "^1.0.1" + loglevel "^1.6.8" + opn "^5.5.0" + p-retry "^3.0.1" + portfinder "^1.0.26" + schema-utils "^1.0.0" + selfsigned "^1.10.7" + semver "^6.3.0" + serve-index "^1.9.1" + sockjs "0.3.20" + sockjs-client "1.4.0" + spdy "^4.0.2" + strip-ansi "^3.0.1" + supports-color "^6.1.0" + url "^0.11.0" + webpack-dev-middleware "^3.7.2" + webpack-log "^2.0.0" + ws "^6.2.1" + yargs "^13.3.2" + +webpack-log@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f" + integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg== + dependencies: + ansi-colors "^3.0.0" + uuid "^3.3.2" + +webpack-sources@^1.0.0, webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" + integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== + dependencies: + source-list-map "^2.0.0" + source-map "~0.6.1" + +webpack@^4.42.1: + version "4.43.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.43.0.tgz#c48547b11d563224c561dad1172c8aa0b8a678e6" + integrity sha512-GW1LjnPipFW2Y78OOab8NJlCflB7EFskMih2AHdvjbpKMeDJqEgSx24cXXXiPS65+WSwVyxtDsJH6jGX2czy+g== + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-module-context" "1.9.0" + "@webassemblyjs/wasm-edit" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + acorn "^6.4.1" + ajv "^6.10.2" + ajv-keywords "^3.4.1" + chrome-trace-event "^1.0.2" + enhanced-resolve "^4.1.0" + eslint-scope "^4.0.3" + json-parse-better-errors "^1.0.2" + loader-runner "^2.4.0" + loader-utils "^1.2.3" + memory-fs "^0.4.1" + micromatch "^3.1.10" + mkdirp "^0.5.3" + neo-async "^2.6.1" + node-libs-browser "^2.2.1" + schema-utils "^1.0.0" + tapable "^1.1.3" + terser-webpack-plugin "^1.4.3" + watchpack "^1.6.1" + webpack-sources "^1.4.1" + +websocket-driver@0.6.5: + version "0.6.5" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" + integrity sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY= + dependencies: + websocket-extensions ">=0.1.1" + +websocket-driver@>=0.5.1: + version "0.7.4" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" + integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== + dependencies: + http-parser-js ">=0.5.1" + safe-buffer ">=5.1.0" + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" + integrity sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg== + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + +which@1, which@^1.2.14, which@^1.2.9, which@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" + integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== + dependencies: + string-width "^1.0.2 || 2" + +word-wrap@~1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +wordwrap@~0.0.2: + version "0.0.3" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" + integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= + +worker-farm@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" + integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== + dependencies: + errno "~0.1.7" + +wrap-ansi@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" + integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== + dependencies: + ansi-styles "^3.2.0" + string-width "^3.0.0" + strip-ansi "^5.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +write@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" + integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== + dependencies: + mkdirp "^0.5.1" + +ws@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb" + integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA== + dependencies: + async-limiter "~1.0.0" + +xtend@^4.0.0, xtend@~4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +y18n@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" + integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== + +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^1.7.2: + version "1.10.0" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" + integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== + +yargs-parser@^13.1.0, yargs-parser@^13.1.2: + version "13.1.2" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" + integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs@13.2.4: + version "13.2.4" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.4.tgz#0b562b794016eb9651b98bd37acf364aa5d6dc83" + integrity sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg== + dependencies: + cliui "^5.0.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + os-locale "^3.1.0" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^13.1.0" + +yargs@^13.3.2: + version "13.3.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" + integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== + dependencies: + cliui "^5.0.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^13.1.2"

z&TrQdu-(+OtI7=mT;HYayZt)_7V&ZM zUkDUX`?!0x^`3O!!B)8v&s9|2a{sw(W#p0{bg1q>mCAegSc_8ND@8dd_3xq(A9uAX zmm~*@o=eelKjLR@&k_SivaMd`qfK-HVITW#Y(Jpf{prA68vyQ9v(|3$+n+tb>ao$> zwxqW3oqXJi>@nv4*IZx!I_2Me0@zQKxb=6oe&%Q7;up95Za!@Et1y`J%eGGgz~8ZL z<){03fA?qo`p@%sei_7#w@q8_mo+%xIa{(rY|gv~A$pA`TA03~!qSaf7z zbY(hYa%Ew3WdJfTGB7PLHZ3qRR53U@GBG+ZFe@-JIxsNIOJMB)001R)MObuXVRU6W zZEs|0W_bWIFfuSLFg7hPGE^}*Ix;ajFfc1HGCD9Yy%yL}00012dQ@0+Qek%>aB^>E zX>4U6ba`-PAZc)PV*mhnoa6Eg2ys>@D9TUE%t_@^00ScnE@KN5BNI!L6ay0=M1VBI uWCJ6!R3OXP)X2ol#2my2%YaCrN-hBE7ZG&wLN%2D0000D+Aq literal 0 HcmV?d00001 diff --git a/app/assets/images/favicon/apple-touch-icon.png b/app/assets/images/favicon/apple-touch-icon.png new file mode 100755 index 0000000000000000000000000000000000000000..cf414c1c1cf7e255e083e1aeb80e822585f55b11 GIT binary patch literal 42214 zcmV)gK%~EkP)004R>004l5008;`004mK004C`008P>0026e000+ooVrmw00006 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 literal 0 HcmV?d00001 diff --git a/app/assets/images/favicon/browserconfig.xml.erb b/app/assets/images/favicon/browserconfig.xml.erb new file mode 100755 index 00000000..a1b8a750 --- /dev/null +++ b/app/assets/images/favicon/browserconfig.xml.erb @@ -0,0 +1,9 @@ + + + + + + #2d89ef + + + diff --git a/app/assets/images/favicon/favicon-16x16.png b/app/assets/images/favicon/favicon-16x16.png new file mode 100755 index 0000000000000000000000000000000000000000..1d1f766cb835b33410194fee53f745494dfbf1b9 GIT binary patch literal 1187 zcmaJ{2pHJTBz2xPkdwE_yqJKgk z0C2?3)fow);XkRT1JyHDpQ9i+bkotp5dcoM!CvrTh{Hl%ksbitISl|k6@ZVBL|+9U z9u9y62LPf30MqF5Ht+8N(6;uvigr2p-;k&z_yU6W1C-CB8~&MrzK?ET82&yCKWs)I z`T>Se5GGYhp#h4Gt;*)E+=dr9^=g4~{HdNBYd)(aL0`+$aJ=R>8O z-kiFw?7HqUZePXIekQxOnBB)@_fEXnJvPZ|}WW(l#J^IUwRs&h78-cMOcC)jVg^woK29*W?P}yZN^>3sR+8qtQ&v zF4l5h{NBgs#b{mWoPj4@F`b_ z=u+G~Ty&Q{(LQQ&u2i!-0!bg-oE_0-Z$ojorG@2r@uI1r$14It)J@D z&hq42v&ixZcr@i|1UAVj1R1OE3$wTS!ThYng>N0c zdkrkTe9>5>KPJ%I?|OjFu_ul7QMV#UWMX8v0vJ%J@jIK_Th~g?6V)bc`lN{X_U5oj znSCN3Yx9sn+c34ne%+cdASA%F&e?Fp78sU)N0_W_>m;Ig@_5OV1A_c#J3-niyHKRS z^140+4UgQP+}kjpfsXJE#l@F`52g?hp|J!AfGyk>ZUsMQ1-C`poJZKg5%zW#a9ac% z{`mA)HUBb1M&XHJwEs596Pad^!RHRzmx2tw4U3MA3L{1kU=&(30Y;3bgaVLIzNr38 zF9vhw%;2@5VK*@n=$IQ=hZ-208@uP5=orJC>2^JM9rLGX*wCct4R4tD1y6T~?pk%l Y8c0lyC~7DBLTCkWbMbU$IpI?N2Ji-IT>t<8 literal 0 HcmV?d00001 diff --git a/app/assets/images/favicon/favicon-32x32.png b/app/assets/images/favicon/favicon-32x32.png new file mode 100755 index 0000000000000000000000000000000000000000..5ab5d350772bf6f0f9860f0e1cce8d9f4397353d GIT binary patch literal 2340 zcmV+<3ETFGP)004R>004l5008;`004mK004C`008P>0026e000+ooVrmw00006 zVoOIv0RI600RN!9r;`8x00(qQO+^Rf1_BZkIDJOe$^ZZd#Ysd#R9M56m&uP^M-|3@ zr>gG!hJO9J-R^eViDNr<2uegq0xSr#5F3zKkp&0|2_eA-SiqhIEB*pjAhAVAtXUvg zh(#m_ah!IX#EGZwem%V5zTr+)#iA1_vAZMtEbo!(eD!_b(fvxi_Z{Guz|Vj+Kn9Z? ze*LGPaBp}UC7O2BAr2EJ#fV!0!$4E8sUk{83k7$kavJx`l`$mIPl5kzXaEht+c;71O90-h=X* zSX(qgq++Z%G>Vp5!C}eFX+#Vkt7YI9Kx%-WetbB9mXyoO-(w@KX}qJUEk1 z&cHT~q!Z%A<3ypHLn%kqSOkrAo^vga4j>64v?M%G2Kb=?PCwZ39xiV7sa-`Bgm}PN z&#Wj(H)3G-A3aDeH!OR#H?I+k=WA5Cnx*3hzCER#bJv@$-*pIJT5h ztSx8YJfaMV5xQwaRa*`w3zo8k;b_LjN(WJfEII-#C`n#=Q~UPR3FekwgZi1Z5136>95=bb!$s@gOH~a4Z8N zFq&5E94^S`C4o`g8O&&B0S-rvrzjR=k!I_I0j_bFKrze9jy_WRYRVp5%ZN z84$LIGbVXK6e^-XQ+v;iyF(mMS66y!UhyeUbtvFyI@^ z{5HWf2is6vhd4_k&{&7{7F(A{7~w?lUQkMd^LRW}Q=qh=+wI{!7#k!0g~wpP7O27h zNQxPF&vZT~&qpXxBuR>B!8n-Arc`A~yVE5}64E%Ksw(osU5c`%$Xc9Q?GrAa2H!k7 zfV!~^_J?SJJ9logzrT-D5u$|io2&F!`fR=PHlw^o1uM6=HqRF5>F6#f;eUE^7BM%m%%$SH=(a0az`IK1|E>Z*JU4|qrdL)=-T7xcl6nT&^w z_FktUr?c@iQ6gyOc%>*C&*APZip35cx5VkSvkWE;##>sg7Ips#n#MjlfTpqh=k+bN zwzhE2bLsL0PObDQB?l3<-@n0~?SBzR0li+2-pUGUF+{AT8rg)sEQhk=fAIA z<;|^|IPVCJ;_@?}#aj310KzEZtKaxGuYCPGG%A4kHgz#!IGRva+jKfTmNzaD#W7_* zVSlv48`rj2UR`EBE4cZ=HtF&PL6k8c4j7MTSo;_fBuU11zyB&xl+e^A2RrXj&L>Rr zoc`%8RPQ|T@_EXpp_ms8x8I{xyh9d2Rat!RSvpTVhnSRnw2R5_p-pfs0P+6etm2%b zY8pI(ZyL(Q7~3>dWx-%H!zC*$iiTNLQWlo7s*%IDFinnAid{L+q=_i&iX;fQvf1Jr zFI^#tqDR~UAk>O!Q88N-BvFPA9AT8Pl60|7k*$U_{^-V4RZ~xdrkrsw8nYOeB!Q5v z^+_Ymll_c9>Bm^ZBXYRCv(LMCcj(?l{dLY=x&lhbNBb;w+9-AWs83-48f)oyQWizS-h4*YSPn)r*1pm~bl zEkYAujG?NJ{`E=;&NdA84{5hj!YHA?)FMzvG3_`21~>p#jx%9CFNsXZ?r_T8gE2To z92kN~^TA-u{r#LQ4rr$lTHs(ZBTEyM2=ii(FbaA8!Wo|4Tsi4wR2kqez|SA@gNL)H zdWa~xS;*G=yO_WbXob>(x1J;nNaKjLUW>*xggb_Inou{EY^_U{#I)k@B>f%mH}T$| z0)7Ylhz}pB&N-~LD5XA3G9KrSqWy!G`6%gp^j$>o-hUziIp@$?e_VnF_$%<+{{ttF zvoJ#B&pQAB03~!qSaf7zbY(hYa%Ew3WdJfTGB7PLHZ3qRR53U@GB7$dHY+ePIxsK@ zxiF0Y001R)MObuXVRU6WZEs|0W_bWIFfuSLFg7hPGE^}*Ix;XiH8v|SGCD9YdE|&O z00012dQ@0+Qek%>aB^>EX>4U6ba`-PAZc)PV*mhnoa6Eg2ys>@D9TUE%t_@^00Scn zE@KN5BNI!L6ay0=M1VBIWCJ6!R3OXP)X2ol#2my2%YaCrN-hBE7ZG&wLN%2D0000< KMNUMnLSTaBK{bQ` literal 0 HcmV?d00001 diff --git a/app/assets/images/favicon/favicon.ico b/app/assets/images/favicon/favicon.ico new file mode 100755 index 0000000000000000000000000000000000000000..da1aee95221fe1bb14ae9329b242f9ce204c0094 GIT binary patch literal 15086 zcmeHucW_rnmbJF_tJ>)V~+@dVE|#`bu|HpU)<0b`8G8IutL0U{$5Q9wE8oDe7n zl!XGyIp>@cAaamU76=g}`RwT@!4kc&Q2W<*)&0Hq`t^H#yI=S1+vnV$jLbjD{IkqI z{vpHTG?}PRWn|{a$jD5aHg)|g8JSDW`xTGkzT*Fpk+ETc&sc_!$n2$vd@22P^6>mG zfZtPGDT9<}()jo|?%%(UM~@y+#-@(qoHE91AyfCpr1LRM9v@8|#r?-+p3a+k{;7MD z@0on}{Ra;q>V8QYWnMUit(KAD@jXfyWrFfT67LZD{QUFJc=+HxCMG7|DXt%kj$m|T znEE}yqX(n7cXtSn9^S{jJA)W|^iVpAe33W7_e@NTVTAV{jNZl1e9yhRgLrs<1mk0D z7t2dB_E6GcY;62h`ajk&k0+l}j45M}GoL?>k55SYKjix>v!igSu@F5sE}^&kDvFYV zP@WWk`jSM{t7gm3bkxQX-X*T4MlNE z01BerQJETq;y54Nyx5GgWFK5^D@RGZCrZzrL~;Bn6rc6N#il}BY^_Fq%n6jGpGH|~ z0M6BBqcS5Dg=|khfMNMuDIva~|uD%4d1qo=Y%0+E%JesO< zaO-j_>I%=Its)(l&o}TJ#iAxJ217kpB>i7w{JcWrXS0R=;~f8D{4`gjqAEKQl^iR# zu5{q;P(R1fP23$B!u9iwxPNaLmoK#79_NIZB@+`9)J2R2Nb^U`nV&_TI8p`%`f=mN zb@UGmu&+7CrtXRI?^^%S`=e;ANJC{oJj(LUqOK$jwMEG&&5A+SjSJG`7di=zCsm%* zTj=t98W|ZuN=gcReSHxc8Y;=zvuD|!fhR@ZrT)T3KBSH4zR`)>oVRyJ262D%4h9E$ z(BI#UkrCGW^8_ZQ`gO7aFW3JeZS9$;XgE2!AU8J`^>qy>DlUb`2~PwB1Y(pn4g7kd z&R5vaCvAM4lQG)8M~`SjY5T5TY{Lj`q%gGoeYen7SAeUXjkt8a3Ab-u!ljOSjNZHV zi?6+Mp#dihHlaA#8zrcX;$5Y=^Y9(@zxamI{N=imALorK_E}R+0cx@%Xfxtam>fVml7QR@H?9xV z|KX@KXJ0;gfc%^ccvz~TB0C(pkq#7lF-&)`aD1G+AEV4&wZ`nqr6&QOmuH^dq}KEZkXiUwS|+zDH2E3`E?pt(Am>s%Zv z`Tbg&D&XSgiu(EnVXU~;ztVsB#qs(4P09WXABFwj(O80-;$*be~diwB-fN zuR?oMCD(=`G}jhmps$OsdA0#RbAFGHP0*KmfcS(2SXo;lEg=}CnIXtd4TrsrF+xIu zFg(ylzhhXkt->FA+a&aV$nh`ym2=dwEI$#QZPhr}T!{-)#}1yKZ>vO8MHbstjv?Bm ziSb7me{`Sz%{^&d7#$u!Z_gmE+~`8b#mk62n*diQNBDVr!o%4Pu_1mq&voufb2-pxE0IVRbhaq1+-_k`$6e&a`6Zyxa8efHDvy*uo;0o=bkz;&$;L%laK z*nJtjw7I=k+HtG1SsEL8rIjcsuR(rA4T_8M={Lopk?U>?$7EAhD9_K(XUf9Gwl>!F zF8Y7c_6YkqK29I;;RDTtESoW4T= z&e5khPrt6QI01=C2{;{-gs`*e2#8DOH;AUaIf?Q!E+~kyM`5@%iX$9RpC5;|rgF*O zef$0&ll)-Or*{T>affUE<*V1xc&-z5ZRb%-DXeZlR9pfIa}v-|o`hD~rTW}RRHX-@ zBFPVx@m?sS-{u?O2RrXz*!u*-)-M#NyiOq9*93XKhRF2NLzb5oa=bN>?yZZAaCiD4 zci&chsShrn@4&6AmuPFcF+hK(zP=u*#g&N9DMn;k4uawmaZJ}3%3A6O_OwPxlq(7% z?T~ZY3R(WxxF5^{SEKxxk=gt}-V^`tJ+PHH3ARv8)x zw_u0tCUoDv{nq*q4-doB#|Pf@RWj02k)IKVu<&3w`GvsD(+_$MZaAW6f+g#>VAg^~ zm^ph6)~xsuyXDqEe(Nf%U$Gc7XU)W)KK&eXmafGrxm{SbV>j0CJ%pJH7UPf8KEl^C zzrwOb^RQ&$cldI~4E*lTA7S=_CFt&cd;NR+`*A>74U5_8x(b zy$AMdn?Tvf3bU82!0$f%l;u9eumAKH>G}o;|26~P zt=a%R=aW!1vcVozU8opZK-t6=bC$2?J3qmDAAZd8ALDl)e}+H&?MtlLCWqd>zPBDf zeY7v@x9`D6U(LqvKKg>XPsc~!%)^!=>Nsj*hrOC6P|z~P9!+B$)VIL;-TUy_w{!6M z_lq#&`z82c%_hhxYeL1y0{dBRzq%og=vwkQBOK5+f|9l_wjVfxwfvUrb}C?l{61_y zcoe#p))*KXdTagrX(x?cy`krH3YrG`(9}EzQ%iH$+griJ_&By4ID`!cRIqN(5o|lE z2}3h8Sm>+6-Ngn@cE<2@vxcvS8C)z?v45W|mTlOI6|%dqhI7Et-Ug>VZ7CLr4|YLZ zpfkd~t>ABO096%b&flK5)_?HM9T+*Eg0_PvtgVfa;Gu(L&*O-9)5KX{QXgQ6p=(y4fMwT@{J$$0o&19VslA;;x1O8&#<29LG@uQ`p*>BR_$Af9@xX!kv-r zLmTRCfNVcQL^^0=i<~UF-hurQ`dfSXL*2%iW7ZT7x`&bCriMgG)Tyfm{G3f-;_3?% z4?mdL+abbH8OhW;k&-0ouZ}cVb;LPoK-b(9+IDX6K1shb#2(eD5opYbK~As*GJSNB z>#q-e#T{6=WjlJ_!T2Ab{nWK~fFkGHUXE9}9orD)q{;rA)Ge9qho;JwzH9&r_6^bI9kw^UtLadMx zV2N!T*I?`6BN$@ey=@vE9)g{#JC0d8WA`y#e79^lOJYN*1=L-(*Lspmz zk|Iw-S6c_Oepmu!1Cw{6e@|~OWI0E7D(hgsnhut1lA~=|j?cg2IpT zHp)Rk-2nTK8)DYV_4xbT1zdv`VcF`HEVCT5xITQoa5Yx%I*2_Q`dH5O6HjO%$x{m{Jf_h8 zr+OSmG9`(U;;GFwf%i{nBGE$&@tm_~-86Vln`;2`c@$++D2ZG*l6jqSV)9vO9bwtj z6WX*{6y8hc`?G`Xh*iIR{|o&K!tB@v3#11a(@flYXa-WeFWQ;=k$%Wi|yF{3NokNG3C3hkQ-_(l>5PK>X1o&(tPxh5onAo+UYFX?Q~y#_LDi%{f%k2jioYK{?wa!nIg~M zl*LTid-HAkMOqX-kp9_r3Rur z<+;Ce|XPibI%h&RqrD@@4F3&_oMhNdYOZ(|}p?`6rA3Ev_(NLa^ z`qC8Cm#3kQ#|%H}AMJrw-V>NsVU!zk0{LLpe*g!p6tMVoOB|r8QvCk}W zK$*y6|JSqb1aA|`_N1TEm2l8ZKQpA9(m@mZIzQ?ZpHD^+_whB^(MS!lBE}GdO7=w= zzim#0lhpT(EYnewhbH220*`!G`WK!#iMonxbhK3S`&N-}sYYp{52|v)d0j~^;{rOW z@=z4xjZ{xPToZL1@(Sxein?v3)ggjn6=dV91X>)3cv(@r`3E$V*TtRyj#qz`xOEOUqbMl?(U(Wu! z&{l)Ov=G|FWb!OEXeKV$(NIhtB?x8IuZcWjJ?F^P&L%XIXKW;vE9ORd26bW|w{wh? z(vAxLvbj2sTxCA(K@KrtjveB{ExhiiEkbU*AKMj!k~r#5%=a~t;NxGJB>Tg4r;g*L zJi{MlDgNv)Kgqu3^7~iQ9#*CWpeWXZytI!r7P7f7EI#W;yA($|8%CS!iv~VlLB6|^ zwz7`)swBk^MYN-mouxf1;=A&rJWnX(65d zo+Nx;yeEbE!VgU3JMvDymj56=kRs)kq}#xqJ{WnaLCJ1A6z#X;s3fvbag>L$ogDLJ zp=h@anofJ5=DZWi4m+UkvQH|f=CBJY_B){JxD#p)+o9qhC!H(tTHSdspJ!ReUC`jO zM|mzpk#fjZ4u+>RFu=L@3rSGSu9W{vv8UXpypV1U-^MCeIecNV0Mku>#0(SSQpSt0 z&O;t++;`vy$Mu+Qya4-7Yp~o-{9w5bM}v-Ij`^H!A3zcgHe=_ZTurRhQ*7htW6JZ=y5zM#)khR|Kaocw+&2IXIQ zF1|w@<(YPL-RZ%4&wcoZ(wl?9`meLV~OKd{AjnC_txP%n{_O|4vXz&G22p<*@Q*5oAE85o5N@3Sgyji z7AvsDeLs4JU%(Fqp>d94OnFb}ULbz{Sw_Z89RF$RD9-;kz0)2rn|hmcWItaK*Z(pZ zr!|eIizrXxv>40veB$?dpW;J#GQLE7hTsSVPb<#Hg^&*u*Mh%&S|lF%sr<)f9_Ndr zc$aw3Q)!In(UgxUZWM9-BuRCSPvGXIR`OPD=neo>cDNa*mwWPIG_mI|)d`HacQ2;&}x zF;OW&sLqU(Vrm*ol2DT1EyW25p1*Dru!kIRH#$3- zaO=ip4AQ?FV|;@6ey^xs=AH-&FWJ9{7`Y^_ z%}Eg+D9(&!>_;&CowRY2yyt(X{oO5m&UTE{v8KVA&jLj4=0V3|Gt8W0;yL)lr>P<8>*5k(cT3l%=A%~uc zHrfHf^GC(T!Y?WT0cYZo7vqIe#=qo;SfC`*QL+sW81MPI>CwZ7oNJdcaQha={52HU zkXJ6MKvZfLu|_+b_I99O>VZ6gmHAu3(^3=13{7y%!k#$1CG^$yBhp#$JR0ydKL}H8 zMfCQ*KIb$@e$C0v9WJiKE8QJoU`t%rl>DOlam-u38eh(wg+)Kk#VYc_-_M(ikEef) zWn1JStEftz?*OKK_65HB<}1wmZWccI`{$Vb!y?@360s|sn${40J# z-t#^3o{QFQ!0n#bZ+~xJKje?7ksDY+E_)fak#|(oGsO;7J?vD|gWO?d>bD+iw#q{O z&=IKX>tT9CwOtcSSm$EwJe~eMUv7bYnA=95&i?=Zh zv{Z1Dw)u6F;I>TNPf2{Bi=iShWx>a(Biz*h=I-7wc5oyYrz&w>DdgcY$YljN>O!02 zB-FNXMCkPgF}Nbb8?4*rU5o?-9%3603z&F5Jq0g zz{Z*}66QE|WH$mWk0RDt4Uu+gFxOLsI>*0>u?E7Ow1`)lBO%BI8p=no`=}}g-vD#( z=2$sMKINdMAy#bLgPDuTB`sZr?>Y82>{B9_WK5oBs}ygraK#GDU$F*1ZrUm3uVd`S z%pVt%+h2*f%hzD}b_H0tdA(8ny#s^faa^EeY)fv$mi=Ie4TsdQ>F_bgtLtMIxuRX< zR5l(`#cJ}?aw^)`N1a6ZgXC9!V%b%D4r43l%n=hCn6myi;mq$24=KI|+FVQ!)eJ1axjTN}c`%7FKc;ACaQ`-ZSI(}As}9=ttl;q7jN zU|)CKA>Z=4Nnk^T#MUJoJ&{B);@*{5crdStqi2&N%_5ebLtHeIxVeOp3%=3M zi08%V0*lWfkB}2)gDlol6ise6(wW$x zJ27DgpO@yU!4&*mP!wj_mEcRCulzST3{yMeg2!0+pbzc;ab6*0dG;$6+eYl=A+-vsj# zWlI=SUq|1!JeB+avA4WXVkeB5FJ%0@;5^ES85M915^??lM-uo*A+enjmJ$CQ5Lk@B zP=szJiN0@EKigl$Iz=pG8}WGIUpJN})2}b44<5p?U`gEO4Exy@mx)=4IQjPKe3qrJ zN}s8N&$QBSJ5Su{9P#~xk}!zCU#eq70odbE9L(}{m(j*>;X}> zfp~Hi_c0CRQySR!_59yQ1;25fh>2zY)^l76oUe-YG;^OMFwa(E{|y|M!e?$O%aCwg zp=)K@>0cWEx1P5PV*KSsxR6sbCl_UmWN&?>`I2Abd`=^`mgaB7bxoh+fUzB%i`hXY z9Ft~9r=3XQ{7)xWmF8oBR3Brc@_r7-?kncMaLUXmPxih-m)_xCsCgcNtkrtRG5&fV z@u~g9spN_8s1X0y&ub;ueNZ4)qCkvmzvFf&5NFxTd_@-p9CqFXMP~)bS#82Ls|`@~ zJc_;-F%#jCihcLLQA{aMf_uA&O|9|Rg)hw)<7qD~MIiv0a1J?(&#V{AMLF zweM|z!hD;bu*hi}zT^2k+YMOiv>l5bwqhA|`r2YSzBXTipWODK`&rCM3`T*Gy>BL= zGtZ*}|1;MGtXuq_Ou!P;C{J(-{@3jJL|w&yg2u$QNAS1(x3A+Cv4O6u=Omm!{12)7 z`UQ#e=(%}`|AQEr+NVnU{6s$cfFdPv|MB>}z}V|c#1pPDHug$KE&qE%n?WvQlySdL zO^hd-2az{8a9hH|#h&yI`*m_Z3|zm|j?6@I4yn-?=3eDhspsZpX^x0}{T1%#AMXtt zX*)8wzNC_)xOw%$OCJ~Y-{Jpju3lt3?=|8cSI*J4^wK!T(kS=$7<;4LH@9a zInl@b<-`T&ev7#a7h{K#CRQ@;@*m&M!iu#&(dU2B=j`ntgz|BHs44B|d$h1mO#@mg zdtt7xEXAu?T3f)$LK`+_dN1|ag&$*N?+h!QL-4Uulj1Nu&6E&sqXbh^J@~ko;jEV# ztoeL5V}zbh!VlNAa)9hXC2ZNVAG_3!W3$3RY}u^<1;)t89y*FmyZ1tev0cIse?Ez^ zcQ)7wAs(g(b~8qhs}cO24H4*S%xe<_xELbXo$+`f?%X2}KL5Cc`&SEomTO|+88`0Z zT**Ultt3BJ%5|bFficZIR*@4De#rAl@CJ=y?dO_QP0p!=T(H2Un&<}zo82I-RXoyO zziiFF&;Qvp30{h8dxP*T=u?QYjr29d^Wt6;sK>>2LCAy4)<@nw11s6Dh}@{V%YNo;xt eZR{SWU68fiio>3V&^u|f1V$GAyghi+>;C{t#EY*0 literal 0 HcmV?d00001 diff --git a/app/assets/images/favicon/mstile-150x150.png b/app/assets/images/favicon/mstile-150x150.png new file mode 100755 index 0000000000000000000000000000000000000000..16be6027e5ba2be428006865ba3b2f0527fbd74e GIT binary patch literal 25765 zcmdpd^;cVAw=_@+!5vZv9;6gYvEaoCZUqVyON$hWyGwAl0>!-)C{V1p2Z!SBPI32s z^u71Jf5exptgM{;^qjTN?3vlK!_-vd@USVdQBY9uVDi!$C@84-|2_bWrz>uiHw8~$ z=;jj25-2E@F*x@o&!2wN!R0lSQBXXXQBeF4C@8m2m;826P@K6@Q1*;bP=r!YP$=xu z8`MRf{=hI*l#@pJ`|q9IT$J#11=9(pEQ7g$fksR!h%K>YfPw;-g-J_jxy|iAyh{Yn zx-Vlr9-5l9c>eO-CwftTl$7-D4xbcT7&U$kEu2GL>rcT*>S&tbmdQ7F;81Fvl8tGc;Fkw_eluA;yyOs}Tn=L&pcZXYME=L)d5$vRQgkOomEahBhk3b`#*fGb) z$NHC7o~@gIC1n3Udm$}|@_f*;%pS{^Z{!MKj7^gv!l*6^ zR8G`a?AkBX@JB4;StYRRuXw3Zru2RjGoq9GJFi627m;GiF;F7|YH2zEr4_)86_E%k zY%~WtjXO$ zm6enVl$&OB|3d$RtNkm>Cs5J(J-|P)I1~sc414o}VB`vj9|A?4o2COvDnu%WzKyI1 zpc`Hfj-H8#C9{i@qCA#nLmw9WjlBv>CpUh>jGYWcuvGTbfqUiSap955y_?VS(cmP6 zgn018BD;RS3X7bI90_0$5n9f3NrloHi?SE^!ETc4v2HC$tiV|Eb@nMN&?i;!e$SD$ zWWL5`dO=EL#dE#DDgXl+$&~=5JU#3vPAO_clWW*v zeaku1V^0vHlO}DR3MA-~BCza%XHKmLMGw~up*8*?)+1}4L2%ThT6)VGC&%3iUq43QtFrA;sNUBJ$k`Cv~dVk zH7HUJ=NZ?dWajeI^Vw303O7QT*fPue6-@9^o84b4h4Olu@P2 zC(VX4M>m18OOW#Q#~6-l8zxx}a?wkQrCSD;OgcIemQVLy#keWfgS~>(kSM zNSuJM86x5^@)v}mdg&F=F4ZbF6zGDXw!|-9KS9Hj(5OX{MBWm5>J`&Sl~}-v zv)=kp#1%+q&e!rS+T%uS@VDLwQ~ce zlYu*W06|i888Qv%EF|d(ei$ZiaIc~jg~)`^hXV+Sadbhf{uPuk0D~m>BLeN^ys>xs z&}yi}OmpiCJK|Mvc&LIHNwj)ARu7<3oyH_wej62aD&HPoe*CMY#%fU|{_5BsJ|Q6a zP!>I(kHRx|6(#=~DpEngA%UXcCxP~**^6bk;4caERp@hF%zi9{qVE*IKLKBnmIWj$ zPYhm(9nJ;yf-#2~7hf~cfmQN5=zs4{Kc_v41p5)Kh@|fn3FByXGht~XSJ2pRc**w1 zrqNgkSt}@C219i~|BH(VUGvH*Is*@G*cBByq7%T)i5I@abs+yyijJ^X)n-}TenD09 z%NohwgPD?yfM#kOKbb>OV)Ab@4zq zLW@Qciiic6$Td4#2f(23Aj=1?!=5_CKkH&jlGYZJR4|Pf9jHf zGw31fD;;2HdviBag&J+iYd*ect>Tr^a@(IZHBv2VD_yHn`~3RW<>iitT_P4)!mos# zFtLV#ZDF8ytyRB4<1H2*UgJnh25e<3N#{>v!qO@{yfbFizKafu*LlC@R;R zjw%AXt3zzA&m3nRBVJoE~^?Bl>@6Z zjQwa^&avePl#hD@i)I%;n`U%khsliX8JPL_ME1~%BQI4#KI|NeWO?oK9%Z)nr`h_n zZD$I>9P6YUFYviUoWsMAK-xv!4gF>BG_ZrnS+6~kO~&W%ttkFc+6E4nNPq_0B8NLA zSMqlAnXB7Fl%m_M&jd4E>mQsD!z++0)=I;gO}-~+%QverL_rLdlk(5TYZ&|!S>b}7 zr*r~G?Dm^;c%tUqn_wnPxv-US~aa8jVpS$xW3mczA|;oEc{{f?uK93$_hw2{bQMtb;JFzxT>^_W7RID3j*O+p*PwX-s9lEL)|RgTy5&I~@6zp@Je3VSc3HGeX+}i7@t0NK z2zik1;wZC{erB{_4&LH6b0s9XVG7n5uM1e58B=0^zrDi*=>-P0Q-nV_o}~-9hZbeI z#SRa1ieDcRw7>Iu88=1Df)a07)T1cwp5T>zv%o_@q+6v^6i-)SftguzjZXvh^5YV_ z;BGxBF#mSF5+C~4J(zjj_uWtG9zdL_AK|lf6h;$!$3Ti@Hxa+BOn>Q&M}3EA+r!epo5*y*F4QSz9LhK40BWf4h8Db9gb$tE`q!CaH$#mQZU~tveZ@PKp6T9n$ zMJmr&U+ubjSl2WRj>PbYs~6JBHl401MtZNlsQ!{-;YW;5{}cE>Y=m`IqMt?NA73OLQKG@d~h7O58PL>n)@qYeZx_MXLs_dD`rDDi=l+n7*}TVn z=S1#TJ@puj{XHYMB*{Cu9g(#KsI6gBPfpMa{Nb4O2C0Uy9-~&DpmLu_$YXoCZx9r6 zP3)j|vZqgBamiRs8|kqtcJbk-sN~~NR@0qlNy)(9{?wGzVhn`UKEF29j6GJk)refL#isVB(0R$prCJ8DiG`vqBMgyl|XpKOpy zuI}OiiHy{qd%Ig1;?x_Vyt98;F^L~`njmi?$QyT;{P$kKs29{GD_y$|q*u_gFO-Rw zUTCP18rDfX4R1>TSOW5BU^}|+mfpCd>RIKk`Wd>0I?!aYL#A1O@6}iyI?c{f67Gm> z8oybg!j8focE|N-)J^6V(>8Z>PtvIAb!wKkCbol=4SkMuo}l9UnnAwkLO_%_vqzww zDLI2GxQr?CgOmS-ZkF!#hLiLpm1!SjU;11?;3Pog#w+y=Ci>Lt8B3FI71fKmUmTU9 zl3*V5D@hhw{olGE76iX4fy5;YK2IoGh$X*Mt=FXz5OoriqdUkW&#qy9 zm5;dcIos-fXNdd#0t`8TDu_2M6dbpDo8fHeamG-l64FNEb(o4NXuprrotq_uV2VzP z;xP2NllsBw{36TZc-}}zxpJpsSSq`+Bfps)YoW2Gqb2BtlOeoJ%5rtXXVe} zkZgX@A*0quBHLD9e-FMM+xsy`CBE-Xm$%Oieg3c&XapJE&GCRz*iRmGew;ks9i8mw z^$0re0X9E9SC!ZL5ZiIGcx7{P>A8J#QSKESG>c(K{CWa4=XWU7#I5)f-f_-fxJ?;BOMc&96apCsWhlB}a<`%)@noRYM zM)?*|hrO+HNG}wj;l~t?tJtU?s(?EBQz`03DS8ttB)Z@NU-Fur!&ZZ1L(s`0Q!aYY z?xd_PwOqx)`e*ntdrvgi@!p+4N-C?}haUkHf>Vc_rz?GdUaM6x@wz?z9?9V7cPZaB z*w7Q75peKcXoQ&#!<}8*E^SD{jGMGJdhbbPmf=9KZ z>1nz?6>fSQWssLEL;1Te(Au#t9Y}(?RbN*f3CBvR_|oAJI(8l=aFgDDy{E&Rk{!~M9MfrfohJs>GUw9>2~V5 zgFKChL#*$0iBXO^2Sl5*KxGeL!(n?$;rpQX$#?@@*6kb~b@oa==|kTPQNj~3kAqfg z@#>3;{jv*mB-r1s8WHR1jOnUwAfhT!^s+m7O}ntTd0e@^L#J9ay*|~C|C2i^@r$-? z#zhprBMBb!C+9CmpZ%!gufSX)uF)>yNbDfTF9SM9cD8vjRWgZV^6D69r5FCMuTh83 z>l+)o=UgI!QYi^U-9jJk_N3*5i4wj05?IV<>uf=O15c#7L?^|1B9x?O@{a&k9=+Z& zZ7!YN)n`w@qeCm>fWTX}@jABhbX;M`rkuc7G)p4>dE3Z;Wg6;)VNQ%>*?X#gb6un6P9yIlPq$ooh|WrtYUbL0Ac5WGH7fbh zA|uT?>lQEO7V=%oPk`QU){ZVWtiX?O*M#3-U2N&N%@D5E9;6LLeoPoi?N{Y|3>K2o zDElr?8d|Jx=;<+J#EhiLwoB`Am@yhd+b8JkKYpA|c}_!J@98$1kn+D8o4U5V>WO5HWp3NctT&2+m6F%CDnqxGZz$ zp6#$sz5!G*3+q_SFk5iNtAKz=Ddw5OdmdBESDiZKOVc)wt5#bWxgWF+U=N8*xS z_MU-sS#S>_!}F=urnOiIM(o)AL<*uBu$++Skr z+bc`*$uP5K%dbmNa(n&$_0)h#SvOYL8%AjqhQh@cKNt6YHqZCG3ya4>3yBK{k9xVC z@L!n5Ni=q52oK1=-&nhNi_I64Vb;4z^@=q7d9a4PYvahg&h$Gfw=QIMsYx+k{@C8= zr@A+6wfds>0r`A(T@BLHFCK3v3HmVIDd9|)LsPo%mp{M@gPpkfwU=ITPyo?yrnp7p zcddClzV)$L%J#NCCeS`C&3!sE5?o(3$V%txEnyG~n86K2WK*@Pk*h(Qeo3Wwkzxxn zD^jv}=c3;R(l>J>pMOku)N=0nE$N%G|L(a^=`ayals07;0-B#sjP?;rs^_;wI(idI z1UMGUW+pe~3@a~10z|Y!8IS7oLy>fQC&c|YWWy0lfpqthbV|s{STj(wIQ2Kyd~@vY zw-&vG^g`7Z+06_{r%;UdZ2pCW8#|XF@&$d{UP`2E2(Sxr0hm8bK9Z4G(1B(@js0=p z@1m_2X9>a`6Fxt*b_olihYNN~=S8bg=Am1q=~p*C z%jcwbCi1f5N3!IK?{M>r^-Wl3z5%8~*ahx*;UP>C_2~4Hh*MT=HeO~2D2v5G?aToI z45XwKrQSyo8rAJ4h^R>UU0EZRKMIr!XOK*)c+DKyQ2N=4H4)8>3U2+Ql-ns@EZnS4 z)jK!%f--cAIm*Mo9YZ=0zvYmdN0TM_6&<4Mpmx^<1GfXQD~ora$gmqoc+J`V6(RhG zqmr)q$%f7p!YGMhK#I3ilvNkg!2Hf~!MnoLregCp>jgv{W+!k!7 zfXWkQV$ADKru2{O?=D4sZWOZ$)Ost0L+v!yVKbjEeqHHs!OI3N`x*aHIEDwj^aaW9 zh>#JHw$*w|pYzT$gBFh{mf^!~oDtDzhAn^1yO*S-%lB2bl?|0qoQdvRJR`4#-)?VZ zI3wiW_q_+5w1r8fi~MXOF!YGJ62A@&8A)Gr%yOqZ0CnvWbs)b4_L#j(DLxCNy-yj? z;e?m1hK10=ZM?n)V9FR()c)$C{X1J%QU5ybckG5mA{rV;z1ImFSL-=vG>vMyaOZfI z_ZJ)rPKWK`&nnd7U6|YD4z@L&vn;g8g!oq!TxY%Qme_Nvvtn89`@D{t30`N7TtAze z0}11|vwVYj2*ldP`i1=COP3n@vK}uKd$U91aLuM9cKHMx}Kgr4$ETRZ9 zC4S`17*1Bt78(QnFAw*mjGDIyN2Tb0otVzh7+TFOS2tNOzU#2M_I5ZEiY)Ft!)>gC zx_|JeiWsoA{+t^PQzS&ErW$EA+ey7}{s@T^(P&YF-v$E3i z!t8R${=SQdM$|EY!l<>aF*#Y?=S5nV))|fF1)KjDk-xLsVI-YeW#RGo+or@kU040k zBHj6!)tJYP^4Zq%_Q!|2l;ye@xnZ$hxoL`<$C%|d!H}u|R)-X)YTjX8wB;wq>~rq$ zZU`EZiVPcke`56L7nMPnLt1zA<7A~zYC_RHAblg_Ob0U7sSq=Rs<3`JR;qBoSArD? zvEdrn-VP z8WD@;0v$D7aMHeSfz_mM(>}~?3%YKhAH9Ev!43mK8f^nUy&P#Sz)M%$jsesNB)s(} zgJ=hXYkL?8Xx6%N-WmGrezf6Ql7aP1x1PVlr_I=|xe{d$F5BWSZ@Hml&`}Xpgl9QG zQ0Ra8SOwX7Z{y+9rmYIJoC8BtL7RC|C0$`Foo98>lbWIwK~F@CO<85rq$D~MLrz!_ zgG0b%8MO*1W4o(e$g0E&uxv7B6rtBNU8*ICt_%mFVpu>T?MoxXUdKg#85e1 zoqPo~v6I#{{Z8VnSGnq0-ZXGJM~+%ZU1O2i$!!C+M)?{X#|0ELEU-aC<%qS;Gg`>b zIi&LA-wu)1yBHrl7A9i3D&dWh);o+&yI3;6s1$boe^!CO@D#(%l(jqFh%^@+Prg(q}}3e_Gb*|x|h>flfUFp5J^`2nv{SgMO)YGl6p$qg6jA^uMOWc3rQ8t zcguG!M)7AB5jCLT*Lq;(F3T#0@nIEcgn=Q|dY|(X-7-}za0Rqo-vCNsnm>Ki7-Yv5 zck}Yw!>TK}Y6H3yL|Ua+QujG*yZ%|or8U4b;|voIGs-d%{yP4b&o0HM3a7T^b6c`jPe##T=J0Aou+GO3_ z2-fP)qr20>ahYMU8X9HVtVs%`KiD-(qD&%l)L64?WC0SOp2Y7T8Q@RDdeSqd4ijl& zDv=R$Q=ecJE6i8y>cr}5H25-g6zjwZ8CtSRW(B;G`Ny$iQZHi+V&y!)-rT$kcry-s z6{i^-j~V6A=AUXGJ_ixhHulI>Xf`zSC=6DkpM($$_yvY+sm(d;^ny0S<(%1#U0PJi z)Z4;P9UYyS*~E(QN7m<2YXU;#2DS1693XS!tzep9*Tq9V$MUc?G%wUatfyicKJ$l&HOS>n{K^{oHb|W`hnEib50w=u&Mu@A zjHPE)J$3FO8V_#2@^+{P(WzA}_vNPU zQVVZrhj^3?BX60ZSwlnoncI$cQ?F&A;oS^rt~xI_&e&~uuh2@KsnMjRrIBJkZ&>6+ z0!2phW~~dy52;fosYMQ|S{4_C`&on4BV*ChKYVfOUEvB@;)8 z<3AB@Rvt3-Rl7ANFP8S;E&-D2z1F5qlk^f#uRDO85*t-URdvHg|3& z@lrWan*GOT`XB~-v`x?lPGd%$Wb8D2!+B8LGbJ$~bfR6}#&~5qwx0FAV*3 zrcgbO0$eyB8e;KZYMO*aN-<#^j15K+qLqn&$V(Os-Rs)lDU$ZE7631AH`Fb_Ek{Li zDb354r84qCQ)nTKVetG!`Bch1+;u<>X=b8l^m{rG5Z>cfh|y8kC)w;l3FjnU zFCmMBMg>RT4_wl0%0r6yT8_qJ;2kzNBbw5qv6A#XTbCHnp8J;P{YgTKiUaaY#gm`T zJ-uCAT(CrvS!E$P9x_9$bTD@y(*oM;XLd2t) zW_)}c1hw;XX&lA6kxS=u0X2tsx;~AAW-uXzXIEaZgO8SnuHn? znKZ;zz>nO+Qrq<|lVXuQ!Da3;b8%9|Bnd^&SDdM!1S&)yrpUw#5hTr-+$?m9< z-$Z~NlrBs4w?|-bwS`fh;@9@JT<3sG-g@KSO4*Dd4ynfGNW5^?d8+>=4JMkzFqys5 z|2#FcUSYWfMd+^z0+JWO5A+w1EEAeUU`17xB5F$7BEb|3%(S+aUw3(iA^EI0Dhf5= zgGKS(TN{HGiCCPJtSq@#L);+ArJh}scYWjgS7De$4QkyOACV=3KMd*>>b12O9YO8?OXwUA1Qg-kaFl z#})6w@Tm=qy}j`Y$m$n>o%B$v*`?Xl!%3#$OwkBPuvbp+;UQ-wo~6v^bj4;_NB$Vj z#0uvB3sYEse)3o6LQ=r1yG2>ZGZ6$~X=yc(s${L&*d6{vkjk_ZREj#gy1-`MX(iK# zqn~P?x`K<(m#sbQimsU%V8&DV)?L{vefU_XT&$H#dztz!B~Kg}JMet}@Nn$U#kc7{ z6+b0fC*kgvsT#%7IcjeJ?N5mxPcd@;%dv*olM}3fHWnCeX3=i-SM-(<*>Y8}WEK_E zhK!Gi8XFO)QkzvILR00-d1UQ!wD0q$k6w$3se+2$=9@sJ722bcI4}amG_bvv6`wT> z6QQFn8YcUc$EbxDWxBge3|tle)5dFe&NM#Pg4){JZbyMuPsR}P(_4N4{?J@~i?Ub^ z`{QH!VUVb@IOw-Ee`-p4ZmlhCoy{^GCBEBQUyrVlzLZr=dRAWjyd+x?X@FT(pB*$? zugvah_%r#@LI)Vqa%6w~TOFb0BrLiH-ddHT&DDFwBerDx`7_?gIO!=*qySRlB_eU- z)IGd_SkFpZTW5A|iCO0|R)bqm5XPA-^xajM`Zh2&YVy5MGl#a$G?oL+165sWy6_t@ zquj~QRopy%H)j+t2sPLeQv{(>z~Cn@U~gtbuiRF{(fMgGc(n|Ca6f zygvJKW1oK@=4>6ea#f9DOKfKWMxPmsrtKu%3N58bt?F&M(E(+vyEYE z-&Q}yxTdDa^-3TsW9S_b3qCbN7J=K&AVhnLe0E{U>}KhGA@fybLqqRc8I|sKiZw4V zn8>7Y==>Zvgn*->rA4w;fDS~7q-45%KsDiA*=dJg8)~ETEBwp1M3g8t-3+HSJuK;` z3tw@M_#V2a2VR&4$$Ec{isDEl9vo767G0vlbvC>vI(NXS+kJS*JV!!W$nv7vLz;mB zS88sQawzI!e-gx+*Lb-Dt=k}aaSQ(fiLS3d?{w#Fwq4kzqE#7Riwt6JW6(oAz2uI3SNs){7MWFS@twF2CFZma&NTLLz$cS8 z+rAvNsRQC-+#iRC8-Mmr^5P8PfpnW@PF>>Hd%dy7^*_o>G$Xv&krP!Y5Ya1CwrGi% zF|1c4#dF(v1ragZd zJ|Fp9AZlfmyb&DI)rayDZ_^>VY>_5`}I>L4LWw{&2v z#*a7U<1*NNbQ)dEbd|)<-pF@`dWFk>p6Dqo9vETl;qurmem~-S zJN9k*cwFJ%j9Hev^5>h6rAn2$`I8G0@?o^s1}!d0Hnz!&i`1orz*pR_-&_+1<_Sll zWUb8rtHzlW;BS$XeA-`hDjU7?`JLj)r?8n>C^zm!^!2F{d)WL|7G1^L1SQ0D=wa+I zhNtXH_p{=c+kYZe6N{%PNy9%%ru{y0wX`WGs;zs0KezE9;{B(WVqkxN|MyXd+miF` z15J`bkV;XYc6bhn?l!$v+ix-eo6M8^Bgpa&zwHt`TxyXms_)BgRCe@CvRO8PqYfJr z&n(TYX1FeO>P1}gK5*ygrTt&W*%!78=kn@fv?=4!9FTZzoC3tB5sx}wMP66|QoqFB z)f4My0MvB3MmkbMzD=5^rWn4teO`*f%Nq^8p6X$0takZP)$EZJ)&~LNTTbkKGk8;@ z2e))j(k@X2DF)}DCYj&&3YuNf7V1&SVahZa&^Y-m{xOQv&Bwx;r`j)F{OG;QFZ^d9 z)a}VEy#x0|Q^T#S(uRicqG?3?HwTj4cZceT41MbX;qVaF1C3Kp2LCO z_Ks^gVvo<8%*>j)dM6b$3b_4kt^;6tAA=~J2iEX0n|iZqNb76l+# z^t(eNOGG}8K{tin;cAPc{{ll2mJZu-otG!0JNsxxz6JHVmuNa+1a87JJ{Ysp8w$mv zgq4eMV~x3QC_LYaIaqHyDf;F8K%BgE%b&pGNUGp||D|VPL1b=R>kmm{Vf69Fc8f|4 zzv9}dC(kF*{B0sk)If0Va@efRMauUtf|o1m$WyVvVa^fX-9Pv3t#@^$9Lss*)TW=) zZa)MT*9SEtnx3 zbQAW_Qi++AyJs(g_}owc@@v&_3b`H9%5i!6RFPX&b)e)Aza&UK9bGu_Q*NUB7Od)f zV`5+uUO1Z;#y}l_0P}$2mPv=S%f; zw%@9xaS!?SnRiqISWlxpYeYE+$FXYSJ6vnvZ9LQr3M9nGh@7NKL{d&Ln_0Mq&`tK7 z>5JdEp(U#{xn8c5mO0|X$J1nfR{W(~G>j=I@MP!UB<_aztf;e+o;;w1q5c`$W-pZz z3c=h+YIB8fVpk%6@8ap|Et`ET>KtW~3nUnxbx6mBijLFz1k(mp zUHdtRBL4_}`uNNK0OP<=x&_QSxhL-%kaIEH;1T$|$P8o1zfSvpG7b%xq4EPiBE5$NOO@wOr)#Gxa-{>woET=l$eNYjA3xI7^o=(x=66>;2;% zLtC8V;|bT9J=x2fy>ZW=R+YoXL0b=s)7NWUf5~gPJKI>(wODaGn8nW^L5{z^jbt|> zwP!kb$@H#MSaWobEsu0NSed^~2;NPI$Zp5VW?SDI%~;23!0i+ z=x|;2ZTzGPNo%~^ONrs}iGh#byV1J6{Im!Km0MzqrfKqRK2~hYe5$|#%O?V6e2>uw zrkAtn@buG!*}1r4{u@BQ4WwyoY{czERp-rDr_IxSir;N1YuThHY-i?9q?pt7ga*Y_ zVeB%XW3V)}K1gIp2};46q&o$=hB$e6aG>(=gPsz*{pH6L^RBQ4*Ik!jT#Qb2uH~YC34z|hb9NoB_w8L$mqSCb z1P&Hlav#7Z%MgCo#8|XSO;4YEtkV|0Uv^L}%8qJ$j`jq!5hSiB748uJ=gG~}J6ij7 zBzDq?5X%UtaQcAG;cF;b<*}V4{C)b|vv8+?CPz-ZMC?m1$*WU#Ps9A-cZeCBbfJ(i z&p{RCO5YZxF~`y$WtwG?km`7D8e-CZusXqeR&}2D)rE2oHCbr2@N&372h`@20`Zl;H&sJMlf)?A`CuOh0X|&na z{=7C1WTVFPnsOai4?391@{N#~UK2umRW@xe{}M7qtRIm`2W#uz@bWiO&^0n--v4qU z8e>xz)4zG_7~SS*@v_&_zo;EsV#iCnR>&z>lmQbNJ|Qv-R5Df1jH$sIri?_)V1a2a zcD)T+EU@z1e<=z6$I<|Y2fMZ8YEv;rGtM=~rUNuaMijzYEa8z7RKuFZ*>V!`mfV^?~-dn|BS1!jK>uwvz>ACr2>clx= zC;29*-aoLrUYhYb01+0qb2-*xe0b4aKqI!cpI(|`6n5FK%*ZA9DjXQ8YoFO0M)f+%q98DFb3bB^i z&J{lq|NpK#U^#ppDs!fR`Xri)8Dqf2i6)#gGgRce6ZWlbdBjGI9dh3Qk=4SYO%7oP z2jtCm@}8cU?}(*^r`=Z6k{Iu$=#HM8HMKg(q^v-T4YEVSF~oPKZhHS43JDrDqMqfW>yw2Sr4B2pA#U!Z#T@Ixu`H!@@GqJ z$HgCtZ@ezL%Ta`eabCmgOE$eEF&Q8ES?$g3vBbkIYrZPQPg%@`!cP3jaY(qkV~D3! z#KwTwrYQ{vSx*d&3=CE>sZhlxNeGj&HchW8Ek76|VEV4Hw&L_`G0QyHkoLcAg!fZI zx}ak;?Za`%LQ7Te)FuC)KYz|U>6=|bz>&uy%Jmu>$jOKeN7N^8CDZ59o^3Mapv)@q zJ~qlT4J7E6Vp`vi+!8|aVRgn%CXrzTqP`j!;HAV%=iz1UNlCZl7Rz(rEfDyY=(ulF zrglDm%@#u#4vhxrb97lhR|O!ebF?|Rm1HoY#M;1UyEl#z(fQe- z-p{an)H~qN z(?LuTrTxokR|uJJsbXYh2kDeZamo1hWVbh#(X?bSvbtFxRJ(6Z zUb$@*7xmrwMM2$fS$kAyHfpAg%zc){I&wZ*d8V<33p!l`4qTGkjpcp0H;{`=oIXw& zWf|m>Y=}X|{5CAb4RD}@e5I~2H^AP6GV*f}(X`Fd+VA#X6RCOVq0LicRsRtc_1_kruOVN6g_gy= z&q&B>v{FiU>~P-Tok+^c6bn^~_tO9mA0ze4?bfbMp1i;z8`lt*py{g8VzQ<=F z?i-aXa?M^@pZ+l`$$S}YpA|+j3)MIZ!H$X;zG#D$yc&iu#(1!-Wl(&qwA326X{mO> zYwg0xPp5593!EjEbwaG0Ck0%hT~_6--L5TH&-#LV)-EMQ8 z?_iwAb_&FJcYy68sY;w|h|-Ng5f&C$PuG*1z7` zU$mcWO^}$EUuOuu!~VG?dWF{&e|hU8{&e~B#?qopBni5Ii1Qa{n8f~28<}aj|F9_@ z>t;?3g98yi#Gu(JsGyr~>x!E4zd*%mq-i^W5~5|9Y#HB0N2bSC5evp*25>VY=TZ!^ zUy?_-W%e|CMm$wdkWJmd37lo8T8f#OnKdb#H?0vQ@{5)WaNVbB$eheosBCF3G$9!2 zD<$=h z>`j&o4k}f)w7__GPUfg=)vb7;9@i)oTt-iDOvOs==Lm!oc{)>0>Be_uUv1T~CgJDQ zPQ`=2a7VI|V(a2`nn;p<9N&}sx26N`y-`w8&M)N4lq;G2K#1SF8Btu05$^+}7gZ)E z2*acJ3l;9o(M{HE%?iqsK>*B>Sr;3}J+G zjN?(G{~E)~FX0nCROcSvYrSghZ(ra_Mph1Tg3PQ~#+AI3(T!RA7sw}yk z%o9}VV1#aiN+UcVX53D|2nBE2=O>Fg)d>2gc#&G5g|4I1gX;}w;J6CA=b;}orz`KSSYQDx|F5>U zii+z0qy8nNrArvPL1|&=mXwwlkdzYXmXt=i1SAHeL_k0qDPb5=Qo3{KP8pcz@cpm# zTkC)ETt0I%S7*(fvrg>Kd%yNRl0SJH|J$Fjpaix0$RjFOLil&D1d!A)azPqSL$-e& zS#jj8lB8%!75VCGuJ~kVuhH`oT`ryP$ z82@3)g;{AEC373w(M3Gw?Bl8__~Lc%l~kmqiXee1sVugCZUZ_K`4q$ooBb!4rl)Yn(Wa1`?ciV?cNn*RN*ZA0h&K1fJN2+;d= zQ=GUF0eNZ#D&7V~n{z}iUaQ!)BSsI|X;wzH3H?JR%|t6AH)N016l-1Z@2 z!8|yxqPz10|2Rvm4wWImo~I}%;W>tfyxsK14 zn}-I**;0N}l76GYLvG1jzy7}NrJW+W9FXeXtX7azIQdRMKtQfQ8*|Ud%ycyobt^MduecadPhzq_FYPjo((%&LO#k8w4jcLX(@V~xbPQTz%+{Axrb zy4n?+s&NVw`1-Nd8XB)WF2|I2M1TkIjuUSOiUzBH{-{+Uv-2LqG2OfE^zn7(}ugFTE2Az9!HLUL71_kcuIZUet^u79-^-8__2j*DZVHvC;>~ z82_B~U(?NA7Yd(U-pD1h@CE+dn)&Zc&C1O!Fw&SPf*@o>(54_PO1sQI>XfB9o^D}; zS85;AeXNR(V!HeNs8Sdna=DNfy>Z+YQdZ{h#e+^f7p>V+MRb=0zh6j88h{JXSGCuz zT(T_qg`6bn=Az9h6fli)9Atg z$N8L*(T|Y&YTvhe$_<3;I8SB|#PWRaGsLd;5iv!*Q_gV)#7dOK1e8&3gj|-<3MxcZ z(%mO94w^asImPp$O~*^~6-&*Z{t*0AR(r@G;Ao3qbP)STiZPCpx;j=9q8A_6D+>}3 zvqvE$-2H%q_Z+_K&=E-=o|evE__n1m!b` z2Na)-QKwqGSNuIVAdXD3 zAXDm+e*&9fWzL^Zhcn@SVhWI4&=CMR&#cSeY4-=~GKa%flfVJb$0h~k#eiT}K!FA^ z=5@Q4zQ#ljoW|C!+;dK90I*CF=?fNViD@z+V8vzug=u>{-L*Ij{9%V23M0Gd+}}nY zU+}igN-^jnTn&=Ii8EVC@}xN64{PMA2>LzR?1lEg#DJyVD-6kz^?~&Azi>Ep`G)cQ z%vVSCAv(#SQLZ#-w*phHf+as-Gok4UF(5ECaWL_?9uJGhkr6P5k$xHp-gL~75br_V zpw5Fq7oid?Gd{!EzF}fXNG%24QWm!s=?~PjH)I`p z53to;R%1CYwZsf;s_2juFakCKcx!6tHWf|wYI42={0^C1_Q_ZC5^#y)Ha(V->Tm55Xg;79Jwg>q-{;j$>8gBWedV!0 zWKe>e*cQ8B?7HGWRczcIOpCnBIlM1bJiv439jvZ&lfNy(ZsU8Ucn%H-!6fRiUdk~~ZhLgrChpS+l zN+f^EQ0JJW$-v9%1jL~jg5*g{_?wSZDjK9~7zX7XgX(!F9?TCg(!$a~sre19D3|oj zBs77WSiXcSE0Lp&YrJ#KjAl|iw6nVjbNyL_{L@N&BaWH{hQ;fCx`-a}=$wCw{K6DT zbsMx5B>un9V(UqFFefcS%@||4dELm@idY4()fZ@W-v*h8V@W2Mq?DP7f6@UG5rL;aQ!TA5Yo|$YcsHWuHAbYhB zWR~oS>W8blH?q5i$@ET#N7O6rkvQRL4%6kH7LU;wixZQiosYUYI@H~!m{sZeE9+qk z%deZXFyB2N7Ox<4fIp5BqTI1kWG>qhhQ}2z)>}p|>@`u~NG@YIxN%nWjqS2h?~t+Z z7yUL&HHy>;RVu2XU=*OVv`XQGr;=)^ny%TuxZQx$ZXnThsQ)+c-MEv-4Uu93>Msy3 z2X#$ex4gqow`}dQpt*D9jx+Ny3k*NG$4_FM`M}Jk@4~H<9eT@;in%l~MV*(e-M?zq z>%MFe{=-wzJxlHQ46i=pPjkn5wg1l8tupyXw)k!w7FSr=j97#=VVSTzPSH33@mN{+ zQQ?DGfn^spkKa*utcHdbPzN)hKqRGEO6z`nYzcr5mTCLAoH#qxBJeEXS0?3#$&;k% zx=%;WTw|_${KtfXcpu~tEYCGsibSQC2M?<|(w{Y%(CuqBs%QY{O> zAyQ!Eu}X6Xgi%BcZvmY0BK|o$oR%E_vBC88)0a%j3G^k)4DNfwc!obr5gyRMFA}jl z=l)U&AX5ulchDwg7X~V5`MWjWUW#{#xT!ei9BxJG4lf59*BOqvWjISiBqMQE!r_u*SN@{dd+}!#bMUSU!bU=Dun0o)6es^)PMwKWX6fJfCw>qyYt+`8uFi10 z*Kw0Qr12_b6v*S)gF7cuICqm-Lm5j2YS`R>oWg&2o)I}t1O<2fK`j=7)yF_omaD02F>u=i0`;EAHDk$JCUq(SB>!s9rizV9HAxiR+feFZ7~+XrG*lcd-)^ zPl?7(+Qce{8B3K zOXloZR3fM}A5+1p|1rHTB|ke8O*q4^P@A}f2RD~Y@Hr<{S!}Z_u8~q;>+p2@Kfhs6 z=IZb`P1_8A9O>>Rv-QWX8@VOgyh0}B%r=nf7uy`?{v;e!l;1v|az2UBP3YQTxt5FR z>3Kpg=9Lt9%WedL6wM!;-XNeXh~n3UYC+76EccgF6Sw9Rq&dVPUB*$T0e|xvHOZBc zSEzsH9#@BS>>MRonRC4v!8e9n8pFqThRZg$r)<0FG(zjv0XH`sGn(!>oEp_XeY5AM zt4`OUt#Rb8$ZZm2s}_?s11)uL4eO`Q6s-3`58!Y|NSYcj_A{~Zccdz4tCKXrlWzTh zzw=D!f*YUgNw}~PRf&KuNyvrkFjE8ufu@ly4Ul95nm6(^9X$9&U-v??y<5Lv1|O-M z)?%)^u)Nq*_2{p8!C9%Y23)0kChwh{lZo(#Mh@2-QL{3ems6C(gnlapdaeHVSa+kR z|87OI#KD8+9l^9tEcYiaDC>6A9~bwVyT<10F{S&p5mb%~aw<3#%j`;UL_Rvv3A6q% z{zKM7ebPxRY)N7-ok#TMQvIk9N!o20o@9}NQ#qb!mpJ5Z(Jq%CSj4$7Qfi?(j{l*` z^o<%3f;4C544(ph2eS(zOt?p&rW*e0GJ*9IiblQtR-UDZvF0;ap!FV}O@Kv0woZoZ zUjFA~%g%9q7%TJEf)zpU|0N}wE0IdfW1BN$DKJAh;ecgdI7Y(hK70B4^?g)4o3nXG z*TKAxy-4=oy$dJ=S1o3WhKUg;RHtg{!Mh6jNbFv9td3U~vhyJ#Y9xj95mZbqA#eBkK`a*||MNVJU(XJcw(>w%cH-7&%orVVoMcZrP;Yb$@RR zCMS_C6?}({2@dgGkySh|ZUU)#WGYnyQ4Bxyo>AQlWaPbdZ|%}D3ydO? zZW`XJGGE;@_X|z0cj7f`?RIoAEtx(N0^!m7Z3t+}xPEzCrTcnuBs02Wf1GsFRY#?0;$`zw}~T&6qcI9+hjO$# zlN-n#2@_yPBu>;OOx%`;)pp1&>D473Anx#ej3M*C83=Dq?dYvNI5xIU#k+uX!1Q&O z9^&{lB&wjkmBDS}DEKu^s2YWB!pTlHW+uG`$F#Fx}Dq|&;#IF-rrE8)yK zUsTl6wDT$C@zNd@!Qr&u_T@EG1}-_MOO^pTy;GBYn-KGJ)RxcoHADAhOn9z)RT;oqGG z@kkxJ{kbt?%2dH3f8CXQgZtf&$dYc!tg^>esAvVGu5Pjb+0m{_Zwj!clZeie)VIkG zY`+aNZ1TAxyd|Q8QxE=0_qzXAe}%;Oy{9cMr4x75$w{pNbQL=B72m%v> z5@pO2^ahsTDV+|iOyli0_z(TjuxN2o6lOK&l68(dFo?=i^6u{~LzT6L-S5Y} zfF^}Ns!gtzN)f$DbS;^HG#}|!81_-y2vRZE+<*01Sl=o1eoeXc=JFSao=oy$TLGGh zhq_V>A(NH|r#Q#T|BU6^1*d8cYUz4Meyfd5l=seNohPIsdg=`!Fd?L}Cq)!UCPIo| zn!Ma73{TnCn+$sAv|T!Bn?exi3pn7puBe*3&)%Jy+IWIUM2)xo$|6 zPThE!O#*UVkuWMn<91pkRJ(l_B87fpF-Rt9{E$^giS^A~+h)(X)*2N@0XOmOGAW$d zgP#3;5o2TH;(EWt{sb5qlX=iqN3r(#(-iTX;ycMhm;DLBmkJN_W+z?L&TVOZnM|)| z;lM_1A`68@YU1Nasc8>3x?)+^t!-(*+{Fn~5R0lNfv`%tZSi+~OmQ$QN386xJ{_jd z!q}7k@ek=&1g1-B`m66-k}qZuO>Ly$gb;_m@eMERO*kFTb{U)dw9S)f4`zj)sjd+_ zk!k!I@hyXsCFXoZ?i=4Tphi&1;&g=ciz5q0Vi)_`=ofmWfXE9%>-%p1GWr@Oz;>~! z8e5j;YR@KH)MIhQqegsDTy56@BU!#)!AE{5c?l;#kh_2#E6akLtK43WnuoPusgxj?FJwoGra+pgbBkHL>*f zO7?clwgfR3**JN{$lP}aYx%E>lr;At82m#N@P)vu(N}R1O)eRkxV?S--k?I5pTC}- zN+Q?PYPbae7|l)b=2dHG#S0m59dNa(IAOdI4_3t4_Wo5jPj~reBupQuP0$6E>keV7 zD1X`Y3K<0#KZ=nr$yhSupGsM}-@_XY{`A>@DzeMk(o&`aImvehB$-|PZPHQGsN1WX zal?+TlU~h~v#>-S*$7XtBXzg}uUX50dQ~fId@=jH<;{J+%ncoV;Po?bR9a}485yG> zg?82pctQ>!#A41mxhiHHA&s~O_DlEMG@?h9g7chbcNyl0J@Y%#u-_qa9V5sgVSuXw z*jXS&FtfB|!@s@i&IZIC{H~Buk|zs7lCIU!c641O#rp=F&!EJST8h*%T%cg8@reY? zRlV}WGos*I+69x=?zJ^$6B8380(Bh)^u=|9WW3{mq*f@S1sF8`Uc~s#n@u3m_}0TC zwWdZuGf#SuEKx?TI4wbjIK&4fRCevBpZgYh*B`!471K7O0O}n&$X<^fkr_Bb{f2sM zPBFJRL*wIL9R7I!vvy)*CWg$k-93JGRt&(j45^mizORU+c>GDN5RK_M^J~H)J%7Um zj(0%&;ZyEpdeI4S~bgz}M=u*)rW>vZlg zvnXs$I>fEahj?sFhEfBrn)(_!5F3zjo`t;Wj&u`8`_rRhNy5B1tAdbaEh4S);dg^_ z`k}%)9RN` zR&Z!&MN9|FoXDZ33qpM3>?s~iu)MAni>_{AI zP1+<{XeR<5KM%@=T6{Nv)8Gr{x-hHu604v^dVa_zr|CEIT!4%V{aJo7a1zsDJtDMz z-wW6=L03M(RMrGX9VqD@t7IO-AFihxs$KjWuoyCc>J3Tsp$2+u$&$@Y9|Xo~yF+tY zXv_)C9W^=^kbVfP?f<(k3GUs1QTGIN@&(>!CGODxp})@G7|N7Mqzh(pAIhmbd>m41 ztP&!2upr{hJjRgO{0ZFI4t|A7{TbT6%;Pih>VQ+L4BfR`X?dV~ZtH1|M~;-gh?f-# z=C)xMqsUI*k@=uxBlvO?h+lWw>rW0u-7 za;#zPBxVZyu>?UR-k(Q-B!s(V?hg2v!)>VXgN{>0n}gPQQGm)DVj%*l#tvSV^q>|{ zMOymbmb5UIukhPs$hNE%^0jba9D5pqC)YhJz*EXy#_$U>?9L)zaW`bZDBh!#XeITZ z>jJ`_;H`Me`Ij3Uw!(f=VG_TRK0I;$7*W6d_=Q`XQ#wN3}#2&|^ zL6F7F+&^!y+IWLB1q`bAjTu-tUc`hMh`x1li~@oljOJEBU*T_O6-aAa7Huo(bjx4s zuv>cB(53STN{FhmmG)ce7!iMg4kz^~zWobK5p*xPqb^6xtsNXX+v@4w5+Bn65{(+eZxwdJ`pO`KMf7e$u7?hxV?3$ zt!Y-@=YVZEY;XtM%@#^tcA{6c`Fvyu@=ff|G9EglS+tEU5QP`8+}>33$qbls(KY3M z&Rmqyuvz5(PiUOh@;ySB(yVy;vwX`f%pvMi9ql5{ineWx%E0$U!gLZCWQKNaQ>n}Y zGBTFhU}2?{)$$f8(Tr65FAVY_{p(Lv6ce<8ieJ#WwI6o`I)mw(_2R1^LP7$6rrXbj z+bp}xJFZ1!{0^jmx;X1LP#53mdmpfyeZq*$KgNjG&4I~1VV_?)(t#m%^fH~^<%9D_ z3;DBnJLew)5SyaLbBAX`v#FBEQM4aRvm44X&7D5xe$a?OJ)`V|_Wg$WfWwno{aCbR zzfERQm!;LIN{6jskUUQP^cc%!Xw$4lx(-nF#K%mSbG-dBWuE6(S{jgPoj!D~uAPTZ zq(CYkO2{<5G;5k?H;~xV0x?Vg9}!pZ^l3#Jj$I}-&k3!0Z~`MSOhL~6aV2=mkU{LX z2L~d$a^vEty;nQ^Xgz)%yzBx0tt=ug(U|gCZlV#;8A3O1qSs zEVOvgQe9-`v z_uKWoq9cOefRViJ*RO?^HVhoR9?7W0{ZgahV9A)J>Co0vZFoW2=2(;#N&28^TSMRO zIJ=?CG6vsj40hsKU(C7@N3zGoHOA(74>NkNI|iRU1>Cw zFlOMohlwn~oDmptTh>f56|h`gXskT>YrHH1s_U_AJUK^WC=d@YKyy7QJjW}$u-EVMCEp;|>gnT_{72>V` z6llaohB6*%#q=g;Vv;p{yHRStN2-2rk7{6y==p@nMxpa8D>ui&VV#h#!}}xA@N$0b zM3HD5iF@>uUmCB3scCs?TigG1+!h{LwS`v&-@7FoLf5t~*nlohNh+BpI8w3G4jP!2 z$ot2AZ(K0A>4YV2xVEK6ssF+kxq?=tN_{y83qyC;ngJ#BOulHpJN5rd%eKW1cW5B{ zVAb+W7cx&cD6YSCv$53z7=?fP{RVm}k{HhPXnQ#}%Q zj2||G6D!xEoMk6X z+C;!bL}^xT_WJNR7ThRLGLUfnS?(}zyjsk-Q8Liq2RxR8!#EGuC8>ER#KapDL0?Q_ z=NUmBdP=svJjlZ;8Gxc$wD7Xd#_2h^Qx@}on-DSU_AC-8di|7D#@*hsymfSvRmxB( zsbdF3II79?vY(x8@6ePcGUOX@pPq-6W^qn82l+?*F-tvxmj_}&F}LjlkBrMr;H6ph_4UiK>odlVx%E?b!M#CimwIva z!^k*jBeZGR=vFl7G}T-b9D@)R1hu9pdcQ^zF) zr7LzBT%&Ii-Ek*>FOlXGEE)dKPAbnMxU~1rbq`QNh|-d{Oh9KO#z6CAx{`5bG`V(g zs?!Y}^yla!7gC~mGw5y7!ti0>)L-20jGwHs}&;v literal 0 HcmV?d00001 diff --git a/app/assets/images/favicon/safari-pinned-tab.svg b/app/assets/images/favicon/safari-pinned-tab.svg new file mode 100755 index 00000000..87c306d4 --- /dev/null +++ b/app/assets/images/favicon/safari-pinned-tab.svg @@ -0,0 +1,14 @@ + + + + +Created by potrace 1.11, written by Peter Selinger 2001-2013 + + + + + diff --git a/app/assets/images/favicon/site.webmanifest.erb b/app/assets/images/favicon/site.webmanifest.erb new file mode 100755 index 00000000..b641fbc5 --- /dev/null +++ b/app/assets/images/favicon/site.webmanifest.erb @@ -0,0 +1,19 @@ +{ + "name": "Actionmap", + "short_name": "Actionmap", + "icons": [ + { + "src": "<%= asset_path 'favicon/android-chrome-192x192.png' %>", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "<%= asset_path 'favicon/android-chrome-256x256.png' %>", + "sizes": "256x256", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/app/assets/images/saasbook.jpeg b/app/assets/images/saasbook.jpeg new file mode 100755 index 0000000000000000000000000000000000000000..b182a87dc18fe1892878e0601da710b8387f5542 GIT binary patch literal 13664 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 U??ThCIzl{h*i)tE{Ji|X09akvEdT%j literal 0 HcmV?d00001 diff --git a/app/assets/stylesheets/scaffold.css b/app/assets/stylesheets/scaffold.css new file mode 100755 index 00000000..cd4f3de3 --- /dev/null +++ b/app/assets/stylesheets/scaffold.css @@ -0,0 +1,80 @@ +body { + background-color: #fff; + color: #333; + margin: 33px; +} + +body, p, ol, ul, td { + font-family: verdana, arial, helvetica, sans-serif; + font-size: 13px; + line-height: 18px; +} + +pre { + background-color: #eee; + padding: 10px; + font-size: 11px; +} + +a { + color: #000; +} + +a:visited { + color: #666; +} + +a:hover { + color: #fff; + background-color: #000; +} + +th { + padding-bottom: 5px; +} + +td { + padding: 0 5px 7px; +} + +div.field, +div.actions { + margin-bottom: 10px; +} + +#notice { + color: green; +} + +.field_with_errors { + padding: 2px; + background-color: red; + display: table; +} + +#error_explanation { + width: 450px; + border: 2px solid red; + padding: 7px 7px 0; + margin-bottom: 20px; + background-color: #f0f0f0; +} + +#error_explanation h2 { + text-align: left; + font-weight: bold; + padding: 5px 5px 5px 15px; + font-size: 12px; + margin: -7px -7px 0; + background-color: #c00; + color: #fff; +} + +#error_explanation ul li { + font-size: 12px; + list-style: square; +} + +label { + display: block; +} diff --git a/app/assets/topojson/national/states/us-states.topo.json b/app/assets/topojson/national/states/us-states.topo.json new file mode 100755 index 00000000..7cab3162 --- /dev/null +++ b/app/assets/topojson/national/states/us-states.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[133508,104707],[55,8],[22,15],[90,-44],[-13,-12],[-73,35],[-56,-12],[-25,10]],[[132989,104681],[65,-3],[-16,-37],[-33,1],[-16,39]],[[129968,111162],[6,36],[54,44],[2,60],[-38,41],[-32,15],[-44,51],[0,36],[26,38],[35,-1],[15,-24],[68,2],[24,32],[5,83],[-11,93],[13,2],[48,69],[10,55],[-34,30],[-28,-32],[-21,-83],[-16,18],[-22,80],[-23,45],[-1,116],[32,35],[28,54],[39,44],[25,53],[1,39],[-15,23],[-28,-8],[-16,-47],[3,-33],[-27,-57],[-40,-29],[-38,-2],[-37,23],[-26,33],[14,34],[34,-3],[66,31],[21,55],[-11,45],[-57,57],[-20,-26],[12,-79],[-26,-32],[-30,-12],[-42,12],[6,43],[34,27],[37,70],[-6,28],[-42,44],[-24,54],[5,28],[78,43],[35,-1],[30,40],[-11,61],[-47,52],[-71,32],[-13,23],[11,50],[22,19],[66,14],[45,-76],[69,-40],[73,37],[6,20],[-24,57],[-32,24],[-32,-21],[-41,-5],[-40,50],[16,131],[39,-28],[79,19],[40,-36],[40,13],[17,36],[-17,35],[-69,37],[-31,59],[-5,61],[89,138],[-14,27],[-86,40],[-14,49],[25,22],[33,1],[44,42],[28,-86],[34,-13],[23,45],[-28,47],[-11,44],[55,-2],[75,14],[16,14],[4,67],[23,56],[-34,36],[-41,-9],[-37,36],[-19,49],[7,19],[66,63],[23,-11],[44,-48],[26,-8],[36,17],[22,40],[-13,51],[-58,9],[-48,-12],[-41,35],[-25,42],[-5,51],[19,23],[24,-5],[10,-34],[31,-33],[47,-21],[12,46],[10,96],[44,35],[56,-4],[36,61],[-12,57],[-24,27],[-3,41],[16,16],[65,-8],[50,17],[-22,-113],[22,-22],[31,33],[-14,67],[12,46],[66,35],[49,47],[21,44],[-11,52],[-14,17],[-9,60],[13,66],[52,58],[0,60],[-36,56],[-25,66],[6,63],[-8,66],[31,53],[17,11],[25,-37],[-20,-53],[7,-65],[45,-2],[76,101],[-2,50],[-29,14],[-52,-12],[-36,13],[-29,45],[9,46],[36,21],[-18,81],[16,33],[33,7],[19,-74],[-31,-38],[4,-51],[27,-18],[47,6],[28,49],[-35,106],[26,71],[-40,88],[0,37],[26,33],[44,-20],[10,-26],[2,-70],[20,-22],[110,66],[43,-38],[11,37],[-14,28],[94,83],[8,71],[-8,32],[-69,58],[-19,46]],[[131234,115818],[522,-3],[238,-1],[78,2],[341,-1],[113,-2],[321,2],[90,-2],[342,3],[355,1],[328,1],[388,-1]],[[134350,115817],[35,-77],[32,-94],[27,-34],[57,-36],[-30,-393],[-24,-237],[-32,-373],[-14,-188],[-51,-624],[-16,-203],[-61,-724],[-37,-484],[-52,-681],[-27,-346],[-63,-844],[-45,-615],[-36,-465],[-16,-180],[-51,-653],[13,-458],[8,-178],[12,-379],[18,-497],[30,-889],[22,-756],[13,-406]],[[134062,105003],[-9,-59],[-53,32],[-17,-11],[-8,-55],[-39,-27],[-35,4],[-34,53],[-78,4],[-19,40],[-27,-15],[-11,41],[-29,-30],[-38,6],[-54,-43],[-42,-3],[-27,12],[-93,110],[-46,35],[-25,48],[-18,-14],[3,-77],[-80,6],[-113,-15],[-128,-47],[-150,-85],[-125,-60],[-29,-5],[-1,58],[34,29],[-42,62],[-26,20],[-57,-16],[-17,-36],[48,-36],[15,-43],[-11,-39],[-53,-42],[-27,-40],[-52,-31],[-2,-58],[-42,-64],[-71,-49],[-41,-1]],[[132393,104562],[-13,33],[-54,-34],[-16,13],[-30,70],[-23,27],[1,46],[-23,23],[1,53],[-24,27],[11,37],[20,17],[-5,58],[-41,41],[-39,115],[8,19],[-7,88],[-48,61],[-13,33],[-26,13],[-38,41],[-17,69],[-22,9],[7,52],[-25,-7],[-11,72],[-13,15],[4,65],[-7,39],[-33,49],[17,69],[-15,18],[26,41],[4,40],[-10,52],[27,69],[44,78],[-1,62],[24,30],[-7,71],[24,10],[18,41],[-17,58],[30,54],[12,62],[-7,27],[-30,-7],[-608,-2],[-319,-2],[-523,-2],[-237,1],[-256,-2],[-263,2],[-262,-2],[-298,1],[0,14],[52,28],[38,51],[7,35],[-12,38],[-69,80],[-17,29],[6,47],[37,62],[10,71],[-17,34],[-63,61],[-14,50],[24,28],[93,-15],[31,4],[52,28],[14,39],[-2,58],[-57,72],[-2,68],[-28,3],[-14,50],[20,57],[25,21],[23,-99],[25,-47],[54,-12],[10,72],[-41,58],[-20,56],[-7,91],[4,111],[53,-1],[44,21],[62,70],[6,48],[-28,17],[-51,-23],[-41,-3],[-26,22],[-20,38],[0,36],[28,43],[50,-59],[63,-20],[29,20],[8,56],[-6,103],[4,54],[48,86],[39,4],[93,-10],[18,50],[-34,12],[-59,-25],[-58,0],[9,89],[20,101],[11,20],[64,21],[8,-74],[19,-40],[22,-5],[24,56],[-31,42],[-2,26],[49,34],[50,75],[26,17],[-15,45],[8,59],[35,51],[69,10],[41,31],[21,39],[-29,48],[-74,21],[-24,50],[19,29],[30,-8],[44,-66],[29,4],[-1,68],[61,44],[11,52],[28,25],[14,72],[-33,2],[-25,28],[-12,-41],[-5,-77],[-42,23],[-44,-21],[-76,18],[-17,52],[15,98],[45,38],[25,-15],[49,46],[33,-18],[22,52],[18,1],[47,-43],[0,-64],[28,35],[5,77],[16,21],[-20,41],[10,62],[18,1],[24,-32],[47,47],[50,126],[-23,-7],[-22,-35],[-110,29],[-26,38],[16,84],[29,19],[11,51],[-40,39],[-53,-40],[-34,11],[-63,48],[-31,57],[-1,40],[23,59],[11,55],[28,-36],[36,-78],[19,-23],[50,-19],[20,13],[-7,49],[-34,29],[-49,23],[-36,37],[-7,22],[65,54],[47,71],[2,30],[-33,56],[-19,-24],[-17,-68],[-44,-15],[-57,-37],[-41,45],[-10,85],[22,23],[29,55],[80,68],[5,57],[-92,36],[-40,-2],[-22,22],[12,68],[-11,13],[4,62],[25,71],[25,28],[33,8],[52,71],[9,29],[-1,59],[-23,39],[-9,78],[-30,29],[-42,-21],[-4,-63],[10,-53],[-21,-58],[-22,-13],[-54,16],[-24,36],[0,33],[17,59],[42,58],[10,42]],[[152776,118015],[52,3],[47,-41],[47,-85],[16,-63],[4,-95],[-79,19],[11,35],[-1,56],[-18,46],[-36,45],[-7,33],[-32,23],[-4,24]],[[152732,116271],[79,49],[24,48],[27,-28],[40,22],[33,43],[58,38],[62,23],[20,-8],[13,73],[-3,83],[5,48],[28,75],[17,246],[-7,40],[18,54],[10,122],[-3,82],[-36,120],[-5,58],[-12,21],[-16,87],[20,0],[27,-106],[16,-87],[20,-161],[0,-82],[-26,-173],[-9,-194],[-30,-176],[-19,-158],[-14,-86],[-20,22],[-53,12],[-106,-30],[-149,-82],[-9,5]],[[152349,115993],[44,64],[-4,43],[45,-3],[124,87],[7,-12],[-75,-53],[-66,-58],[-55,-63],[-20,-5]],[[151884,115472],[49,57],[8,31],[23,1],[73,93],[46,78],[88,120],[33,29],[37,52],[19,58],[32,4],[25,-34],[-54,-42],[-33,-36],[-132,-158],[-84,-113],[-85,-98],[-45,-42]],[[151554,114947],[32,-30],[51,132],[35,104],[48,52],[2,58],[39,16],[-31,-73],[-79,-147],[-54,-130],[-16,-56],[-27,74]],[[150749,115002],[15,21],[109,47],[18,-9],[140,30],[14,13],[80,11],[24,19],[52,3],[38,-11],[54,2],[50,25],[4,-41],[-73,9],[-106,-8],[-120,-23],[-174,-46],[-117,-47],[-8,5]],[[143985,119540],[113,-2],[118,-16],[66,0],[51,-8],[99,-5],[100,1],[367,-19],[81,-8],[86,-1],[160,-10],[196,8],[118,-9],[487,-34],[256,-3],[347,0],[556,-5],[385,1],[400,3],[467,-1],[226,-2],[58,3],[333,5],[166,-1],[566,4],[407,-2],[398,-1],[52,7],[25,-8],[350,0],[0,19],[161,-4],[342,1],[387,-1],[282,0],[377,1]],[[152568,119453],[15,-118],[33,-182],[24,-152],[33,-157],[35,-142],[80,-271],[32,-85],[56,-133],[132,-367],[25,-96],[29,-82],[-45,28],[-38,107],[-19,69],[-31,42],[16,30],[-5,49],[-43,89],[-33,16],[-23,58],[-21,-4],[-46,21],[1,44],[25,8],[-7,53],[-33,-17],[-3,80],[-19,110],[9,51],[-39,172],[-19,-2],[-38,76],[11,43],[-14,56],[-30,5],[-27,71],[42,-4],[-8,101],[-28,30],[-3,51],[9,46],[-31,42],[-35,9],[-17,94],[-41,2],[-12,18],[-80,8],[13,41],[-8,33],[-24,27],[-41,4],[6,-52],[-24,-14],[16,-66],[29,-82],[33,-25],[26,1],[24,-85],[29,52],[19,7],[1,-61],[10,-25],[-11,-50],[42,-113],[19,-81],[39,-5],[-2,-60],[-11,-28],[9,-52],[22,-6],[20,-55],[-15,-46],[27,-31],[-1,-41],[35,-66],[-5,-46],[19,-45],[-15,-15],[-71,69],[-28,60],[6,74],[-21,58],[-50,65],[-17,75],[-41,32],[-22,-8],[29,-75],[-16,-57],[29,-40],[-4,-36],[-83,30],[-32,19],[-14,37],[-23,21],[-13,47],[-45,16],[-32,48],[-7,32],[-30,30],[-55,16],[-12,22],[-29,-9],[6,-38],[24,-42],[25,2],[28,-27],[29,-92],[55,-32],[30,-118],[-18,-21],[-140,-38],[-31,4],[-29,28],[-62,111],[-41,-10],[46,-52],[14,-49],[26,-46],[27,-21],[-20,-30],[-65,24],[-76,43],[-20,24],[-75,7],[-25,57],[-70,69],[-30,-15],[92,-108],[36,-50],[37,7],[10,-28],[35,-19],[-11,-37],[-35,9],[-84,-24],[-77,-105],[-6,-22],[-46,-16],[-33,-25],[-98,9],[-53,103],[-29,-41],[-24,-4],[-36,19],[-23,53],[5,95],[-24,7],[-9,58],[-16,31],[4,124],[12,52],[57,114],[-38,-1],[-35,-61],[-5,-33],[-24,-5],[-13,-42],[-6,-149],[29,-102],[13,-18],[-8,-50],[19,-62],[19,-13],[2,-75],[27,-10],[6,-39],[-56,-60],[-10,-48],[28,4],[66,-30],[81,10],[50,14],[30,-6],[68,23],[26,23],[134,52],[23,-24],[19,-87],[33,18],[34,-8],[64,67],[114,47],[51,16],[56,-11],[104,3],[55,-49],[15,-39],[-8,-49],[11,-24],[-40,-64],[-9,-57],[-25,-39],[-1,-69],[19,-41],[-8,-108],[12,-54],[-19,-48],[9,-33],[27,-33],[-16,-83],[22,-15],[20,17],[28,94],[-2,73],[16,39],[11,72],[-16,93],[26,61],[-17,54],[11,20],[-8,44],[34,29],[22,44],[39,37],[-38,55],[54,33],[59,11],[51,-19],[40,-26],[5,-31],[34,-29],[1,-33],[31,-71],[17,-12],[-3,-77],[25,-32],[7,-73],[-10,-16],[-3,-116],[18,-24],[1,-58],[13,-49],[-23,-28],[-15,42],[-36,14],[-19,-48],[16,-49],[39,-31],[13,-51],[-24,-51],[-50,-26],[13,-39],[-91,-20],[-30,37],[-19,41],[-30,-5],[11,-45],[-31,-42],[-23,-8],[10,-39],[-46,-20],[-20,-23],[-8,-76],[-38,-21],[-12,-50],[-28,-51],[1,-48],[-20,-25],[-18,47],[-26,7],[-15,-84],[-22,-15],[18,-48],[-30,-3],[-31,-33],[-27,6],[-9,-32],[-29,-15],[-26,22],[-20,-12],[-50,-4],[-15,43],[-54,-44],[-56,35],[-4,35],[-26,39],[-27,14],[-19,-21],[23,-96],[-56,-2],[4,40],[-51,-29],[-2,69],[66,-34],[10,29],[-51,64],[16,33],[-15,39],[-33,-16],[-30,-62],[-63,14],[16,-72],[-39,19],[-21,37],[-32,9],[-12,22],[11,50],[-29,11],[-19,29],[29,27],[-25,33],[1,38],[-37,41],[75,2],[30,-14],[37,2],[32,35],[3,46],[-89,-15],[-106,17],[-57,-63],[34,-60],[26,-13],[-15,-62],[21,-44],[4,-46],[19,-68],[-104,37],[-28,39],[-21,-10],[-44,29],[-86,-4],[-91,50],[-73,27],[-38,-1],[-77,56],[-31,1],[-45,71],[-50,53],[2,-68],[11,-34],[44,-40],[27,-8],[17,-32],[13,-58],[61,35],[25,-31],[46,-26],[48,-2],[65,-77],[40,1],[6,-19],[46,-19],[27,0],[38,-29],[18,-30],[45,-23],[52,7],[14,-31],[47,2],[134,-39],[-22,-18],[28,-63],[-5,-68],[-30,-22],[-2,-42],[-36,20],[-39,6],[55,-74],[-12,-40],[-71,37],[-39,-8],[-17,-41],[-2,-39],[40,-20],[10,46],[56,-68],[-40,-109],[-29,-6],[-12,-52],[-48,-29],[-67,-73],[-41,-26],[-13,-34],[-68,-28],[-20,-37],[-44,-19],[-29,6],[-119,126],[-35,10],[-8,29],[-34,36],[-29,-1],[-37,47],[-48,132],[-33,-14],[27,-37],[-5,-28],[34,-73],[38,-57],[13,-81],[14,-28],[52,-56],[59,-36],[10,-22],[30,-2],[31,-26],[54,7],[74,-55],[51,28],[28,62],[46,11],[-1,23],[29,32],[39,14],[77,-29],[-1,32],[22,20],[78,15],[20,-46],[21,7],[-20,47],[17,76],[32,14],[-9,27],[10,42],[26,-42],[15,-1],[8,-69],[-15,-32],[23,-31],[4,-57],[-11,-20],[10,-42],[30,30],[23,-29],[10,45],[50,4],[33,-27],[5,35],[-29,51],[-35,92],[104,-63],[66,-21],[-2,-45],[-18,-14],[-38,49],[-26,-11],[42,-72],[-3,-45],[-50,-35],[-40,16],[5,-55],[34,-8],[-48,-77],[-32,-2],[-21,-37],[-41,11],[-3,-69],[-28,-7],[-30,-49],[-32,-91],[-17,-19],[-43,-16],[23,-52],[-21,-27],[-60,13],[-33,-10],[0,42],[-43,117],[-19,-4],[-1,-81],[-13,-79],[11,-36],[-105,28],[-65,12],[-159,19],[-74,-9],[-111,-44],[-56,-33],[-52,-7],[-31,-24],[-46,-15],[-36,33],[-31,-39],[-61,-61],[-38,-25],[-56,-83],[-23,-48],[-97,-100],[-129,-90],[-119,-94],[-133,-130],[-106,-129],[-52,-58],[-76,-112],[-52,-92],[-79,-165],[-63,-185],[-65,-261],[-56,-178],[-10,-123],[-53,28],[-20,29],[16,30],[-107,50],[-57,18],[-100,12],[-77,-5],[-14,8],[-208,-29],[-191,-87],[-48,-33]],[[148617,113144],[-178,240],[-314,420],[-290,385],[-264,352],[-160,224],[-150,195],[-318,411],[-146,3],[-143,-1],[-536,17],[-246,5],[-147,5],[-440,6],[23,271],[-152,276],[-74,126],[-157,-147],[-24,42],[0,55],[36,65],[-26,40],[11,44],[-98,10],[-195,14],[-502,30],[-199,14],[-309,15],[-372,20],[-144,14],[-61,-22],[-42,6],[-40,-27],[-28,79],[-43,-39],[-30,-77],[-30,29],[-40,-13],[-12,-19],[-68,-6],[-42,-39],[-59,-14],[-78,-49],[-36,16],[1,-40],[-106,-93],[-29,-9],[-8,50],[-320,-130],[-161,-69]],[[141871,115829],[-316,-11],[-335,-8],[-105,-1],[1,-13],[-312,2],[-441,0],[-284,3]],[[140079,115801],[25,311],[22,243],[44,38],[54,64],[17,-7],[19,-53],[137,19],[75,39],[51,77],[-21,38],[9,37],[-13,34],[45,55],[-10,95],[32,61],[29,25],[18,36],[73,27],[15,48],[28,49],[84,15],[34,42],[33,20],[13,28],[71,-1],[24,16],[114,-2],[41,24],[30,-36],[23,8],[100,-7],[19,12],[21,52],[38,50],[20,-5],[96,68],[23,49],[25,13],[33,-25],[23,7],[11,39],[50,51],[0,47],[22,25],[63,-3],[18,10],[39,82],[58,3],[61,54],[63,-5],[65,-31],[42,37],[27,81],[43,39],[-6,64],[36,27],[-25,103],[21,15],[9,34],[27,18],[32,-9],[39,-45],[57,52],[4,84],[13,29],[39,13],[98,94],[76,46],[45,-70],[-20,-83],[16,-30],[-10,-47],[49,-7],[30,-24],[12,24],[65,31],[66,71],[76,176],[80,76],[27,-2],[70,49],[14,-17],[48,5],[34,45],[29,16],[41,-34],[43,17],[26,-101],[75,0],[27,16],[11,32],[31,-15],[108,252],[76,172],[31,17],[44,60],[36,29],[63,20],[38,-40],[30,-2],[40,23],[-25,75],[-9,78],[29,22],[9,81],[29,25],[-3,87],[-16,73],[46,80],[-1,41]],[[112484,120503],[22,-3],[258,2],[169,-10],[506,-2],[463,-3]],[[113902,120487],[605,4],[516,4],[400,4],[411,2],[270,3],[644,4],[355,-1],[335,-5],[284,0],[631,0],[465,-1],[532,-3],[358,1],[348,1],[399,0],[451,1],[400,-1],[434,1],[349,-1],[156,1],[582,-1],[449,1],[427,0],[609,1],[381,-2],[176,0]],[[124869,120500],[0,-354],[0,-813]],[[124869,119333],[47,-466],[37,-346],[57,-509],[88,-822],[20,-201],[28,-244],[-12,-480],[-15,-681],[-13,-610],[-12,-661],[-10,-582],[-11,-589],[-9,-499]],[[125064,112643],[-8,-29],[-53,-22],[-27,71],[3,25],[-51,1],[-3,49],[-34,-36],[-37,42],[-13,-39],[-43,-4],[0,76],[-27,-25],[-31,9],[6,36],[-39,28],[-35,44],[-31,-19],[-41,17],[-45,57],[-1,-42],[-26,-1],[-41,30],[3,35],[-31,3],[-85,112],[14,30],[-30,18],[-7,56],[-35,-20],[-80,24],[-20,92],[-27,2],[-3,-48],[-27,20],[14,54],[-41,-24],[-22,29],[16,35],[-55,15],[-19,21],[-63,36],[-54,-55],[-3,-103],[-20,2],[-19,-40],[-40,-8],[-35,25],[-8,-20],[-41,-24],[-58,-6],[-37,15],[-20,-9],[-47,32],[-49,-7],[-8,48],[-33,-39],[-26,28],[-5,82],[-62,32],[-30,-34],[-15,-45],[-49,5],[-37,-47],[-38,-12],[-33,26],[-34,-8],[-10,-43],[17,-31],[-28,-37],[-45,37],[-31,-10],[-10,-48],[-25,7],[-119,107],[-23,-55],[-84,-24],[-31,-25],[-43,-9],[-76,27],[1,-41],[-35,22],[-37,-5],[-1,-44],[-24,-3],[3,-68],[-22,-66],[-33,-20],[-43,-9],[-51,45],[-48,-4],[-16,-72],[-4,-57],[-17,-36],[-25,-15],[-35,7],[-11,59],[-50,69],[-29,69],[-37,12],[-17,-14],[-60,-6],[-23,36],[-16,77],[-69,-4],[-74,52],[-8,26],[46,53],[7,48],[-52,-3],[-47,52],[-20,-10],[-26,-146],[-32,-43],[-72,-17],[-12,8],[-15,71],[-22,25],[-56,14],[-13,-51],[-37,1],[-25,34],[-18,67],[-6,87],[-33,60],[-75,-55],[-33,-9],[15,-63],[-1,-43],[-57,-99],[-33,-11],[-32,49],[-28,-17],[5,-30],[37,-9],[15,-45],[-45,-11],[-23,-33],[14,-77],[-2,-51],[-16,-37],[-43,-26],[-34,12],[-34,36],[-27,104],[-22,49],[3,44],[33,23],[21,37],[-19,105],[-46,56],[-23,-4],[-29,-33],[-5,-59],[-31,-40],[-52,66],[-13,-45],[-37,-12],[-28,-74],[-21,-25],[-80,0],[-39,21],[-14,31],[17,68],[0,48],[-14,29],[-60,37],[-74,-51],[-44,4],[-23,48],[12,74],[-67,69],[-56,24],[-38,-33],[-28,-69],[-23,-26],[-45,-5],[5,-37],[-63,-57],[-1,-34],[-47,-52],[-46,-19],[-46,20],[-59,50],[-46,7],[-25,43],[41,32],[-5,88],[21,85],[-38,40],[-70,-28],[-32,0],[-62,21],[-23,50],[21,41],[-45,49],[-7,51],[22,32],[20,56],[-27,75],[-41,-21],[-26,-52],[-22,-20],[-45,6],[-46,40],[-38,-10],[-64,12],[-37,38],[-57,14],[-26,-18],[-20,-42],[-5,-63],[-19,-10],[-14,-42],[-33,2],[-64,-48],[-26,23],[-48,82],[-36,38],[1,22],[-25,37],[-34,27],[-32,-8],[-39,17],[-63,-73],[-64,6],[-34,-26],[-13,28],[-57,41],[-48,6],[-51,20],[-73,43],[-44,66],[-35,-19],[-10,33],[-29,0],[-18,-34],[-34,9],[-11,-21],[-53,31],[-59,-22],[-42,18],[-62,11],[-11,70],[1,87],[-17,5],[-8,63],[5,63],[-36,37],[-5,31],[-84,114],[-37,-15],[-13,31],[-42,47],[3,22],[-39,12],[-20,-35],[-4,-53],[14,-17],[-13,-76],[-15,-16],[-34,20],[-12,-23],[-42,57],[-31,5],[-18,27],[-92,18],[-27,-1],[-6,-60],[-23,-38],[-36,-3],[-35,21],[-22,-21],[-48,11],[-26,30],[-5,28],[-56,43],[-17,38],[-41,38],[-31,52],[-12,51],[-45,32],[-50,87],[-52,50],[-35,21],[-38,-40],[-43,-4],[0,435],[0,664],[0,356],[0,574],[0,743],[0,693],[0,540],[0,528],[-493,0],[-278,-1],[-485,1],[-346,-1],[-416,1],[-320,0],[-359,0],[-154,2],[-343,0],[-603,0],[-637,0]],[[112484,119335],[0,409],[0,759]],[[152892,122763],[35,64],[333,45],[231,32]],[[153491,122904],[-82,-164],[-77,-186],[-3,29],[-88,16],[-20,-62],[-40,-15],[-55,-73],[-55,-102],[-53,-122],[-23,-95],[-13,-15],[-18,-123],[-23,-65],[3,-75],[19,-13],[-103,-204],[-32,-25],[11,-24],[34,-1],[2,-38],[-23,-35],[-77,-167],[-8,-37],[-36,-71],[-32,-39],[-29,-2],[6,-98],[-19,-82],[-19,-16],[4,-45],[-22,-43],[-36,-38],[-60,-95],[-45,29],[-56,-29],[5,-24],[31,-22],[-29,-36],[-30,29],[17,67],[-10,71],[-54,121],[5,65],[-24,55],[19,51],[-13,49],[14,78],[17,31],[49,124],[-23,37],[5,53],[31,72],[-7,14],[20,109],[26,67],[-13,31],[47,138],[17,-35],[23,-2],[-7,108],[27,35],[34,4],[-10,36],[24,57],[39,18],[-29,41],[26,34],[36,18],[-43,75],[34,36],[34,0],[39,-44],[37,17],[-1,64],[25,68],[20,-31],[25,34],[-25,20],[15,68],[-26,31],[-35,0],[-34,24],[36,52],[37,-9],[23,29],[52,-15],[9,45],[-16,26]],[[152303,122732],[78,0]],[[152381,122732],[-46,-23],[-32,23]],[[143556,121761],[36,-40],[1,-29],[-51,-56],[-28,-19],[6,-37],[36,-33],[28,-2],[24,-71],[6,-50],[-11,-36],[29,-68],[56,-48],[36,-52],[1,-44],[50,-20],[24,15],[62,-23],[30,-51],[4,-37],[77,-59],[12,-27],[174,12],[24,33],[52,28],[9,46],[34,-3],[29,34],[34,20],[30,-2],[27,87],[36,19],[18,44],[62,-89],[140,-151],[86,66],[81,36],[111,28],[85,28],[-1,-23],[48,8],[70,44],[46,55],[29,20],[-50,87],[39,100],[31,-6],[44,-47],[33,-23],[21,-52],[95,52],[156,121],[71,64],[60,19],[27,-56],[-3,-53],[29,-28],[73,63],[186,136],[26,59],[-40,-14],[-4,44],[-24,42],[103,73],[27,27],[29,49],[-69,42],[-18,26],[-24,81],[65,89],[-16,20],[48,93],[17,74],[48,65],[36,88],[29,17],[100,140],[39,35],[67,83],[63,166],[9,39],[41,62],[-19,11],[-8,46],[23,19],[19,55],[-7,40],[33,30],[77,110],[38,19],[49,59],[-33,74],[20,43],[34,28],[13,49],[30,-6],[56,145],[25,36],[2,45],[-16,57],[6,45],[21,38],[26,140],[21,49],[165,-94],[23,-40],[66,-179],[243,-106],[48,28],[59,107],[43,54],[7,74],[63,137],[12,66],[36,98],[16,16],[40,-2],[13,64],[-13,36],[30,106],[31,59],[8,45],[28,0],[11,61],[20,15],[18,60],[184,-204],[72,159],[49,127],[42,36],[30,62],[24,10],[10,-62],[52,48],[32,51],[18,49],[39,34],[28,-42],[31,60],[44,65],[-31,32],[82,117],[56,65],[27,8],[30,44],[18,48],[35,35],[-51,71],[48,78],[9,30],[-29,31],[48,84],[40,57],[29,84],[-39,13],[35,69],[-24,56],[18,35],[0,90],[124,-121],[155,-166],[185,-185],[302,-308],[35,98],[16,84],[33,62],[36,136],[41,62]],[[149832,125930],[33,-7],[31,13],[37,-31],[52,-19],[73,8],[8,-47],[26,-45],[84,-45],[43,-53],[-42,-92],[-28,-8],[-33,-84],[18,-64],[43,-22],[34,-77],[59,-22],[71,-13],[51,4],[70,-39],[71,-62],[-16,-41],[16,-46],[35,-27],[35,-10],[75,-6],[40,-70]],[[150718,125025],[38,-67],[39,-15],[53,-114],[-11,-43],[0,-95]],[[150837,124691],[-3,-153],[-18,-38],[-39,-2],[-39,-28],[-39,-54],[-5,-56],[8,-35]],[[150702,124325],[-41,4],[-16,-26],[-49,-18],[-32,66],[-34,-25],[3,-34],[-30,-95],[12,-44],[-29,-33],[-9,-49],[-38,-69],[-21,-69],[-5,-55],[23,-108],[-10,-33],[31,-32],[25,-71],[58,-20],[53,22],[61,14],[37,51],[79,1],[46,71],[17,3],[34,-42],[6,-115],[-24,-50],[43,-70],[30,-17],[29,-42],[7,-46],[-8,-53],[38,-27],[39,-13],[52,-58],[54,-20],[57,13],[59,-6],[32,-44],[15,-37],[57,66],[36,-29],[80,1],[15,-89],[32,-36],[65,-49],[22,-65],[-44,-12],[-7,-38],[27,-8],[33,12],[52,-26],[27,-66],[30,-6],[36,-41],[107,-45],[115,-84],[43,-49],[-19,-91],[-1,-39],[-23,-41],[-60,10],[-1,-50],[-13,-18],[9,-41],[2,-81],[-17,-48],[25,-41],[1,-27],[-47,-15],[14,-22],[-22,-45],[12,-61],[28,29],[30,-14],[0,-49],[-30,23],[-62,-11],[-70,17],[-74,50],[-26,50],[23,16],[-21,43],[-28,-24],[6,-24],[-27,-73],[-48,40],[-12,110],[-40,62],[-24,87],[-49,28],[-12,39],[-46,15],[-33,44],[-31,-7],[-59,76],[-9,48],[-27,8],[-5,47],[-44,61],[-50,15],[-26,45],[-2,52],[-29,30],[-31,1],[-12,29],[-26,0],[-14,-40],[17,-19],[57,-7],[-5,-46],[49,-81],[22,0],[16,-32],[40,-17],[18,-75],[17,-20],[10,-45],[44,-86],[28,-30],[52,-13],[5,-56],[85,-27],[0,-32],[33,-32],[1,-41],[25,-62],[-15,-18],[60,-103],[32,-24],[105,4],[38,-4],[4,-55],[66,-34],[75,-7],[29,-18],[1,-38],[-73,-27],[3,-50],[34,-21],[31,-36],[40,59],[26,-57],[-15,-56],[37,-31],[12,-172],[-40,-69],[0,-84],[-50,37],[-59,99],[-54,29],[-17,42],[-29,17],[-18,-65],[-57,-4],[0,-31],[34,0],[34,-54],[7,-33],[-33,-36],[62,-26],[51,-80],[-41,-12],[-40,4],[-70,-36],[-27,12],[-39,-36],[22,-33],[33,-22],[126,24],[-23,-46],[17,-32],[-5,-43],[-27,-31],[46,-13],[32,30],[24,-13],[16,-43],[31,-14],[24,-32],[-10,-25],[33,-30],[12,-32],[-48,-202],[-54,33],[-11,-20],[-44,-23],[-49,-80],[-21,8],[-40,75],[6,22],[-24,46],[-91,83],[-1,37],[-24,24],[-36,-12],[-46,64],[-29,19],[-6,53],[23,36],[-19,81],[-45,67],[-64,7],[-57,-27],[-17,-46],[-21,-2],[-34,41],[-19,52],[-43,29],[-69,-4],[-4,48],[-38,-28],[-30,-38],[-33,8],[-10,-23],[66,-66],[54,22],[70,-9],[24,-16],[29,-47],[30,-24],[22,-41],[47,-6],[43,115],[33,-55],[-11,-74],[21,-70],[-19,-122],[36,-55],[50,-2],[38,-16],[34,-58],[57,-47],[17,-37],[39,-27],[2,-42],[-21,-21],[29,-35],[-17,-78],[54,7],[11,45],[59,-14],[30,5],[2,56],[46,-2],[8,-64],[41,-22],[-13,132],[50,62],[42,-10],[69,-58],[121,-39],[72,-36],[48,22],[25,30],[50,-2],[17,-16],[69,-376],[41,-162],[45,-143],[25,-110],[10,-77]],[[143985,119540],[45,56],[-133,1],[-274,9],[-17,-52],[-354,1],[-54,3],[-379,-3],[-30,3],[-285,-5],[-307,0],[-551,1],[-23,10],[-145,-2],[-366,1],[-78,7]],[[141034,119570],[90,77],[55,19],[67,54],[56,12],[58,-13],[46,6],[41,22],[14,23],[117,58],[28,6],[138,60],[86,8],[13,19],[-8,75],[21,15],[30,58],[-5,34],[39,28],[4,32],[68,2],[31,-18],[11,21],[41,2],[49,23],[86,51],[3,44],[25,40],[6,64],[-19,51],[35,22],[33,48],[60,9],[57,78],[26,1],[6,37],[0,146],[104,74],[27,6],[61,66],[62,51],[44,20],[32,33],[73,39],[145,54],[39,38],[13,27],[169,188],[113,122],[232,259]],[[142632,123827],[32,-39],[62,0],[185,80],[22,-12],[73,15],[24,20],[29,110],[2,63],[11,35],[6,95],[26,35],[41,11],[36,-17],[49,9],[17,20],[8,52],[-28,127],[12,67],[-24,114],[-26,25],[-1,64],[38,45],[44,22],[25,37],[8,58],[-6,77],[47,81],[4,30],[29,71],[56,43],[23,73],[42,10],[18,-17],[26,-70],[38,8],[27,-19],[49,-117],[1,-29],[-40,-56],[24,-52],[31,-12],[45,38],[15,26],[6,64],[20,35],[25,6],[42,-47],[44,17],[-38,73],[26,118],[-58,76],[-12,28],[6,57],[47,-13],[35,26],[15,63],[-4,74],[-17,68],[30,44],[17,47],[49,27],[-8,68],[27,39],[33,9],[70,-3],[57,-20],[18,166],[23,33],[58,48],[44,63],[25,21],[41,-9],[32,-40],[16,-76],[30,-33],[42,10],[73,67],[40,27],[43,10],[27,-10],[55,104],[23,20],[53,14],[50,98],[45,68],[69,85],[44,44],[89,102],[79,13],[20,75],[7,96],[41,23],[4,37],[-50,79],[3,52],[55,54],[6,31],[-7,70],[50,52],[-2,44],[-22,48],[8,36],[52,-21],[18,16],[-12,70],[36,57],[-3,81],[16,102],[-11,62],[42,56],[0,90],[8,39],[54,105],[10,70],[25,50],[33,25],[11,71],[22,60],[-19,70],[8,51],[-31,61],[24,19],[1,79],[19,49],[-1,56],[-28,46],[-14,79],[-58,88],[6,42],[53,66],[42,13],[32,-26],[86,57]],[[145697,129009],[0,-386],[1,-26],[-2,-281],[0,-427],[0,-520],[0,-504],[310,-1],[674,-1],[556,1]],[[147236,126864],[-3,-443],[-5,0],[-3,-438],[-5,-150],[1,-173],[25,-5],[67,57],[68,102],[37,14],[14,37],[43,25],[37,-12],[12,56],[41,37],[7,39],[52,18],[25,59],[18,-8],[52,68],[32,7],[-1,29],[67,97],[73,-8],[114,-64],[4,33],[30,74],[26,1],[35,61],[26,23],[54,105],[25,-16],[-7,66],[45,42],[-9,48],[36,-13],[43,10],[22,-28],[-51,-13],[1,-49],[115,-98],[50,-26],[48,12],[46,-18],[39,-29],[65,12],[27,-14],[51,-5],[27,50],[49,27],[-55,58],[17,39],[52,-29],[15,27],[-34,30],[0,49],[63,-37],[-7,33],[30,9],[16,34],[125,-51],[19,50],[45,52],[-5,32],[36,1],[30,43],[16,1],[94,-31],[45,-31],[61,-78],[37,-73],[51,-11],[22,21],[34,-50],[23,41],[51,-17],[5,43],[70,-23],[12,-35],[-18,-62],[-54,-2],[-12,-27],[33,-40],[-3,-40],[60,-2],[-29,-43],[73,-21],[15,-99],[-10,-39],[58,-17],[25,-83],[-25,-22],[11,-59],[-15,-45],[54,-29]],[[143556,121761],[-3,20],[-55,-30],[-32,9],[-52,-2],[-13,42],[-47,13],[-42,-18],[13,55],[-12,40],[-36,-1],[-37,80],[-47,-4],[-18,65],[-21,20],[-25,-12],[-22,17],[-36,52],[-29,83],[-27,50],[20,32],[-20,20],[-9,49],[-53,37],[-33,46],[-35,99],[-1,53],[-43,51],[-53,26],[-21,31],[45,61],[9,60],[-27,-2],[-8,35],[-37,1],[-17,63],[-19,26],[-19,78],[-48,47],[-2,38],[-77,75],[-2,75],[41,1],[17,60],[2,47],[-21,40],[8,27],[31,-1],[17,43],[-10,85],[14,30],[-7,35],[-32,39],[7,83],[0,97]],[[133360,104254],[22,-34],[32,-84],[14,-66],[11,-85],[-2,-105],[-22,-152],[-52,-144],[6,73],[31,75],[10,69],[-10,20],[18,35],[4,98],[-14,56],[3,69],[-19,91],[-32,84]],[[132663,104277],[34,14],[24,62],[151,124],[-40,-58],[-2,-49],[12,-64],[65,-25],[5,-40],[-16,-25],[-42,-13],[-37,14],[-2,46],[-21,18],[-33,-55],[-48,6],[-50,45]],[[132242,103053],[50,27],[41,-2],[-37,-52],[-14,-38],[-40,65]],[[130878,102017],[119,-59],[-5,-17],[-83,43],[-31,33]],[[128690,103152],[39,59],[33,26],[26,-14],[37,5],[21,44],[34,19],[17,-21],[37,4],[62,-63],[59,-21],[22,-46],[43,0],[5,-28],[35,-16],[-77,-72],[-13,-46],[9,-34],[-27,-17],[-25,11],[-27,-33],[-37,13],[-23,56],[-23,1],[-55,35],[-57,45],[-58,31],[-50,41],[-7,21]],[[125719,111197],[472,1],[343,-3],[621,-1],[335,-4],[70,-3],[432,-6],[415,-8],[401,-3],[480,-2],[187,0],[493,-6]],[[132393,104562],[-48,-2],[-22,-46],[-22,-23],[-55,16],[-48,-91],[-35,-32],[-7,-69],[-53,-16],[-18,-37],[24,-56],[-24,-15],[-51,55],[-75,0],[-40,-57],[-18,-39],[8,-63],[21,-74],[28,-30],[43,0],[63,29],[27,28],[21,-25],[-48,-38],[4,-53],[58,-79],[59,-27],[45,1],[57,39],[8,22],[-2,66],[16,28],[0,39],[17,36],[-15,68],[131,110],[-8,54],[25,32],[35,-36],[38,-59],[59,43],[13,-40],[-34,-15],[-27,-27],[-31,15],[-20,-59],[36,-16],[-1,-40],[16,-25],[37,-21],[26,-30],[7,-83],[9,-33],[52,34],[25,34],[63,161],[42,6],[0,-44],[31,-16],[-25,-84],[-55,-9],[-53,-58],[4,-50],[33,-4],[73,14],[-34,-43],[-18,-42],[-25,34],[-32,-25],[-19,-69],[-19,62],[-63,-23],[6,-42],[25,11],[5,-40],[33,-57],[27,-4],[38,37],[2,-76],[-20,-19],[-41,50],[-92,24],[-10,-48],[-43,-68],[1,-66],[9,-35],[-28,-61],[13,-35],[-47,-11],[-8,50],[13,16],[-8,45],[-25,49],[-19,-5],[-40,20],[9,-57],[-15,-118],[-54,18],[-42,-37],[-39,-17],[-18,18],[-39,-16],[36,-37],[37,-57],[-30,1],[-29,65],[-37,3],[5,-89],[31,-3],[12,-27],[-32,-26],[-31,-3],[11,-60],[55,-79],[45,-33],[59,10],[-4,-44],[49,-78],[7,-44],[22,-47],[-36,3],[8,-40],[38,-11],[63,45],[47,-32],[80,1],[35,-21],[32,-56],[26,0],[42,30],[51,-73],[7,-33],[27,-43],[51,94],[27,-16],[25,-81],[37,-28],[16,-60],[21,-29],[-21,-49],[21,-45],[-10,-25],[75,-20],[67,50],[29,-67],[-18,-23],[-42,19],[-6,-33],[-43,1],[-47,-26],[22,-49],[47,-12],[38,4],[-40,-104],[-18,43],[-37,17],[-5,-55],[-14,-44],[-45,-8],[-1,-70],[-16,-45],[23,-70],[-112,72],[5,54],[-9,44],[-29,47],[-16,-3],[-11,-58],[-35,-12],[-48,-83],[-27,-33],[-65,-110],[-40,-58],[8,93],[43,68],[28,67],[12,66],[35,0],[23,73],[3,74],[9,31],[26,9],[-5,52],[8,32],[-28,59],[-34,7],[-15,-26],[4,-32],[-9,-66],[-28,-45],[-72,-13],[-41,48],[-29,87],[-53,78],[-79,50],[-103,40],[-50,87],[-47,-4],[-80,35],[-173,35],[26,84],[35,-4],[16,-58],[32,19],[14,32],[50,18],[55,3],[62,40],[35,-70],[41,23],[-20,73],[-42,23],[-48,-16],[-37,5],[-32,-10],[-76,3],[-34,50],[-35,-25],[-17,36],[-26,14],[12,72],[29,19],[-30,34],[-40,-11],[-2,-36],[-28,-47],[-11,24],[-42,8],[-22,-21],[-15,45],[-36,10],[-34,-29],[32,-44],[-23,-46],[-25,-20],[-9,-57],[-50,-26],[6,-26],[34,-7],[27,39],[30,-41],[-8,-28],[-37,5],[-15,18],[-31,-43],[6,-68],[27,-7],[-4,-32],[-20,-12],[-36,31],[-27,2],[-49,-72],[13,-60],[25,-24],[14,-43],[48,-12],[51,67],[31,64],[39,-24],[-94,-82],[-41,-64],[-67,-61],[-111,-111],[-24,-29],[-53,-37],[-37,22],[20,32],[0,44],[-29,34],[-20,80],[12,51],[-26,26],[-45,140],[-22,6],[-33,38],[-14,38],[-33,-29],[6,-66],[-34,-18],[-3,123],[-41,45],[-22,47],[-30,-28],[13,-37],[-41,-68],[-38,30],[-40,-5],[-33,-42],[-33,66],[-31,-24],[-3,-34],[17,-40],[-7,-60],[-28,-72],[-35,-2],[-20,-99],[-39,5],[-28,-114],[-25,-21],[-17,46],[-19,-3],[-13,-40],[-28,1],[-36,-24],[-21,-32],[-2,-61],[-48,-4],[-23,19],[-24,75],[-31,38],[-15,47],[-26,13],[-64,89],[-34,-29],[-41,4],[-24,29],[-17,52],[-39,-61],[-44,19],[-52,67],[-126,14],[-108,67],[-70,111],[59,15],[30,53],[15,67],[35,21],[2,-33],[60,-118],[32,37],[13,-28],[-5,-69],[10,-60],[54,-14],[17,24],[-23,54],[21,58],[-21,82],[-26,9],[-15,38],[-55,34],[-3,32],[-29,18],[12,55],[-14,37],[-30,-13],[-15,24],[-28,-63],[-25,-26],[-21,23],[-48,-50],[-4,52],[-20,21],[3,87],[23,7],[-12,67],[-24,50],[-33,-2],[-41,-57],[-23,3],[-56,-45],[-20,57],[-17,11],[-1,53],[-22,16],[-49,9],[13,32],[-17,46],[3,45],[-28,119],[-35,9],[-71,-26],[-16,30],[20,69],[-2,29],[12,85],[-17,50],[-66,12],[-61,-21],[-34,30],[-53,-10],[-90,-60],[-26,-28],[-40,18],[33,33],[-6,37],[-28,25],[36,54],[43,6],[4,43],[-11,67],[-47,-6],[-29,20],[-37,-10],[-12,-27],[-33,-6],[-36,21],[-35,-14],[12,-39],[-86,-50],[-71,-53],[-48,-46],[-42,-54],[-8,23],[28,25],[11,39],[-12,29],[-38,-30],[-20,-31],[-48,32],[-8,-18],[13,-47],[46,-60],[96,-2],[1,-14],[-48,-52],[-1,-20],[45,-118],[32,26],[38,-32],[-28,-60],[-40,10],[-63,-5],[-82,-43],[-78,-64],[-42,-14],[-58,-6],[-138,40],[-75,33],[-94,19],[-66,25],[-69,13],[-20,22],[-23,-6],[-132,66],[-55,34],[-232,158],[-45,28],[-147,69],[-165,58],[-109,17],[-48,-6],[-93,-30],[-66,10],[-119,6],[-57,-5],[-254,-49],[-85,-24],[-60,-30],[-51,-35],[-34,-41]],[[126022,103416],[-48,105],[-28,16],[-14,68],[-35,32],[-10,28],[9,51],[33,42],[67,63],[37,71],[20,62],[13,79],[31,84],[23,13],[24,45],[23,20],[3,31],[25,37],[6,38],[-11,58],[32,44],[9,91],[-34,133],[19,72],[-3,61],[6,57],[-59,33],[-28,94],[25,122],[39,71],[30,25],[0,48],[-25,56],[14,69],[-40,46],[15,65],[-6,35],[21,31],[52,16],[-10,73],[3,36],[42,69],[25,7],[26,49],[14,56],[4,69],[24,37],[25,89],[32,74],[-6,44],[-25,76],[37,30],[-13,38],[40,25],[7,31],[-8,48],[-56,42],[8,28],[-21,28],[19,31],[39,-12],[26,66],[-14,36],[18,23],[-20,30],[-29,10],[17,117],[-12,46],[18,23],[-19,66],[-58,-49],[-17,25],[-11,68],[12,44],[-28,21],[5,66],[-12,25],[-31,-1],[-23,24],[-12,35],[-24,11],[-1,39],[22,46],[5,64],[-11,76],[-46,49],[18,51],[-17,29],[-26,1],[-41,36],[11,34],[22,13],[20,60],[-29,-3],[-14,31],[-56,-3],[-59,77],[-28,95],[31,41],[4,37],[-15,81],[32,44],[15,38],[-33,16],[5,40],[-34,53],[19,62],[-24,59],[-52,50],[-11,94],[-29,42],[7,34],[-38,19],[-9,21],[-36,-3],[-30,26],[-64,159],[-38,23],[0,632],[0,507],[-1,483],[1,762]],[[140888,141663],[34,31],[24,-26],[-37,-36],[-21,31]],[[140727,141485],[23,74],[33,45],[58,-99],[37,34],[22,61],[41,-2],[15,26],[83,47],[-8,42],[-33,5],[-48,27],[18,33],[139,3],[49,-32],[67,-95],[10,-62],[50,-61],[27,10],[22,-35],[-39,-57],[-18,-77],[-24,-22],[-110,16],[-26,47],[-55,2],[-44,-24],[-79,5],[-24,40],[-29,-14],[-14,-37],[-44,41],[-41,6],[-39,22],[-19,31]],[[139682,141105],[25,15],[52,-27],[43,8],[112,-57],[40,3],[74,-41],[-19,-51],[-33,-22],[-3,-26],[-39,-19],[-119,40],[-12,39],[-61,84],[-47,30],[-13,24]],[[139606,141479],[18,15],[31,-28],[-34,-28],[-15,41]],[[139592,141221],[7,49],[36,-14],[30,-60],[-26,-15],[-47,40]],[[138449,141030],[42,-7],[31,31],[-5,52],[27,10],[17,-33],[-13,-51],[-25,-30],[-74,28]],[[138288,141075],[21,12],[-11,54],[43,-14],[67,-64],[-4,-44],[-59,-8],[-19,53],[-38,11]],[[138149,140611],[12,54],[23,34],[-8,59],[8,41],[48,69],[15,56],[-9,54],[36,-17],[55,9],[-11,-44],[22,-24],[7,-65],[-18,-40],[24,-68],[5,-72],[-7,-32],[-52,-38],[-21,-38],[-31,-7],[-88,28],[-10,41]],[[138042,140931],[28,21],[42,-17],[-2,-57],[-38,-46],[-25,3],[15,52],[-20,44]],[[137770,140244],[48,-18],[30,-39],[8,-34],[-23,-34],[-49,80],[-14,45]],[[137505,139531],[29,47],[82,-20],[18,-30],[-11,-120],[11,-57],[-33,-20],[-62,85],[-26,24],[-8,91]],[[137370,139238],[26,67],[30,13],[48,-21],[-25,-39],[9,-39],[-57,-22],[-31,41]],[[136624,140557],[21,13],[29,-26],[-1,-55],[-32,-12],[-17,80]],[[136563,140621],[14,26],[34,-20],[-31,-30],[-17,24]],[[136552,142817],[46,36],[37,0],[40,-60],[-5,-41],[-26,-70],[59,-28],[-24,-45],[-26,-5],[-28,38],[-17,-46],[-24,13],[4,101],[-25,27],[-11,80]],[[136442,140379],[39,4],[-1,-58],[-32,23],[-6,31]],[[136381,131631],[71,57],[137,130],[23,36],[69,85],[59,117],[43,150],[54,126],[46,136],[28,38],[92,145],[71,135],[51,132],[36,111],[30,129],[22,71],[22,110],[9,115],[23,128],[-5,100],[16,51],[17,117],[-7,157],[1,193],[-9,140],[-14,162],[-42,222],[-39,123],[-66,173],[-104,248],[-38,120],[-40,151],[-24,123],[-21,72],[-61,143],[-27,96],[0,96],[14,45],[100,161],[24,58],[17,71],[5,60],[-5,65],[-17,80],[-4,66],[-18,71],[-4,53],[-57,119],[-19,85],[21,41],[79,71],[49,76],[42,107],[33,55],[28,97],[24,32],[40,105],[47,87],[30,177],[-5,72],[4,73],[15,44],[22,110],[-2,107],[-28,76],[-22,85],[4,54],[35,45],[77,30],[38,31],[50,-9],[47,32],[23,66],[-7,57],[18,59],[-9,152],[8,49],[34,21],[33,-28],[43,-6],[18,14],[19,55],[53,92],[59,-26],[32,-44],[50,3],[42,22],[43,78],[-2,62],[25,30],[33,77],[42,24],[46,63],[8,53],[29,71],[57,97],[46,-16],[67,72],[21,-51],[-7,-28],[-57,-52],[-44,-14],[-21,-50],[23,-85],[23,-46],[-20,-64],[-5,-53],[-44,-45],[-28,-72],[27,-11],[41,17],[-3,-84],[6,-32],[-37,-8],[-29,-87],[-9,-122],[27,-73],[-11,-58],[18,-20],[43,-3],[30,121],[15,18],[29,89],[24,23],[-10,102],[29,102],[0,32],[43,38],[24,3],[13,-62],[-21,-7],[-17,-81],[4,-60],[-16,-69],[0,-38],[-59,-51],[-24,-37],[-5,-72],[-26,-64],[33,-27],[40,-3],[31,43],[-4,50],[14,40],[42,29],[29,87],[38,65],[44,115],[30,169],[-7,101],[15,65],[10,87],[-23,94],[-2,68],[-11,25],[3,110],[21,76],[87,82],[13,29],[45,-7],[103,108],[16,-3],[81,31],[43,-16],[97,-12],[45,22],[28,-7],[115,58],[-9,68],[-87,17],[-28,-6],[-54,19],[-38,38],[-46,71],[-32,135],[-7,70],[12,39],[27,33],[27,68],[20,24],[68,29],[105,134],[4,45],[-30,38],[-48,32],[103,-3],[25,-22],[43,20],[56,-26],[44,4],[44,34],[-15,49],[28,17],[31,-16],[38,10],[4,-44],[63,-29],[71,-54],[87,-52],[24,-3],[30,-50],[58,-35],[53,-46],[46,-19],[25,57],[55,-32],[70,21],[87,-46],[81,-24],[72,-99],[43,-46],[37,-150],[34,-33],[49,-12],[29,20],[69,-14],[75,3],[44,-17],[41,-42],[59,-76],[104,-66],[17,12],[65,6],[27,-43],[49,-29],[50,-44],[50,-30],[42,-11],[44,25],[27,-26],[65,-34],[80,-98],[60,-50],[-15,-39],[-30,-30],[47,-84],[18,-73],[28,-26],[40,-64],[3,-31],[46,-118],[-26,-48],[41,-9],[18,-54],[-109,44],[-23,19],[-32,61],[-83,-43],[-32,-76],[30,-31],[-28,-30],[12,-42],[3,-67],[27,-60],[31,-18],[16,-37],[44,-30],[72,-23],[-9,-51],[31,-70],[10,-48],[-5,-49],[9,-51],[-5,-67],[31,-53],[-21,-133],[-30,-64],[-12,-81],[13,-124],[-17,-65],[1,-66],[-13,-97],[9,-88],[-20,-80],[2,-75],[-11,-22],[-36,3],[-73,-89],[-17,-51],[-80,18],[-43,-15],[-43,-60],[-17,-49],[-9,-87],[-18,-80],[-2,-119],[-29,-45],[-3,-38],[16,-47],[-45,16],[-59,-9],[-43,-37],[-9,-111],[-48,10],[-18,19],[-38,-37],[-114,6],[-35,-54],[-30,-16],[-23,-85],[-24,-15],[-4,-108],[-9,-57],[2,-79],[-21,-84],[-32,-34],[19,-106],[39,-88],[47,-46],[44,-28],[19,20],[33,-40],[30,-5],[87,-38],[50,-42],[26,-39],[26,14],[63,78],[109,174],[40,44],[38,-14],[47,43],[35,77],[34,111],[-12,19],[-55,-12],[28,66],[19,11],[42,-10],[31,30],[31,9],[30,33],[16,51],[-13,25],[77,70],[29,50],[10,45],[164,29],[57,40],[49,-9],[31,12],[22,30],[24,64],[54,6],[31,40],[33,-9],[28,17],[50,-28],[28,-29],[91,-30],[31,-21],[15,-32],[24,-2],[41,-45],[58,-146],[23,-38],[8,-63],[35,-34],[32,-89],[13,-101],[15,-20],[-4,-76],[17,-86],[-6,-27],[14,-202],[22,-159],[14,-36],[15,-84],[42,-140],[-2,-82],[8,-33],[-6,-71],[10,-35],[-3,-76],[14,-188],[21,-67],[22,-124],[12,-96],[93,-221],[-3,-34],[17,-39],[-22,-58],[-40,-59],[-21,-92],[2,-66],[-21,-118],[22,-109],[-24,-67],[0,-36],[-40,-124],[1,-65],[-22,-74],[-34,-32],[-46,-62],[-15,-34],[-29,-4],[-57,24],[-20,22],[5,52],[-29,15],[-35,-27],[-18,28],[39,20],[5,39],[28,21],[17,43],[33,-20],[10,55],[-17,24],[-57,27],[-40,5],[-68,-39],[-19,-38],[-48,-3],[-31,-33],[-10,-34],[12,-37],[35,-16],[7,-70],[-75,-14],[-22,-28],[-37,-76],[-12,-52],[3,-52],[19,-59],[-32,-135],[-38,-42],[-13,-61],[-96,-45],[-55,-9],[-55,-28],[-54,-69],[-39,-114],[-12,-149],[22,-116],[-21,-87],[-35,-6],[-50,-49],[26,-117],[-30,-39],[-51,-24],[-32,-34],[-5,-65],[-25,-13],[-38,12],[-36,-28],[-16,-43],[-7,-57],[-30,-37],[-38,-7],[-41,-95],[-47,-51],[0,-64],[19,-71],[-37,-43]],[[141361,131566],[-209,-8],[-248,-13],[-548,-25],[-334,-14],[-576,-20],[-82,-5]],[[139364,131481],[0,150],[-247,-2],[-495,2],[-442,-3],[-272,0],[-497,4],[-578,-3],[-452,2]],[[135161,144856],[40,20],[39,-10],[-4,-33],[-75,23]],[[132780,145913],[57,25],[5,71],[62,57],[124,77],[149,80],[146,63],[2,13],[86,52],[29,0],[57,25],[19,41],[84,46],[47,36],[14,36],[77,44],[53,18],[46,29],[33,-22],[35,7],[28,27],[52,7],[36,19],[4,-47],[-39,-37],[-178,-143],[-14,-21],[3,-51],[-17,-21],[-124,-100],[-72,-38],[-108,-38],[-63,-34],[-28,3],[-105,-52],[0,-15],[-116,-66],[3,-42],[35,11],[39,-11],[-38,-40],[-68,-35],[-32,-7],[-118,-63],[-56,-12],[-45,23],[-9,35],[-53,8],[13,59],[-55,-17]],[[131073,142866],[130,99],[35,-14],[61,37],[150,63],[93,23],[107,45],[71,77],[82,67],[113,139],[85,54],[104,27],[70,7],[88,-32],[27,16],[120,36],[63,-10],[83,15],[93,45],[29,24],[72,38],[83,54],[39,43],[41,76],[46,49],[35,22],[18,-18],[64,5],[50,30],[19,-17],[43,7],[54,40],[54,105],[4,34],[33,63],[64,33],[35,53],[48,32],[42,13],[47,68],[44,45],[64,48],[62,29],[54,15],[114,115],[34,47],[27,61],[49,67],[79,55],[72,27],[57,44],[59,14],[47,51],[47,18],[128,22],[69,7],[12,14],[151,8],[53,-6],[34,-21],[47,14],[68,-2],[66,-29],[60,-49],[5,-90],[-44,11],[-37,-28],[-49,-4],[-22,-18],[-61,25],[-38,1],[-110,-20],[-8,-58],[36,-47],[-45,-23],[-71,-61],[-57,-19],[-62,-86],[-30,-15],[-29,-47],[-43,-45],[-68,-15],[-40,-54],[-5,-65],[15,-29],[-73,-18],[-23,-93],[-78,-52],[-26,-133],[-64,-97],[-48,-13],[-17,-114],[-30,-88],[-10,-139],[30,-86],[-30,-16],[-26,-55],[28,-22],[45,31],[25,71],[77,105],[-13,31],[57,13],[61,76],[72,60],[25,33],[68,34],[13,19],[67,35],[-8,-55],[-56,-57],[4,-34],[86,12],[67,25],[73,-27],[49,-8],[63,8],[87,0],[34,-38],[42,-21],[43,17],[51,-26],[8,-30],[53,-4],[20,-88],[34,-5],[44,27],[10,-47],[51,-11],[56,-89],[19,-102],[13,-24],[72,-70],[0,-33],[33,-67],[51,-28],[6,-49],[49,-57],[27,3],[39,-22],[-10,-26],[25,-58],[-26,-30],[51,-70],[72,-27],[76,-8],[84,6],[46,30],[54,-23],[26,2],[59,48],[77,25],[5,19],[66,-18],[18,-23],[32,-111],[50,-6],[29,-18],[21,-51],[56,-7],[31,9],[19,67],[23,26],[49,4],[76,-94],[50,15],[25,-33],[-15,-22],[36,-24],[82,131],[46,65],[29,10],[55,58],[40,65],[35,-12],[139,71],[239,178],[39,36],[35,8],[27,-36],[47,-5],[75,29],[62,14],[24,-8],[103,39],[46,9],[55,-4],[68,-19],[119,-9],[67,8],[120,-14],[115,3],[41,11],[176,84],[77,49],[80,37],[146,28],[112,-17],[67,6],[58,25],[65,-8],[-80,-92],[-30,-72],[-11,-170],[0,-101],[12,-90],[-38,-24],[-3,-42],[31,-64],[28,-18],[75,-7],[39,22],[23,-38],[43,-11],[47,11],[33,-56],[32,-4],[71,21],[68,35],[66,45],[36,-12],[34,6],[47,-78],[-8,-41],[12,-44],[80,15],[67,59],[26,-34],[25,20],[-1,62],[27,50],[36,29],[38,-5],[31,23],[48,-3],[71,-35],[57,19],[42,77],[48,15],[24,-31],[72,7],[26,-60],[-52,-200],[11,-109],[48,-117],[-19,-16],[6,-110],[26,-27],[-36,-65],[-46,-18],[-15,38],[-66,20],[-8,-33],[-34,-27],[-32,-5],[-22,-39],[32,-60],[45,-30],[36,8],[40,36],[35,-6],[83,-76],[43,-1],[46,-27],[-59,-72],[-2,-26],[37,-42],[28,-50],[34,-18],[33,-43],[66,7],[2,-23],[39,-21],[20,-59],[-40,-44],[-83,3],[-58,-23],[-74,18],[-73,39],[-48,-23],[-40,15],[-31,-17],[-35,30],[-17,-20],[-60,27],[22,-50],[-53,-31],[-91,9],[-17,-41],[-49,8],[-34,35],[4,32],[26,24],[-28,46],[-23,11],[-46,-14],[15,-44],[-33,-10],[-10,41],[-37,-6],[-1,-50],[-27,-4],[3,51],[-21,74],[-29,22],[-62,-8],[-75,55],[-45,-41],[-8,-42],[13,-27],[-15,-46],[-53,-58],[-13,-36],[29,-42],[-19,-28],[38,-157],[-45,-3],[-17,-17],[-108,66],[-25,31],[-2,38],[-28,11],[-44,52],[-37,3],[-43,83],[-90,105],[-76,39],[-58,10],[-54,44],[-89,4],[-56,29],[-50,10],[-93,60],[-45,4],[-36,-37],[-15,41],[-54,20],[-45,-27],[-63,15],[-31,-13],[-65,-72],[-62,-89],[-15,-40],[-46,-51],[-6,-35],[-122,-14],[-111,41],[-47,-35],[-75,5],[-44,-45],[-5,-38],[-107,45],[-94,31],[-91,1],[-58,-25],[-50,21],[-35,-10],[-14,-27],[-67,-9],[-15,-41],[-30,-10],[-27,-36],[-16,-86],[12,-34],[-33,-53],[5,-26],[-37,-77],[-29,18],[-51,-14],[-17,-66],[-27,-14],[-28,20],[-18,-41],[-24,14],[-45,-14],[-7,-90],[-54,18],[-17,-42],[-9,-76],[-29,10],[-24,-23],[16,-100],[-50,-2],[-54,42],[-12,46],[-26,8],[-4,62],[58,19],[16,24],[-9,44],[30,17],[36,62],[-4,52],[64,4],[12,51],[22,9],[12,64],[40,50],[-11,76],[-36,32],[-33,-8],[-25,-45],[-21,-2],[-29,-37],[1,-39],[-44,-21],[-103,33],[-16,38],[-58,-11],[-1,-44],[14,-70],[-16,-39],[-28,-2],[-27,-88],[-36,-45],[4,-40],[-35,-22],[-54,-3],[-25,-29],[-32,13],[-16,-41],[-48,49],[14,117],[-19,128],[-25,43],[84,112],[0,48],[-44,20],[-43,-86],[-22,-21],[34,-29],[-60,-31],[-26,-51],[-10,-126],[13,-23],[-22,-70],[16,-24],[-53,-18],[-7,-31],[-44,-14],[-54,-39],[-15,-35],[-31,-28],[-62,-145],[-19,-19],[-53,-157],[-32,-71],[-34,-54],[10,-40],[-15,-35],[-33,-25],[-22,-58],[-28,-24],[-5,-46],[-21,-17],[-40,-86],[1,-27],[-36,-39],[-117,-195],[-35,-23],[-53,-79],[-16,-85],[27,-46]],[[135248,139425],[-58,28],[-44,5],[-34,83],[-34,25],[-41,54],[-10,48],[23,26],[3,56],[19,15],[8,61],[27,75],[58,97],[-15,71],[-52,47],[-37,-29],[-52,-66],[-54,10],[-62,-3],[-8,-17],[-69,42],[37,59],[15,50],[-18,58],[43,50],[29,20],[30,83],[-14,31],[-2,59],[-44,49],[6,22],[47,-15],[33,93],[-52,86],[-21,19],[2,37],[61,24],[-9,33],[-32,31],[-4,25],[-64,37],[-10,42],[-26,23],[-73,13],[-26,-9],[-59,31],[-10,60],[-68,-14],[-16,-20],[-64,11],[-22,42],[-31,13],[-6,33],[83,95],[9,25],[-45,21],[-8,38],[18,37],[-46,14],[-32,37],[-83,24],[-43,-1],[-19,36],[-68,-27],[-42,21],[-88,74],[-54,-38],[-62,56],[-57,-10],[-18,56],[-47,-13],[-36,5],[-35,-25],[-22,26],[-18,-67],[-69,0],[-24,61],[-90,32],[-62,-25],[-83,32],[-18,23],[-356,230],[-50,14],[-547,168],[-625,190],[-298,92],[2,52],[-22,29],[-35,88],[-8,59],[-22,13],[-57,144],[-72,5],[-27,35],[-45,-6],[5,54],[-31,33],[-27,-30],[-64,-19],[-37,79]],[[160890,130522],[33,-24],[26,11],[10,33],[92,-1],[63,12],[53,53],[22,41],[16,69],[89,-211],[-6,-54],[-16,-21],[-59,-20],[-56,14],[-97,-4],[-76,36],[-76,45],[-18,21]],[[160043,130926],[34,45],[80,59],[-7,-38],[-49,-68],[-33,-26],[-25,28]],[[159996,130665],[39,20],[43,-18],[21,13],[43,69],[12,35],[29,26],[17,58],[43,20],[18,43],[26,4],[57,46],[17,-61],[42,30],[15,-37],[-3,-52],[11,-35],[60,-37],[24,-38],[29,29],[-2,29],[33,28],[6,-56],[-3,-101],[-22,-14],[-171,6],[-166,-13],[-62,-19],[-46,-41],[-17,-42],[-39,31],[-54,77]],[[159899,130854],[60,34],[23,-22],[-34,-26],[-49,14]],[[156412,133935],[674,-22],[518,-22]],[[157604,133891],[254,-13],[450,-19],[348,-14],[667,-24],[39,67],[33,39],[32,10],[63,-21],[-7,124],[30,42],[49,30],[101,-36],[30,100],[19,24],[96,23],[52,36],[66,-4],[56,-51],[46,27]],[[160028,134231],[-1,-51],[14,-83],[5,-78],[18,-81],[31,-84],[-6,-47],[46,-23],[25,-36],[54,-24],[68,79],[23,8],[13,-38],[-3,-37],[38,-21],[-12,-39],[-40,-43],[-5,-38],[-66,-16],[-44,-49],[-44,5],[-55,-36],[-25,12],[-43,-30],[-66,-8],[6,-69],[27,-3],[-2,-55],[-48,-35],[-22,-42],[-41,13],[-19,-20],[-4,-42],[26,-38],[-24,-13],[-11,93],[-47,-62],[-22,-57],[27,-51],[-3,-37],[-42,-34],[-19,-57],[-25,-5],[-13,-59],[39,0],[-8,-39],[43,-48],[54,-27],[40,12],[16,31],[49,-62],[1,51],[18,41],[29,-40],[30,-2],[62,-32],[39,-8],[3,-36],[44,-56],[26,-16],[-8,-45],[49,-122],[67,-103],[-11,-29],[4,-71],[-36,-21],[2,-58],[-42,3],[-4,-62],[25,-17],[42,-64],[67,-27],[36,22],[59,-56],[-3,-45],[20,-41],[10,-72],[-24,-64],[1,-36],[35,-58],[68,-69],[87,-40],[55,-13],[125,-11],[46,-47],[64,68],[110,40],[29,-3],[85,32],[59,34],[31,50],[-8,159],[13,24],[-35,22],[16,23],[-47,56],[-25,-15],[-23,46],[0,99],[-9,62],[-18,48],[-40,44],[-48,25],[-47,-28],[-32,-46],[-15,36],[-39,41],[29,35],[54,9],[108,-34],[85,-64],[37,-53],[70,-159],[26,-89],[34,-155],[25,-243],[0,-77],[-8,-70],[-15,-32],[-34,-124],[-37,-20],[32,99],[-38,50],[-49,2],[-89,-12],[-76,-29],[-80,-6],[-75,-45],[-32,-41],[-10,51],[-24,6],[-38,-23],[-32,25],[-33,-12],[-14,-35],[-45,-23],[-55,-2],[-35,-79],[-47,-46],[-53,-12],[-26,11],[-129,-31],[-34,-55],[-17,43],[21,39],[0,36],[18,42],[-15,52],[18,45],[-20,33],[34,27],[-34,39],[11,63],[30,11],[-1,34],[-56,7],[-80,46],[-15,-30],[21,-50],[-51,-50],[-41,-69],[-48,18],[-2,-78],[-66,-8],[18,-59],[-20,-30],[-24,103],[-85,-34],[4,-45],[-15,-67],[5,-38],[-20,-45],[-48,-5],[-5,-44],[-29,7],[-55,-33],[-44,26],[-74,-26]],[[159580,131017],[-16,221],[-14,30],[12,129],[-93,35]],[[159469,131432],[-43,83]],[[159426,131515],[-54,97],[-98,66],[-29,100],[20,92],[-7,84],[-64,-12],[1,293],[-175,-3],[-41,-6],[-352,-12],[-50,-4]],[[158577,132210],[-2,37],[-388,8],[-107,7],[-579,10],[-67,-10],[-181,15],[-83,-15],[-22,-64],[-74,-12],[5,91],[-275,5],[-340,14],[-300,14],[-80,-3]],[[156084,132307],[-14,1],[-17,85],[186,802],[173,740]],[[91930,141531],[-39,154],[-22,34],[-32,10],[-5,27],[34,18],[14,57],[21,28],[2,44],[17,15],[-28,57],[-31,34],[10,61],[-21,83],[-31,35],[10,38],[-53,52],[-5,50],[-47,22],[-11,46],[24,34],[18,90],[-8,17],[1,642],[-1,815],[0,492],[0,511],[-4,844],[2,669],[9,575],[0,301],[5,877],[-1,290]],[[91758,148553],[727,2],[726,2]],[[93211,148557],[0,-489],[0,-725],[0,-515],[0,-665],[28,-9],[69,-132],[27,-13],[68,-125],[26,-33],[29,15],[54,-81],[-3,-69],[33,-77],[31,13],[34,-36],[-5,-30],[78,-58],[13,-24],[-20,-94],[9,-29],[53,-43],[9,-66],[-98,-100],[4,-25],[60,-44],[37,-89],[38,-17],[39,8],[-9,-50],[-54,-16],[-22,9],[-83,-36],[-17,-41],[56,4],[95,-60],[21,-53],[35,12],[61,-35],[4,-27],[39,-20],[30,-112],[91,-29],[14,-20],[46,4],[21,-37],[40,8],[38,-19],[53,-8],[10,-54],[26,-18],[11,-36],[-14,-39],[21,-23],[36,-4],[29,-73],[31,-4],[53,-46],[20,-52],[41,-12],[20,-77],[42,-50],[22,-4],[24,-47],[6,-72],[25,-32],[73,-22],[59,-97],[53,-27],[-17,-50],[8,-48],[-25,-37],[29,-14],[12,-65],[49,-42],[32,12],[53,-73],[32,-2],[64,-56],[-8,-55],[-26,-53],[52,-35],[19,34],[43,13],[16,38],[52,13],[59,-64],[2,-47],[-27,-29],[9,-46],[21,-4],[11,-44],[45,-14],[20,24],[34,3],[118,-30],[26,41],[37,27],[98,18],[37,-18],[18,-31],[-3,-85],[-31,-50],[19,-40],[-24,-47],[-7,-105],[-71,-13],[-2,-54],[32,-43],[11,-42],[-19,-35],[0,-38],[-55,-56],[17,-52],[-5,-70],[-27,-68],[8,-53],[-64,-41],[6,-44],[21,-15],[13,-88],[-4,-68],[-44,-31],[-19,16],[-40,-3],[-17,-47],[10,-50],[67,-27],[22,-36],[-14,-84],[-35,-22],[-21,-48],[40,-4],[10,-40],[-21,-22],[21,-27],[92,-34],[13,-46],[-42,-51],[27,-58],[26,-25],[10,-43],[-23,-24],[-8,-46],[-43,24],[-46,-26],[-58,-14],[-8,-43],[-77,-126],[33,-34],[-3,-37],[29,-36],[33,-13],[13,-44],[-6,-78],[-35,-48],[-25,3],[-35,-42],[37,-58],[-29,-55],[9,-63],[37,32],[43,-36],[49,12],[2,-36],[49,-37],[18,-46],[77,-44],[32,-73],[15,-1],[82,49],[27,39],[20,66],[-2,48],[31,1],[35,-24],[34,35],[66,15],[21,63],[35,6],[23,24],[1,33],[22,39],[76,83],[-18,29],[13,40],[37,24],[33,-1],[21,-29],[27,13],[29,-89],[36,-33],[-13,-51],[27,-10],[36,14],[27,-26],[52,-22],[16,-49],[-30,-50],[-25,-94],[46,6],[45,-20],[18,-79],[-34,-58],[13,-115],[37,-9],[22,-24],[7,-86],[-12,-64],[41,-64],[43,-51],[-17,-37],[51,-51],[31,-67],[67,-67],[-4,-41],[26,-82],[40,-43],[54,9],[11,-18],[-25,-39],[53,-42],[2,-26],[49,-10],[12,-232],[-31,-28],[-49,-15],[10,-40],[29,-35],[-9,-33],[25,-20],[9,-50],[39,-26],[10,-39],[55,0],[42,-42],[24,-81],[58,34],[31,29],[49,25],[13,-21],[42,-11],[44,-51],[70,-33],[-8,-30],[53,-72],[0,-54],[30,-54],[20,-10],[3,-69],[21,-29],[-8,-43],[-26,-11],[-19,-34],[30,-48],[43,-32],[-14,-39],[32,-24],[15,-51],[-16,-47],[29,-58],[3,-42],[79,-84],[72,-43],[31,-46],[54,-50],[47,43],[-13,72],[-26,38],[17,39],[45,51],[26,53],[60,15],[30,31],[45,-15],[37,-27],[91,10],[25,-23],[53,8],[95,-31],[16,19],[85,-61],[45,-12],[24,41],[20,65],[-4,83],[7,16],[52,8],[9,34],[40,35],[43,6],[41,-16],[11,-49],[56,-24],[28,20],[41,-4],[52,-45],[48,38],[54,-19],[0,42],[82,-26],[42,48],[73,3],[43,14],[41,-87],[31,-40],[25,34],[28,0],[58,40],[45,6],[17,38],[106,-15],[29,-10],[39,32],[93,-34],[12,-26],[53,12],[-3,32],[-38,15],[-26,101],[33,50],[11,41],[34,53],[-26,79],[35,30],[51,17],[26,-24],[24,31],[8,67],[38,-24],[17,-35],[26,14],[61,-73],[43,-87],[69,-100],[-29,-17],[18,-88],[69,-18],[1,-34],[44,-47],[30,-81],[43,-29],[72,-22]],[[100592,137985],[5,-10],[-1,-282],[1,-779],[3,-47],[1,-431],[2,-736],[1,-702],[1,-527],[0,-590],[-5,-509],[0,-524],[1,-653]],[[100601,132195],[-399,-1],[-239,-3],[-403,-1],[-595,-5],[-28,10],[-284,-1],[-606,-3],[-470,-6],[-639,-11],[-353,-7],[-202,-2],[-206,12]],[[96177,132177],[-355,1],[-275,3],[-193,-2],[-307,17],[-103,-1],[-230,-13],[-417,0],[-461,3],[-361,-1],[-172,4],[-77,-2],[-434,-1],[-53,-2],[-381,3],[-506,3],[-84,2]],[[91768,132191],[0,389],[-1,496],[0,576],[0,427],[0,509],[0,678],[0,539],[0,613],[-9,51],[17,68],[57,29],[10,55],[-6,48],[25,5],[-7,40],[12,68],[-25,26],[57,23],[-9,43],[14,42],[-13,34],[-43,31],[-7,85],[50,21],[22,31],[51,123],[-13,45],[-34,29],[-68,13],[-6,107],[-83,13],[-36,-41],[-49,63],[-22,51],[-25,-5],[-25,-43],[-47,-1],[-69,69],[-2,44],[22,14],[20,55],[-10,23],[-57,64],[-11,53],[23,21],[18,50],[0,49],[-17,73],[47,48],[19,54],[30,5],[25,48],[-2,54],[31,36],[6,72],[33,61],[4,56],[22,21],[2,43],[26,34],[-1,48],[27,42],[45,27],[22,-1],[47,44],[48,20],[1,35],[41,84],[15,49],[45,35],[19,40],[25,124],[-22,41],[-9,61],[18,40],[-5,49],[75,88],[20,39],[2,44],[41,43],[13,45],[21,16],[11,73],[21,74],[9,86],[18,56],[25,30],[1,105],[81,179],[32,34],[14,71],[49,47],[-3,101],[19,19],[30,75],[60,71],[29,61],[0,30],[-36,79],[-60,75],[-10,24],[-1,99],[-85,103],[-57,16],[-49,-7],[-22,27],[-27,63],[-56,13],[-40,-23],[-29,21],[-19,77],[-27,45],[-44,34],[-34,58],[-14,88],[-22,13],[-3,38],[-34,44]],[[146081,93291],[13,83],[49,26],[-36,-118],[-26,9]],[[145210,91994],[23,14],[35,54],[21,-51],[-44,1],[-35,-18]],[[144802,91766],[70,22],[39,49],[21,13],[16,-22],[46,24],[45,46],[38,9],[-80,-80],[-46,-38],[-16,24],[-48,-29],[-23,-53],[-38,-8],[-24,43]],[[143781,91429],[73,54],[20,-14],[45,62],[-9,26],[-55,35],[17,50],[78,55],[43,51],[129,87],[20,46],[52,23],[56,62],[81,48],[106,-80],[9,-23],[-1,-62],[36,-83],[33,-10],[16,-89],[17,-22],[-73,-46],[-71,-34],[-17,50],[-60,26],[-52,-14],[-35,16],[-8,-67],[-71,-38],[-7,-13],[-60,-42],[-59,-26],[-31,-4],[-29,-34],[-74,-4],[-75,-24],[-39,-3],[-5,41]],[[143178,96198],[14,0],[39,-186],[15,-49],[42,-58],[25,3],[65,-56],[38,35],[45,-40],[-45,-64],[-52,-1],[-42,26],[-33,45],[-36,29],[-20,50],[-28,184],[-23,37],[-4,45]],[[143121,96387],[10,47],[32,-64],[-7,-33],[16,-42],[-12,-15],[-39,107]],[[142390,101336],[22,5],[28,-29],[-20,-40],[-30,64]],[[139558,103639],[18,-10],[56,19],[31,51],[30,-13],[-60,-41],[-53,-22],[-22,16]],[[138934,103265],[41,-39],[62,-30],[18,16],[49,12],[49,33],[34,52],[32,9],[63,56],[86,26],[12,44],[26,11],[18,-18],[-50,-42],[-81,-40],[-45,-29],[-107,-89],[-130,-63],[-75,80],[-2,11]],[[138749,103390],[30,7],[67,-7],[62,21],[30,-9],[20,-23],[-24,-98],[-35,-7],[-30,10],[-68,74],[-52,32]],[[139073,106478],[-2,-63],[32,-19],[-2,-66],[69,-123],[3,-71],[10,-27],[-11,-51],[13,-72],[13,-28],[6,-57],[27,-7],[46,-91],[481,-35],[96,-9],[146,-7],[470,-36],[261,-20],[397,-34],[165,-13],[544,-52],[376,-34],[455,-42],[523,-53],[-29,-28],[-8,-44],[14,-47],[43,-76],[-9,-57],[5,-38],[-9,-46],[9,-55],[51,-99],[96,22],[15,-17],[69,5],[18,52],[-8,27],[6,88],[28,95],[5,88],[-6,26],[20,92],[-10,71],[-22,29],[-2,37],[-31,79],[-2,48],[21,71],[-11,54],[6,42],[42,36],[-19,47],[24,23],[43,-39],[24,47],[4,58],[15,15],[57,-28],[14,33],[30,-68],[19,-19],[43,-13],[48,6],[34,-39],[30,7],[64,-73],[38,9],[32,-22],[31,8],[42,-42],[40,6],[33,-11],[20,-25],[43,29],[62,5],[20,-27],[47,-12]],[[144330,105798],[27,-21],[-5,-70],[-19,-162],[-2,-72],[11,-104],[-10,-64],[14,-25],[25,7],[22,-204],[12,-16],[-5,-98],[9,-117],[14,-112],[38,-221],[45,-304],[24,-147],[29,-127],[17,-26],[16,-102],[9,-127],[10,-68],[62,-257],[71,-261],[59,-189],[114,-390],[119,-374],[32,-86],[52,-94],[46,-138],[135,-319],[114,-277],[92,-185],[45,-101],[63,-115],[19,-128],[53,-166],[-5,-23],[-52,-32],[-37,-66],[-19,-93],[-6,-68],[-1,-99],[5,-103],[13,-132],[33,-197],[36,-147],[57,-183],[92,-254],[0,-5],[94,-280],[28,-129],[30,-160],[19,-44],[29,-168],[32,-123],[-1,-15],[43,-169],[41,-124],[60,-215],[47,-132],[5,-70],[36,-143],[25,-69],[33,-125],[71,-373],[22,-147],[-9,-70],[6,-121],[-5,-160],[1,-102],[-9,-134],[-12,-83],[-17,-179],[-13,-226],[-7,-42],[-7,-140],[-11,-41],[-32,-353],[-12,-242],[-7,-207],[5,-122],[-4,-76],[-14,-115],[-21,-53],[-16,-100],[4,-63],[-37,35],[16,34],[-13,20],[32,31],[-31,50],[-49,3],[-43,-43],[-17,-33],[6,-35],[-33,-92],[-7,-46],[-21,-45],[-17,4],[-16,-41],[9,-76],[-17,-83],[-26,-18],[-12,-66],[0,-71],[21,-75],[-3,-96],[22,-20],[4,-35],[-24,-38],[-24,-59],[-41,-20],[-10,-49],[-31,-59],[-2,-90],[-21,-7],[-10,-55],[6,-31],[22,-15],[44,33],[28,3],[27,77],[3,53],[-17,31],[79,91],[35,86],[20,-27],[-24,-48],[-26,-84],[-42,-106],[-28,-53],[-13,-48],[-25,-43],[3,-56],[-17,-8],[-11,-46],[-33,-51],[-36,-9],[-28,-66],[-28,-14],[-47,-74],[6,-20],[-40,-61],[-22,-13],[-30,-63],[-26,-39],[-42,-17],[5,48],[36,-12],[17,20],[22,99],[41,2],[28,76],[15,13],[79,129],[-13,34],[-28,23],[-1,65],[28,58],[-33,63],[-21,3],[-35,-23],[-18,39],[-21,-13],[-78,-9],[-2,-22],[-29,-26],[-8,31],[-45,-30],[-19,5],[-18,-37],[-25,-6],[-44,-52],[-17,18],[-47,-3],[-67,11],[-15,14],[-25,-20],[-10,28],[-51,8],[-47,-32],[-1,-53],[-23,4],[-40,-16],[-42,-1],[-41,-23],[-35,12],[-41,-2],[-49,-29],[-41,69],[-43,27],[-2,61],[-20,58],[-24,33],[7,112],[23,128],[17,38],[28,-5],[-3,94],[-40,19],[5,40],[-30,109],[-1,43],[-31,27],[-31,60],[10,64],[-9,34],[-36,48],[-14,55],[2,33],[-44,18],[-3,56],[-24,37],[-1,78],[-59,54],[-37,42],[-7,31],[-32,17],[1,62],[-50,20],[-39,35],[-24,-3],[-9,31],[-43,46],[-44,24],[-17,36],[-57,21],[-48,62],[-47,-7],[-13,19],[-39,-36],[4,-36],[-12,-37],[-18,5],[-42,129],[-17,4],[-3,51],[-35,61],[16,30],[-7,50],[-19,34],[-16,63],[-42,136],[-11,142],[-8,49],[-9,149],[-19,135],[-17,77],[-36,120],[-42,57],[-21,56],[-66,59],[-19,56],[-65,26],[5,78],[-49,28],[-22,36],[-17,-30],[1,-51],[18,-46],[-43,-10],[-31,4],[9,45],[-32,104],[-3,64],[-11,65],[-23,57],[7,22],[-57,88],[11,56],[23,4],[48,-18],[21,-42],[19,-84],[24,18],[-13,31],[9,83],[27,95],[8,108],[9,31],[-4,163],[-55,45],[-5,51],[17,34],[29,0],[20,28],[-18,35],[-38,-1],[-36,21],[-34,-94],[-13,-8],[-38,52],[-11,-48],[41,-157],[12,-153],[-40,-44],[-36,7],[-13,-20],[-37,16],[-28,-19],[-15,-82],[-14,133],[-20,45],[0,28],[-64,144],[-24,40],[-86,211],[-13,46],[-54,131],[-46,188],[-34,92],[-32,112],[-35,76],[-27,21],[-8,67],[-31,70],[-50,79],[-55,118],[-43,51],[-1,23],[-29,134],[36,-11],[17,53],[49,14],[14,61],[30,45],[0,33],[51,34],[17,37],[11,54],[65,157],[29,31],[27,13],[-3,51],[65,42],[-2,26],[49,87],[14,58],[-12,54],[-2,51],[-19,42],[-20,-2],[-24,25],[-25,-4],[2,69],[-43,-43],[4,-58],[12,-19],[-13,-54],[28,-48],[-5,-48],[-57,13],[-64,46],[2,35],[21,5],[-4,46],[15,45],[-4,68],[-30,80],[-43,28],[-26,2],[-56,63],[-3,23],[-40,-2],[-13,40],[-20,-13],[22,-51],[-26,-51],[-11,-55],[-32,-13],[3,-43],[52,-47],[61,-15],[8,-40],[32,-28],[27,-54],[14,-64],[-27,-87],[-23,-13],[-2,-63],[-10,-16],[7,-62],[-20,-54],[-47,4],[-26,-15],[-33,14],[-11,-31],[-4,-66],[24,-90],[-48,-32],[-13,98],[12,70],[1,54],[-13,55],[-21,35],[-14,49],[-30,58],[-56,73],[-27,75],[-8,74],[14,112],[16,72],[5,130],[28,-32],[-12,-23],[19,-72],[17,95],[19,212],[-1,71],[-35,113],[51,74],[19,48],[20,117],[16,32],[2,78],[23,47],[18,82],[-4,49],[18,50],[24,27],[10,34],[5,186],[22,22],[3,45],[-10,42],[12,18],[-21,47],[2,36],[-18,37],[-4,49],[33,46],[-30,55],[-23,8],[-36,59],[26,48],[9,97],[-32,25],[-37,59],[16,34],[-9,30],[8,45],[57,33],[1,47],[-18,32],[-36,100],[-27,19],[-30,69],[16,62],[-15,66],[-30,34],[-47,9],[0,68],[20,34],[-10,21],[6,49],[-14,37],[-30,-17],[-35,17],[-27,-7],[-68,24],[-34,-4],[-78,15],[-7,-40],[-26,-42],[-53,-22],[-17,54],[0,61],[-27,71],[-1,36],[18,54],[-21,43],[-27,6],[-63,49],[-29,1],[-10,53],[4,44],[-45,121],[2,26],[-23,60],[-33,30],[-46,-2],[-28,11],[-25,75],[-35,15],[-37,57],[-34,9],[-24,53],[-17,103],[11,99],[-10,88],[-12,31],[-32,32],[-18,-5],[-52,30],[-14,58],[-73,36],[-26,34],[-9,43],[-34,51],[11,21],[-7,63],[-47,55],[-29,102],[-23,20],[-40,63],[-70,45],[-27,40],[-63,44],[-59,15],[-24,35],[-118,85],[-51,71],[-35,19],[-23,43],[-38,28],[-57,-5],[-75,-37],[-16,12],[-48,-42],[-32,1],[7,42],[-29,16],[-14,-31],[-50,2],[-15,37],[-22,6],[-15,-27],[2,-57],[-40,-25],[-53,-47],[-27,-57],[-21,-10],[7,-48],[20,-44],[-69,31],[-35,2],[-35,-36],[56,-19],[34,2],[66,-42],[4,-44],[-16,-58],[-53,-12],[-63,22],[-26,23],[-16,37],[-27,-10],[-33,-35],[-27,16],[-37,-15],[-48,-44],[-52,-35],[-73,-77],[-72,-44],[-89,-84],[-92,-71],[-19,-5],[-66,-52],[-30,3],[23,71],[22,37],[-65,5],[-18,-52],[-28,-38],[-26,-12],[-19,-44],[-54,-27],[-86,22],[-73,-7],[-99,-38],[-46,-25],[-32,-28],[-53,15],[-61,-4],[-49,-35],[-20,25],[-33,89],[-16,64],[-23,133],[-6,68],[9,72],[17,-21],[-15,-47],[1,-66],[30,-141],[1,-28],[52,-118],[61,30],[11,91],[-2,65],[8,93],[-21,79],[-41,59],[-31,96],[-61,92],[-23,21],[-51,22],[-39,3],[-40,33],[-42,74],[-25,19],[-62,90],[-32,28],[-121,85],[-44,46],[-68,89],[-152,138],[-103,78],[-77,51],[-133,77],[-146,71],[-111,49],[-74,27],[-74,19],[-118,20],[-92,-2],[-21,10],[-155,23],[-167,-7],[-144,-24],[-173,-42],[-299,-88],[-75,-14],[-96,-11],[-43,26],[-21,-15],[-167,-59],[-134,-37]],[[135357,104795],[0,8],[97,38],[-10,19],[-64,-2],[-3,39],[19,16],[40,5],[20,31],[0,49],[19,31],[13,60],[39,9],[47,48],[1,38],[-65,24],[-31,54],[7,36],[-20,28],[-3,45],[16,52],[25,30],[29,102],[8,59],[-5,55],[-15,48],[-65,58],[-34,16],[-10,23],[-31,12],[-14,28],[-31,23],[-7,45],[-22,55],[-44,61],[-27,20],[-40,63],[-11,42],[19,46],[21,91],[27,94],[-14,77],[508,2],[26,-5],[143,8],[314,-5],[299,-1],[29,-6],[211,2],[64,-5],[222,3],[194,0],[179,-4],[330,2],[213,4],[371,4],[376,9],[356,-1]],[[110932,134531],[353,1],[289,-1],[316,0],[401,0],[503,-2],[451,-1],[598,0],[343,0],[202,-7],[130,-1],[583,4],[340,-1],[545,2],[235,2],[182,-1],[636,-1],[324,-1],[337,0],[408,1],[436,0],[593,1],[12,-48],[34,-71],[41,-46],[28,9],[115,-73],[25,-33],[68,-27],[32,-2],[57,-49],[72,-38],[34,7],[28,-44],[139,-133],[51,-2],[33,15],[41,0],[67,68],[24,43],[19,97],[45,21],[104,-42],[80,-6],[50,-11],[59,12],[64,25],[61,-25],[45,6],[40,19],[29,-19],[63,-9],[37,46],[60,-2],[25,-24],[28,2],[50,28],[25,-29],[61,0],[44,-22],[13,-86],[88,-32],[29,-55],[87,1],[70,-23],[63,-5],[31,-46],[-4,-47],[22,-3],[62,34],[69,-31],[25,-20],[55,-18],[6,-75],[56,-24],[53,11],[60,-32],[-29,-65],[-6,-40],[38,-71],[70,-60],[18,-90],[33,-21],[68,37],[48,-24],[35,-64],[38,-6],[45,24]],[[122170,133338],[73,-15],[15,-22],[7,-66],[-10,-33],[-36,-50],[5,-81],[-14,-41],[15,-50],[35,-27],[21,-35],[2,-44],[18,-36],[37,-40],[12,-69],[-49,-35],[13,-47],[0,-66],[42,-47],[14,-33],[45,-21],[18,-31],[-18,-85],[12,-67],[49,-10],[34,-80],[40,-1],[-6,-51],[12,-18],[40,8],[40,-20],[-20,-80],[2,-51],[-29,-32],[25,-70],[42,-40],[13,-80],[56,-40],[5,-34],[-17,-26],[-10,-57],[-30,-22],[3,-37],[34,-24],[6,-38],[-62,-17],[-5,-39],[31,-39],[7,-32],[-28,-55],[7,-63],[39,-32],[-16,-58],[3,-57],[56,-59],[26,1],[14,73],[40,-2],[10,-64],[-39,-60],[22,-33],[58,-21],[48,1],[18,-29],[-19,-51],[-5,-78],[9,-74],[-38,-36],[5,-22],[41,-41],[54,-7],[26,-55],[-17,-33],[-44,-5],[10,50],[-32,-6],[-2,-39],[22,-24],[-11,-30],[15,-48],[-20,-63],[-2,-36],[24,-26],[66,9],[35,-31],[-17,-23],[-28,7],[-15,-57],[24,-61],[5,-69],[-23,-44],[-2,-38],[26,-32],[-11,-70],[8,-28],[45,-35],[7,-24],[-17,-76],[5,-42],[33,-44],[3,-44],[-52,-46],[15,-68],[-9,-74],[10,-64],[-49,-39],[-28,-65],[8,-33],[35,-23],[25,-71],[29,-24],[50,-18],[27,-47],[1,-35],[28,-36],[-3,-38],[-18,-18]],[[123174,128884],[-12,-16],[25,-122],[88,5],[5,67],[33,13],[28,-57],[-14,-49],[-56,-28],[10,-84],[52,-64],[-5,-61],[26,-68],[2,-39],[29,-68],[-46,-43],[13,-39],[51,19],[43,-34],[42,-19],[-5,-48],[60,-50],[57,-16],[11,-34],[-19,-64],[9,-44],[59,-54],[8,-47],[48,-28],[8,-36],[-26,-46],[2,-40],[-18,-36],[12,-48],[45,-27],[28,11],[77,-52],[6,-22]],[[123850,127516],[-370,1],[-479,0],[-623,1],[-470,1],[-631,0],[-305,1],[-377,0],[-483,1],[-386,0],[-432,1],[-470,-1],[-679,0],[-345,0],[-605,-2],[-567,1],[-402,0],[-692,1],[-698,1],[-637,1],[-311,0]],[[113888,127523],[0,340],[1,444],[-1,466],[1,544],[-1,542],[-354,0],[-392,0],[-457,-1],[-313,1],[-620,-1],[-373,1],[-448,-2]],[[110931,129857],[0,364],[2,610],[-1,479],[0,614],[0,560],[0,876],[0,595],[0,576]],[[83455,147501],[12,28],[-11,52],[109,-82],[-31,-26],[-60,-26],[-19,54]],[[83430,144522],[31,1],[89,-89],[-20,-46],[-97,124],[-3,10]],[[83353,147928],[29,28],[51,-82],[74,-88],[12,-48],[-37,3],[-57,68],[-27,72],[-40,12],[-5,35]],[[83346,144365],[33,55],[37,0],[46,-36],[9,-35],[-52,-22],[-55,18],[-18,20]],[[83326,147585],[44,57],[21,-50],[38,-43],[-26,-30],[9,-27],[-59,-11],[0,56],[-27,48]],[[83324,144242],[27,50],[41,30],[33,-34],[-3,-76],[-28,4],[-26,-38],[-44,64]],[[83283,146750],[25,76],[31,45],[14,58],[72,118],[13,47],[0,62],[60,-2],[21,26],[37,-39],[7,-55],[-26,-33],[69,-36],[66,-75],[-6,-38],[-30,-26],[-41,-1],[-24,30],[-64,-2],[-11,-53],[-40,-15],[-9,-48],[-103,-28],[11,-44],[41,20],[96,1],[35,-38],[28,-56],[7,-53],[19,-26],[15,-72],[-21,-37],[49,-121],[3,-56],[28,-9],[12,41],[-9,31],[7,52],[-21,49],[51,-5],[63,-93],[66,-42],[40,-5],[11,-91],[22,-26],[5,-73],[-12,-37],[-47,-74],[-59,28],[-22,29],[-2,77],[-47,63],[-33,-7],[-30,-33],[-38,-13],[8,60],[-27,32],[-32,9],[-22,36],[2,71],[-28,39],[23,88],[-21,106],[-49,19],[-46,-23],[-14,48],[-37,44],[-76,51],[-10,29]],[[83192,147556],[30,38],[59,-60],[-2,-25],[-52,-49],[-29,54],[-6,42]],[[83023,147334],[20,93],[24,13],[-6,65],[43,18],[48,-38],[-22,-85],[33,-66],[33,107],[53,5],[12,-36],[-47,-52],[-4,-65],[23,-70],[-29,-22],[-23,26],[-22,-28],[-38,15],[26,31],[-63,16],[-32,33],[-27,-6],[-2,46]],[[82917,147597],[56,7],[57,-16],[33,2],[22,-27],[-26,-31],[-66,-31],[-22,44],[-54,52]],[[82898,147690],[30,59],[38,46],[32,21],[30,43],[37,27],[59,-2],[59,-30],[63,-49],[78,-39],[-19,-30],[-60,-47],[-30,-56],[-48,39],[-52,89],[2,58],[-19,22],[-37,-20],[17,-36],[-2,-39],[42,-37],[29,-60],[-33,-55],[-94,20],[-12,49],[-41,56],[-25,-63],[-40,-10],[-4,44]],[[82843,147855],[85,51],[7,-65],[-46,-10],[-46,24]],[[82809,148560],[82,0],[16,-42],[-25,-16],[-63,-13],[-10,71]],[[82643,147610],[35,62],[34,-13],[75,14],[7,-55],[39,-17],[57,-66],[29,-3],[31,-63],[38,2],[-4,-37],[-29,-13],[-36,9],[-5,-55],[20,-57],[67,-46],[-118,25],[-137,85],[-44,75],[2,42],[-22,33],[8,31],[-47,47]],[[82594,147819],[30,11],[48,-13],[51,-35],[-60,-20],[-45,24],[-24,33]],[[91930,141531],[-103,4],[-520,4],[-203,-2],[-358,5],[-412,2],[-191,-1],[-548,1],[-656,0],[-68,-2],[-32,-48],[-125,-86],[-49,-23],[-102,-11],[-91,28],[-97,-16],[-61,-27],[-127,-10],[-56,-26],[-54,6],[-70,39],[-42,-14],[-34,-32],[-69,-114],[-152,-27],[-44,5],[-155,-46],[-86,-8],[-154,-92],[-105,-28],[-43,-26],[-60,-84],[-105,-11],[-70,-24],[-110,-28],[-116,-11],[-35,13],[-79,90],[-47,19],[-64,-2],[-81,-70],[-147,-69],[-98,-35],[-59,-66],[-27,-7],[-45,38],[-58,-19],[-36,12],[-84,-2],[-30,-11],[-70,-89],[-76,-8],[-19,24],[-6,78],[-22,50],[-106,37],[-37,30],[-38,11],[-51,-4],[-43,-24],[-90,20],[-54,46],[-50,13],[-145,-51],[-55,1],[-58,-24],[-41,-2],[-112,30],[-83,-32],[-51,-53],[-9,-38],[-141,-90],[-60,-15],[-85,-60],[-58,2],[-63,-16],[-27,-32],[-70,-38],[-67,-10],[-55,11],[-31,50],[-41,15],[-86,-29],[-53,34],[-109,44],[-80,25],[-61,5],[-46,19],[-57,46],[-74,46],[-16,54],[21,126],[-14,108],[-38,69],[15,80],[0,55],[-39,105],[8,46],[-11,67],[-35,46],[-28,79],[-32,39],[-9,68],[-29,55],[-87,49],[-61,68],[-149,103],[-16,17],[-75,9],[-69,-38],[-99,-65],[-135,3],[-28,19],[-60,64],[5,111],[-29,48],[-48,45],[-32,5],[-68,-28]],[[82134,142148],[-97,2],[-83,16],[-14,13],[-2,55],[-30,20],[-73,-29],[-14,-40],[-53,22],[-35,-34],[-44,-22],[-39,-48],[-50,13],[-59,60],[-31,66],[-22,23],[-53,15],[-35,-37],[4,-55],[-54,-1],[3,48],[17,71],[10,140],[1,249],[-7,147],[-9,106],[-1,107],[26,-9],[2,-47],[39,-95],[0,-165],[-12,-36],[21,-187],[3,-89],[12,-16],[45,19],[34,-2],[6,73],[-23,-3],[-7,71],[-32,22],[-4,47],[35,15],[42,-23],[0,53],[69,61],[-1,85],[-39,46],[-9,44],[-45,58],[10,53],[45,32],[9,67],[17,1],[58,46],[53,14],[-6,31],[-64,29],[-18,46],[-32,-8],[-5,-47],[-51,-3],[-30,25],[-16,-27],[9,-50],[-38,7],[-144,94],[0,89],[-17,121],[-36,141],[32,37],[26,-25],[6,-79],[24,-15],[26,21],[9,49],[53,29],[42,42],[41,-1],[30,17],[98,34],[29,21],[-12,36],[-92,10],[-38,-7],[-18,30],[-48,-3],[-39,31],[19,24],[-31,61],[-59,26],[-83,1],[-28,-15],[-15,-33],[21,-51],[-1,-66],[15,-59],[-68,-43],[7,157],[-11,230],[-29,190],[-19,103],[-40,161],[-32,40],[-30,5],[-32,98],[-29,17],[-16,104],[-9,12],[-13,196],[-31,218],[-44,195],[-24,60],[-27,128],[-56,52],[-19,48],[-5,46],[-20,33],[-36,22],[-53,50],[-32,49],[-44,13],[-47,65],[-6,64],[-24,27],[-24,107],[-11,133],[-16,47],[12,54],[-5,37],[-59,144],[41,34],[19,66],[-22,63],[31,36],[-2,75],[30,28],[10,74],[-42,19],[-65,99],[22,20],[85,2],[29,-12],[43,-44],[29,16],[38,-13],[39,-42],[20,-3],[164,-112],[49,-38],[29,7],[33,-27],[59,-18],[5,-21],[44,-11],[40,18],[144,-82],[58,-24],[-8,-40],[52,-23],[32,-29],[114,-31],[128,-8],[30,-15],[130,2],[102,28],[99,-31],[9,-27],[67,-18],[59,38],[65,-45],[66,6],[56,-38],[74,-10],[30,9],[58,-10],[39,18],[73,-7],[32,21],[78,90],[78,-41],[39,-49],[28,-16],[41,-92],[87,35],[91,0],[-15,-69],[14,-19],[60,-27],[17,-19],[23,-100],[24,32],[11,87],[-37,21],[-38,47],[-10,73],[76,64],[73,20],[52,-61],[-44,-25],[-34,-44],[40,-63],[14,-47],[24,-24],[23,143],[51,28],[19,-68],[5,-74],[20,-25],[-1,-34],[-26,-21],[-48,36],[-14,-9],[16,-75],[62,-68],[-12,-34],[17,-59],[53,-68],[5,-50],[-24,-11],[-65,10],[19,-57],[-9,-29],[-45,-46],[-42,-17],[-3,-85],[-15,-51],[-33,-49],[-4,-50],[14,-32],[-55,-20],[-28,18],[8,51],[16,11],[6,74],[14,25],[18,108],[-32,85],[-23,-44],[15,-33],[-10,-44],[-47,-21],[2,-80],[-45,-34],[-10,-59],[17,-37],[-45,-59],[7,-45],[-46,-3],[-10,-30],[-46,-41],[-41,-68],[-45,-105],[-26,-25],[-13,-66],[-65,-90],[-58,-139],[-15,-125],[67,30],[52,-30],[59,3],[69,56],[84,34],[23,-1],[30,44],[4,38],[-78,-49],[-54,-16],[-52,-41],[-17,-41],[-91,32],[-29,-6],[-22,45],[55,125],[73,115],[3,40],[89,140],[9,33],[63,30],[8,53],[85,42],[43,1],[67,49],[50,24],[9,53],[-6,56],[14,45],[26,29],[11,46],[36,23],[10,48],[46,55],[44,33],[22,48],[51,2],[1,38],[-35,108],[70,-3],[35,-15],[19,-72],[-3,-37],[12,-80],[35,-38],[-28,-58],[45,-58],[-1,-37],[-24,-15],[-73,8],[-24,-49],[34,-49],[29,9],[12,-34],[-8,-55],[12,-26],[-12,-37],[29,-25],[-17,-36],[-4,-61],[-59,-83],[1,-74],[31,-1],[39,-32],[-55,-96],[1,-91],[-31,-84],[21,-43],[-52,-135],[38,-77],[-26,-47],[-30,-27],[-67,55],[-60,21],[-38,-5],[11,55],[27,79],[50,49],[15,47],[-83,-40],[-8,-23],[-61,-43],[2,-40],[-31,-65],[6,-74],[35,-37],[4,-56],[-44,-50],[-4,-63],[-29,-12],[-51,101],[-1,27],[-38,50],[24,74],[40,59],[-8,50],[8,93],[-26,-7],[-15,45],[-23,-3],[18,-80],[-33,-68],[-7,-38],[-31,-39],[0,-67],[43,-98],[-35,-92],[52,-22],[10,37],[41,-57],[10,-60],[96,-66],[64,10],[30,57],[47,35],[19,64],[30,15],[19,81],[19,26],[5,51],[46,77],[-1,94],[138,-128],[28,20],[18,42],[-38,45],[7,28],[137,51],[18,17],[-3,91],[-12,49],[-19,17],[-10,61],[-20,40],[10,52],[-55,84],[1,77],[-34,60],[50,46],[37,-27],[29,17],[-3,42],[-38,37],[-65,34],[-23,45],[30,41],[9,50],[26,16],[19,58],[-11,68],[-21,32],[-1,81],[62,79],[20,14],[15,53],[-6,26],[18,76],[16,29],[6,56],[85,24],[28,27],[-1,88],[18,27],[-82,65],[-8,35],[-62,42],[-32,39],[-36,87],[-4,70],[19,41],[-19,20],[3,55],[-35,38],[-34,-10],[-23,23],[-34,-17],[17,-46],[-54,-50],[4,-50],[50,-84],[28,-19],[65,-82],[33,-72],[-30,2],[-24,49],[-45,57],[-28,10],[-36,54],[-29,-22],[-37,31],[-2,33],[-35,83],[-2,44],[11,111],[46,15],[37,-3],[12,34],[89,-42],[27,60],[-4,64],[-21,43],[-56,35],[-29,32],[-64,18],[-40,40],[-38,117],[15,44],[-40,-1],[-15,-45],[-43,-28],[-61,-14],[-29,67],[31,41],[-20,75],[-51,14],[27,40],[19,-12],[83,41],[16,-23],[28,-106],[21,0],[-11,63],[30,15],[31,-77],[39,-9],[50,12],[-8,117],[-32,109],[33,-12],[41,14],[31,37],[12,42],[-35,54],[-23,7],[-67,91],[29,16],[-13,62],[-30,45],[42,59],[-66,79],[-41,6],[-66,-37],[-43,-64],[-15,-42],[-41,46],[41,86],[1,26],[-54,42],[-35,-2],[-7,70],[-16,48],[-37,21],[-56,55],[2,22],[48,39],[7,45],[-35,28],[-25,-25],[-46,17],[2,39],[87,109],[518,-1],[457,0],[513,-11],[525,6],[398,4],[217,-3],[388,0],[503,1],[554,-3],[184,2],[662,0],[438,0],[436,0],[492,0],[452,0],[475,1],[397,0],[711,-4],[138,0]],[[83643,144719],[14,43],[-16,35],[19,51],[1,81],[24,63],[22,17],[9,66],[36,-18],[-11,-39],[39,-48],[-14,-30],[19,-70],[4,-50],[48,-7],[31,-24],[-95,-54],[-23,-52],[-35,18],[20,56],[-30,11],[-13,-116],[-38,7],[-11,60]],[[103557,120501],[590,0],[586,0],[367,2],[426,0],[301,0],[460,0],[473,0],[11,-18],[373,2],[405,3],[209,-1],[303,3],[545,1],[266,1],[482,-2],[178,-5],[525,1],[30,2],[422,-2],[489,6],[404,4],[388,3],[467,3],[227,-1]],[[112484,119335],[-59,0],[1,-426],[1,-615],[-1,-508],[0,-503],[-1,-533],[0,-494],[-1,-536],[0,-661],[-2,-682],[1,-488],[0,-391],[-10,-774],[-9,-664],[-6,-395],[-6,-513],[-1,-742],[1,-813],[0,-781],[-387,-1],[-586,0],[-445,0],[-451,0],[-299,0],[-571,1],[-348,0],[-471,0],[-382,2],[-582,2],[-111,-1],[-617,-3],[-31,-47],[22,-45],[1,-84],[-32,-71],[24,-26],[-10,-41],[50,-62],[-5,-28],[42,-41],[44,-7],[28,-56]],[[107275,108308],[-5,1],[-323,0],[-369,-1],[-438,1],[-507,0],[-334,0],[-506,0],[1,-398],[-1,-655],[-737,0],[-120,-2],[-386,0]],[[103550,107254],[0,345],[1,366],[1,547],[1,511],[1,788],[0,516],[0,305],[0,465],[0,640],[0,373],[1,503],[-1,269],[1,316],[0,682],[0,515],[1,449],[0,890],[0,678],[-1,266],[1,845],[0,361],[0,555],[0,495],[1,464],[0,565],[0,538]],[[168109,76904],[47,-48],[7,22],[48,-13],[38,-32],[12,-35],[-24,-34],[-13,16],[-25,-46],[-46,77],[-44,93]],[[167770,76339],[-3,27],[50,1],[48,32],[99,32],[12,27],[58,9],[47,-10],[35,-19],[56,-18],[19,12],[25,-29],[-121,-54],[-21,28],[-26,-28],[-35,-15],[-23,-28],[-37,-18],[-31,2],[-9,22],[-36,-8],[-30,-25],[-53,9],[-24,51]],[[165267,76943],[65,31],[47,31],[46,47],[12,27],[-21,119],[47,75],[71,19],[57,-1],[46,-10],[48,-30],[50,-21],[18,5],[54,-17],[56,18],[59,-9],[56,12],[78,-43],[51,2],[41,34],[94,3],[48,-16],[24,14],[40,-19],[101,-31],[25,5],[13,32],[54,10],[36,-10],[65,3],[27,-23],[46,-9],[25,18],[41,-25],[32,-8],[46,5],[39,-35],[32,28],[3,21],[61,-17],[112,-53],[37,15],[7,26],[79,-33],[33,-6],[18,19],[37,-31],[69,-22],[26,-48],[19,7],[45,-26],[45,-49],[33,26],[6,-36],[59,-29],[56,14],[26,-6],[-21,-47],[10,-36],[-7,-94],[31,-72],[13,-75],[-16,-23],[-17,31],[-18,-29],[6,-45],[-39,9],[-46,-27],[-8,-33],[-36,25],[-27,-28],[-7,-32],[-36,-34],[-21,-67],[5,-13],[-26,-65],[-11,-69],[-23,12],[-23,-45],[5,-56],[-40,-34],[-17,4],[-25,-43],[-23,-1],[-16,-22],[-39,-15],[-46,4],[-18,-14],[-18,25],[-33,3],[-45,-64],[-33,31],[-26,-2],[-38,-37],[-27,-7],[-34,-38],[-57,18],[-47,-59],[-25,1],[-10,42],[-24,32],[-36,-1],[-39,81],[-34,-5],[-25,-24],[-47,-68],[-44,53],[-15,-1],[-28,46],[-28,28],[-47,-3],[-122,-66],[-42,16],[-30,34],[-41,-15],[-26,-22],[-79,58],[-37,-12],[-20,44],[-30,-23],[-3,-55],[-30,-15],[-21,-27],[-29,-11],[-20,16],[-15,-26],[-28,17],[-68,-22],[-39,-27],[-17,37],[-20,11],[-4,34],[-42,1],[-33,12],[-55,-5],[-25,-44],[-18,-13],[-40,3],[-44,16],[-17,28],[-24,-10],[-7,-32],[-33,11],[-3,82],[11,26],[49,29],[1,32],[-54,25],[17,32],[-2,98],[24,30],[-4,76],[13,18],[-3,57],[39,70],[-8,43],[-21,23],[-1,42],[-22,49],[-2,40],[-16,23],[-52,21],[-51,151]],[[164271,76285],[18,66],[29,15],[38,-15],[38,22],[19,-28],[7,-60],[-36,-55],[-42,-19],[-41,31],[-30,43]],[[110925,139199],[26,1],[0,502],[0,377],[-3,430],[-1,449],[-4,456]],[[110943,141414],[719,0],[406,0],[537,0],[546,0],[552,-1],[670,-1],[448,-1],[716,0],[455,-1],[675,-2],[621,-4],[384,-1],[587,-1],[451,-2],[551,-6],[338,-1],[604,-2],[439,0],[494,0],[62,2],[440,-2],[357,0]],[[121995,141391],[-10,-54],[-6,-162],[-8,-40],[-48,-73],[-19,-16],[-40,-96],[-30,-34],[-115,-78],[-15,-26],[-118,-99],[-25,-92],[136,-198],[50,-150],[58,-93],[18,-16],[92,-6],[106,-63],[36,-12],[48,-44],[53,-138],[2,-208],[0,-576],[1,-606],[-1,-568],[-1,-616],[-1,-511],[0,-675],[0,-442]],[[122158,135699],[-215,0],[19,-22],[5,-56],[-26,-23],[9,-54],[84,-91],[20,-1],[-1,-111],[-15,-25],[13,-56],[-22,-40],[-59,-15],[6,-49],[35,-24],[-27,-44],[24,-29],[53,-21],[50,15],[21,-44],[9,-54],[-2,-75],[34,-38],[6,-47],[-32,-44],[8,-46],[-52,-57],[-29,-2],[-1,-59],[28,-35],[-42,-75],[30,-43],[-14,-33],[-47,-48],[20,-80],[-33,-64],[0,-52],[-41,-31],[-39,-104],[-22,2],[-21,-36],[7,-26],[-16,-48],[22,-53],[-9,-19],[82,-55],[55,-84],[32,-38],[58,-174],[-4,-74],[6,-81],[45,2]],[[110932,134531],[-2,556],[-1,371],[0,645],[-1,404],[1,656],[-1,447],[0,737],[-1,565],[-2,287]],[[124566,102559],[2,50],[17,16],[44,-46],[-26,-47],[-35,2],[-2,25]],[[124337,103400],[37,-15],[17,-56],[-26,-40],[-13,72],[-15,39]],[[124124,102009],[38,70],[84,83],[17,5],[14,45],[43,35],[41,67],[25,5],[36,75],[44,40],[25,45],[54,23],[25,23],[33,-2],[35,29],[12,38],[58,-14],[-59,-60],[-41,-50],[-143,-129],[-203,-192],[-87,-91],[-28,-45],[-23,0]],[[121163,99092],[38,99],[52,54],[18,-10],[6,-55],[-23,-79],[-91,-9]],[[120793,96093],[85,8],[74,2],[5,-51],[31,-146],[41,-212],[37,-228],[20,-165],[27,-300],[-9,4],[-11,85],[-11,42],[4,79],[-27,227],[-22,137],[-20,62],[9,15],[-25,80],[-10,66],[-33,164],[-33,110],[-27,20],[-105,1]],[[120762,96817],[10,38],[-4,73],[11,98],[-10,33],[6,107],[-1,67],[6,91],[-12,92],[6,13],[4,105],[12,82],[-5,86],[18,8],[14,53],[-14,62],[22,23],[-16,51],[7,66],[38,103],[8,74],[34,109],[15,26],[-10,35],[57,171],[38,124],[28,0],[26,21],[9,31],[1,67],[19,26],[56,180],[30,16],[9,72],[-12,42],[105,32],[1,-39],[-78,-145],[-67,-155],[-67,-174],[-112,-344],[-65,-246],[-28,-138],[-28,-164],[-20,-176],[-9,-147],[-3,-216],[4,-116],[18,-221],[39,-264],[37,-203],[41,-190],[-15,-22],[-26,95],[-24,71],[-68,297],[-10,61],[-14,39],[3,53],[-14,67]],[[125064,112643],[56,-8],[-10,-45],[-21,-18],[23,-35],[35,-3],[60,-104],[49,-8],[5,41],[64,-21],[16,57],[24,-7],[36,22],[28,-14],[-16,-46],[35,-9],[19,24],[4,46],[21,-3],[18,30],[32,-13],[21,-54],[42,3],[55,20],[23,-16],[-7,-35],[42,-4],[0,-452],[1,-794]],[[126022,103416],[0,-27],[-170,10],[-72,-4],[-81,-25],[-58,-24],[-132,-76],[-161,-100],[-290,-174],[-109,-69],[-100,-69],[-73,-64],[-40,-50],[-41,-87],[-17,16],[-46,-26],[17,67],[-11,21],[29,39],[14,-17],[36,50],[26,15],[17,55],[39,41],[55,-4],[37,23],[13,50],[29,48],[19,7],[80,-45],[47,79],[8,27],[-75,-37],[-35,72],[-24,6],[-59,-34],[-82,-28],[-45,-22],[-22,1],[-57,-28],[-32,-6],[-25,14],[44,54],[51,133],[20,68],[7,98],[11,28],[-5,72],[-15,71],[-24,28],[-21,-18],[-32,52],[-89,-52],[-53,-87],[-32,-117],[-53,-37],[-21,4],[-29,95],[-84,26],[-2,-29],[27,-46],[-28,-29],[-20,-75],[47,-73],[-42,-76],[-5,-67],[30,-47],[27,-20],[95,-35],[-24,-39],[-35,-29],[24,-28],[64,-51],[8,-109],[30,-46],[-37,-26],[-11,-51],[9,-21],[-7,-48],[-35,-54],[-19,6],[-56,-10],[-50,-89],[-30,-32],[-10,-37],[-57,-43],[-44,-46],[-17,50],[-65,-2],[11,-36],[-8,-65],[-18,-71],[10,-44],[15,-11],[39,-63],[-98,-107],[-91,-108],[-64,-97],[-67,-67],[-64,-90],[-121,-57],[-31,-22],[-216,-176],[-205,-174],[-92,-73],[-83,-57],[-145,-88],[-140,-90],[-181,-133],[-96,-84],[-73,-89],[-33,-12],[-71,-87],[1,-15],[-34,-76],[-44,-59],[-114,-78],[-60,-47],[-106,-96],[-90,-93],[-87,-98],[-90,-110],[-57,-74],[-112,-166],[-51,-83],[-67,-122],[-27,-56],[-31,-94],[-13,18],[18,65],[-3,38],[18,50],[41,37],[4,26],[27,55],[0,49],[24,78],[51,90],[12,75],[56,66],[20,40],[45,-58],[49,40],[-17,93],[52,56],[62,-1],[69,30],[-7,32],[42,21],[28,51],[108,129],[51,9],[33,41],[85,23],[40,24],[10,48],[-28,39],[8,28],[39,28],[1,29],[-48,5],[-87,-83],[-57,-33],[-52,-43],[-59,-81],[-46,4],[-13,-19],[-28,11],[-5,32],[-26,48],[9,75],[-11,56],[-61,11],[-16,74],[-37,34],[-24,61],[-41,-37],[25,-24],[25,6],[34,-69],[9,-37],[-32,-25],[-48,57],[-28,15],[-28,-32],[-1,-25],[47,-70],[39,-32],[14,-99],[-3,-24],[-26,-52],[16,-34],[21,-75],[-1,-33],[-41,-27],[-18,-44],[-30,-45],[-26,-17],[-38,-57],[-38,-25],[-25,-32],[-43,-1],[23,60],[31,118],[-24,56],[41,95],[-57,-45],[0,-22],[-26,-36],[33,-55],[-5,-24],[-30,-38],[-20,-105],[-35,23],[-25,33],[12,126],[-21,-32],[-67,-34],[-104,-78],[-90,-102],[-24,-47],[90,-68],[12,-36],[22,-14],[58,119],[20,3],[47,32],[9,55],[35,-7],[-18,-88],[17,-102],[-27,-10],[-27,-74],[-10,-73],[-27,14],[-68,-160],[-43,-79],[-41,-106],[-47,2],[1,33],[-21,28],[-21,60],[-36,13],[-85,-19],[-9,24],[-35,-18],[-61,1],[-20,-13],[-58,2],[-11,-20],[-28,14],[-22,29],[-30,-24],[3,-47],[40,-20],[10,-36],[27,-9],[40,21],[28,-24],[10,26],[36,16],[10,-18],[-19,-43],[-2,-73],[26,-78],[47,-59],[40,-27],[53,-19],[36,-30],[-17,-38],[-47,-162],[7,-31],[-40,-56],[-34,-131],[-9,-73],[-24,-90],[-3,-76],[-46,-158],[-21,-50],[-53,-19],[-48,-36],[-37,-54],[-36,8],[22,62],[30,14],[-8,27],[31,42],[-9,28],[13,46],[-28,0],[-44,-53],[-9,-22],[-74,-72],[-35,-52],[-41,27],[3,61],[-27,0],[-24,49],[11,28],[-29,44],[-43,22],[-4,-21],[21,-43],[8,-58],[24,-50],[31,-17],[-9,-38],[-58,-32],[-14,-29],[92,32],[24,-80],[51,2],[59,-26],[40,-6],[44,36],[91,45],[24,-14],[-29,-220],[11,-44],[-14,-369],[-19,-244],[65,-11],[1,-16],[-62,7],[-9,-63],[29,-53],[-36,-1],[-20,-41],[14,-154],[6,-109],[29,-142],[-1,-56],[18,-46],[19,-127],[21,-84],[-10,-43],[48,-1],[124,-431],[23,-37],[-26,-46],[-15,-74],[-11,-12],[32,-74],[-12,-50],[6,-55],[20,-44],[-8,-56],[32,-43],[33,-14],[57,-2],[15,-30],[3,-47],[46,41],[20,-9],[-3,-50],[9,-200],[-39,27],[-21,-24],[-55,11],[-32,-26],[-44,10],[-1,-40],[-40,1],[-30,-27],[-35,16],[-26,-67],[-1,-40],[11,-31],[-16,-32],[-4,-42],[-81,5],[-23,13],[-2,45],[-20,40],[-58,-9],[-33,13],[-20,62],[-39,46],[-34,13],[1,54],[-30,-8],[-9,45],[-55,70],[0,49],[-32,-20],[-12,17],[-40,11],[-111,-4],[-30,25],[-4,45],[-73,-17],[-55,34],[-10,-15],[-50,-10],[-33,14],[-25,-24],[-51,31],[-31,-12],[-25,-43],[-45,24],[-10,38],[-21,-20],[-22,19],[-46,-13],[-12,-29],[-46,60],[-24,-51],[-42,54],[-41,-10],[-29,49],[-4,49],[-31,15],[-42,-6],[-27,78],[-39,18],[-28,-6],[-50,66],[-36,34],[3,47],[-33,15],[-56,-37],[-1,29],[-31,-2],[-37,31],[-26,-18],[-22,19],[-12,53],[-37,-12],[-61,-39],[-37,22],[-7,44],[-51,17],[0,37],[-56,102],[-18,-13],[-31,15],[-13,66],[-13,22],[-30,-1],[-21,-23],[-34,14],[-47,-28],[-10,44],[-78,13],[4,33],[-32,22],[-17,-19],[-37,-1],[-15,36],[-23,14],[-37,-39],[-29,-2],[-43,70],[29,118],[-20,55],[-34,58],[-57,26],[-1,56],[-16,141],[-33,84],[-14,88],[1,72],[-45,49],[-4,99],[-29,64],[-10,65],[-39,52],[-32,0],[-18,33],[11,63],[-23,38],[-44,14],[-31,36],[-8,46],[24,23],[-39,55],[-18,46],[-28,-12],[-17,27],[1,47],[-10,45],[26,37],[6,38],[-17,24],[17,50],[-11,64],[17,52],[-10,82],[-18,28],[6,62],[-32,44],[-26,-20],[-24,27],[13,36],[-10,39],[-51,6],[-12,27],[49,52],[-5,33],[23,62],[7,74],[-11,92],[23,63],[-26,50],[-46,-3],[9,106],[16,48],[-28,36],[-17,61],[-25,7],[-32,-16],[3,40],[-37,53],[-53,-36],[-40,22],[12,27],[-16,29],[-53,-12],[-25,26],[-24,61],[-29,46],[-19,48],[-31,-1],[-15,23],[-17,75],[-33,-26],[-11,15],[-12,58],[-40,16],[6,35],[-12,81],[-29,32],[-3,37],[14,31],[-9,44],[-25,14],[-31,84],[10,63],[-46,6],[-40,22],[-26,66],[-16,102],[-52,47],[-3,38],[-33,65],[-8,35],[-54,28],[-32,29],[-24,-2],[-25,28],[-55,40],[-17,91],[-34,-3],[-17,15],[-54,103],[8,76],[-37,67],[-5,27],[-36,65],[-12,41],[20,64],[-8,46],[-38,59],[45,39],[3,20],[-77,32],[-26,51],[-10,38],[21,55],[-5,27],[-46,25],[-23,27],[2,73],[-25,2],[-25,33],[-27,10],[-18,72],[4,117],[-43,87],[1,66],[-17,46],[-40,7],[2,46],[-26,34],[1,22],[-34,68],[-38,35],[-17,60],[7,104],[-26,144],[-1,61],[-16,60],[-26,36],[-26,10],[-41,46],[-3,26],[-25,13],[-28,41],[14,29],[-12,56],[-34,87],[-54,34],[-33,33],[-32,12],[-13,63],[-27,10],[-20,28],[-33,21],[-12,33],[-82,41],[-18,53],[-29,44],[-10,55],[-20,26],[-5,42],[-40,25],[-42,-2],[-21,23],[-33,-3],[-29,63],[-3,24],[-28,14],[-63,10],[-29,-10],[-9,38],[29,67],[-16,91],[3,47],[-28,13],[-17,-35],[4,-56],[-19,-45],[-31,32],[-2,60],[19,69],[-22,43],[-45,7],[-17,-30],[-23,73],[-4,50],[-34,36],[-3,49],[-22,20],[23,31],[-15,25],[-38,-43],[-22,2],[-16,86],[-20,-9],[-42,-50],[-53,-7],[6,84],[-10,31],[-38,-28],[-14,-70],[-45,11],[-33,-11],[-24,-34],[-24,39],[-28,-24],[-13,24],[-32,-19],[-63,34],[-24,23],[-26,-18],[-33,10],[11,46],[-32,11],[-21,-32],[-17,31],[-48,-34],[-94,19],[-22,-8],[-8,35],[-21,6],[-50,-42],[-38,5],[-1,-23],[-47,-7],[-16,19],[-36,-7],[-22,24],[-28,1],[-25,27],[-29,61],[-19,15],[-47,-15],[-59,32],[-56,55],[-28,3],[-7,-37],[-23,15],[-35,-56],[3,-29],[-22,-77],[-18,-41],[4,-39],[-34,-3],[-37,28],[-35,-4],[-12,20],[-30,7],[-39,-48],[-51,-50],[-36,28],[-24,-17],[-36,-3],[-14,-27],[-57,-1],[-19,20],[-26,-54],[-19,-117],[-13,-31],[-43,-60],[3,-78],[-42,-10],[9,-36],[-22,-42],[2,-33],[-48,-59],[2,-66],[-35,-116],[8,-111],[-20,-88],[-32,-18],[-26,7],[-9,-79],[-13,-27],[7,-40],[-22,-36],[-4,-34],[27,-38],[24,-10],[5,-44],[-15,-19],[-50,-19],[-10,-19],[-37,-17],[-17,-30],[-26,17],[-37,-23],[4,-34],[-19,-30],[-41,-116],[-28,5],[-37,-32],[5,-26],[-35,-36],[-9,-54],[13,-24],[-29,-63],[3,-35],[-29,-4],[-29,-28],[-24,21],[-81,22],[-35,-22],[-25,36],[-54,28],[-8,26],[-34,-6],[-20,67],[-23,-62],[-41,14],[-40,31],[-51,64],[-35,14],[5,33],[-21,21],[-24,50],[-36,12],[1,36],[-39,47],[-62,-14],[-27,36],[-43,-11],[-95,55],[-22,-7],[-34,63],[-3,31],[-28,26],[-31,76],[-31,-12],[-49,42],[-37,2],[-53,19],[-29,-5],[-63,32],[-20,-7],[-66,37],[-92,80],[-41,66],[-17,-6],[-20,30],[-50,28],[-37,105],[-26,20],[3,73],[-32,-5],[-4,32],[-42,49],[-51,25],[-61,-10],[-84,84],[-7,38],[-78,74],[-21,13],[-14,43],[-32,28],[-27,2],[-15,64],[-20,25],[-15,145],[-30,28],[6,42],[-37,65],[-26,70],[-8,41],[-24,17],[-4,40],[-38,50],[-23,44],[-12,59],[0,96],[-32,111],[12,30],[-16,32],[31,74],[-13,45],[-3,75],[15,105],[-37,107],[-2,31],[-31,55],[-40,26],[-1,66],[-53,69],[-21,8],[1,68],[-39,26],[-33,39],[3,43],[-15,82],[3,49],[-12,71],[3,36],[-40,140],[-16,34],[-30,33],[-62,26],[-18,58],[-3,65],[-31,55],[-61,-14],[-30,51],[-43,33],[-33,78],[-61,9],[-50,90],[-33,32],[-59,-26],[-16,34],[-35,40],[-37,-36],[-4,38],[-28,31],[-57,20],[-26,0],[2,64],[-15,8],[-14,46],[-42,23],[-14,36],[-54,43],[-18,53],[-21,1],[-26,42],[-36,11],[-37,89],[-5,69],[-32,67],[-31,31],[-22,2],[-10,39],[-89,48],[-48,65],[-46,6],[-17,75],[-15,8],[-61,104],[-49,98],[-41,10],[-18,46],[-35,1],[-22,62],[-9,59],[-24,2],[-52,62],[-102,12],[-56,61],[-31,4],[-39,33],[-31,41],[-34,17],[-24,41],[-8,47],[-18,29],[-12,57],[-53,56],[-11,57],[-29,100],[-39,80],[-22,77],[-36,42],[-10,40],[-55,47],[-49,29],[-31,-32],[-26,-6],[-57,82]],[[89436,112271],[27,-11],[62,1],[50,-44],[15,-28],[27,11],[53,-45],[33,-4],[62,-41],[45,-84],[61,-91],[7,-57],[-29,-27],[-74,49],[-98,-3],[-35,17],[-33,58],[9,90],[-11,72],[-34,23],[-76,11],[-61,103]],[[89427,111229],[45,4],[17,-22],[28,-83],[91,-154],[25,-18],[21,-35],[123,-145],[29,-42],[-56,12],[-59,-58],[-11,33],[-23,13],[-34,45],[-42,30],[-9,61],[-19,17],[-16,46],[-16,13],[-14,82],[-35,64],[-20,89],[-24,8],[-1,40]],[[87999,111803],[22,-17],[50,33],[58,-45],[42,-22],[39,-59],[-7,-26],[-46,-13],[-112,42],[-43,59],[-3,48]],[[87478,113630],[16,41],[91,-14],[57,-43],[88,13],[37,-29],[32,-7],[39,-55],[47,1],[25,-16],[27,7],[36,78],[48,13],[48,-33],[-25,-83],[-20,-24],[-44,-13],[-107,-9],[-77,-57],[-53,5],[-58,-10],[-42,1],[-44,18],[-37,30],[-20,66],[15,55],[-59,61],[-20,4]],[[87006,113496],[42,18],[37,-14],[42,9],[47,42],[31,-15],[61,11],[27,31],[18,-4],[-11,-53],[6,-31],[30,-32],[33,-16],[37,4],[7,-91],[-40,-2],[-56,-39],[-16,-24],[-61,-12],[-45,-32],[-85,76],[-64,139],[-40,35]],[[86710,113570],[51,48],[36,-7],[42,50],[23,-62],[23,6],[36,-46],[-15,-25],[-60,-9],[-76,40],[-27,-16],[-33,21]],[[81153,132188],[314,-6],[244,0],[156,3],[105,-5],[49,11],[265,2],[144,-3],[241,15],[57,7],[150,-13],[489,2],[242,8],[252,5],[318,-6],[330,-8],[515,-11],[364,-6],[252,2],[225,-9],[212,1],[388,-2],[187,2],[240,-3],[205,4],[279,2]],[[87376,132180],[0,-280],[1,-600],[-2,-278],[0,-738],[1,-727],[2,-355],[3,-517],[-1,-555],[-2,-716],[-5,-547],[-1,-429],[-4,-383],[-2,-350],[7,-528],[328,-356],[485,-531],[110,-124],[412,-454],[142,-161],[76,-82],[263,-297],[85,-92],[137,-159],[73,-80],[474,-541],[407,-466],[105,-125],[42,-44],[242,-286],[47,-50],[146,-174],[120,-137],[184,-218],[193,-226],[264,-313],[97,-114],[429,-515],[328,-393],[166,-203],[412,-501],[302,-370],[209,-259],[121,-146],[249,-311],[339,-423],[336,-422],[150,-192],[456,-580]],[[95302,115832],[5,-49],[-7,-51],[8,-33],[-2,-88],[-9,-51],[9,-45],[65,-72],[23,-96],[27,-64],[54,-71],[66,-55],[31,-113],[18,-101],[21,-26],[-18,-32],[46,-63],[36,-94],[4,-52],[-12,-116],[19,-25],[46,10],[24,-33],[37,-24],[21,-51],[33,-9],[57,-83],[39,-10],[34,-29],[29,-73],[28,-34],[10,-95],[-45,-13],[-7,-17],[-88,-112],[-5,-35],[-37,-31],[-49,-7],[-55,-79],[-34,-6],[-28,-37],[-35,-20],[-38,-5],[-27,-48],[-7,-69],[1,-82],[-91,-142],[-32,-15],[-17,-69],[32,-35],[-18,-41],[31,-60],[-39,-46],[14,-53],[-12,-25],[31,-110],[4,-39],[-12,-39],[23,-36],[0,-52],[-40,-25],[-12,-38],[20,-32],[-22,-18],[14,-32],[-11,-25],[14,-30],[-28,-46],[7,-52],[17,-40],[-51,-48],[-3,-35],[-45,-40],[-46,-100],[-10,-67],[-43,-35],[-43,11],[-52,-45],[21,-34],[14,-54],[-3,-56],[-14,-38],[-30,-43],[11,-33],[69,-42],[3,-34],[-22,-24],[23,-47],[-7,-146],[-26,-74],[-17,-79],[28,-31],[22,-63],[5,-45],[19,-10],[27,27],[17,-33],[40,-13],[43,26],[77,-16],[20,-30],[24,-110],[31,5],[2,-37],[-20,-49],[25,-52],[-7,-159],[-37,-51],[-24,-16],[-32,-59],[8,-80],[-19,-17],[-37,0],[-26,-34],[-45,-1],[-9,-15],[-104,22],[-19,18],[-26,-62]],[[95175,110495],[-416,-45],[-488,-54],[-533,-62],[-523,-62],[-243,-31],[-615,-79],[-471,-62],[-264,-37],[-11,61],[-1,86],[-10,70],[-43,105],[-28,28],[-38,9],[-44,-54],[-18,83],[-3,61],[7,63],[-3,79],[-9,38],[-30,45],[-2,40],[39,47],[6,34],[-13,134],[-30,189],[-24,76],[-46,180],[-50,109],[-65,117],[-58,117],[-89,151],[-62,74],[-40,37],[-31,14],[-39,83],[-30,40],[-57,53],[-20,-15],[-29,10],[-60,123],[-44,68],[-52,31],[-30,44],[-54,44],[-76,35],[-18,30],[-89,80],[-58,73],[-72,107],[-65,51],[-51,23],[-33,-32],[9,-61],[-34,0],[-82,-43],[-39,2],[-138,87],[-24,-16],[-19,14],[-26,76],[35,60],[16,9],[5,73],[-33,114],[-56,167],[-50,97],[-51,71],[-35,26],[-39,7],[-60,-12],[-86,6],[-22,-19],[-73,4],[-81,-30],[-28,-46],[-60,73],[-18,9],[-117,19],[-87,53],[-17,2],[-43,38],[-35,6],[-36,32],[-34,-8],[-30,12],[-88,89],[-41,16],[-31,70],[-40,121],[-21,92],[-35,14],[-52,41],[-48,68],[-30,-3],[-60,86],[-18,2],[-26,42],[-112,51],[-40,46],[-78,13],[-33,-12],[-49,1],[-55,-49],[-30,1],[-94,53],[-47,-3],[-42,-21],[-36,-3],[-21,30],[-66,37],[-29,-1],[-76,59],[-46,7],[-73,-7],[-44,22],[-49,8],[-26,-8],[-84,2],[-84,-5],[-77,-14],[-10,-9],[-96,-8],[-29,-12],[-67,-5],[-13,77],[-24,34],[-22,64],[-103,80],[-61,-7],[-25,22],[-8,32],[7,67],[22,67],[37,164],[-22,61],[-17,17],[-12,68],[17,61],[20,116],[-10,56],[-34,32],[-12,48],[-32,2],[10,80],[33,157],[15,136],[-1,95],[-8,51],[-22,56],[-36,12],[-35,43],[-52,17],[-30,-9],[-9,-35],[-38,42],[-103,67],[-60,97],[13,82],[31,103],[7,79],[-10,99],[-23,63],[-35,44],[-63,-2],[-27,28],[-51,2],[-145,206],[-36,103],[-26,30],[-34,69],[-33,18],[-16,-14],[-35,35],[-24,0],[-31,29],[-38,2],[-5,56],[-38,56],[-3,73],[-22,90],[-36,50],[-46,45],[-37,74],[-39,27],[-37,51],[2,37],[-17,36],[-17,118],[-37,85],[-93,43],[-22,53],[-5,40],[-38,47],[-22,76],[-61,99],[-37,40],[-26,42],[-118,92],[-45,19],[-36,83],[-70,70],[9,76],[-20,37],[7,60],[-19,50],[0,53],[-22,64],[5,13],[-29,75],[11,36],[-23,27],[42,17],[-10,81],[-32,2],[-32,38],[16,22],[8,53],[26,21],[18,44],[38,-34],[21,-48],[27,7],[43,59],[26,64],[26,133],[2,84],[26,126],[-5,26],[-53,150],[-51,122],[-66,87],[-35,22],[-31,-16],[-32,-40],[-74,19],[-6,-26],[-58,-7],[-58,18],[-71,49],[-103,114],[-8,30],[-34,49],[-49,99],[-31,34],[-35,-8],[-12,54],[-34,33],[-9,53],[-41,20],[-15,34],[-3,55],[-17,68],[10,40],[15,167],[1,52],[-33,78],[-30,101],[-4,60],[-20,73],[-19,18],[-31,-19],[-34,68],[4,72],[-5,90],[23,21],[11,104],[-4,99],[-14,87],[-12,133],[43,23],[11,47],[21,-14],[83,16],[33,-49],[7,-82],[35,-61],[-5,-23],[-49,-28],[9,-67],[19,-39],[-9,-64],[23,-16],[-7,-59],[14,-24],[67,-3],[13,-37],[64,-3],[27,-37],[47,-42],[19,-32],[56,-62],[38,18],[13,-18],[15,-76],[42,-36],[45,-13],[29,36],[-22,26],[-3,52],[-40,14],[-39,-3],[-4,67],[-52,140],[-9,122],[-15,63],[-60,102],[-15,-30],[-56,62],[-14,43],[26,19],[-53,39],[-78,31],[1,34],[23,73],[29,3],[-7,63],[-35,44],[20,13],[-18,61],[-99,7],[5,27],[-34,28],[-3,72],[66,35],[9,27],[-11,42],[54,-15],[47,22],[25,28],[31,67],[-30,73],[-29,48],[-87,70],[-47,24],[-68,-62],[-65,-7],[0,-99],[-24,-92],[3,-30],[51,-37],[23,-45],[-36,-6],[-27,-40],[6,-100],[41,-65],[30,-31],[-45,-30],[-10,43],[-38,17],[10,-64],[23,-16],[10,-53],[-11,-26],[-30,-13],[-73,38],[-18,36],[-30,12],[-29,43],[-34,14],[-26,38],[-54,21],[-36,-30],[-36,26],[-14,49],[-68,53],[-22,66],[-35,47],[-52,47],[-38,20],[-85,15],[-25,-7],[-37,-46],[-2,-27],[-42,14],[75,256],[13,60],[3,59],[-46,120],[18,86],[-12,37],[-40,68],[-51,39],[-37,-27],[-16,48],[9,87],[-52,130],[-27,34],[-10,48],[-109,102],[-71,37],[-27,46],[-56,46],[-49,53],[-15,58],[-27,15],[-32,75],[-28,45],[-16,47],[-33,58],[-76,86],[-32,13],[-39,82],[-57,60],[-25,13],[-12,34],[-62,53],[-19,63],[-30,24],[-44,75],[-26,11],[-2,87],[26,48],[31,103],[-1,69],[-43,168],[-23,40],[-3,54],[-50,73],[-8,101],[-18,76],[-23,47],[12,27],[-16,64],[-30,46],[9,136],[10,26],[-2,63],[21,99],[27,52],[26,102],[-16,72],[-17,38],[9,50],[-6,90],[-11,70],[-21,49],[-24,17],[-20,80],[-3,101],[-20,90],[-41,27],[-39,41],[-33,109],[-37,30],[-37,93],[-23,25],[-59,94],[-66,44],[-1,80],[-44,88],[-43,29],[-71,33],[-40,71],[-110,99],[-109,135],[0,36],[23,90],[-21,65],[-5,75],[-12,43],[-43,68],[-9,49],[35,109],[-3,35],[85,261],[60,148],[60,130],[30,80],[38,83],[65,166],[31,116],[28,149],[10,88],[-21,50],[-29,21],[-21,38],[2,162],[21,4],[55,199],[51,339],[14,151],[-5,72],[-23,96],[0,85],[-29,50],[1,78],[-20,34],[-9,55],[-23,39],[-11,122],[-32,72],[-53,12],[-80,77],[26,61],[26,98],[17,98],[7,123],[-10,24],[8,76],[-10,35]],[[134567,105324],[27,35],[13,-12],[-1,-60],[-39,37]],[[134162,104677],[41,4],[111,32],[123,22],[15,17],[9,50],[74,-80],[-39,-17],[-35,13],[-62,5],[-49,-5],[-155,-46],[-33,5]],[[134350,115817],[-4,29],[299,-5],[219,0],[278,-5],[348,-2],[191,-4],[645,-21],[274,0],[219,-3],[194,2],[496,-5],[350,-3],[324,-8]],[[138183,115792],[15,-142],[50,-407],[73,-542],[61,-444],[61,-475],[2,-25],[75,-604],[29,-247],[78,-625],[107,-876],[70,-555],[1,-22],[44,-32],[-20,-43],[0,-41],[24,-41],[44,-49],[-31,-29],[16,-38],[28,-27],[-11,-23],[5,-73],[35,-52],[7,-28],[-25,-30],[24,-45],[32,-108],[67,-85],[31,-66],[10,-67],[2,-83],[32,-18],[12,-48],[-24,-24],[-10,-124],[-27,-32],[4,-55],[101,-55],[16,-30],[50,-58],[-18,-8],[-43,-89],[-62,-2],[11,-54],[-65,-31],[-54,-89],[-25,-27],[25,-106],[-12,-15],[-8,-79],[6,-84],[-24,-68],[8,-25],[-31,-31],[11,-41],[-28,-33],[-23,-77],[-28,0],[6,-39],[-17,-42],[-2,-45],[12,-25],[1,-85],[-14,-24],[23,-31],[-4,-24],[15,-60],[-11,-38],[2,-51],[49,-81],[27,-71],[24,-26],[-1,-112],[25,-69],[-5,-47],[-40,-123],[9,-89],[-14,-13],[-11,-94],[-14,-47],[12,-85],[-9,-77],[-30,-32],[-4,-40],[24,-91],[-15,-53],[10,-87],[35,-20],[32,-85],[28,-29],[11,-79],[25,-49],[3,-49],[15,-44],[-5,-31]],[[135357,104795],[-93,-26],[-112,-46],[-116,-21],[-96,-27],[-56,-5],[-129,8],[-54,-2],[-96,-14],[5,16],[84,12],[27,49],[19,11],[63,-52],[49,3],[63,33],[44,0],[29,19],[19,67],[-26,48],[-54,49],[-30,49],[-11,53],[-41,17],[-61,60],[-20,143],[-25,30],[46,127],[2,66],[-16,47],[4,70],[-13,26],[-6,51],[-46,23],[-43,44],[-32,11],[-19,-15],[-6,-37],[-21,-28],[-35,-10],[12,-73],[-16,-57],[-27,-36],[0,-103],[-27,-44],[-3,-39],[9,-52],[-14,-42],[4,-60],[-5,-117],[-12,-48],[-24,-52],[-12,-50],[-24,33],[-53,-24],[-7,48],[14,59],[-33,-6],[-10,17],[-66,35],[-58,8],[-56,44],[-28,3],[-10,-42],[-46,-43]],[[138183,115792],[205,-4],[120,0],[159,4],[500,7],[194,0],[440,1],[278,1]],[[141871,115829],[9,-28],[-26,-47],[-10,-46],[22,-30],[-46,-26],[-24,8],[-74,-112],[-50,-7],[-5,-52],[-56,-75],[-24,-45],[-34,-33],[5,-73],[-48,-70],[1,-29],[21,-68],[50,-41],[17,-36],[55,-38],[35,-62],[53,-18],[24,10],[31,-67],[27,-39],[32,-23],[25,-48],[25,-3],[11,-51],[110,-86],[15,16],[72,15],[27,-9],[36,12],[53,-62],[15,-38],[28,-143],[2,-39],[61,-62],[10,-69],[24,-58],[36,-44],[21,-201],[22,-70],[59,-44],[27,-66],[28,-40],[0,-44],[27,-21],[38,-66],[10,-71],[48,-128],[48,-4],[17,-15],[30,-64],[55,-66],[48,-42],[22,6],[57,-56],[33,-18],[69,-79],[1,-33],[66,-63],[22,-58],[8,-81],[52,-90],[4,-73],[33,-40],[24,-8],[36,-45],[41,12],[18,-30],[70,-45],[39,-67],[15,-11],[36,-102],[88,-56],[18,-50],[-26,-41],[8,-28],[-14,-33],[7,-41],[-21,-38],[57,-93],[79,-32],[24,-103],[-22,-34],[35,-54],[56,-47],[33,17],[16,-42],[-14,-25],[5,-65],[28,-42],[58,-59],[68,-31],[24,-23],[36,5],[12,-29],[32,-28],[39,-59],[32,-12],[44,-34],[27,-45],[-16,-159],[29,-40],[11,-103],[32,-8],[-4,-59],[52,-32],[-9,-111],[20,-21],[-6,-112],[-14,-68],[39,-50],[-4,-29],[14,-43],[-15,-16],[-11,-57],[46,-67],[41,-26],[-2,-17],[84,-36],[33,-25],[-6,-20],[39,-43],[27,-5],[2,-41],[49,-71],[-9,-48],[2,-56],[41,-75],[-6,-26],[30,-70],[30,-3],[18,-29],[-2,-55],[15,-60],[-53,-97],[29,-78],[19,-27],[6,-57],[-1,-100],[13,-52],[29,-2],[36,-48],[51,-12],[38,37],[41,-56],[36,-20],[54,-73],[48,-7]],[[145155,108895],[14,-41],[31,20],[23,-33],[-11,-56],[-23,-42],[-29,-30],[-58,-42],[-16,55],[-24,-11],[-52,-60],[22,-37],[57,-18],[-61,-71],[-31,-47],[-72,43],[-35,2],[9,-45],[-25,-67],[59,-44],[-51,-91],[-89,-114],[-92,25],[-16,-32],[26,-42],[37,-24],[14,17],[24,-35],[2,-100],[8,-22],[-47,-143],[-17,-26],[-46,25],[-19,-27],[-37,-14],[-20,8],[-6,-62],[67,-2],[22,20],[32,-50],[-19,-28],[-23,-71],[-62,-118],[-32,-93],[-38,-33],[17,-99],[-7,-37],[12,-91],[12,-14],[-28,-112],[-19,-2],[-41,-47],[-51,-114],[-65,-64],[9,-32],[3,-80],[-28,-131],[-46,-3],[-14,-38],[-44,-33],[22,-45],[13,12],[59,-34],[10,41],[25,-38],[-1,-126],[-36,-158],[-27,-60],[-20,-95],[1,-65],[23,-76]],[[145696,132139],[231,118],[49,19],[92,57],[40,37],[37,15],[91,75],[27,81],[53,52],[29,-19],[28,-44],[111,79],[81,66],[44,23],[41,36],[43,8],[122,80]],[[146815,132822],[1,-633],[426,-2],[435,3],[288,-1],[160,-3],[411,5],[481,-2],[216,3],[188,-3],[245,-1],[482,4],[563,-2],[301,6],[253,-1],[424,-6],[175,-1],[699,1],[190,-3],[195,3],[370,1],[27,-15],[-2,-44],[48,-59],[24,13],[22,-36],[17,-75],[-6,-46],[12,-39],[59,-31],[38,27],[54,-45],[31,6],[38,-20],[2,-49],[41,-26],[-28,-87],[42,-7],[33,-44],[6,-88],[-28,-16],[23,-46],[-9,-33],[13,-27],[9,-105],[-45,-28],[41,-53],[9,-31],[33,-42],[-9,-28],[31,-37],[6,-39],[22,-2],[4,-62],[35,-9],[38,14],[34,-23],[21,-33],[10,-47],[44,15],[32,-30],[46,24],[15,-42],[55,-2],[26,19],[7,-77],[34,-20],[33,-53],[-6,-23]],[[154300,130689],[-39,-23],[-47,-3],[-27,-49],[-75,-73],[-24,-39],[-16,-61],[-27,-55],[12,-17],[-34,-93],[-60,-99],[-87,-70],[-15,-38],[31,-16],[-62,-44],[-21,-63],[-121,-83],[-32,-30],[19,-89],[33,-68],[24,-24],[5,-42],[33,-52],[-15,-56],[-40,-1],[-10,-19],[20,-39],[-36,-78],[-38,-40],[-55,9],[-9,-31],[-28,-30],[21,-51],[-32,-89],[39,-33],[-34,-72],[18,-52],[-19,-23],[13,-28],[-2,-62],[27,-26],[57,25],[54,-19],[47,-59],[8,-142],[-11,-62],[17,-87],[51,-34],[42,17],[47,-36],[23,-71],[7,-52],[53,-60],[31,-16],[28,-35],[38,-104],[70,-50],[34,-33],[24,-66],[49,-61],[-3,-34],[-24,-25],[-27,-4],[-34,-31],[-50,17],[-15,-9],[-17,-54],[-33,-37],[-72,-35],[-35,-3],[-51,-38],[-67,-75],[-61,-37],[-32,-62],[-40,-14],[-41,-31],[-7,-74],[10,-36],[-14,-51],[-17,-15],[-50,-4],[-57,-48],[-75,-29],[-86,0],[-35,-21],[-90,-89]],[[153236,127053],[-12,11]],[[153224,127064],[-45,32],[-67,30],[-105,14],[-70,-12],[-67,-30],[-57,-43],[-38,-44],[-38,-62],[-31,-82],[-22,0]],[[152684,126867],[-310,-2],[-621,-1],[-438,0],[-407,-3],[-706,1],[-377,2],[-222,3],[-332,0],[-648,0],[-581,1],[-409,-1],[-397,-3]],[[145697,129009],[-1,660],[1,766],[0,437],[-1,547],[0,720]],[[123174,128884],[355,-7],[449,-8],[339,-7],[532,-11],[210,-1],[299,2],[306,3],[268,8],[308,4],[209,6],[158,-1],[267,2],[185,5],[287,11],[272,3],[261,7],[142,7],[573,16],[220,8],[323,20],[25,-44],[34,-27],[-3,-55],[14,-16],[83,-22],[12,-91],[33,-23],[21,-56],[25,-23],[52,-5],[-7,-42],[21,-23],[-8,-48],[39,-20],[26,-47],[58,10],[32,-19]],[[129594,128400],[-37,-35],[-26,-48],[-45,-151],[3,-43],[-23,-55],[3,-88],[-13,-41],[7,-54],[-3,-70],[31,-165],[-8,-49],[70,-180],[38,-62],[1,-42],[-33,-50],[-7,-36],[27,-94],[76,-62],[24,-61],[-12,-123],[26,-41],[113,-115],[51,-84],[37,-35],[45,-23],[17,-28],[9,-66],[30,-45],[71,-16],[37,-84],[16,-19],[7,-61],[31,-47],[66,-60],[67,-36],[21,-36],[39,-26],[21,-32],[79,-63],[34,-46],[35,-26],[62,-103],[36,-33],[15,-88],[11,-137],[35,-87],[4,-69],[-44,-73],[2,-24],[49,-129],[3,-69],[22,-87],[32,-39],[22,-46],[61,-46],[58,14],[54,65],[31,54],[22,77],[31,21],[66,-12],[34,-17],[109,-73],[87,-11],[41,-28],[37,-46],[46,-27],[79,-63],[6,-28],[-21,-92],[-64,-59],[-25,-60],[-32,-35],[-10,-47],[43,-109],[6,-85],[-19,-70],[-48,-56],[-54,-109],[-27,-131],[-9,-68],[-15,-39],[-81,-115],[-33,-126],[-2,-97],[14,-107],[15,-52],[47,-76],[46,-26],[24,-30],[47,-105],[36,-43],[69,-58],[20,12],[41,-29],[7,-50],[47,-54],[54,-8],[37,-44],[36,-59],[43,-17],[55,17],[24,-38],[-50,-32],[-22,-49],[32,-84],[43,-30],[32,-2],[30,23],[54,61],[69,-61],[3,-47],[83,-29],[55,-71],[49,-39],[14,-32],[-12,-63],[28,-32],[47,10],[31,-40],[20,-46],[85,-34],[20,-30],[-9,-104],[17,-38],[42,-61],[1,-30],[-25,-14],[-33,10],[-8,-55],[8,-59],[36,-97],[31,-65],[30,-38],[25,-54],[17,-70],[-8,-95],[-12,-28],[-81,-30],[-31,-48],[-9,-60],[42,-80],[43,-1],[-10,-67],[8,-53],[39,-110],[31,-64],[45,-51],[12,-40],[-14,-66],[10,-42],[91,-63],[37,-48],[38,9],[13,45],[-30,48],[-35,21],[-9,58],[70,-13],[38,-63],[53,-60],[9,-74],[33,-22],[55,27]],[[132972,120461],[21,0],[28,-41],[-2,-48],[-24,-132],[-31,-94],[-52,-17],[-6,-77],[32,-42],[40,-3],[18,-29],[-14,-55],[-60,18],[-26,-14],[-20,-33],[-2,-55],[44,-63],[15,-53],[-57,-87],[-7,-64],[-16,-51],[-21,-25],[-45,-10],[-54,67],[-47,90],[-44,-9],[-28,-29],[-11,-75],[-20,-56],[-4,-41],[-27,-101]],[[132552,119332],[-29,-58],[-40,-40],[-33,10],[-11,40],[12,44]],[[132451,119328],[29,76],[-11,70],[-17,28],[-63,22],[-37,-9],[-21,-31],[-7,-39],[16,-51],[32,-65]],[[132372,119329],[24,-39],[-7,-69],[-26,-39],[4,-35],[42,-82],[6,-26],[-13,-59],[-19,-22],[-43,-3],[-31,11],[-43,-5],[-14,-41],[12,-32],[50,-49],[63,-41],[1,-42],[-34,-4],[-43,-27],[-36,0],[-61,26],[-63,5],[-15,-38],[19,-27],[127,-126],[21,-49],[-2,-53],[-51,-48],[-56,-26],[-20,-31],[-11,-113],[-29,-77],[-39,-1]],[[132085,118167],[-582,-7],[-370,-5],[38,70],[22,52],[6,46],[18,46],[31,26],[10,38],[65,36],[26,41],[-6,27],[22,60],[24,5],[24,43],[68,52],[35,61],[5,28],[46,16],[30,72],[-27,44],[6,62],[17,25],[3,53],[-24,44],[-43,8],[-37,22],[1,54],[-11,62],[-26,38],[7,41],[-110,2],[-422,1],[-291,0],[-368,0],[-245,-1],[-411,-2],[-195,5],[-200,1],[-463,-3],[-199,1],[-340,-2],[-246,2],[-377,-2],[-523,0],[-444,2],[-445,1],[-565,-1],[-370,2],[-380,0]],[[124869,120500],[0,444],[2,778],[-1,588],[4,401],[1,480],[2,158],[-1,435],[2,507],[7,484],[-1,679],[27,49],[2,26],[-30,26],[-46,-17],[-32,21],[-11,45],[-27,3],[-40,-30],[-33,-3],[-39,25],[-36,65],[-54,5],[-16,33],[13,41],[-30,63],[-47,30],[-32,44],[-16,113],[47,64],[-9,33],[-25,7],[-31,-20],[-34,22],[-1,28],[-44,49],[-21,45],[-63,35],[-21,33],[-4,45],[-78,91],[-16,48],[9,47],[27,17],[48,-1],[15,49],[-13,47],[9,38],[32,64],[28,24],[36,5],[23,35],[-2,92],[22,32],[78,-51],[40,15],[18,29],[4,47],[-31,19],[-52,-24],[-26,30],[13,38],[48,3],[25,37],[-16,61],[-44,7],[-38,48],[21,69],[-46,36],[-88,-10],[-13,-60],[-15,-14],[-64,-9],[-69,29],[-19,17],[-4,48],[-24,12],[-29,-17],[-39,20],[7,60],[-28,24],[-32,1],[-42,58],[-48,34],[-8,37]],[[103550,129855],[245,-1],[567,0],[369,0],[301,5],[622,0],[568,1],[355,2],[211,-2],[597,-1],[349,-11],[231,-1],[497,0],[694,3],[591,-1],[264,7],[308,1],[612,0]],[[113888,127523],[0,-358],[2,-476],[3,-802],[3,-599],[1,-546],[1,-336],[-1,-505],[2,-476],[-1,-478],[3,-566],[2,-287],[-1,-767],[0,-840]],[[103557,120501],[-1,416],[0,463],[6,364],[0,316],[1,564],[-3,157],[2,445],[-27,259],[0,524],[1,515],[8,362],[4,587],[1,563],[-1,306],[1,882],[0,813],[0,518],[4,409],[-2,222],[1,261],[-2,408]],[[100601,132195],[0,-519],[1,-467],[-1,-512],[-1,-848],[438,-3],[311,-1],[58,-4],[388,2],[172,4],[393,1],[474,1],[50,3],[370,4],[296,-1]],[[103557,120501],[-665,0],[-192,-2],[-370,0],[-591,0],[-287,-1],[-45,15],[-369,-3],[-467,-1],[-99,-4],[-214,-1],[-188,2],[-339,0],[-340,0],[-727,-1],[-270,0],[-629,-1],[-455,-1],[-514,0],[-508,0],[-125,1]],[[96163,120504],[-2,206],[0,770],[-1,409],[1,358],[3,181],[-1,413],[2,618],[-2,550],[2,877],[2,9],[-2,296],[3,1156],[-1,100],[1,507],[1,555],[1,549],[0,389],[4,873],[2,534],[1,514],[1,635],[1,613],[-2,226],[2,80],[-2,255]],[[132372,119329],[79,-1]],[[132552,119332],[39,0],[134,19],[270,-8],[226,-4],[192,2],[427,-3],[317,-3],[410,-8],[23,40],[7,62],[-18,146],[-38,176],[87,-3],[240,-31],[-6,-71],[314,11],[335,7],[442,3],[592,16],[183,8],[39,-45],[83,45],[258,-9],[200,-22],[243,-21],[297,-20],[45,1],[183,-10],[280,-7],[86,9],[191,13],[15,5],[140,-2],[253,-15],[268,-33],[322,-13],[121,-8],[148,0],[254,-10],[212,-1],[206,-4],[294,-14],[145,-3],[23,43]],[[131234,115818],[-1,32],[27,75],[122,-35],[19,25],[2,57],[32,132],[26,30],[25,7],[56,-41],[26,12],[25,34],[-5,41],[-34,8],[-36,72],[31,16],[26,77],[-31,55],[-25,11],[-35,-9],[-28,24],[-14,46],[7,33],[81,21],[2,89],[48,96],[-62,64],[-39,-12],[0,-44],[-34,-30],[-19,24],[15,86],[59,47],[13,55],[19,27],[33,4],[26,-29],[-9,-76],[25,-70],[37,55],[19,87],[-24,37],[-20,56],[0,41],[13,61],[47,28],[28,0],[45,-43],[1,-34],[57,-31],[23,47],[-14,36],[-41,17],[-23,79],[17,26],[51,37],[24,-4],[56,44],[4,67],[-16,17],[-33,-39],[-42,-2],[-23,17],[-37,71],[-4,78],[12,34],[67,48],[48,-41],[39,33],[47,10],[23,36],[4,41],[21,29],[36,12],[22,-11],[54,29],[-4,49],[-82,45],[-12,42],[10,35],[36,36],[39,-1],[40,-22],[32,-33],[32,51],[-17,50],[-86,87],[-7,54],[-21,34]],[[100592,137985],[-2,439],[-1,783],[391,0],[126,-21],[382,4],[57,13],[121,1],[60,-6],[150,-1],[114,16],[414,-1],[96,-3],[240,2],[439,6],[292,1],[31,-15],[589,2],[249,-1],[754,2],[560,0],[210,2],[526,-4],[63,-7],[289,-2],[470,-3],[454,-2],[496,-1],[22,16],[421,0],[678,0],[414,0],[380,-3],[544,-2],[304,-1]],[[158226,130438],[25,61],[26,-22],[17,34],[35,-19],[-52,-47],[-51,-7]],[[158070,130082],[40,30],[53,-23],[-10,-35],[-83,28]],[[155088,129026],[4,-3]],[[155092,129023],[-4,3]],[[154948,128703],[20,31],[-8,52],[55,41],[23,96],[-8,69],[30,33],[40,-15],[99,22],[24,-17],[4,-41],[21,-47],[-22,-45],[-64,-87],[-38,-40],[-17,11],[-105,-75],[-40,-15],[-14,27]],[[151845,136582],[16,37],[46,27],[-17,-57],[-45,-7]],[[151806,136954],[19,34],[42,5],[-29,-49],[-32,10]],[[151713,136610],[59,73],[26,-31],[-60,-42],[-25,0]],[[146815,132822],[116,67],[105,79],[22,26],[41,18],[140,125],[31,16],[42,47],[10,48],[19,3],[64,63],[8,26],[41,-3],[17,29],[59,21],[10,18],[106,60],[75,21],[15,25],[12,60],[28,54],[70,74],[1,46],[24,63],[82,32],[70,63],[38,12],[78,81],[18,52],[-27,67],[18,43],[-19,25],[-50,111],[1,56],[-20,55],[-20,21],[-43,4],[-20,26],[-54,39],[-17,72],[35,93],[-11,23],[-100,28],[25,68],[-17,31],[40,55],[-16,70],[7,61],[-11,127],[-22,20],[122,36],[202,80],[22,15],[92,21],[67,27],[62,10],[78,33],[128,28],[86,12],[24,-9],[152,13],[49,-9],[124,-1],[29,-7],[81,4],[27,9],[82,2],[155,-24],[51,7],[63,-26],[185,-40],[55,3],[68,-41],[9,-30],[80,-74],[38,-19],[75,-65],[70,-17],[43,33],[174,59],[62,12],[114,-7],[74,15],[60,-6],[35,18],[62,1],[56,-15],[40,-29],[100,8],[33,-9],[83,60],[28,-7],[53,29],[79,14],[48,33],[36,42],[55,7],[36,47],[57,109],[47,26],[54,56],[112,63],[25,48],[87,64],[62,6],[35,-29],[80,1],[19,16],[63,20],[21,24],[26,83],[7,60],[4,146],[-25,212],[-24,118],[-12,27],[-60,59],[-31,-6],[3,41],[55,61],[47,11],[3,-49],[35,-2],[73,60],[38,17],[-5,82],[17,38],[53,65],[-3,42],[-57,-59],[-52,-25],[-61,21],[-3,50],[22,26],[57,17],[30,28],[-58,35],[31,46],[-41,22],[-44,-22],[-24,27],[-63,-31],[-20,-46],[4,-39],[65,31],[45,-9],[-32,-74],[-49,-65],[-44,1],[27,65],[-32,40],[-22,5],[4,84],[-88,63],[21,22],[-36,44],[33,45],[-8,25],[59,150],[39,11],[60,0],[80,41],[40,43],[4,96],[46,37],[49,7],[77,75],[66,37],[45,-11],[85,59],[61,63],[75,87],[19,92],[61,104],[58,63],[96,115],[65,64],[166,200],[42,35],[79,85],[15,38],[25,2],[40,34],[37,49],[16,-6],[47,47],[-8,24],[131,95],[23,0],[56,37],[38,8],[8,43],[55,28],[47,6],[89,67],[18,45],[30,14],[95,0],[30,39],[31,1],[59,36],[37,-3],[13,-24],[44,3],[4,-25],[43,-11],[43,30],[27,-8],[335,-6],[180,-12],[279,-1],[402,22],[165,5],[182,1],[299,13],[139,4]],[[156297,139230],[-17,-55],[23,-50],[1,-98],[-27,-46],[-19,-88],[-18,-51],[23,-43],[45,-51],[4,-37],[-48,-110],[-1,-104],[-35,-187],[19,-42],[-7,-24],[37,-73],[20,-14],[33,-89],[21,-32],[10,-55],[5,-113],[-28,-93],[-27,-38],[-2,-36],[16,-54],[0,-55],[19,-84],[-18,-71],[-39,-32],[-18,-51],[-43,-45],[-17,-101],[-20,-31],[7,-47],[-26,-78],[-13,-80],[40,-42],[7,-36],[-10,-74],[9,-30],[-3,-80],[19,-70],[32,-67],[-11,-35],[14,-33],[-31,-54],[63,-117],[-28,-65],[-2,-44],[-46,-76],[-9,-55],[-29,-82],[14,-26],[-16,-92],[46,-37],[20,17],[-3,37],[15,50],[26,29],[83,-1],[26,-106],[39,-33],[24,-70],[-7,-22],[-14,-623],[-20,-522],[-13,-473],[-18,-74],[21,-131],[17,0]],[[156084,132307],[-4,-115],[-31,-565],[-15,-324],[-25,-435],[-19,-324],[101,-193],[-362,-262],[107,-208],[-3,-62]],[[155833,129819],[-4,-39],[-27,-13],[-8,-32],[-55,-19],[-20,-46],[-33,-21],[-37,-63],[-17,-51],[16,-38],[-45,-2],[1,-49],[22,-23],[57,-109],[8,71],[-18,27],[12,53],[76,-42],[-11,52],[-22,-12],[-14,39],[35,48],[57,-31],[22,-52],[16,43],[-7,59],[22,43],[56,15],[52,30],[27,-17],[9,-74],[54,-3],[16,45],[32,-5],[-36,70],[18,55],[32,-20],[40,-6],[30,-72],[29,11],[24,-15],[37,24],[3,26],[-67,10],[-7,33],[15,30],[28,-41],[32,-26],[31,7],[54,-12],[98,-43],[118,54],[6,63],[39,51],[23,-20],[31,9],[49,-22],[78,6],[159,-8],[81,17],[87,-11],[98,29],[107,10],[74,36],[100,100],[60,28],[47,79],[40,4],[31,20],[40,55],[24,47],[48,-3],[13,22],[50,25],[16,-11],[44,13],[-24,-60],[-36,-28],[-44,42],[-27,-18],[-17,-41],[31,-61],[55,-19],[-4,-30],[33,-60],[29,6],[74,-28],[41,48],[38,-31],[0,-37],[31,-57],[31,-19],[59,72],[44,-4],[51,66],[28,-19],[22,18],[-3,53],[81,35],[13,-20],[58,-16],[-36,-51],[-115,-52],[-104,-62],[-126,-66],[-180,-104],[-236,-142],[-109,-56],[-286,-127],[-155,-63],[-229,-113],[-132,-78],[-108,-49],[-181,-65],[-80,-21],[-65,-3],[-29,29],[-38,-6],[-97,-45],[-195,-62],[-91,7],[-44,-11],[-95,1],[-103,17],[-88,-32],[-65,-36],[-58,-21],[-34,-23],[14,77],[-89,-13],[-17,60],[-42,22],[-16,46],[15,50],[20,30],[-3,46],[31,50],[-37,22]],[[155290,129175],[16,110],[75,164],[50,147],[48,215],[-9,36],[-413,291],[-177,119],[-229,177],[-351,255]],[[529774,155528],[84,6],[65,74],[58,19],[61,-5],[163,-122],[-33,-109],[-25,-39],[-126,-79],[-52,-4],[-136,58],[-55,57],[-14,38],[10,106]],[[528509,154720],[29,48],[44,3],[22,-34],[71,-27],[97,5],[148,-47],[22,-22],[3,-45],[121,-79],[109,-126],[99,-68],[70,-15],[40,-56],[18,-60],[50,-18],[180,-3],[113,-66],[-18,-26],[-75,-13],[-48,29],[-156,-33],[-61,44],[-3,25],[-178,125],[-55,33],[-69,99],[-92,105],[-159,85],[-87,-16],[-116,50],[-107,72],[-12,31]],[[528245,155517],[47,22],[109,-32],[57,-49],[-2,-17],[-75,-99],[-54,-8],[-26,24],[-25,51],[-31,108]],[[527935,155167],[101,-15],[44,-35],[55,-77],[-80,-4],[-20,12],[-87,93],[-13,26]],[[527724,155646],[37,43],[33,-1],[56,-42],[17,-69],[-25,-28],[-62,-11],[-39,26],[-17,82]],[[526408,155327],[102,54],[28,-1],[74,83],[6,19],[100,39],[104,12],[20,20],[12,106],[59,146],[27,48],[58,36],[87,-57],[21,-48],[-25,-53],[-39,-11],[-46,-113],[-94,-88],[8,-53],[101,-13],[-8,-60],[-68,-20],[-223,34],[-52,-26],[-37,-36],[-33,-72],[11,-68],[-33,-43],[-27,45],[-86,65],[-46,17],[-1,38]],[[524444,156436],[48,10],[65,-17],[24,-20],[-33,-54],[-49,-4],[-56,62],[1,23]],[[521778,157286],[40,20],[72,-35],[19,-52],[-72,6],[-55,22],[-4,39]],[[521608,157325],[73,-17],[27,-32],[-25,-25],[-48,22],[-27,52]],[[521480,157380],[44,-7],[51,-31],[-55,-19],[-40,57]],[[520725,156516],[35,62],[97,54],[45,-31],[37,-2],[43,21],[37,69],[47,-6],[54,70],[84,14],[131,-2],[-21,-37],[-70,-44],[-24,-73],[31,-58],[19,-151],[-109,-1],[-66,52],[-27,53],[-42,0],[-71,-38],[-69,-1],[-103,43],[-58,6]],[[519403,157736],[248,173],[20,9],[153,13],[533,-41],[77,-44],[19,-32],[58,-49],[59,11],[65,-41],[186,-190],[-12,-41],[-164,-11],[-26,11],[-82,66],[-36,-17],[-25,-41],[-31,-85],[-71,-25],[-178,29],[-140,-82],[-139,64],[-68,81],[5,91],[-19,35],[-168,112],[-81,-10],[-107,-38],[-65,15],[-11,37]],[[71150,163437],[17,32],[35,7],[27,-98],[-46,-58],[-33,117]],[[70764,162756],[49,89],[32,-11],[22,-50],[-28,-36],[-4,-66],[-63,44],[-8,30]],[[70448,163203],[75,-29],[-28,-35],[-47,64]],[[70389,162429],[46,79],[74,-12],[22,29],[49,1],[50,43],[46,-9],[89,29],[13,-26],[-29,-38],[32,-63],[-18,-36],[68,-25],[11,-19],[-95,-88],[-10,-39],[-55,3],[-30,22],[-34,-36],[-68,32],[-14,47],[-64,34],[-83,72]],[[70328,162587],[62,-26],[-31,-42],[-31,68]],[[70213,162460],[33,20],[10,32],[81,-36],[-55,-20],[-26,-36],[-43,40]],[[70168,162690],[24,7],[23,54],[36,37],[-32,32],[21,56],[32,12],[51,-26],[13,64],[-53,18],[-2,28],[-57,167],[24,43],[37,26],[57,5],[125,-123],[73,-18],[26,-44],[77,-50],[-56,-15],[19,-104],[-31,-71],[32,-39],[-7,-72],[-51,-69],[-152,1],[-24,35],[4,41],[-25,44],[-25,-13],[11,-52],[-70,-49],[-41,-48],[-54,41],[-5,82]],[[70066,164585],[41,43],[0,34],[30,37],[44,16],[72,-88],[2,-52],[-84,13],[-105,-3]],[[69868,163810],[47,11],[13,24],[84,7],[-6,-66],[-40,-33],[-77,-21],[5,42],[-26,36]],[[69547,165005],[9,45],[42,91],[36,-41],[42,-123],[-7,-43],[-26,-12],[-10,-44],[-31,-18],[-28,22],[12,35],[-40,51],[1,37]],[[68943,166134],[1,47],[42,9],[14,-44],[-57,-12]],[[68935,166252],[46,61],[67,24],[-3,-50],[-73,-52],[-37,17]],[[68818,165839],[38,64],[64,45],[132,-82],[-4,-30],[-48,-5],[-16,-37],[-54,-16],[-12,-29],[-41,-3],[-56,47],[-3,46]],[[68811,166159],[49,75],[18,-54],[-22,-60],[-45,39]],[[68737,166103],[51,17],[16,-63],[-62,16],[-5,30]],[[68683,166044],[34,20],[60,-35],[21,-32],[-21,-29],[-84,48],[-10,28]],[[68423,162397],[54,7],[13,20],[90,16],[58,-70],[44,-4],[46,-67],[-52,-42],[41,-26],[-58,-64],[45,-14],[17,-54],[27,-41],[-38,-62],[-63,39],[-42,115],[-50,56],[-71,41],[-34,65],[4,36],[-31,49]],[[68334,162522],[50,41],[48,-29],[-19,-41],[19,-32],[-59,-12],[-46,60],[7,13]],[[68263,162742],[4,26],[58,40],[11,-67],[-50,-27],[-23,28]],[[68258,165221],[28,46],[67,-24],[-1,-56],[-66,-9],[-28,43]],[[68165,165382],[60,1],[79,-60],[-9,-32],[-48,12],[-45,58],[-37,21]],[[68163,165522],[19,46],[46,-10],[3,-35],[-48,-25],[-20,24]],[[68159,165444],[3,43],[74,-7],[35,-19],[8,-36],[-19,-25],[-41,-1],[-51,22],[-9,23]],[[68152,165355],[36,-12],[18,-52],[-37,-11],[-17,75]],[[68149,162962],[66,30],[5,-25],[-42,-20],[-29,15]],[[68067,165749],[36,38],[61,136],[75,55],[39,12],[82,-4],[67,-34],[113,38],[50,-3],[67,-35],[62,-55],[9,-70],[-36,-19],[-46,-70],[27,-66],[13,-59],[-9,-44],[-103,-51],[-108,-16],[-107,-40],[-16,37],[-85,60],[-16,37],[-58,38],[-111,59],[-6,56]],[[68048,165137],[63,55],[46,14],[28,-27],[-16,-24],[30,-44],[-2,-48],[-96,8],[-44,17],[-9,49]],[[67984,166000],[74,26],[19,-39],[-93,13]],[[67692,163559],[39,63],[62,11],[34,-15],[0,-32],[-31,-56],[-31,6],[-48,-19],[-25,42]],[[67498,163826],[59,85],[32,-12],[35,26],[33,-25],[48,-4],[39,-32],[13,-55],[-40,-103],[-59,-29],[-20,-46],[-68,72],[-18,58],[-44,31],[-10,34]],[[67352,162224],[27,-11],[29,-60],[10,-56],[-16,-60],[-40,32],[8,69],[-18,86]],[[67253,163635],[30,41],[50,15],[41,45],[-5,52],[23,30],[87,-47],[46,-42],[17,-70],[-43,-59],[-150,-18],[-23,37],[-73,16]],[[67202,164044],[40,-32],[51,34],[-45,44],[42,48],[-34,18],[11,35],[50,-10],[53,-37],[-5,-56],[-47,-44],[-14,-43],[-53,-58],[-58,92],[9,9]],[[67151,163300],[2,24],[48,27],[18,50],[30,31],[-64,20],[23,47],[66,26],[-9,35],[56,29],[15,-41],[41,-2],[72,18],[21,-19],[81,30],[14,-52],[-12,-39],[-60,-18],[-50,-29],[-74,-72],[-36,19],[-10,-67],[-28,-49],[-26,-98],[-36,0],[-13,42],[-37,15],[1,69],[-33,4]],[[67117,164136],[3,22],[81,10],[-19,-64],[-65,32]],[[67094,163983],[33,14],[18,-38],[-32,-19],[-19,43]],[[66964,164812],[41,37],[17,49],[52,76],[61,61],[-1,39],[61,42],[90,-4],[32,-21],[46,11],[63,-5],[-22,43],[-93,8],[-65,18],[-23,23],[23,78],[66,-46],[58,33],[-14,67],[-51,15],[-35,59],[-58,-13],[-22,43],[47,6],[6,64],[-43,82],[14,33],[-25,36],[59,112],[209,-43],[91,-28],[26,20],[89,0],[51,-32],[82,26],[31,-26],[45,30],[40,-17],[66,-108],[19,-17],[5,-61],[60,-8],[5,-48],[34,-42],[-16,-37],[29,-37],[-12,-58],[-45,-46],[3,-30],[-51,-52],[-9,-44],[34,-37],[-5,-28],[44,-16],[76,32],[26,-21],[43,32],[53,-1],[8,-86],[60,21],[66,2],[32,-48],[71,-50],[56,-18],[26,-58],[147,-118],[3,-27],[49,-41],[32,-55],[41,-38],[92,-132],[-35,-56],[73,-94],[-20,-41],[3,-51],[21,-22],[0,-65],[38,18],[-4,40],[43,6],[50,-63],[21,-103],[22,-16],[-2,-40],[36,-37],[9,-49],[31,7],[115,-63],[72,-91],[9,-49],[-45,-10],[-61,45],[-22,35],[-174,90],[-111,39],[-58,38],[-38,58],[-106,-2],[-33,-19],[70,-26],[9,-23],[-72,-77],[-59,-89],[75,-10],[10,72],[65,18],[47,-22],[102,26],[27,-94],[33,13],[87,-30],[51,-56],[-30,-16],[-93,-19],[-46,13],[-31,-31],[55,-68],[26,36],[91,27],[54,-4],[45,-55],[4,-28],[116,-83],[10,-62],[75,-125],[-58,-60],[-36,-11],[-81,17],[-63,-38],[-14,-56],[92,32],[21,17],[127,-60],[47,80],[-10,29],[45,67],[40,11],[40,-45],[-1,-47],[21,-63],[5,-82],[-50,-61],[-33,-26],[-4,-34],[56,-17],[5,-20],[-82,-62],[-57,-10],[-25,-45],[27,-40],[-70,-33],[-9,-18],[-134,-45],[5,-26],[60,13],[63,-18],[43,47],[47,2],[50,28],[19,38],[30,-12],[53,13],[-14,-59],[33,-122],[-18,-95],[11,-103],[-19,-20],[-60,44],[-24,-19],[99,-64],[19,-37],[13,-74],[-4,-31],[-50,-18],[-32,-56],[20,-64],[-31,-48],[5,-44],[-60,23],[-51,-1],[-42,-25],[-72,4],[5,31],[-51,5],[-4,42],[-46,-19],[-45,26],[-25,-39],[-60,17],[-3,59],[-63,9],[-2,52],[-47,10],[-46,27],[-87,-24],[-21,28],[57,16],[-2,34],[34,47],[56,-5],[63,-20],[26,53],[-13,51],[-79,26],[-24,53],[-64,10],[-58,-17],[-27,6],[-25,49],[15,36],[-49,4],[-78,86],[22,74],[38,-10],[2,40],[-29,3],[8,53],[32,11],[3,52],[26,71],[-42,69],[-50,-88],[-43,-22],[14,74],[47,102],[1,44],[-21,56],[-56,61],[-19,-24],[46,-93],[-8,-39],[-30,-36],[-50,4],[-52,21],[-67,57],[-28,-13],[75,-80],[36,6],[23,-27],[3,-45],[-25,-34],[31,-34],[-9,-30],[23,-45],[-18,-65],[-102,-53],[-27,28],[-41,-4],[-39,30],[-54,9],[-31,30],[37,70],[13,67],[-37,49],[-43,21],[-4,35],[31,41],[-76,41],[22,42],[-10,40],[-68,9],[-43,-26],[-38,11],[-12,30],[17,39],[-7,58],[-45,-20],[-43,17],[9,-126],[30,-36],[23,-66],[-44,-23],[116,-71],[2,-88],[-76,-12],[79,-66],[-13,-17],[92,-67],[-13,-65],[11,-32],[69,-69],[18,-38],[-27,-19],[38,-49],[50,-6],[7,-31],[75,-87],[73,-63],[4,-38],[45,-80],[-14,-82],[61,-12],[-52,-83],[69,-41],[-80,-27],[-49,68],[-41,-20],[-91,18],[-15,45],[-34,50],[17,38],[-48,63],[-56,15],[-88,94],[-44,70],[-17,73],[-46,50],[-2,29],[-61,5],[-45,41],[-30,111],[22,21],[-21,72],[-45,14],[-22,33],[22,43],[-62,55],[2,35],[76,22],[-62,23],[40,35],[-39,54],[33,31],[-47,17],[32,151],[95,20],[-81,47],[-39,-14],[-35,-110],[-77,-14],[-48,-22],[-23,44],[-41,11],[-47,-47],[-36,6],[-29,34],[-11,52],[21,95],[-15,73],[36,19],[78,-10],[0,33],[47,21],[38,-5],[53,-120],[74,-8],[8,47],[-53,47],[9,64],[61,60],[52,-1],[47,-40],[18,52],[32,30],[51,-1],[16,50],[-56,32],[-6,58],[-90,56],[73,32],[-39,89],[-32,4],[-16,38],[48,23],[8,25],[-65,33],[-26,-30],[-46,12],[-88,-14],[6,36],[-44,15],[-66,49],[-58,23],[-21,33],[6,45],[46,10],[5,37],[-45,82],[13,20],[68,6],[38,50],[-37,24],[-84,-43],[-102,48],[-35,3],[27,-65],[5,-66],[-52,-30],[-78,27],[-90,57],[-48,66],[6,20],[-44,42],[69,30],[-15,20],[13,43],[110,33],[138,-58],[2,-54],[69,-2],[92,14],[11,33],[59,-5],[13,17],[-32,38],[17,63],[-31,63],[-63,-14],[-17,42],[-81,29],[55,50],[-64,7],[-55,44],[60,98],[-48,47],[-61,-77],[-81,-31],[-38,-84],[-28,-27],[-89,-21],[-37,12],[-46,-11],[-20,36],[-50,-16],[-22,80]],[[66955,163620],[5,21],[58,37],[-4,37],[23,36],[71,35],[7,15],[-67,28],[33,47],[106,10],[60,-45],[4,39],[57,-44],[-19,-91],[-51,-17],[-11,-75],[-42,-48],[-31,31],[-42,12],[-20,32],[-82,-26],[-55,-34]],[[66939,165907],[43,-4],[38,-43],[-42,-18],[-39,65]],[[66930,166074],[36,0],[60,-70],[-24,-19],[-41,30],[-31,59]],[[66876,167889],[30,93],[45,14],[49,-41],[-124,-66]],[[66777,164688],[0,36],[94,52],[37,-19],[20,-90],[-8,-54],[-37,-59],[-57,17],[-30,39],[-19,78]],[[66473,169839],[63,-14],[-3,-36],[-55,22],[-5,28]],[[66370,169345],[39,-4],[45,-96],[81,-121],[-37,-22],[-84,105],[25,27],[-69,111]],[[66274,169492],[56,-2],[37,-36],[30,-1],[35,-48],[-9,-24],[-79,-10],[-61,79],[-9,42]],[[66152,164710],[43,41],[57,-23],[52,18],[2,-78],[49,30],[58,9],[59,31],[44,-11],[-15,-44],[-142,-78],[-14,-29],[-116,-62],[-40,29],[-7,30],[43,39],[-53,51],[-20,47]],[[66071,166876],[17,44],[41,20],[44,45],[-5,19],[53,36],[41,-1],[100,-76],[95,-65],[20,69],[-104,59],[21,16],[-41,35],[-34,-5],[-11,40],[77,-18],[31,-25],[38,13],[39,62],[36,-27],[75,-24],[24,-23],[54,-143],[12,-80],[51,-5],[-2,-39],[43,-33],[25,-99],[-31,-34],[62,-72],[33,40],[-1,46],[15,96],[-37,50],[117,-5],[-2,-29],[63,-4],[-7,52],[-29,37],[-57,41],[24,25],[-80,14],[-35,60],[28,36],[3,40],[-38,86],[-71,50],[-58,60],[-71,46],[29,46],[-24,34],[32,38],[100,30],[94,36],[106,-34],[116,-14],[45,-34],[87,-18],[54,5],[53,-36],[55,-19],[56,-1],[125,-63],[130,5],[18,12],[69,-19],[102,9],[105,-23],[67,-25],[63,-91],[56,-28],[27,-45],[17,-79],[21,-25],[18,-79],[-7,-36],[46,-53],[133,-25],[58,-73],[28,-15],[36,-71],[4,-30],[49,-27],[22,-33],[102,-43],[-11,-52],[42,-69],[84,-28],[1,-49],[-117,-76],[-42,4],[-78,-57],[-52,-53],[-117,-28],[-82,35],[-42,-19],[-73,21],[-16,64],[-36,-11],[-10,-51],[-70,19],[-26,34],[-41,-9],[-60,-122],[-42,-41],[-74,-28],[-74,68],[-40,-16],[-27,23],[-41,-30],[-45,15],[-24,49],[-94,-14],[34,-33],[4,-32],[-31,-22],[-92,-7],[-18,-27],[-141,-3],[-86,26],[-21,207],[16,43],[-41,22],[2,37],[52,31],[-36,42],[-34,-48],[-30,-15],[-22,-56],[-67,6],[-18,43],[-61,38],[-4,28],[-51,-5],[-14,-29],[48,-22],[15,-36],[-26,-25],[-22,-88],[-23,-27],[-53,13],[5,-44],[90,-43],[13,-69],[26,-41],[-45,-4],[-28,35],[-34,-11],[46,-108],[-59,-18],[13,-43],[85,-39],[27,-63],[-44,-44],[14,-41],[-37,-25],[-25,54],[-25,7],[-64,103],[-45,-7],[12,-64],[56,-30],[13,-56],[20,-10],[51,-120],[-28,-47],[-31,21],[-51,-16],[32,-95],[-6,-69],[-31,-6],[-2,-96],[-54,-22],[-28,10],[-43,73],[30,110],[-14,65],[-37,58],[-2,51],[27,33],[-11,97],[-46,-63],[10,-61],[-34,-24],[1,-122],[-27,-35],[-83,-7],[-24,-21],[125,-38],[-13,-76],[35,-20],[-72,-68],[38,-38],[-13,-70],[-26,-25],[-60,33],[-9,76],[-77,32],[10,48],[27,33],[-71,35],[-4,28],[51,23],[10,53],[-63,0],[10,28],[-1,110],[-29,71],[2,29],[67,24],[20,20],[12,56],[-43,5],[-19,-51],[-39,-1],[-27,51],[32,14],[-30,61],[1,29],[47,37],[39,91],[-6,51],[-21,26],[10,33],[48,48],[42,-64],[56,-151],[18,50],[-32,72],[48,49],[-40,81],[-53,55],[-21,59],[-60,34],[-70,9],[-28,85],[41,58],[-27,66],[-49,-2],[-17,58],[-37,4],[-2,36],[-45,86],[15,77],[-31,96],[-15,85]],[[65326,170713],[30,8],[65,-97],[81,-154],[-54,3],[-79,142],[0,38],[-43,60]],[[65263,170462],[17,92],[53,-63],[52,-147],[24,2],[-16,72],[61,-23],[52,-48],[2,-56],[76,-64],[12,-55],[51,-44],[-1,-85],[20,-72],[87,5],[148,45],[53,-24],[82,4],[37,-9],[68,-45],[79,-16],[132,32],[39,21],[43,-17],[-8,-39],[21,-36],[-51,-30],[30,-49],[-13,-23],[28,-38],[103,-109],[17,-54],[-17,-23],[98,-115],[64,-62],[-21,-42],[156,-204],[-4,-92],[19,-65],[23,-15],[-27,-40],[0,-75],[58,-75],[64,-54],[14,-104],[-14,-33],[-39,15],[-25,55],[-2,46],[-82,102],[-34,18],[-53,59],[-46,102],[2,27],[-33,36],[9,56],[-38,65],[-91,75],[-32,75],[-32,0],[-34,110],[26,22],[-13,43],[-48,52],[2,20],[-50,60],[-136,43],[110,-110],[-41,-14],[-85,46],[-19,-29],[29,-24],[17,-58],[43,-82],[-2,-62],[-34,-99],[80,61],[26,-20],[27,-64],[84,-128],[7,-31],[73,-118],[62,-55],[23,-49],[-55,-8],[-18,-28],[124,-7],[54,-40],[60,-72],[-17,-94],[27,-76],[61,-69],[50,-106],[-32,9],[-41,47],[-41,-45],[48,-44],[29,-57],[-13,-41],[36,-90],[-25,-36],[-81,-39],[-41,-66],[-25,-4],[-49,46],[-67,18],[-45,-1],[-30,-24],[-23,72],[-50,47],[-18,39],[-40,-17],[53,-46],[6,-45],[43,-52],[-10,-32],[60,-61],[-5,-43],[-80,-40],[-10,-92],[-82,-75],[-67,19],[-66,-108],[-38,-28],[-94,9],[-24,-36],[53,-47],[-76,-59],[-88,-44],[15,-52],[-106,-9],[-30,36],[-62,16],[-43,146],[-1,68],[51,50],[-60,71],[-11,102],[40,8],[80,-33],[36,37],[-50,12],[-51,45],[79,109],[76,23],[-39,49],[-63,13],[15,79],[-16,53],[76,13],[-5,-39],[64,-37],[84,-8],[9,35],[-62,19],[-114,141],[-2,34],[-54,11],[9,25],[-20,46],[-33,142],[-91,128],[-47,149],[4,37],[-37,40],[-10,63],[37,101],[-14,21],[19,86],[-35,130],[-21,31],[-6,91],[-36,86],[8,54],[-54,71],[-9,39],[13,58],[45,40],[-46,40],[-28,86],[-45,53],[-8,29],[-63,41],[-29,72],[57,59],[-61,-10],[-33,62],[-20,90],[10,54],[-27,87]],[[65151,170844],[70,-75],[35,0],[25,-76],[-60,24],[-50,75],[-20,52]],[[64695,171969],[37,-16],[46,-106],[-9,-71],[-40,10],[-26,92],[-8,91]],[[64486,167486],[25,40],[45,-1],[17,-35],[-17,-38],[-70,34]],[[64455,167791],[53,55],[51,-21],[49,12],[22,-32],[-1,-37],[-35,-58],[-59,-14],[-80,95]],[[64369,166937],[12,15],[111,-40],[-66,-37],[-38,18],[-19,44]],[[64192,168102],[12,24],[85,2],[111,-25],[44,27],[-67,17],[-20,17],[-65,-1],[-9,25],[65,36],[35,48],[4,32],[39,3],[1,84],[-22,45],[44,15],[106,110],[100,-1],[85,-45],[19,-45],[28,-21],[-27,-36],[-86,-36],[-73,-48],[37,-13],[43,18],[19,30],[81,23],[70,-3],[36,15],[51,-22],[35,-58],[80,-48],[70,-29],[10,-27],[80,8],[18,23],[79,16],[64,-13],[90,-52],[-9,-32],[52,-112],[-15,-48],[2,-54],[-75,42],[-59,63],[-71,-34],[-11,-45],[28,-24],[-8,-64],[42,-27],[20,28],[-15,43],[50,2],[56,-99],[-4,-47],[-23,-32],[68,-69],[20,-50],[-22,-45],[27,-24],[67,-236],[-16,-24],[34,-40],[-3,-122],[21,-11],[16,-61],[29,-54],[-11,-48],[3,-98],[43,-40],[29,-157],[33,-65],[2,-76],[16,-59],[4,-73],[-18,-113],[-4,-95],[-57,-15],[20,-83],[-6,-27],[30,-38],[-8,-116],[21,-120],[-26,-74],[-71,-52],[87,14],[3,-57],[-37,-47],[-16,-50],[66,5],[-39,-76],[-11,-53],[12,-20],[-20,-79],[-58,49],[25,26],[-26,49],[-44,-17],[-55,11],[-53,53],[-47,101],[1,30],[-82,43],[-8,73],[-63,69],[8,73],[-55,46],[-24,79],[-47,58],[-17,75],[-35,20],[16,46],[-17,54],[39,57],[61,24],[33,-4],[26,29],[-52,44],[-59,7],[-12,-32],[-88,-59],[-72,-2],[19,46],[-33,74],[25,89],[-57,-7],[-6,-37],[-49,-9],[-39,41],[51,39],[18,37],[-34,11],[-15,-34],[-38,-16],[-46,9],[-53,63],[-2,48],[66,30],[-8,24],[-53,32],[-55,-79],[-24,74],[-43,-13],[-69,15],[-27,-18],[-56,30],[15,57],[-6,44],[119,29],[28,-3],[22,103],[30,19],[13,93],[-47,44],[8,84],[101,-17],[-31,48],[60,29],[48,-6],[45,51],[-76,-1],[-29,33],[-45,5],[-59,-20],[2,57],[-53,95],[17,46],[32,15],[-10,34],[59,37],[79,3],[-34,32],[-57,-13],[-99,-51],[-20,45],[70,71],[7,74],[42,37],[-104,14],[-47,-12],[-35,17],[-47,-3],[-44,-36],[-34,-6],[-41,80],[-25,26],[41,21],[-96,55],[-2,19],[-53,35],[-29,58]],[[64132,170454],[116,42],[64,-20],[111,-76],[-24,-38],[-190,7],[-77,85]],[[63922,167785],[65,63],[-19,41],[24,89],[-43,30],[14,40],[94,-8],[25,33],[207,-110],[85,-126],[1,-49],[-39,2],[-46,39],[6,-68],[32,-45],[-5,-76],[64,34],[18,23],[-1,50],[25,42],[114,-111],[-65,-56],[-19,-38],[-80,36],[8,-48],[-22,-59],[7,-45],[-48,-52],[-11,-60],[-37,-47],[-69,-18],[-49,-26],[-75,-3],[-126,-22],[14,217],[63,54],[56,12],[5,58],[34,23],[-17,38],[-60,23],[-33,-20],[-38,22],[26,69],[-5,36],[30,33],[-36,20],[-15,-41],[-59,1]],[[63513,170989],[16,29],[48,-2],[31,-97],[-20,-16],[-75,86]],[[63506,170252],[59,53],[35,-6],[82,42],[2,-109],[-32,5],[-28,-34],[-79,6],[-39,43]],[[63310,168931],[56,28],[33,-55],[-51,-7],[-38,34]],[[63141,170228],[57,-17],[72,22],[54,-29],[-39,-67],[-71,14],[-73,77]],[[62888,169669],[26,40],[-13,38],[44,75],[103,4],[28,50],[122,69],[46,-33],[46,-8],[-29,85],[-49,58],[3,68],[63,-27],[26,29],[30,-18],[2,-34],[40,-32],[18,-70],[64,12],[-17,40],[87,105],[108,-24],[43,9],[32,-32],[-1,-30],[60,4],[12,38],[43,27],[64,63],[41,6],[54,43],[13,31],[68,4],[15,-42],[56,-65],[76,-31],[53,16],[36,-49],[136,-55],[47,-38],[-42,-50],[4,-70],[-24,-44],[-67,-45],[-62,-77],[-63,15],[-34,-31],[20,-26],[76,-21],[-11,-82],[58,7],[46,65],[5,40],[41,64],[26,5],[26,56],[68,32],[-13,75],[58,22],[41,-7],[84,-48],[60,-70],[28,16],[145,-25],[91,11],[43,-23],[-9,-40],[173,-36],[37,-22],[30,-53],[25,-91],[-31,-10],[-5,-43],[27,-20],[-4,-53],[-113,-79],[-59,12],[-64,37],[-47,15],[-117,64],[-7,-26],[98,-109],[94,-28],[42,-24],[18,-56],[106,-61],[-81,-64],[-86,-29],[-36,25],[-37,-18],[15,-41],[48,-23],[42,10],[36,-25],[62,39],[75,-8],[15,-109],[24,-41],[-42,-64],[49,-27],[57,-113],[14,-60],[-11,-116],[29,-64],[-49,-7],[-42,-22],[40,-43],[-30,-30],[-116,8],[-81,-18],[-91,22],[-57,75],[-46,21],[-52,46],[-32,6],[-50,48],[-35,14],[-114,81],[-28,0],[-67,50],[-94,48],[-53,46],[-78,46],[-122,-110],[62,-31],[42,18],[77,-27],[18,-22],[-80,-35],[-19,-30],[-48,-16],[71,-35],[-21,-62],[47,-98],[-6,-54],[-67,-30],[7,-38],[-41,-16],[-21,-31],[-60,0],[2,-44],[-46,-44],[-63,3],[-46,42],[-42,-6],[-62,22],[-33,60],[-56,57],[-51,37],[-34,5],[-19,56],[-59,28],[-47,37],[4,30],[-66,79],[5,23],[53,24],[-48,40],[-49,-21],[-35,-38],[-35,0],[-92,52],[69,34],[-71,33],[6,27],[-28,31],[-21,73],[50,37],[36,-6],[1,55],[24,41],[-44,16],[-60,59],[-17,-81],[-37,-6],[-42,54],[26,56],[-33,6],[-14,46],[-41,16],[-7,54],[-79,-22],[-25,56],[-70,36],[-17,28],[35,39],[-20,23],[-100,32],[-30,51],[23,15],[-22,39],[18,76],[-22,102]],[[62462,171788],[19,24],[61,-16],[-16,-74],[-64,66]],[[58424,173610],[19,35],[50,-7],[51,-28],[-60,-31],[-60,31]],[[58119,173304],[47,35],[38,53],[33,11],[-12,-121],[-46,-8],[-32,-40],[-28,70]],[[51281,174634],[46,-1],[97,-29],[17,-43],[-7,-46],[-28,-32],[-39,57],[-73,63],[-13,31]],[[51026,173784],[40,78],[20,63],[71,68],[108,91],[18,47],[52,4],[77,65],[0,27],[187,57],[-12,-47],[-102,-64],[-117,-92],[-57,-35],[-59,-77],[-48,-22],[-60,-52],[-55,-73],[-63,-38]],[[49453,175120],[103,10],[56,-18],[38,-55],[33,-15],[0,-36],[-76,-31],[-56,15],[-23,37],[-64,52],[-11,41]],[[48950,175196],[86,27],[90,-24],[48,3],[60,-27],[104,3],[-8,-68],[-38,-16],[-76,-5],[-53,16],[-35,38],[-169,40],[-9,13]],[[48469,175354],[25,34],[0,39],[44,50],[100,5],[92,22],[23,-14],[106,57],[82,19],[29,37],[35,-22],[29,49],[74,17],[78,-5],[82,23],[44,-27],[-59,-58],[-329,-141],[-94,-55],[-208,-61],[-124,6],[-29,25]],[[47886,175162],[27,13],[11,57],[32,32],[56,85],[48,50],[110,8],[36,-36],[69,4],[36,-12],[76,36],[64,-35],[-23,-96],[36,-49],[53,22],[97,11],[157,28],[12,-44],[48,-4],[16,-111],[-98,7],[-66,-17],[-87,-60],[-34,20],[-97,-13],[-141,-58],[-75,-43],[-91,-75],[-92,-61],[-64,3],[-11,38],[-36,2],[-24,57],[67,51],[184,79],[17,61],[-68,-22],[-70,6],[-31,-49],[-29,-10],[-57,41],[-43,-9],[-15,93]],[[47760,176182],[0,53],[46,62],[44,-35],[12,62],[69,-71],[-26,-27],[-12,-60],[-97,-13],[-36,29]],[[47098,198144],[60,44],[47,-26],[-107,-18]],[[47007,176319],[92,27],[54,49],[91,-27],[135,0],[-22,-59],[-68,-45],[-80,13],[-20,32],[-70,-2],[-112,12]],[[46871,175909],[84,31],[10,-28],[-32,-43],[-62,40]],[[46776,175975],[104,5],[3,-33],[-98,12],[-9,16]],[[46747,175800],[59,15],[41,55],[38,9],[44,-86],[29,33],[56,-28],[-35,-60],[-32,-6],[-63,47],[-17,-38],[-63,-5],[38,51],[-75,-12],[-20,25]],[[46746,174872],[54,18],[51,53],[54,34],[18,-24],[60,30],[5,-66],[-29,-25],[-73,-27],[-100,-64],[-40,71]],[[46117,173770],[42,23],[3,46],[-21,50],[38,59],[37,22],[118,5],[-48,82],[13,28],[67,32],[31,48],[81,-2],[26,32],[-27,31],[-1,36],[106,40],[61,45],[27,44],[177,100],[45,42],[44,65],[1,47],[45,22],[62,90],[-14,36],[147,36],[-2,65],[16,30],[-39,15],[17,47],[64,3],[-1,27],[-61,20],[7,47],[72,29],[12,25],[86,19],[12,-36],[-78,-56],[101,-2],[104,13],[-20,-51],[-104,-73],[-36,-52],[27,-13],[83,39],[48,44],[41,0],[34,25],[52,-7],[1,-37],[-44,-47],[-29,-52],[-169,-112],[-6,-17],[-72,-30],[-98,-69],[-96,-114],[-57,-47],[-80,-87],[-37,-97],[19,-23],[-16,-47],[41,-29],[-30,-19],[-71,31],[-111,-64],[-5,-46],[20,-25],[62,-13],[4,-75],[-40,-34],[-89,-39],[-67,30],[-62,-5],[-57,-48],[-9,-34],[-58,-23],[-63,-9],[-90,-39],[-43,-35],[-65,-14],[-48,18],[-30,34]],[[46058,174855],[46,26],[11,58],[22,26],[127,9],[48,11],[35,32],[44,13],[-25,37],[-69,-42],[-56,-21],[-70,3],[-18,50],[46,15],[-14,44],[38,33],[54,160],[132,-1],[16,149],[42,8],[35,-37],[34,29],[-34,80],[39,-2],[31,31],[104,38],[2,-44],[-39,-26],[-11,-59],[-26,-34],[-56,-29],[24,-60],[-36,-38],[48,-29],[5,-24],[-56,-36],[-57,-6],[20,-53],[70,15],[13,-55],[-72,-86],[5,-34],[-94,-88],[6,-34],[-34,-16],[16,-46],[55,15],[-31,-90],[-33,-20],[-28,-94],[-42,13],[-81,69],[45,72],[-209,17],[6,34],[-28,17]],[[45981,175962],[45,10],[58,41],[72,-26],[85,-100],[-31,-49],[-93,21],[-9,-57],[-97,72],[6,58],[-36,30]],[[45944,174647],[34,53],[28,-42],[-41,-44],[-21,33]],[[45928,174152],[74,95],[41,39],[56,31],[12,48],[77,67],[44,23],[53,-46],[-75,-151],[-77,-61],[-167,-72],[-38,27]],[[45783,175001],[10,37],[82,32],[-10,30],[66,50],[100,-13],[-6,-51],[-38,-81],[-8,-80],[-80,-17],[-75,17],[-35,33],[-6,43]],[[45786,174265],[34,13],[21,112],[28,30],[29,64],[49,21],[5,24],[115,35],[78,12],[31,-64],[-141,-102],[-6,-32],[-61,-4],[-53,-33],[-81,-105],[-48,29]],[[45643,174126],[52,0],[25,51],[-9,27],[88,13],[37,-26],[82,92],[77,77],[26,-25],[-65,-90],[-81,-80],[-83,-41],[-112,-14],[-37,16]],[[43997,174046],[44,12],[-35,36],[56,20],[-15,-63],[-50,-5]],[[42636,176905],[63,24],[25,72],[83,17],[2,-50],[-104,-73],[-69,10]],[[42408,172800],[21,16],[74,9],[8,-24],[-22,-69],[-49,20],[36,42],[-68,6]],[[41913,172678],[39,42],[17,59],[38,16],[5,80],[17,35],[85,-25],[40,-32],[-17,-22],[20,-42],[-13,-36],[-62,-41],[-30,-68],[-59,-37],[-80,71]],[[40800,172277],[40,-1],[75,-33],[28,-36],[-15,-23],[-49,15],[-73,40],[-6,38]],[[40509,172203],[31,33],[97,-46],[-34,-34],[-76,13],[-18,34]],[[40276,172297],[87,51],[51,-32],[-28,-68],[-44,21],[-56,5],[-10,23]],[[40257,170057],[2,39],[40,32],[-17,38],[59,52],[64,-23],[10,-35],[-8,-73],[-20,-56],[-81,-51],[-49,77]],[[40068,171734],[64,24],[34,-25],[-77,-15],[-21,16]],[[39976,175075],[14,42],[58,1],[39,20],[7,48],[-20,22],[57,27],[23,46],[13,70],[-18,32],[31,59],[33,32],[132,-68],[-87,-51],[11,-42],[-86,-42],[-52,-79],[36,-55],[-46,-28],[-130,-43],[-15,9]],[[39633,168107],[56,65],[38,-24],[-49,-39],[-45,-2]],[[39573,171735],[48,-5],[47,96],[91,-41],[-16,-59],[-76,-17],[-54,5],[-40,21]],[[39573,169085],[46,43],[27,-44],[-21,-33],[-42,-14],[-10,48]],[[39157,174657],[28,35],[58,-18],[32,-71],[15,-60],[-57,-8],[-64,85],[-12,37]],[[38830,169495],[20,31],[80,20],[65,-5],[42,22],[-26,-94],[-31,-50],[-30,-9],[-101,48],[-19,37]],[[38007,169737],[33,47],[87,44],[0,46],[62,62],[54,-3],[94,-99],[38,-29],[115,1],[57,50],[-157,-3],[-11,39],[-78,75],[14,99],[51,35],[37,-20],[95,-16],[42,-16],[74,13],[1,50],[-89,35],[-51,57],[49,41],[33,64],[84,-23],[14,-20],[91,-9],[18,-27],[43,8],[-1,28],[49,32],[-92,14],[-42,63],[71,20],[21,-20],[77,-11],[54,50],[4,40],[-40,-2],[-26,33],[-37,0],[-14,52],[74,2],[52,38],[10,40],[33,8],[8,44],[98,10],[36,44],[69,-32],[38,1],[50,-25],[41,20],[-71,26],[-17,20],[-59,16],[-58,31],[19,56],[-34,18],[13,60],[29,23],[-5,31],[46,44],[29,-5],[24,37],[41,-44],[61,-9],[76,84],[55,-57],[23,42],[88,28],[-17,-98],[23,-21],[-49,-58],[-16,-42],[27,-28],[-55,-41],[-14,-50],[-103,-58],[-49,-99],[10,-33],[55,-31],[-38,-61],[11,-49],[47,0],[28,48],[36,-56],[61,23],[4,47],[35,33],[-25,53],[49,44],[62,-26],[55,-44],[47,-55],[-36,-29],[37,-39],[46,12],[20,40],[62,44],[19,-49],[39,3],[-32,-108],[-41,-81],[-11,-61],[6,-99],[24,10],[26,69],[2,48],[36,68],[39,5],[-21,-88],[54,37],[52,128],[51,-26],[-8,-40],[8,-131],[-33,-44],[21,-18],[-40,-61],[-48,4],[-36,-28],[16,-28],[-56,-71],[-44,-13],[-34,21],[-8,45],[-63,-12],[-25,12],[-33,67],[26,17],[-23,42],[-62,20],[-70,6],[-1,-67],[33,-24],[0,-60],[-63,30],[10,-64],[91,-66],[-119,-54],[-6,32],[-51,8],[-16,-22],[-88,42],[-10,-26],[-92,-22],[-15,-66],[-37,-4],[-19,72],[16,47],[-2,94],[-48,23],[-16,-79],[-2,-72],[-37,-85],[-39,-57],[-113,-26],[-66,6],[34,-64],[-37,-76],[-27,-10],[-81,11],[-55,-56],[-37,17],[-99,3],[-97,21],[-58,26],[-64,47],[-115,33],[-50,29],[-81,13],[-100,-29],[-21,34],[-59,20]],[[37775,172810],[22,37],[92,2],[50,31],[68,20],[43,-7],[17,-42],[46,-45],[10,-40],[-33,-43],[-83,-25],[-139,-17],[-57,34],[13,53],[-49,42]],[[37714,167023],[88,34],[1,-34],[-47,-30],[-42,30]],[[36918,166517],[28,50],[62,3],[37,29],[73,-3],[-8,-75],[-143,23],[-49,-27]],[[36612,166187],[75,103],[37,26],[98,46],[40,-23],[72,6],[73,23],[29,-67],[48,-73],[32,-16],[119,13],[47,14],[57,-5],[9,-27],[-29,-45],[-77,-34],[-21,-28],[-74,4],[-89,-14],[-67,0],[-80,21],[-102,-38],[-66,25],[-95,9],[-33,41],[-3,39]],[[36388,169745],[23,16],[52,-36],[-54,-16],[-21,36]],[[35974,165928],[42,76],[59,84],[56,62],[74,46],[120,94],[66,34],[59,2],[107,-35],[20,-37],[-8,-40],[-104,-65],[-6,-29],[-128,-40],[-123,-65],[-134,-147],[-45,-9],[-46,39],[-9,30]],[[35973,168070],[25,43],[61,-19],[56,79],[4,63],[-28,27],[75,61],[51,122],[69,27],[79,50],[23,61],[24,24],[55,-16],[56,23],[41,53],[71,44],[13,36],[54,-4],[61,14],[53,47],[189,-27],[99,24],[74,-27],[-13,-43],[13,-23],[-3,-82],[17,-44],[-20,-54],[88,-26],[7,-61],[72,17],[-8,72],[42,41],[4,28],[59,27],[-90,81],[-17,27],[20,42],[64,-5],[118,6],[28,-19],[90,-3],[21,24],[-41,41],[-43,10],[-137,54],[-36,-4],[-62,25],[-85,-11],[-23,76],[13,43],[-10,50],[4,83],[96,67],[16,60],[99,12],[82,57],[107,-31],[63,4],[-18,-44],[13,-44],[37,1],[39,-28],[19,-64],[22,-16],[19,-54],[-30,-36],[-2,-87],[43,-25],[25,58],[25,93],[37,-25],[38,8],[-7,37],[-51,68],[-12,52],[21,16],[93,-26],[81,-49],[82,-19],[41,39],[-66,13],[-22,61],[-94,15],[-22,34],[-65,15],[-56,46],[-65,69],[27,77],[82,18],[61,-45],[34,-5],[126,-90],[38,-6],[42,-47],[29,22],[37,-6],[71,-34],[13,-24],[85,-60],[17,27],[-69,90],[-89,77],[-13,31],[-98,42],[-53,81],[35,23],[44,-8],[73,-64],[69,-9],[52,-39],[46,24],[44,4],[81,-33],[63,-6],[40,10],[45,-31],[77,-12],[71,-39],[-15,-48],[-72,-36],[-11,-41],[-49,-73],[-9,-42],[24,-31],[-20,-99],[51,-48],[40,3],[-14,109],[9,100],[25,36],[53,32],[56,-25],[18,-60],[23,0],[19,88],[22,32],[59,24],[32,33],[3,49],[41,16],[67,-49],[38,11],[154,155],[41,-28],[-17,-54],[31,-21],[56,-2],[56,-26],[-61,-75],[-61,6],[-29,35],[-34,5],[-31,-30],[18,-45],[47,-11],[29,-45],[-54,-22],[34,-50],[33,24],[77,19],[30,-28],[-81,-67],[-10,-49],[-49,-2],[-22,25],[-53,-37],[-16,-54],[57,-47],[-46,-28],[10,-22],[-10,-69],[-53,-34],[30,-29],[29,30],[106,70],[38,-23],[-70,-66],[-48,-86],[-14,-45],[48,0],[28,34],[66,47],[29,58],[44,-41],[-1,-40],[69,25],[31,-33],[108,18],[26,-74],[-152,-149],[-52,-26],[-45,-112],[-3,-66],[-19,-43],[-173,50],[6,34],[-51,22],[-44,-80],[-36,36],[-71,12],[-51,52],[-42,-28],[-49,4],[-78,89],[-54,-1],[-39,-22],[-65,31],[-56,8],[-44,-75],[49,-19],[93,2],[83,-32],[45,-49],[9,-35],[87,-36],[57,-2],[5,-32],[33,-20],[-5,-61],[-40,-27],[-2,-61],[-94,-93],[-20,52],[-52,24],[-97,-107],[-47,19],[7,53],[-52,-15],[-58,44],[-5,30],[37,24],[-3,26],[-70,-32],[-57,2],[-10,24],[-100,-27],[-69,-29],[-66,9],[-39,-24],[31,-28],[51,-3],[27,-25],[42,18],[48,-3],[31,17],[61,-38],[50,-59],[-58,-52],[-65,-16],[-71,-41],[-126,3],[-67,17],[-10,-50],[59,-6],[13,-23],[-5,-69],[72,49],[78,26],[-15,-37],[78,-12],[17,29],[89,16],[43,-51],[59,-2],[15,-35],[-65,-58],[-61,-14],[-99,8],[-54,-32],[-50,-5],[-1,-25],[-43,-14],[-50,23],[-74,-49],[-18,-45],[31,-48],[-57,-85],[-41,-2],[-64,-27],[-57,47],[35,35],[-1,38],[-54,23],[42,35],[-19,26],[-81,-35],[-5,41],[67,44],[-30,52],[62,57],[69,77],[-1,78],[-47,-44],[-31,-11],[-86,-81],[-40,-67],[-34,-33],[-25,10],[-25,54],[-47,-25],[34,-53],[11,-40],[-20,-56],[-116,66],[-44,-16],[-93,0],[1,-30],[-49,-39],[61,-8],[35,13],[66,-8],[22,-39],[-47,-42],[101,-48],[-20,-71],[-62,-33],[-16,-50],[-86,-8],[-56,23],[19,-57],[-62,-64],[-50,-19],[-13,-31],[84,22],[57,-5],[-36,-51],[-48,-11],[-73,-38],[-20,38],[-50,-23],[-11,-44],[-80,-70],[-11,-50],[-108,-57],[-61,0],[-28,47],[-140,-49],[-19,17],[23,81],[35,34],[1,31],[57,85],[84,26],[40,86],[55,41],[60,26],[43,3],[42,41],[5,50],[-29,24],[-80,-44],[-86,4],[18,74],[-9,14],[78,135],[-13,16],[77,64],[32,5],[74,54],[30,45],[-6,56],[-32,3],[-23,-69],[-90,-26],[-33,-48],[-102,-77],[-66,-106],[-36,-36],[-50,-79],[-62,-3],[-68,-115],[-70,-24],[-30,-51],[6,-30],[-68,-49],[-42,-5],[2,82],[-10,55],[-31,42],[-53,29],[-56,59],[-94,40],[-88,27],[14,77],[2,115],[-14,187],[-9,62],[-54,91],[-37,81],[-44,34],[-77,9],[-28,26],[-51,-19],[-35,34],[12,55],[-12,30],[-40,12],[-28,32]],[[34560,164505],[109,57],[38,43],[29,82],[55,30],[50,-14],[5,-28],[-38,-100],[31,-92],[3,-52],[-36,-65],[-39,-13],[-47,36],[-120,5],[-13,39],[16,28],[-43,44]],[[33086,165006],[38,-2],[17,52],[55,67],[53,-39],[9,-53],[-66,-19],[-5,-43],[-83,7],[-18,30]],[[33004,165311],[-1,70],[37,26],[45,-40],[-21,-40],[1,-52],[-59,9],[-2,27]],[[32231,166178],[87,96],[41,8],[54,-14],[57,17],[134,-9],[120,-68],[-32,-6],[-151,9],[-45,-57],[-67,-2],[-69,13],[-36,-9],[-93,22]],[[31382,165729],[51,31],[58,17],[34,-25],[-19,-25],[30,-55],[-41,-29],[-35,21],[-20,35],[-58,30]],[[29912,164513],[44,122],[37,-2],[66,36],[77,-40],[3,-59],[-85,-2],[13,33],[-77,-17],[-25,-31],[-2,-40],[-51,0]],[[29490,164551],[46,52],[9,28],[75,-51],[4,-50],[-32,-20],[-37,6],[-65,35]],[[29257,162349],[55,21],[11,28],[-24,25],[49,42],[21,-54],[39,-11],[49,14],[12,-41],[-51,-77],[-61,-33],[-52,11],[-21,55],[-27,20]],[[29224,164435],[15,31],[60,21],[33,-39],[-4,-39],[32,-17],[-16,-33],[-39,17],[-44,55],[-37,4]],[[29173,164262],[21,19],[21,106],[53,-3],[2,-29],[-75,-82],[-22,-11]],[[29053,162629],[37,33],[23,59],[42,-13],[56,21],[38,-11],[-12,-47],[-30,-33],[48,-54],[23,-55],[-55,-12],[-30,-42],[-60,-30],[-38,70],[25,28],[54,-16],[-1,44],[-33,19],[3,82],[-59,-53],[-31,10]],[[28869,162148],[57,20],[38,-52],[43,-32],[-13,-68],[-75,-8],[-50,140]],[[28793,162871],[14,26],[48,-19],[34,-40],[37,155],[-30,84],[58,-10],[40,83],[23,-17],[-15,-69],[-39,-33],[8,-39],[49,2],[16,-46],[-3,-46],[-53,-72],[-4,-53],[67,-69],[-36,-28],[-35,29],[-22,59],[-40,4],[11,-84],[-61,16],[-58,-12],[-3,43],[26,46],[45,-4],[10,26],[-46,21],[-41,47]],[[28647,162802],[41,77],[31,-22],[-9,-52],[-22,-17],[-41,14]],[[28548,162153],[74,13],[49,46],[67,-18],[-75,-37],[-38,-58],[-43,2],[-34,52]],[[28540,162753],[35,46],[54,-18],[5,-36],[-57,-21],[-37,29]],[[28496,162684],[46,-12],[22,-53],[-28,-12],[-40,77]],[[28119,163361],[38,22],[37,0],[52,-44],[-17,-40],[-97,15],[-13,47]],[[27906,162356],[15,60],[28,24],[51,-19],[30,38],[-24,42],[41,21],[40,86],[44,27],[36,42],[-24,26],[-56,-18],[-54,18],[-3,37],[86,26],[-16,22],[-91,33],[12,45],[34,-1],[66,-42],[40,-6],[-63,109],[30,31],[46,-32],[34,-57],[73,-35],[7,62],[-30,23],[-46,96],[33,45],[33,-17],[51,-48],[27,-1],[-19,85],[36,-13],[30,14],[-24,68],[51,54],[18,54],[21,3],[39,-51],[13,-53],[-18,-35],[-69,-2],[-10,-14],[20,-60],[-18,-126],[66,17],[-1,57],[48,6],[24,-41],[-21,-75],[-50,2],[21,-46],[-30,-34],[-49,29],[-52,52],[-20,-10],[-1,-58],[20,-64],[-108,-23],[29,-35],[-92,-100],[-82,-42],[-25,-49],[5,-41],[-47,-12],[-49,-29],[8,-65],[-76,-67],[-5,35],[-33,32]],[[27815,171208],[22,33],[43,11],[-5,-62],[46,-33],[-34,-17],[-69,51],[-3,17]],[[27774,163576],[35,45],[92,44],[87,-57],[69,20],[-2,-74],[21,-33],[-18,-57],[-73,33],[-42,48],[-51,1],[-23,-42],[-57,-2],[-38,74]],[[27635,171205],[19,30],[7,67],[29,45],[26,-47],[2,-59],[-59,-58],[-24,22]],[[27507,163331],[46,29],[-10,37],[52,19],[11,-23],[58,-21],[79,47],[51,3],[37,-132],[-34,-101],[-16,-12],[-57,18],[-13,58],[-58,0],[-19,26],[-46,-21],[-66,46],[-15,27]],[[27007,163332],[40,14],[-2,33],[58,93],[68,26],[37,35],[36,-18],[63,-5],[21,-23],[-4,-99],[-66,-52],[44,-49],[104,72],[-31,39],[75,97],[67,-31],[4,-47],[-25,-33],[-47,-28],[-19,-60],[16,-71],[58,-41],[-8,-43],[36,-25],[31,-80],[-28,-30],[19,-36],[-43,-80],[-19,60],[-45,-5],[-29,-22],[-37,4],[-28,40],[-64,15],[-13,52],[-37,13],[-71,-10],[-42,-82],[-14,-62],[-36,127],[-46,70],[23,55],[-2,36],[-34,34],[34,65],[-44,52]],[[26904,164679],[31,23],[69,5],[53,58],[30,-41],[-175,-49],[-8,4]],[[26685,170977],[18,33],[-13,71],[34,89],[3,58],[82,54],[121,56],[71,-2],[43,17],[74,52],[37,0],[35,56],[56,-19],[-95,-151],[-47,-106],[-73,-117],[-51,-118],[-51,-40],[-67,-28],[-113,17],[-45,-26],[-20,17],[18,44],[-17,43]],[[26154,163052],[25,36],[40,17],[36,-20],[35,17],[8,-43],[25,-35],[2,-36],[-25,-36],[-101,51],[-45,49]],[[25906,162750],[55,69],[38,-44],[-3,-37],[-48,-20],[-42,32]],[[25781,163071],[18,54],[40,27],[71,-9],[33,21],[75,23],[-40,-127],[-37,18],[-61,-43],[-99,36]],[[25477,162916],[18,41],[94,49],[51,-28],[41,-1],[67,-65],[118,-40],[6,-45],[-60,-24],[-45,-31],[-13,-37],[-63,-22],[-52,46],[2,58],[40,30],[13,37],[-12,45],[-27,30],[-41,-121],[-85,43],[-29,-3],[-23,38]],[[25442,162840],[94,-22],[-31,-37],[-63,59]],[[25381,162764],[56,-85],[-19,-11],[-30,55],[-7,41]],[[24688,162416],[80,32],[23,53],[62,43],[92,-17],[38,-48],[-5,-70],[10,-88],[-59,-72],[-3,-35],[-61,-34],[-44,21],[-12,35],[-89,60],[-15,54],[2,48],[-19,18]],[[24619,161210],[58,2],[49,-32],[14,-57],[-45,-12],[-34,27],[-42,72]],[[24270,182642],[98,44],[41,50],[46,2],[50,25],[43,-2],[75,-28],[47,6],[21,31],[78,-26],[0,-43],[55,-38],[-39,-55],[-54,-21],[-33,-34],[-82,8],[-13,-15],[-81,15],[-110,-16],[-29,35],[-54,-1],[-7,41],[-52,22]],[[24066,161237],[32,36],[2,89],[50,31],[195,-75],[56,-35],[37,-6],[64,-32],[10,-75],[-45,-21],[-93,16],[-29,-24],[-41,9],[-53,31],[-64,-40],[-53,22],[-68,74]],[[23597,163555],[8,32],[41,14],[37,-31],[-2,-48],[-31,-16],[-53,49]],[[21467,181388],[36,27],[57,-16],[-39,-36],[-54,25]],[[21434,181477],[50,59],[29,-51],[-47,-27],[-32,19]],[[20984,180482],[115,20],[33,-24],[39,-122],[-92,-18],[-48,19],[-41,42],[-6,83]],[[20982,161593],[24,50],[66,17],[41,36],[75,38],[55,4],[80,42],[57,89],[49,92],[39,104],[38,52],[49,114],[7,89],[44,22],[40,42],[53,12],[41,25],[52,-20],[86,-64],[102,28],[102,56],[54,55],[48,29],[75,-19],[63,19],[118,73],[91,87],[67,-4],[107,41],[50,-17],[120,-10],[147,13],[34,11],[-2,-57],[14,-23],[65,-45],[67,-67],[24,-39],[47,-133],[-16,-20],[4,-100],[44,-61],[4,-74],[66,-80],[44,-3],[97,11],[70,45],[53,-24],[67,-79],[5,-89],[48,-14],[31,-32],[-22,-25],[-37,2],[-92,29],[54,42],[-126,15],[-42,-16],[-96,21],[-49,45],[-15,65],[-52,4],[-41,-16],[-44,-54],[25,-65],[-15,-79],[-125,-13],[-26,-47],[-78,-11],[-20,-36],[-150,37],[-181,19],[-61,-9],[-153,-1],[-199,-26],[-171,-60],[-65,-36],[-105,-84],[-32,-52],[26,-39],[-11,-51],[-62,-73],[-110,-73],[-94,-14],[-127,-28],[-71,-31],[-85,26],[-49,-15],[-80,19],[-76,41],[-14,44],[-24,10],[-11,50],[-51,43],[20,29],[-12,36],[-36,28],[-21,127]],[[20859,176222],[33,96],[104,-35],[65,-56],[-81,-31],[-79,-17],[-42,43]],[[20855,180377],[27,60],[100,-95],[-23,-21],[-78,-1],[-26,57]],[[20576,160479],[36,36],[61,-7],[19,41],[52,-19],[43,15],[50,-31],[29,19],[72,-14],[12,33],[51,10],[20,-57],[-24,-24],[-32,-66],[-43,10],[-79,-28],[-62,7],[-79,40],[-33,-14],[-86,24],[-7,25]],[[20189,160417],[73,15],[50,0],[50,23],[61,-5],[54,12],[37,-6],[41,-64],[-67,-1],[-13,-58],[-41,21],[-28,52],[-124,11],[-24,-11],[-69,11]],[[20050,160341],[21,3],[52,50],[55,-65],[-99,-30],[-29,42]],[[19887,160816],[15,52],[60,23],[7,51],[81,-43],[43,34],[51,11],[56,-15],[-8,-27],[-44,4],[-13,-40],[-56,-23],[1,-42],[85,-67],[40,7],[60,-18],[34,18],[34,-36],[-24,-52],[-24,11],[-94,0],[-15,-46],[-97,-37],[28,-36],[-19,-37],[-37,-10],[-55,17],[-16,67],[36,46],[-56,79],[79,64],[-46,45],[-41,-37],[-41,0],[-24,37]],[[19258,160531],[18,11],[1,51],[34,12],[-10,52],[47,30],[39,3],[35,50],[31,21],[109,-21],[52,3],[11,-31],[-22,-49],[27,-31],[41,-11],[30,38],[96,-40],[13,-37],[-80,-46],[83,-29],[109,37],[-24,-86],[-52,-8],[-85,-53],[-24,20],[-90,9],[-5,-53],[-45,-49],[-28,9],[5,47],[-48,18],[-36,-17],[-38,28],[-15,-32],[-86,-29],[-2,68],[-62,52],[-29,63]],[[19130,160212],[43,6],[9,24],[86,-23],[47,-45],[-58,-32],[-120,7],[-7,63]],[[18964,159749],[15,25],[89,24],[29,-48],[19,52],[-5,43],[78,35],[74,5],[32,-9],[-73,-54],[-6,-38],[12,-81],[-96,0],[56,-51],[-39,-41],[-54,5],[-12,-52],[-29,15],[-21,47],[-40,6],[-14,32],[-2,65],[-13,20]],[[17267,174765],[71,-29],[63,44],[106,34],[65,-30],[35,30],[203,-19],[74,-24],[147,18],[4,-42],[50,-5],[51,26],[29,-23],[47,47],[24,50],[-37,52],[24,36],[110,70],[51,14],[62,-1],[2,27],[102,-50],[33,33],[-18,70],[66,24],[58,53],[123,-36],[50,-39],[116,61],[153,29],[62,-32],[32,29],[42,-76],[52,-42],[-10,-39],[110,-22],[113,14],[16,45],[47,11],[108,-44],[50,1],[14,-30],[122,-48],[-17,-27],[31,-29],[-29,-37],[-49,-12],[12,-44],[42,-9],[11,-61],[-41,-40],[-21,-45],[58,-53],[34,-54],[-6,-47],[-61,-64],[37,-30],[-1,-51],[76,-38],[-29,-71],[68,-53],[36,-14],[-15,-39],[40,-37],[-25,-42],[-52,1],[-27,-22],[-125,-22],[-19,28],[-45,2],[-71,-28],[-29,4],[-64,-45],[-109,8],[-137,-46],[-102,-68],[-51,-13],[48,-46],[-3,-21],[46,-45],[-11,-32],[-94,-29],[-54,5],[-33,30],[-7,43],[-113,89],[-72,15],[-28,30],[-105,37],[-107,-24],[-69,10],[-91,-1],[-92,75],[-120,26],[-42,44],[-76,56],[-99,59],[-95,39],[-72,15],[-44,23],[-87,-9],[-91,52],[-86,70],[-24,37],[-95,9],[-45,23],[14,42],[-24,89],[-78,101],[-24,42],[-69,57]],[[16687,158633],[64,32],[81,55],[0,18],[86,73],[59,7],[47,-17],[44,8],[33,42],[43,-33],[66,10],[-20,42],[35,15],[38,64],[66,-30],[24,-47],[24,7],[-9,48],[58,-34],[25,85],[55,-55],[-3,80],[18,23],[128,-39],[15,23],[51,-11],[-4,97],[62,17],[69,-22],[24,23],[-54,21],[-7,33],[-61,26],[-13,76],[-27,42],[22,50],[63,27],[58,-41],[42,-7],[-3,45],[53,-27],[-4,49],[-88,50],[-5,47],[51,57],[50,17],[157,2],[4,-33],[34,-29],[18,-40],[3,-67],[36,34],[33,-32],[22,28],[-28,57],[-22,13],[26,49],[31,-27],[29,60],[47,-17],[38,30],[-88,20],[-35,-1],[-90,21],[-40,30],[-62,6],[-56,41],[-67,-51],[-96,74],[-30,76],[-86,21],[-6,70],[45,10],[32,37],[20,74],[23,33],[58,21],[14,42],[28,20],[44,-8],[69,32],[67,43],[27,-22],[47,1],[24,30],[55,13],[53,37],[29,-35],[35,-1],[50,42],[63,-25],[34,-48],[0,-71],[-33,-10],[-32,-66],[40,-72],[-26,-34],[30,-21],[45,6],[13,-53],[43,26],[-23,43],[26,23],[-5,50],[29,32],[42,-20],[-51,-39],[42,-28],[57,42],[32,-3],[17,52],[-8,64],[38,-16],[9,93],[41,25],[40,-6],[-35,-106],[61,-3],[80,82],[30,-23],[21,-71],[-10,-42],[62,-31],[-42,-26],[6,-38],[-69,-33],[-69,9],[-84,-71],[-16,-31],[-44,1],[21,-51],[-88,-44],[-68,2],[31,-68],[-112,-38],[38,-38],[-6,-43],[37,-38],[8,62],[26,21],[41,-15],[31,64],[65,32],[51,-63],[9,87],[52,29],[25,-51],[18,-68],[33,-6],[33,-66],[-32,-11],[-3,-37],[-116,-39],[-34,18],[-18,-33],[-40,-6],[-32,-53],[-39,24],[-38,-34],[-49,17],[-27,-32],[-33,-159],[-30,16],[-42,-18],[-32,14],[15,-86],[-33,-90],[-29,2],[-29,42],[-21,-16],[-40,22],[-56,108],[-33,-18],[43,-85],[-11,-33],[46,-23],[4,-51],[-34,-49],[-44,30],[-29,-2],[-8,-37],[-59,54],[-20,-75],[-80,27],[9,48],[-49,4],[-15,-78],[-48,-4],[24,46],[-50,9],[-52,-9],[-13,-48],[-38,-15],[-80,9],[-41,-50],[-55,-21],[-23,-30],[-112,-30],[-17,-83],[-95,4],[-17,20],[-38,-32],[-64,-23],[1,-25],[-35,-54],[-29,-21],[-14,-45],[-48,46],[-33,-8],[-63,27],[-34,-80],[-47,-17],[-19,34],[-51,20],[-129,20],[-11,36],[-43,12],[-35,32]],[[16328,185884],[71,19],[-3,-37],[-68,18]],[[16291,187473],[48,95],[153,83],[168,63],[232,71],[242,83],[259,115],[149,77],[244,135],[425,214],[329,162],[289,124],[238,91],[108,16],[47,50],[311,139],[456,178],[339,116],[348,108],[573,149],[210,47],[326,66],[71,-1],[381,27],[347,1],[166,-14],[116,-26],[96,-41],[-66,-9],[-210,46],[-70,7],[-48,-23],[109,-33],[65,-2],[3,-58],[28,-14],[3,-70],[-47,-86],[-132,-93],[-29,-63],[11,-52],[-22,-110],[63,-34],[12,-62],[-17,-43],[-37,-17],[-95,-81],[-152,-17],[0,-56],[29,-16],[64,16],[10,-33],[98,40],[75,-155],[112,-102],[68,-24],[152,-27],[44,26],[76,2],[72,33],[110,-8],[132,14],[2,-19],[74,-26],[188,-19],[146,21],[82,22],[58,30],[129,-19],[157,33],[31,-34],[77,-24],[13,-32],[76,-48],[165,22],[85,26],[43,-16],[27,-40],[56,-13],[147,28],[89,31],[111,58],[34,-29],[131,-6],[150,-68],[75,-66],[-39,-72],[98,-15],[74,16],[-67,60],[35,39],[-32,55],[202,163],[58,66],[45,91],[70,86],[25,59],[86,47],[116,-8],[98,5],[53,-89],[135,-26],[66,3],[130,49],[15,-94],[53,-25],[50,29],[-6,44],[39,52],[-50,64],[-57,43],[-30,62],[-44,51],[-42,22],[-128,25],[-77,31],[-125,33],[-66,2],[-191,49],[-240,-5],[-123,-54],[-189,-51],[24,-27],[-29,-41],[59,-38],[1,-40],[45,-12],[12,-40],[-102,1],[3,104],[-58,26],[70,152],[28,90],[12,145],[-50,98],[-104,89],[-185,99],[-39,96],[-65,73],[-133,72],[-122,26],[-201,14],[-35,46],[-26,76],[-69,89],[-86,87],[0,39],[33,56],[136,23],[26,82],[36,18],[32,-61],[67,-10],[91,39],[45,4],[119,-170],[103,-82],[59,-76],[75,-37],[77,-5],[7,-42],[-45,-97],[-48,-40],[11,-57],[-5,-80],[166,-138],[43,-76],[196,-117],[114,-52],[56,-13],[86,-61],[69,-25],[85,7],[158,45],[47,27],[77,12],[67,65],[-19,37],[-142,4],[-47,18],[-92,-13],[-102,87],[29,35],[-86,23],[-53,44],[-112,46],[-40,51],[-153,88],[-76,76],[58,101],[-23,37],[-4,59],[71,45],[53,75],[-17,73],[90,53],[24,63],[104,46],[108,-37],[126,5],[-7,71],[-60,40],[-84,-10],[-53,61],[-109,6],[-37,-31],[-55,71],[-48,32],[-109,15],[-71,-20],[-79,-1],[-232,-43],[-64,-18],[-96,-43],[-189,-5],[-67,-22],[-141,-18],[-178,35],[-121,97],[-51,-9],[-30,42],[-107,-30],[-22,15],[-137,-18],[-1,-34],[182,-46],[-39,-19],[-163,68],[-137,36],[-109,13],[-140,31],[-141,19],[-231,49],[-294,39],[-89,39],[-33,29],[12,126],[-28,152],[-40,119],[-14,10],[-53,140],[-49,100],[-219,318],[-122,127],[-132,84],[-517,215],[-139,91],[-359,219],[-69,32],[-266,155],[-102,45],[-97,76],[-152,83],[-205,75],[-274,71],[-196,30],[-116,25],[-162,78],[-36,70],[-57,64],[-134,96],[-150,73],[-91,34],[-164,50],[-263,58],[-150,20],[-125,4],[-51,18],[285,77],[149,33],[211,63],[53,30],[43,59],[5,119],[97,106],[16,53],[-15,30],[26,115],[-22,15],[53,92],[-10,52],[20,182],[-53,199],[16,13],[243,-23],[567,-43],[150,-5],[55,7],[224,5],[134,10],[368,43],[249,33],[233,22],[149,32],[185,0],[177,13],[225,31],[110,32],[92,45],[238,72],[131,90],[212,90],[185,124],[73,67],[59,75],[168,123],[130,114],[60,69],[75,128],[41,102],[5,262],[-11,172],[13,78],[53,89],[23,77],[99,214],[72,77],[194,152],[220,183],[133,141],[43,58],[79,60],[70,86],[210,163],[90,46],[243,109],[88,45],[165,69],[85,47],[377,-54],[264,-26],[232,5],[202,49],[143,23],[416,133],[344,146],[319,170],[172,104],[162,130],[79,37],[226,153],[138,70],[221,149],[152,52],[497,124],[-4,-13],[-153,-33],[6,-15],[166,8],[36,24],[88,-94],[-108,0],[-231,-30],[-1,-55],[67,-54],[62,39],[89,-34],[112,-3],[73,15],[119,-2],[61,51],[-169,40],[0,31],[171,-47],[114,-12],[302,-14],[149,25],[82,-6],[88,30],[77,-17],[54,36],[220,7],[272,32],[219,52],[167,52],[393,170],[121,66],[199,129],[107,87],[168,160],[203,174],[226,175],[242,120],[114,34],[10,-86],[42,-47],[102,-23],[34,11],[64,-54],[43,-14],[112,7],[165,-24],[41,-19],[110,-17],[-16,-39],[89,-47],[-57,-80],[82,12],[86,31],[50,54],[46,-53],[124,16],[91,-2],[54,-33],[85,5],[122,-43],[-4,-60],[81,-95],[5,-32],[-48,-50],[-79,-47],[-53,3],[-43,-48],[-73,-28],[-27,-62],[-89,-1],[-22,-35],[-84,6],[-190,-12],[-13,-37],[41,-93],[71,-122],[-16,-49],[86,-17],[102,11],[55,-10],[97,12],[59,22],[25,-39],[59,-8],[48,47],[127,28],[11,58],[-44,145],[64,4],[137,86],[13,31],[164,49],[69,-84],[59,8],[20,49],[-38,64],[-85,60],[-27,43],[157,72],[47,-77],[66,-7],[12,79],[-9,114],[232,-85],[232,-109],[197,-114],[87,-73],[-60,-41],[-15,-67],[21,-203],[27,-58],[143,-20],[121,16],[88,0],[135,-33],[50,-53],[-39,-37],[97,-22],[66,12],[90,37],[112,67],[86,105],[-2,32],[93,15],[185,13],[305,-12],[117,4],[94,14],[226,64],[79,5],[233,-23],[55,-37],[117,-11],[84,-92],[78,-7],[51,78],[167,-8],[127,8],[133,-37],[136,-19],[54,-27],[200,-45],[48,-62],[-93,-14],[-69,-34],[-113,-151],[-69,-52],[-75,-5],[22,-128],[58,-60],[112,-32],[45,14],[200,-41],[83,13],[72,-14],[14,-46],[-213,42],[-60,-28],[-54,10],[-180,-6],[-152,21],[-68,-40],[61,-59],[92,12],[33,19],[132,-3],[180,-27],[42,21],[105,7],[105,-15],[36,36],[67,10],[93,-24],[45,7],[101,-24],[146,21],[-14,-33],[-99,-89],[31,-41],[-77,-2],[-127,-24],[-53,-40],[17,-27],[96,-37],[165,12],[87,-11],[197,19],[102,-29],[236,-42],[67,-19],[76,-67],[148,13],[19,32],[70,25],[58,60],[142,74],[69,3],[72,-21],[102,27],[65,-5],[64,-32],[50,37],[5,33],[211,13],[33,-28],[121,-27],[58,-49],[-18,-24],[39,-45],[253,61],[118,-14],[96,41],[267,150],[55,-39],[71,-17],[93,42],[98,0],[101,-21],[77,11],[91,37],[69,-60],[49,-8],[79,33],[79,-30],[65,3],[118,-16],[34,-25],[108,-20],[149,-93],[87,10],[91,-22],[77,-39],[101,23],[191,-28],[57,-47],[108,-43],[25,-53],[-33,-71],[190,-14],[115,53],[68,12],[4,-64],[69,-9],[74,61],[5,29],[123,-35],[38,-33],[125,-20],[54,-43],[118,-14],[40,-37],[-24,-35],[-73,-16],[115,-51],[157,-30],[202,2],[222,-44],[148,21],[68,-8],[8,-48],[50,-5],[39,-36],[272,1],[110,34],[56,0],[41,31],[276,-16],[121,8],[82,20],[65,-13],[278,-7],[95,-32],[141,-9],[52,-37],[53,3],[193,-31],[87,32],[26,38],[134,-84],[207,-98],[69,-11],[148,-47],[56,-57],[253,-51],[125,-51],[294,-44],[25,-29],[78,5],[111,46],[174,-33],[123,-4],[89,30],[181,131],[101,14],[138,-2],[61,41],[118,12],[48,32],[101,26],[73,2],[105,26],[64,48],[120,-30],[74,9],[4,31],[131,22],[82,-1],[38,26],[80,-1],[151,-45],[102,8],[152,59],[80,-40],[275,-94],[55,-27],[335,-89],[210,-80],[121,-69],[71,-27],[-17,-39],[190,-73],[-17,-33],[135,6],[236,-111],[158,-48],[113,-48],[113,-16],[200,-54],[177,-65],[70,-34],[187,-115],[36,-101],[92,-62],[172,-5],[15,45],[59,79],[119,-22],[175,-64],[0,-841],[0,-945],[0,-805],[-3,-93],[0,-717],[0,-613],[0,-902],[0,-2406],[0,-1280],[0,-310],[1,-1173],[1,-812],[0,-2288],[0,-2136],[0,-657],[0,-677],[0,-657],[-1,-794],[0,-680],[0,-877],[0,-986],[0,-986],[0,-199],[105,-30],[239,-78],[368,-94],[91,206],[705,-295],[426,358],[913,41],[4,-77],[-187,-541],[214,-218],[377,-164],[135,-43],[41,-143],[16,-83],[63,-96],[582,-470],[330,-267],[593,-490],[97,-323],[61,-281],[-39,-184],[117,7],[270,217],[592,318],[55,46],[362,16],[138,220],[-11,37],[39,21],[-12,216],[0,209],[155,-38],[100,35],[98,140],[-2,82],[-169,94],[238,94],[355,52],[700,318],[175,-142],[159,-91],[28,-5],[21,-78],[92,-87],[58,-6],[132,-139],[2,-208],[-74,-54],[-35,-56],[165,-95],[-61,-95],[105,-153],[382,-75],[32,-132],[168,-143],[121,1],[54,-99],[96,-118],[-37,-139],[138,-40],[-33,-91],[115,-146],[423,-219],[194,-88],[197,-274],[221,-209],[266,-216],[-124,-100],[172,-261],[111,-115],[144,-171],[-6,-9],[148,-351],[306,-367],[166,-322],[146,-200],[8,-28],[146,-260],[242,-306],[40,-55],[170,-305],[-179,-280],[478,-109],[-116,-401],[371,-158],[-42,-122],[60,-119],[37,-242],[376,30],[161,-139],[441,-241],[127,-102],[451,-91],[235,-234],[122,-45],[107,-11],[62,-237],[112,-30],[154,-76],[210,62],[148,-268],[-21,-225],[21,-11],[-118,-200],[-61,-37],[-41,-92],[7,-120],[53,-75],[-24,-238],[57,-194],[72,-109],[29,-266],[66,-87],[4,-44],[-190,-208],[-64,-117],[-10,-42],[-42,-78],[-10,-67],[-126,-207],[-106,-129],[-115,-107],[-54,-58],[-161,-131],[-90,-23],[-44,-45],[46,-56],[-38,-36],[-95,30],[-30,28],[-16,62],[17,75],[-42,7],[-32,29],[-5,-83],[-35,-31],[-63,-24],[-114,87],[-20,66],[15,48],[-20,12],[-8,111],[-28,45],[42,26],[2,35],[-50,76],[-51,45],[14,90],[19,14],[4,56],[116,38],[59,34],[19,39],[46,2],[5,-50],[43,-51],[110,49],[20,70],[-40,17],[-12,-70],[-47,-20],[-33,24],[-30,98],[-30,-26],[-53,-18],[-38,-51],[-40,-19],[-102,-26],[-49,18],[-11,36],[-56,36],[-4,48],[-20,45],[-6,69],[156,131],[45,58],[6,35],[41,28],[61,-16],[49,21],[-31,26],[-18,112],[12,53],[-11,40],[-31,-1],[-24,105],[71,133],[-10,46],[21,47],[-14,36],[-9,91],[-35,209],[14,41],[-108,188],[-53,50],[-78,132],[-53,76],[-22,12],[-50,65],[-57,46],[-50,97],[86,52],[81,58],[-8,49],[-35,-6],[-37,-43],[-28,-7],[-82,-65],[-119,-34],[-48,-52],[15,-27],[73,34],[43,-1],[25,-49],[102,-95],[18,-31],[120,-152],[45,-112],[-13,-24],[79,-115],[39,-42],[2,-59],[36,-69],[10,-74],[-29,-72],[39,-6],[5,-29],[-26,-46],[-53,28],[-7,-74],[10,-37],[-11,-131],[28,-159],[-31,-37],[-27,62],[-40,-13],[13,-65],[-11,-78],[-25,-28],[-18,-154],[-57,-38],[-24,-50],[-23,2],[-36,-62],[-67,-17],[-94,43],[-8,32],[-55,42],[103,111],[37,89],[6,43],[23,35],[-4,77],[-36,10],[-104,-35],[9,-53],[50,-62],[-27,-37],[-18,-63],[-23,-29],[-49,-13],[-34,-28],[-71,7],[-85,36],[-29,41],[39,60],[94,43],[-56,17],[-79,-47],[-33,17],[-44,-92],[-90,46],[-62,56],[-44,22],[-31,-6],[105,-119],[-44,-20],[-32,38],[-36,7],[32,-106],[-17,-9],[-10,-73],[-55,15],[-32,-25],[56,-61],[-17,-53],[-27,-34],[25,-38],[-61,-26],[-41,56],[-51,117],[-21,67],[-8,90],[-22,37],[-13,76],[22,78],[-37,52],[50,40],[-13,72],[30,3],[113,-95],[33,23],[-59,69],[-81,60],[0,45],[78,29],[88,90],[66,158],[36,-11],[11,54],[-86,23],[-34,49],[29,122],[-5,46],[-39,49],[12,40],[80,62],[75,-18],[57,41],[51,-15],[75,42],[-58,29],[-24,-31],[-45,7],[-69,-27],[-67,37],[-43,-21],[-12,108],[78,8],[35,-8],[144,-3],[-36,40],[6,35],[-61,77],[43,31],[-7,37],[-44,-18],[-18,43],[-92,-50],[-117,-94],[-58,12],[-177,-45],[39,-45],[74,-1],[62,-20],[44,-27],[1,-71],[-30,-58],[-17,-3],[-37,-116],[-62,9],[71,-124],[-45,-32],[-11,-54],[-25,4],[-27,-43],[-31,-10],[-76,54],[6,-71],[36,-29],[-6,-100],[-26,-41],[-10,-65],[-22,-9],[-66,40],[-30,42],[-111,36],[-45,30],[-20,40],[-32,18],[-18,43],[-2,66],[-23,60],[-20,93],[-87,145],[31,5],[46,-46],[62,-11],[11,43],[-1,106],[54,0],[28,19],[83,-3],[13,40],[-35,14],[-11,41],[71,75],[-8,64],[-25,32],[11,52],[31,32],[111,21],[0,64],[18,6],[-39,148],[15,146],[-2,114],[120,22],[30,48],[69,-28],[80,32],[90,-42],[91,30],[-70,36],[-57,0],[-34,20],[-73,-17],[-41,5],[-58,27],[-33,-11],[-66,-76],[-78,4],[-34,-28],[-16,-116],[-42,2],[-27,-42],[-34,41],[-6,33],[-34,43],[-77,15],[-9,-33],[47,-59],[50,-28],[26,-41],[-34,-31],[-49,-16],[-55,9],[-51,-17],[8,-29],[42,-46],[55,-93],[-19,-40],[54,-71],[-3,-43],[-49,-57],[-33,35],[-20,62],[-31,-68],[-77,14],[-4,-26],[-60,-85],[16,-62],[-94,-28],[-42,79],[54,103],[-61,54],[-58,5],[11,83],[49,36],[-53,35],[-49,-7],[-17,42],[36,82],[-51,-13],[-32,24],[-33,-9],[-21,-32],[-48,50],[-38,-35],[-5,-45],[32,-26],[-6,-40],[-67,40],[-93,176],[5,21],[-30,63],[39,54],[-30,112],[32,44],[32,16],[37,-17],[69,14],[41,135],[36,27],[3,42],[26,29],[44,-4],[96,37],[22,-12],[61,-91],[-24,-77],[19,-35],[-23,-53],[65,-47],[51,-61],[76,-2],[-12,38],[-79,67],[-28,83],[-26,27],[24,50],[13,87],[-35,75],[42,53],[-9,39],[-29,23],[-29,51],[-19,91],[49,2],[41,-35],[81,-19],[37,-28],[31,-80],[-8,-42],[39,-52],[35,-19],[12,75],[-24,34],[-22,101],[-77,70],[-39,-7],[-33,48],[-71,54],[-9,31],[-1,127],[23,11],[46,89],[-29,6],[-67,-32],[-57,-41],[-85,-14],[-65,24],[-61,36],[16,60],[-28,46],[45,2],[14,52],[-35,43],[43,77],[-170,77],[-80,63],[-135,82],[-20,48],[5,30],[-24,33],[-61,34],[-41,37],[-30,81],[-30,39],[-35,19],[-6,30],[90,-2],[59,27],[37,-31],[24,-48],[34,12],[-26,104],[-46,96],[35,35],[1,42],[-28,23],[-22,-49],[-41,-36],[13,-51],[-11,-35],[-30,-15],[-62,50],[-126,26],[-50,22],[-37,39],[-53,13],[-74,-6],[-32,9],[-32,63],[14,49],[-93,-5],[-16,-47],[-63,-22],[-69,34],[-5,18],[-81,22],[-65,29],[-8,22],[-50,31],[-96,40],[84,28],[20,55],[-22,50],[-31,32],[12,43],[59,9],[-19,47],[34,12],[74,-52],[91,-4],[50,36],[30,-20],[91,6],[28,30],[59,11],[-14,45],[-59,-21],[-68,30],[-106,-3],[-142,51],[-34,60],[30,38],[51,17],[-4,24],[-65,19],[-83,125],[1,87],[14,15],[-5,57],[43,18],[16,78],[-125,-53],[-84,38],[-5,28],[-61,55],[-17,33],[1,69],[24,21],[12,63],[-8,35],[134,14],[78,-78],[62,-8],[125,-48],[75,-50],[165,-79],[71,-48],[85,-114],[68,-52],[17,34],[-72,53],[-65,96],[-55,59],[-64,42],[-72,69],[-69,4],[-85,67],[-56,72],[-68,21],[-46,28],[-36,43],[-88,-1],[41,45],[1,50],[-34,72],[16,64],[-5,69],[-24,86],[-25,-40],[7,-106],[-52,23],[-21,-22],[37,-63],[-15,-29],[5,-80],[-65,-10],[-53,20],[-51,82],[1,26],[-33,36],[-22,52],[-99,128],[-5,43],[29,36],[107,65],[52,-109],[42,-11],[9,33],[-16,61],[-42,71],[-37,22],[-10,63],[-63,-29],[11,-82],[-79,-29],[-54,-41],[-58,25],[-132,141],[-53,66],[-25,54],[7,91],[-18,20],[-18,101],[4,63],[44,28],[-4,86],[-33,40],[115,37],[54,52],[-56,61],[14,46],[-22,29],[-22,72],[-23,-11],[-26,-161],[-105,-64],[-30,-56],[71,-86],[-44,-29],[-24,-74],[-56,18],[-139,-41],[-108,22],[-78,44],[-114,25],[-36,-31],[-122,32],[-64,54],[-56,61],[-28,50],[56,42],[71,16],[-15,40],[-56,-6],[13,58],[-5,47],[-138,-20],[-56,39],[21,60],[-50,191],[-63,42],[17,24],[-40,31],[-105,153],[-28,22],[-67,139],[104,9],[-37,50],[2,54],[21,65],[-9,67],[-77,74],[-20,-8],[-21,-116],[-49,-23],[-25,30],[-22,63],[-84,93],[-24,62],[20,42],[-12,59],[-33,68],[-9,164],[-40,73],[-3,110],[-24,35],[-14,68],[-29,65],[-34,41],[-26,83],[-48,-9],[-5,72],[-67,92],[6,106],[19,68],[-2,71],[19,37],[6,83],[15,40],[-46,14],[-21,-84],[-2,-70],[-30,-107],[7,-91],[-20,-18],[-121,34],[-65,49],[-18,-34],[111,-62],[37,-14],[29,-77],[-19,-38],[72,-22],[42,-42],[46,-113],[-26,-18],[77,-128],[-37,9],[-73,43],[-22,109],[-37,70],[-51,39],[-12,27],[-60,43],[-74,31],[-35,-13],[30,-49],[91,-84],[21,-28],[3,-70],[40,-72],[56,-9],[39,-41],[-33,-127],[33,-39],[-36,-25],[17,-65],[-17,-22],[40,-69],[3,-48],[70,-19],[-22,-60],[82,-165],[63,-86],[3,-130],[66,-79],[20,-61],[58,-107],[10,-93],[-28,8],[-5,53],[-52,-28],[13,-54],[28,-21],[-1,-50],[19,-15],[48,-103],[-23,-16],[23,-56],[40,-59],[27,-147],[30,-57],[10,-105],[-79,-21],[16,-42],[-26,-26],[24,-72],[43,-82],[-57,-7],[-54,42],[-39,-12],[-92,64],[-69,-11],[-61,33],[-49,67],[-30,75],[-44,43],[-53,181],[-29,60],[3,57],[-32,69],[-37,50],[-23,-19],[51,-70],[-33,-32],[64,-102],[-16,-60],[-41,-15],[-91,76],[-27,-3],[-63,43],[-82,-65],[-66,-13],[-91,7],[-74,-22],[-126,-16],[-10,17],[35,75],[-9,20],[8,93],[-65,-38],[-78,44],[-5,30],[102,82],[-35,8],[-24,47],[-7,71],[56,57],[48,-48],[86,50],[-56,14],[-58,66],[-61,157],[-36,4],[-37,37],[6,41],[-36,64],[-12,46],[-63,72],[10,44],[35,22],[59,12],[4,27],[-57,16],[-25,58],[13,96],[-83,72],[1,43],[-60,5],[8,-82],[37,-21],[10,-33],[-28,-42],[31,-26],[17,-66],[-35,-114],[-27,-28],[-16,-62],[6,-62],[-55,12],[-87,-6],[-42,44],[-65,19],[-112,92],[-102,20],[-32,25],[-31,57],[5,35],[-37,105],[1,59],[-59,24],[-1,-75],[-43,-25],[-22,51],[-32,23],[-32,69],[-59,62],[-18,-2],[81,-141],[39,-52],[1,-70],[-80,20],[-12,25],[-95,55],[-178,72],[-39,55],[-67,37],[-39,60],[-51,33],[-28,40],[-46,-1],[-13,-32],[33,-55],[45,-6],[48,-83],[55,-24],[34,-46],[8,-45],[-33,-39],[-31,16],[-86,-3],[-40,-21],[-50,-98],[-68,-62],[22,-30],[111,107],[28,58],[99,-22],[38,15],[46,-32],[138,-21],[81,-2],[66,-45],[45,-9],[11,-25],[64,5],[49,-12],[143,-109],[60,-59],[-47,-22],[34,-45],[98,-50],[61,-74],[-71,-78],[-88,-45],[-72,-100],[58,0],[2,35],[29,26],[92,35],[53,37],[48,54],[70,-53],[16,-31],[75,-49],[-26,-26],[23,-57],[37,-36],[55,-18],[10,-40],[52,-98],[17,-52],[31,-18],[-23,-47],[34,-29],[16,-64],[-6,-29],[28,-54],[-51,-11],[-51,-54],[-72,3],[-73,-18],[-16,-22],[-101,-30],[-30,20],[5,45],[35,54],[-48,27],[-32,-20],[-75,-7],[28,-40],[-9,-107],[-31,-14],[-32,32],[-44,11],[-92,-30],[-52,36],[-34,0],[-36,73],[-76,-26],[16,-36],[57,-49],[24,-48],[8,-85],[-33,-21],[-4,-42],[-41,-19],[-97,2],[-56,80],[-13,60],[-42,34],[-46,15],[-2,52],[-45,-17],[-42,36],[13,88],[-44,-31],[-49,-10],[1,56],[20,38],[-44,35],[-138,30],[-89,-27],[-27,-40],[-100,100],[-116,68],[-58,15],[-48,43],[-137,75],[-82,77],[-218,132],[-55,10],[-49,40],[5,60],[-15,36],[-164,146],[-118,77],[-81,63],[-20,64],[21,17],[8,53],[-28,91],[-90,96],[-102,88],[-149,104],[-17,29],[-79,50],[-147,69],[-294,99],[-108,32],[-105,63],[-179,128],[-124,75],[-102,49],[-131,53],[-327,121],[-82,34],[-217,111],[-194,107],[-104,71],[-251,135],[-38,32],[41,40],[86,-38],[61,68],[35,0],[17,44],[-29,25],[39,45],[33,-21],[-8,-62],[9,-36],[62,36],[74,139],[75,70],[69,79],[-93,75],[-27,59],[-25,21],[-26,62],[8,38],[-47,67],[-15,65],[13,67],[31,6],[85,53],[38,51],[3,34],[48,72],[-50,59],[-48,29],[-45,-65],[-38,-30],[6,-55],[-16,-53],[-149,-62],[-85,-114],[8,-66],[-14,-37],[-46,-26],[-208,-62],[-160,-65],[-106,-30],[-70,-28],[-66,-64],[-134,-37],[-111,13],[-427,36],[-232,44],[-80,22],[-135,64],[-447,176],[-129,45],[-112,50],[30,41],[44,19],[13,32],[40,19],[41,-7],[70,23],[-7,66],[36,31],[11,40],[-34,40],[-11,44],[-57,56],[56,0],[23,49],[54,24],[25,39],[97,35],[21,71],[-26,10],[-38,-72],[-70,-28],[-55,-36],[-50,-16],[-81,13],[-26,34],[13,85],[-54,20],[-41,-54],[-85,37],[-47,48],[-42,3],[-5,-39],[36,-62],[49,-15],[33,-29],[28,-55],[-1,-35],[55,-11],[69,-74],[-45,-61],[-152,-39],[-60,-51],[-75,-16],[-130,-4],[-79,4],[-213,88],[-164,45],[-160,18],[-154,42],[-137,28],[-129,16],[-71,-1],[-22,20],[-133,29],[-238,22],[-164,4],[-147,-11],[-122,-25],[-203,-33],[-579,-45],[-150,-17],[-107,-27],[-170,-57],[-61,-29],[-67,-11],[-95,28],[-38,35],[-123,17],[-82,-12],[-87,17],[-105,3],[57,39],[102,6],[53,-14],[30,19],[74,-3],[-36,66],[-126,81],[-68,17],[-23,30],[-61,7],[-62,29],[16,34],[-40,16],[10,36],[-98,-27],[-88,5],[-67,-10],[-77,43],[-50,-24],[-88,43],[-92,32],[-86,18],[-245,19],[-27,23],[91,37],[89,7],[87,24],[-52,48],[-50,-3],[-97,26],[-45,-24],[-69,18],[-12,50],[93,124],[27,71],[115,162],[-54,2],[-64,-16],[-37,-33],[-13,-38],[-140,-30],[-55,-29],[-43,-53],[-43,-95],[-1,-77],[-41,-20],[-42,26],[-76,-12],[-122,63],[-15,20],[-77,21],[-122,81],[-59,14],[-32,26],[21,46],[-73,19],[-76,50],[-146,29],[-124,-11],[-147,-22],[-127,50],[73,65],[32,-12],[68,51],[75,27],[31,59],[111,105],[43,93],[69,43],[-6,35],[-205,-87],[-125,-40],[-12,30],[46,29],[-24,22],[-75,18],[-47,-11],[-16,-57],[-94,-20],[-3,60],[109,138],[-53,-20],[-118,-68],[-114,-47],[-39,-27],[-162,-13],[-18,55],[48,17],[66,67],[102,67],[35,8],[64,45],[29,43],[-50,42],[-48,-47],[-51,-21],[-35,-46],[-94,47],[-10,-59],[-96,-14],[-27,22],[-20,52],[-73,-97],[-78,-45],[-97,-9],[-153,32],[-32,-30],[-62,28],[5,44],[-55,50],[38,17],[25,-30],[37,25],[37,51],[42,-16],[-11,-38],[101,44],[-2,38],[88,-2],[145,36],[38,1],[123,72],[20,55],[144,15],[-83,65],[-66,11],[-40,-59],[-98,-78],[-104,-23],[-18,51],[-52,-46],[-108,-6],[-53,16],[11,48],[-48,32],[-28,-25],[-43,5],[30,50],[-40,28],[-53,-41],[-89,114],[-2,45],[117,25],[44,-34],[57,7],[-29,47],[-39,15],[-66,-17],[-57,47],[31,27],[2,54],[39,73],[35,-21],[71,3],[38,29],[-119,27],[-11,34],[59,46],[73,-10],[82,10],[120,-4],[91,21],[60,-17],[98,13],[9,43],[-52,46],[-150,-6],[-25,24],[-76,-4],[-45,-20],[-168,-9],[-54,-30],[-42,-56],[-30,-65],[-115,-25],[-117,-121],[-13,-44],[-96,-77],[-86,-13],[-105,22],[94,53],[24,42],[-57,8],[-14,-38],[-59,-2],[88,94],[22,52],[-77,156],[-30,40],[57,22],[35,48],[-120,16],[-63,-34],[23,-100],[-36,-21],[39,-28],[30,-139],[-93,-97],[11,-86],[-58,-20],[-59,48],[0,75],[-91,-24],[3,-31],[42,-75],[-14,-14],[-83,-13],[-17,-46],[-53,-30],[-65,22],[-66,4],[-4,63],[89,92],[-20,12],[-54,-58],[-22,46],[-36,7],[-24,-30],[-8,-93],[-37,33],[-7,69],[-19,64],[38,32],[4,37],[-12,107],[52,16],[-29,38],[6,33],[-51,95],[-17,-45],[6,-56],[-25,-67],[-50,-81],[25,-28],[-59,-124],[45,-23],[4,-29],[-32,-56],[28,-39],[6,-43],[-14,-77],[-96,-27],[-18,39],[1,49],[-70,14],[-21,27],[32,93],[-39,9],[-65,-151],[-39,-11],[104,-60],[-42,-74],[-158,37],[-49,57],[4,38],[-17,51],[-40,-86],[50,-63],[-6,-34],[-64,-20],[-107,-47],[-54,16],[-43,-8],[-67,27],[-10,49],[40,69],[-8,32],[50,71],[-12,47],[33,20],[54,72],[47,29],[47,77],[51,45],[10,66],[46,59],[-59,6],[83,65],[58,69],[123,110],[10,22],[91,27],[96,50],[-77,17],[-106,-33],[61,70],[30,57],[-46,19],[-96,-94],[-54,-91],[-60,-46],[-191,-207],[1,-76],[-100,-101],[-32,-14],[-17,69],[-22,8],[-8,72],[-46,73],[-37,36],[-19,-68],[-56,9],[-91,-19],[-66,-58],[-94,2],[-5,-26],[62,-15],[-25,-67],[-36,-35],[-58,-31],[33,-31],[58,30],[98,124],[78,44],[132,36],[-1,-86],[-16,-103],[-32,-54],[-54,-26],[2,-42],[-91,43],[13,-82],[40,-15],[-66,-111],[29,-8],[-24,-66],[-109,57],[-32,-33],[102,-68],[-35,-34],[-47,4],[-57,60],[-112,3],[-64,-24],[-88,12],[-92,-59],[-75,-33],[6,-25],[72,6],[139,67],[53,-19],[67,21],[54,-5],[-20,-54],[-95,2],[-83,-39],[-47,-34],[-80,-83],[-17,-112],[36,-11],[86,80],[47,95],[46,21],[51,49],[82,-37],[14,35],[66,28],[50,-31],[-22,-20],[14,-57],[-46,-30],[16,-84],[-39,-53],[-52,-24],[57,-37],[73,69],[17,59],[73,76],[45,80],[48,13],[135,-13],[63,-47],[20,-178],[-61,-53],[-8,-34],[-78,-31],[-82,-52],[-135,-132],[-107,33],[-60,54],[-44,8],[-69,-20],[-85,-58],[-98,-84],[-26,-41],[-72,-61],[40,-45],[32,34],[44,12],[82,76],[29,37],[38,6],[131,81],[28,-33],[-14,-36],[80,7],[14,-38],[38,4],[65,-48],[86,15],[-1,66],[65,56],[31,-15],[4,-81],[23,1],[-8,93],[33,95],[48,28],[48,4],[31,-64],[37,-19],[-63,-34],[18,-44],[53,45],[32,-21],[-5,-47],[50,4],[23,-44],[-31,-59],[-38,-31],[44,-25],[36,28],[29,-60],[-33,-38],[-42,-10],[-68,-59],[-70,-5],[-12,-33],[-95,16],[43,-53],[-16,-27],[-50,-24],[-79,11],[22,-90],[-141,-102],[-37,3],[-19,33],[-51,22],[-59,-41],[54,-15],[47,-76],[40,-25],[64,74],[100,23],[26,-48],[-60,-8],[65,-77],[-20,-66],[25,-22],[51,167],[92,-51],[-41,-48],[-34,-75],[70,-56],[15,76],[-3,50],[47,22],[17,-30],[-58,-129],[-33,-37],[23,-16],[-34,-65],[-51,-63],[6,-25],[-47,-43],[-82,-31],[-130,31],[175,19],[-86,22],[-61,0],[16,37],[49,12],[37,31],[-102,37],[-13,56],[19,38],[-1,52],[-37,23],[-47,-3],[-17,-36],[19,-30],[-34,-17],[-27,-65],[32,-31],[-19,-61],[-27,-9],[-18,-71],[18,-44],[-5,-60],[-33,-46],[-8,-37],[-63,12],[-103,180],[-7,-143],[-22,-47],[-83,-66],[-87,4],[6,42],[-52,-3],[-57,41],[-82,-10],[-29,-49],[-57,-17],[-59,51],[-28,58],[-61,5],[-48,-45],[-53,24],[-57,-20],[-86,21],[4,41],[123,147],[-37,25],[-48,-26],[-40,2],[-26,-34],[-37,-5],[-22,-60],[-65,-84],[-1,-45],[-22,-44],[-47,-39],[25,-36],[-35,-41],[-24,8],[9,49],[-20,34],[10,122],[-41,5],[-13,81],[-17,166],[-36,35],[-2,66],[-89,-13],[-22,-45],[14,-67],[-14,-80],[81,-89],[-60,-39],[-49,-142],[-29,30],[-75,-20],[-50,-52],[19,-51],[-37,-2],[-17,-76],[-36,-28],[-13,-41],[43,-19],[15,-63],[57,-44],[8,-41],[-45,-32],[-6,71],[-48,9],[-25,84],[-57,4],[36,71],[-42,7],[10,44],[67,50],[-61,13],[-11,108],[-34,54],[-51,10],[-30,-27],[32,-99],[-3,-51],[-44,-36],[15,-83],[-94,55],[-66,-14],[51,-30],[36,-64],[42,-23],[-36,-32],[4,-42],[43,-21],[-7,-31],[21,-44],[-4,-68],[-20,-9],[27,-58],[-74,-19],[20,51],[-18,42],[43,15],[-114,57],[-6,27],[-60,2],[-12,44],[-34,27],[-68,-1],[-68,53],[-64,0],[-19,-40],[134,-56],[48,-67],[30,-16],[2,-59],[-19,-52],[-86,-27],[-8,-36],[-45,-63],[-35,39],[8,40],[-54,36],[-25,-124],[-60,28],[-20,-33],[54,-47],[49,-20],[-47,-28],[-65,-18],[-71,45],[17,-66],[31,-31],[-87,-29],[-36,2],[33,-67],[-30,-32],[-85,-6],[12,-117],[-56,6],[2,-42],[-64,6],[13,-35],[-41,-37],[-43,20],[30,62],[92,89],[-77,-2],[20,36],[60,-8],[-19,45],[38,35],[-47,21],[67,79],[-3,33],[51,40],[-40,26],[80,86],[-32,28],[44,46],[13,72],[43,69],[-19,46],[-73,-115],[-42,-82],[-19,-68],[-53,-65],[-38,-75],[-40,-18],[-32,-106],[-48,-92],[-31,-35],[-55,14],[-4,69],[-46,22],[7,30],[-29,30],[41,34],[51,72],[-1,53],[-96,-48],[-29,-70],[-103,-18],[76,-52],[6,-29],[41,-31],[-1,-56],[-92,1],[-2,-18],[77,-17],[17,-20],[-36,-51],[-81,-17],[-50,37],[-65,-19],[-11,-49],[-37,-65],[-49,-32],[-59,-9],[-16,-48],[-34,-47],[-71,-22],[45,-43],[18,-52],[-82,-77],[-53,7],[-48,-19],[-23,24],[38,44],[-38,29],[-5,38],[-28,17],[-60,-55],[-51,27],[-60,9],[-77,47],[-68,-27],[100,-34],[56,-38],[75,-20],[4,-59],[-32,-33],[-65,-30],[-79,36],[-46,-37],[-21,58],[-58,-41],[-58,31],[-52,51],[-82,20],[-118,-66],[28,-27],[-40,-41],[-77,21],[-21,-27],[18,-47],[-57,-19],[-127,-4],[-37,-18],[-37,13],[-22,38],[12,53],[-14,54],[-50,-32],[-92,2],[-82,43],[48,49],[-65,11],[-44,-16],[-29,14],[1,61],[-20,77],[36,24],[6,52],[58,32],[71,4],[-33,96],[26,49],[105,31],[54,27],[54,-3],[-10,-41],[76,-79],[-44,108],[27,69],[58,13],[18,21],[121,-38],[79,10],[19,24],[88,-40],[-42,86],[46,55],[2,37],[80,2],[54,56],[71,30],[33,-18],[32,55],[63,-9],[83,5],[-44,34],[-25,76],[73,33],[69,45],[-7,55],[52,40],[48,60],[42,14],[1,32],[57,14],[12,23],[-30,48],[-70,-3],[-77,-21],[-101,-65],[-63,-57],[-206,-118],[-54,-6],[-71,-25],[-24,-40],[-74,-47],[-223,36],[-55,25],[-184,114],[-77,92],[-23,58],[57,97],[38,101],[12,58],[57,69],[29,73],[34,156],[23,53],[43,32],[84,115],[146,117],[142,159],[39,85],[20,111],[4,153],[18,24],[104,46],[14,99],[9,182],[18,85],[-51,29],[-49,61],[-38,155],[-64,105],[-6,51],[68,35],[93,17],[44,20],[14,50],[62,17],[162,8],[66,9],[58,21],[20,31],[171,105],[46,39],[58,32],[108,85],[59,32],[51,55],[72,20],[174,88],[101,33],[69,45],[29,3],[52,-35],[77,-136],[141,-151],[80,1],[72,-37],[39,12],[63,-16],[2,-45],[47,13],[0,54],[60,11],[67,97],[73,64],[128,2],[145,-54],[34,-49],[50,2],[69,25],[60,-27],[80,-14],[59,-37],[117,-18],[133,1],[40,-16],[96,-2],[72,-20],[63,-30],[108,-80],[-5,54],[-56,68],[-72,68],[-52,13],[-99,61],[-167,-24],[-78,-19],[-26,47],[-45,13],[-124,73],[-172,6],[-41,31],[-80,17],[-72,29],[-55,41],[-38,54],[-69,65],[-120,57],[-53,49],[-143,44],[-1,34],[54,40],[6,37],[61,0],[83,19],[38,34],[36,88],[30,26],[68,105],[55,29],[50,1],[35,21],[-6,83],[77,38],[41,-3],[97,48],[49,-2],[54,42],[45,17],[79,52],[-14,32],[-70,0],[-66,31],[-10,29],[-167,-16],[-168,-94],[-30,-54],[-60,-64],[-95,-32],[-14,-58],[-29,-42],[-9,-169],[-101,-70],[-131,37],[-193,14],[-121,-5],[-150,-27],[-118,-3],[-88,55],[-35,62],[-47,-5],[-55,-34],[-52,37],[-52,-77],[-91,-43],[-121,-40],[-72,-36],[-74,-7],[-44,-33],[-105,-51],[-54,-61],[-12,-33],[-87,-151],[-39,-45],[-137,-17],[-76,-19],[-48,-46],[-217,1],[-198,-126],[-28,-38],[-191,-152],[-44,-52],[2,-41],[34,-72],[36,-46],[67,-127],[-15,-51],[-68,30],[-127,29],[-102,-42],[-122,-82],[-59,-51],[-57,-78],[-32,-78],[-53,-37],[-54,-3],[-130,-87],[-72,-76],[-33,-79],[2,-71],[33,-61],[51,-19],[48,-38],[-96,-57],[0,-16],[-98,-24],[-24,-54],[-8,-58],[-34,-37],[-76,-17],[-48,-27],[-55,-50],[-16,-42],[-91,-18],[-73,48],[-41,-16],[-49,16],[-43,-40],[-55,3],[-145,37],[46,-55],[75,-45],[57,-11],[45,-47],[84,-45],[-15,-35],[43,-44],[90,-46],[36,-55],[-5,-67],[-36,-49],[1,-28],[-122,-124],[-16,-90],[-22,-29],[-123,-41],[-24,-41],[-86,-7],[-33,19],[-76,-17],[-30,18],[-111,0],[-53,-26],[-105,-29],[-25,12],[-54,-29],[-58,-58],[60,-6],[70,-38],[56,15],[29,43],[101,2],[28,-14],[16,-42],[-11,-66],[-71,-177],[-69,-54],[-79,-26],[-13,-38],[-95,-48],[-60,10],[-30,71],[-57,-15],[22,-30],[4,-45],[-58,-23],[-67,39],[-45,-2],[-7,31],[49,31],[23,83],[-12,76],[-79,100],[-42,-25],[29,-110],[-1,-44],[-25,-48],[-9,-61],[-37,-34],[-56,-9],[-55,9],[-91,72],[4,-53],[-108,-12],[30,-44],[86,22],[30,-45],[58,-13],[6,-39],[-40,-82],[-98,3],[-103,-10],[-69,-29],[-11,-33],[60,-45],[45,-96],[-56,-36],[21,-32],[-142,-41],[-67,15],[-50,-16],[-71,-78],[-48,8],[-62,-24],[-30,29],[-85,-54],[-52,1],[62,-53],[73,21],[86,-9],[-45,-43],[-85,-34],[-51,-32],[-35,-78],[-7,-85],[14,-88],[-29,11],[-47,-22],[20,-28],[-44,-26],[-43,3],[-56,-64],[6,-31],[90,-5],[38,-12],[8,-45],[-42,-20],[20,-41],[-25,-32],[52,-78],[35,-16],[32,24],[83,95],[66,3],[103,-15],[46,-17],[95,-14],[98,57],[55,-30],[68,24],[83,-110],[58,-53],[81,-45],[48,-9],[52,38],[65,-61],[52,0],[10,-52],[55,-60],[49,0],[-4,-40],[16,-58],[-28,-40],[46,-30],[67,29],[21,-33],[-60,-30],[-68,23],[-42,-50],[-21,-119],[-23,-63],[-55,-79],[-67,-7],[-48,-50],[-68,-13],[-39,-53],[-15,-69],[-59,-5],[-43,-40],[-109,-11],[-48,-14],[-106,20],[-78,-11],[-19,-52],[13,-39],[-29,-54],[-8,-50],[19,-18],[-33,-49],[-41,-15],[-64,7],[-91,-14],[-18,-31],[11,-80],[27,-60],[96,-47],[-22,-41],[-44,-8],[-22,-38],[-70,8],[-52,-32],[-37,29],[-37,2],[19,-55],[-90,-9],[-177,-100],[-7,-20],[33,-43],[106,26],[-15,49],[109,29],[-15,34],[76,-11],[22,-58],[56,-30],[-45,-28],[-91,-12],[-20,-18],[86,-53],[2,-44],[-29,-35],[-87,-30],[-39,8],[-32,-58],[81,-47],[-1,-23],[-77,-10],[-42,38],[-59,29],[0,-78],[29,-29],[11,-54],[-46,-11],[-74,95],[-30,11],[-36,43],[-1,58],[-47,13],[17,-72],[15,-121],[-24,-38],[-44,7],[-59,-11],[-10,-55],[-40,-70],[-110,18],[-14,71],[-42,5],[-63,-31],[-22,-90],[-106,-31],[-31,42],[-87,19],[-36,-9],[-55,-46],[-49,-3],[-77,-41],[-10,-65],[-110,-21],[27,-56],[53,-38],[-31,-76],[-160,-50],[-68,-58],[-61,-12],[-78,17],[1,-69],[-34,-20],[86,-96],[-8,-59],[-66,-2],[-64,-42],[-23,77],[-100,26],[-56,27],[-88,67],[-63,-32],[1,-65],[-27,-50],[-6,-53],[38,-42],[46,-18],[-26,-45],[-146,-34],[-51,-58],[-19,-44],[24,-53],[-17,-25],[2,-58],[-72,8],[-45,35],[-53,13],[-17,-34],[-74,-22],[-32,-22],[-57,23],[-50,54],[-56,-6],[26,-100],[-23,-3],[10,-121],[32,-41],[-15,-40],[-104,9],[-54,71],[-74,32],[-42,-24],[-16,-61],[-89,-37],[-65,-13],[-115,-122],[-46,-12],[-36,-51],[-120,-45],[-14,-46],[21,-55],[27,18],[181,65],[59,15],[41,-23],[-22,-33],[37,-16],[-33,-102],[-60,-8],[-37,-59],[32,-52],[81,-29],[-61,-102],[-41,-13],[-21,-36],[-82,7],[27,-35],[10,-64],[-52,-12],[-58,-69],[-97,-9],[44,-104],[-16,-43],[-132,51],[-37,6],[-37,60],[-28,17],[-47,-26],[-45,-3],[52,-65],[-56,-67],[-5,-65],[-26,-86],[-50,-10],[-14,60],[-44,42],[-14,49],[-67,-24],[-26,-100],[-45,2],[-66,-51],[-74,-131],[-89,-4],[-26,-42],[24,-19],[-3,-41],[-41,-41],[-41,-9],[-43,13],[-41,43],[-54,23],[-5,28],[-133,111],[-80,-8],[-50,-58],[13,-56],[63,-23],[-1,-35],[27,-28],[-53,-14],[-39,-30],[-19,23],[-48,2],[-38,-39],[-39,-98],[16,-59],[60,-33],[44,12],[45,-72],[-14,-32],[-46,-23],[-169,7],[-41,-25],[-59,3],[-45,32],[-50,118],[-73,2],[-71,-43],[-14,-28],[-54,8],[-71,-24],[-43,-67],[-30,-14],[-69,-3],[-72,-64],[-42,-19],[-28,-32],[-5,-57],[183,57],[56,27],[90,11],[46,-19],[45,11],[31,-42],[-22,-25],[13,-49],[-7,-43],[-82,-58],[-52,29],[-59,4],[-21,29],[-36,-7],[-40,31],[-35,-6],[-75,11],[-56,21],[-24,-34],[60,-41],[-18,-65],[-51,11],[-29,-24],[-31,15],[-67,5],[-62,36],[-56,6],[-70,-55],[-50,-17],[-84,-128],[-63,-54],[12,-50],[39,-29],[104,-32],[-12,-38],[45,-25],[10,34],[62,24],[53,-20],[20,-30],[47,0],[16,-23],[59,-8],[-27,-50],[-49,-18],[-89,-57],[-100,-22],[67,-32],[52,-3],[-46,-82],[99,37],[75,51],[54,50],[22,-44],[-34,-22],[-5,-37],[-44,2],[-54,-19],[-40,-31],[-103,-51],[17,-43],[-54,12],[-1,88],[-47,-54],[3,-44],[-47,20],[63,-121],[-9,-63],[-39,18],[5,33],[-62,49],[-35,-1],[39,-59],[13,-54],[65,-29],[-14,-58],[6,-34],[-45,-16],[-12,37],[-50,57],[-24,1],[15,-72],[-29,-59],[-44,65],[-23,52],[65,36],[-12,19],[-106,-30],[-1,95],[11,75],[48,8],[27,90],[65,28],[-34,25],[-1,42],[-63,-17],[-36,-30],[48,-19],[-48,-33],[0,-32],[-40,-45],[-45,-23],[-38,31],[-21,-44],[49,-44],[-23,-15],[6,-50],[-37,-27],[-60,0],[15,-38],[74,7],[37,-38],[-6,-67],[-73,-20],[59,-45],[-38,-29],[-27,38],[-40,-31],[-39,17],[13,32],[37,6],[-24,42],[19,24],[-78,29],[4,-38],[-30,-38],[-33,11],[-18,58],[-32,-2],[-17,-48],[-41,-57],[-43,-95],[-49,14],[-78,-13],[-7,-89],[-39,6],[-56,72],[-91,-35],[-26,2],[-29,-46],[-54,21],[-110,-24],[-15,-52],[-83,27],[-80,-51],[-12,-75],[10,-60],[-50,-11],[-40,58],[-16,56],[18,44],[-15,28],[26,53],[-57,9],[-58,-32],[-22,-48],[52,-57],[24,-187],[-12,-32],[-45,-38],[-31,-49],[32,-31],[-8,-107],[-89,-56],[-34,-89],[-97,-39],[-64,-6],[39,89],[69,23],[66,38],[-9,27],[-83,27],[6,73],[66,41],[-38,17],[-39,61],[78,148],[5,28],[-28,30],[-124,53],[-85,1],[-56,12],[-56,-28],[23,-31],[-3,-61],[-22,-39],[-58,-5],[-88,79],[-20,-17],[17,-38],[-95,-12],[-36,-72],[43,-31],[12,-27],[-25,-41],[-85,23],[10,-46],[-51,4],[-39,-14],[22,-92],[-128,-22],[-34,26],[-64,-65],[-108,19],[-90,42],[-29,-58],[67,-27],[46,-37],[-45,-15],[-45,-62],[-41,-12],[3,-53],[-32,-57],[11,-32],[-19,-46],[-49,-41],[-48,8],[-29,102],[-40,62],[4,34],[-46,33],[-55,-69],[-30,-10],[-71,32],[-61,-16],[-16,-52],[80,-7],[78,-17],[19,-35],[-1,-49],[-20,-43],[-37,-16],[-162,-4],[-59,37],[-5,51],[23,26],[-42,44],[-66,5],[-70,-43],[-19,-49],[-39,-49],[-17,-59],[-79,-41],[-105,-65],[-92,-27],[-86,-64],[-71,-2],[-37,11],[-5,42],[-60,13],[-67,-20],[-73,-41],[-74,8],[-17,64],[29,20],[34,148],[-9,71],[82,85],[44,85],[29,20],[18,45],[-2,58],[-36,26],[-99,16],[-129,-12],[-73,-23],[-33,-27],[-55,-114],[-70,-89],[16,-34],[-19,-184],[18,-54],[-88,-117],[-18,-14],[-95,-128],[-54,-52],[-19,-42],[-7,-69],[-79,-26],[-67,54],[-75,2],[-14,-35],[34,-12],[22,-85],[-24,-22],[79,-28],[0,-50],[24,-27],[-20,-45],[-42,-25],[-48,-10],[-44,-46],[-44,41],[-85,55],[42,28],[-3,55],[-53,18],[-44,-6],[-10,-32],[-56,-53],[-9,-30],[34,-43],[19,-66],[-42,-68],[-46,-24],[-39,8],[-36,39],[-15,47],[-47,-49],[-54,9],[-50,-14],[-53,24],[-66,50],[-38,113],[78,22],[38,-15],[10,-29],[60,-19],[62,13],[-34,33],[-36,-4],[-72,85],[-49,18],[-26,61],[-20,151],[-111,50],[28,67],[-103,10],[-35,-16],[-68,-105],[-22,-62],[7,-37],[40,-36],[65,4],[46,-62],[10,-38],[33,-30],[-18,-40],[-40,-22],[3,-34],[34,-31],[7,-73],[42,-86],[-1,-104],[-33,3],[-42,37],[-90,14],[-54,-35],[20,-33],[-23,-38],[-88,-41],[-33,17],[-48,-31],[-69,11],[-50,43],[-7,45],[-52,32],[-17,39],[31,56],[-50,52],[-41,77],[-90,62],[-56,-2],[-55,-28],[-61,8],[-52,-133],[5,-30],[69,-38],[31,5],[145,-101],[28,-62],[-46,-44],[-53,-22],[-66,-49],[-48,-57],[-33,-4],[-31,-64],[-41,-20],[-79,-9],[-25,-49],[-59,6],[-45,109],[94,42],[11,76],[-44,43],[15,66],[40,-19],[89,-18],[17,20],[-80,44],[-8,19],[25,92],[-6,89],[-48,71],[-10,46],[180,140],[82,34],[94,13],[18,-27],[53,-4],[61,24],[53,-31],[35,27],[62,13],[28,-7],[22,88],[20,13],[-10,44],[-52,-8],[-37,27],[86,72],[41,12],[40,59],[47,10],[45,-17],[57,58],[25,46],[58,37],[58,-14],[39,-33],[58,25],[51,72],[-5,52],[-24,37],[22,41],[-4,32],[-51,-1],[-49,-23],[-22,10],[113,101],[61,77],[132,142],[115,145],[55,79],[81,65],[100,47],[142,134],[83,16],[88,51],[85,68],[100,101],[174,43],[101,33],[68,33],[290,67],[132,39],[170,63],[6,-11],[-151,-50],[-8,-61],[78,-13],[57,19],[72,-18],[59,-2],[34,-21],[44,1],[37,42],[81,19],[30,40],[37,-5],[67,35],[23,-44],[-6,-61],[26,-33],[-27,-22],[-39,51],[-81,-15],[-47,-24],[-52,-50],[-14,-43],[26,-52],[71,-19],[6,-96],[21,-32],[54,-18],[79,-97],[73,-79],[34,53],[44,-2],[67,-38],[26,-89],[21,3],[28,98],[-65,37],[-31,45],[-68,27],[15,44],[-22,116],[-41,51],[56,12],[88,-45],[68,-11],[133,6],[42,23],[56,-13],[48,-76],[-18,-29],[4,-57],[33,-24],[25,41],[50,12],[25,-58],[38,-16],[49,12],[34,-25],[71,-6],[-59,67],[-4,64],[108,25],[-50,55],[-55,-11],[-145,90],[-41,42],[-85,21],[-59,69],[-37,-5],[24,73],[-40,34],[-47,-13],[124,181],[73,142],[2,37],[61,148],[37,105],[47,82],[51,44],[61,34],[68,59],[48,71],[69,56],[57,27],[75,21],[173,132],[189,173],[212,89],[182,83],[102,62],[134,100],[46,6],[85,49],[30,4],[140,87],[224,129],[133,117],[-10,-37],[56,-67],[79,-38],[64,-20],[60,-6],[35,19],[150,20],[-15,24],[12,73],[-30,35],[-6,43],[-26,24],[18,81],[-23,36],[12,82],[39,95],[56,89],[80,100],[44,71],[119,149],[119,135],[107,101],[58,26],[54,42],[70,40],[148,50],[4,33],[41,37],[78,46],[104,157],[88,46],[122,113],[59,33],[94,12],[6,-55],[40,-60],[2,-33],[78,-22],[43,76],[-27,143],[-20,64],[-30,9],[-112,-1],[-20,58],[9,169],[69,207],[35,229],[14,149],[19,142],[36,205],[55,118],[31,13],[72,-8],[72,10],[43,27],[22,65],[-79,5],[-139,150],[9,40],[-23,25],[-2,81],[18,130],[16,50],[44,91],[18,61],[44,69],[66,42],[43,0],[62,56],[68,105],[45,57],[80,61],[51,60],[134,92],[42,10],[-18,44],[2,91],[40,36],[63,85],[6,71],[-40,39],[7,34],[46,43],[11,109],[40,82],[-38,0],[-65,-36],[-45,-60],[5,-64],[-39,-38],[-21,-55],[-69,-28],[-198,-60],[-97,-9],[-105,-58],[-43,-37],[-152,-47],[-33,-38],[-224,-62],[-232,-123],[-316,-121],[-93,-25],[-108,2],[-88,41],[-85,70],[-3,55],[-19,82],[-50,72],[-91,54],[-124,29],[-57,38],[9,64],[76,53],[-5,20],[28,254],[13,65],[-71,-4],[-102,-146],[-22,-49],[-161,-97],[-78,11],[11,-29],[-39,-145],[28,-71],[-40,-86],[-33,-21],[-79,4],[1,-59],[28,-35],[29,-86],[12,-69],[43,-93],[41,-6],[-3,-52],[31,-115],[78,-31],[-57,-99],[-88,-104],[-47,-21],[-100,-15],[-65,9],[-149,50],[-29,15],[-85,154],[-97,152],[-106,185],[-122,195],[-99,127],[-81,78],[-55,38],[-122,39],[-21,-19],[-55,37],[7,25],[67,88],[-45,85],[-50,14],[-138,-27],[23,-29],[-22,-50],[-40,-48],[34,-36],[-8,-30],[-69,19],[-20,-21],[26,-86],[-93,-30],[1,-24],[-66,-21],[-77,79],[-25,51],[-31,13],[12,68],[-35,37],[-53,10],[-66,-15],[-9,-38],[-106,16],[21,45],[-31,56],[-33,4],[-81,-53],[4,74],[-34,60],[-44,6],[-21,28],[42,35],[33,-3],[8,44],[-38,76],[-78,59],[27,39],[-55,9],[-49,-45],[-127,-61],[-60,-35],[-37,-46],[-45,-17],[-171,-109],[-98,-78],[-61,-77],[-52,-47],[-40,51],[-35,19],[-54,-17],[-66,0],[-44,-49],[-83,-46],[-50,-42],[-48,-11],[-28,-27],[-65,-12],[-4,-27],[-54,0],[-108,-29],[-17,-36],[-88,-77],[-22,-47],[-3,-59],[21,-36],[-169,-45],[-77,-33],[-46,-62],[-49,8],[-55,-15],[-67,-46],[-17,-45],[-69,-7],[-38,-16],[5,63],[-26,57],[-70,63],[-117,0],[-49,9],[-33,-22],[-39,21],[-138,-26],[-42,25],[-71,16],[-16,38],[54,7],[13,26],[139,4],[38,25],[41,-31],[37,-5],[-1,-38],[83,11],[54,43],[20,47],[-39,32],[32,42],[58,30],[46,70],[30,91],[-5,62],[-39,119],[-8,207],[-29,60],[-49,73],[29,50],[-84,41],[-151,188],[-47,101],[-64,171],[35,56],[58,116],[55,33],[1,62],[110,40],[25,62],[28,25],[38,-5],[23,66],[26,18],[65,2],[44,26],[16,45],[-61,77],[-43,67],[-64,66],[-24,47],[-56,71],[-9,84],[-24,34],[15,31],[-71,84],[2,25],[-60,117],[-136,141],[-36,55],[-38,95],[9,64],[-24,34],[-35,8],[-43,47],[-56,95],[-21,73],[-49,5],[-21,59],[-72,57],[-75,132],[-116,12],[-57,-67],[-14,-40],[8,-136],[23,-94],[-49,-76],[-47,-37],[-129,-18],[-132,41],[-34,-16],[6,-37],[-38,-45],[-65,-37],[-109,-25],[-170,-87],[-131,-58],[-159,-51],[-94,-13],[-76,-25],[-200,-35],[-178,-18],[-207,-13],[-174,1],[-207,29],[-130,31],[-127,51],[-42,46],[-70,148],[-13,44],[69,49],[84,10],[-5,43],[-40,22],[-83,73],[-170,68],[-32,-2],[-40,51],[-26,-6],[-62,89],[-96,119],[8,38],[-45,42],[-60,18],[-80,53],[-43,39],[-37,93],[-3,49],[-65,-34],[-50,-1],[-130,20],[-76,27],[-78,41],[-115,79],[-122,113],[-44,51],[48,49],[64,10],[77,50],[22,59],[31,7],[9,45],[-18,27],[-133,11],[-61,-29],[-29,-28],[-55,-13],[-54,-41],[-110,-9],[-50,24],[-108,18],[-60,104],[38,16],[15,35],[42,6],[88,-13],[62,35],[-5,31],[37,35],[57,-2],[35,28],[26,49],[76,11],[16,44],[38,35],[52,-4],[77,58],[10,35],[-62,44],[-32,53],[-3,45],[55,0],[163,76],[33,58],[-19,26],[-80,42],[-39,69],[28,49],[28,14],[-9,44],[-44,-2],[-103,-86],[-74,1],[-119,41],[-37,46],[-15,81],[77,63],[34,13],[140,-12],[108,37],[-6,101],[-44,7],[-45,-44],[-81,17],[-79,41],[-25,54],[-69,41],[17,56],[-98,18],[-89,71],[-49,-26],[5,-22],[-42,-78],[-17,-103],[-37,-11],[-129,12],[-85,14],[-87,46],[-42,135],[15,69],[-38,74],[6,31],[44,25],[23,49],[-25,45],[-125,1],[-137,47],[-75,-9],[-60,45],[-66,144],[5,69],[156,67],[64,21],[26,51],[-13,46],[-81,75],[-51,-1],[-136,57],[-64,-11],[-22,-25],[-121,-22],[-34,-44],[-61,16],[-49,126],[-9,48],[22,102],[42,-8],[133,13],[219,55],[194,35],[-41,28],[-55,-2],[-35,27],[-76,-2],[-131,48],[-64,85],[-5,23],[-72,71],[4,46],[256,32],[76,-15],[99,11],[37,-31],[66,63],[176,28],[-99,97],[-2,24],[-55,61],[-51,128],[-7,125],[40,119],[28,15],[82,152],[41,13],[181,205],[119,114],[107,127],[48,7],[23,75],[84,115],[73,72],[152,112],[182,101],[64,10],[117,4],[121,51],[-5,40],[-38,10],[-32,60],[-15,71],[-57,113],[-4,38],[26,32],[-22,95],[76,30],[-60,36],[8,50],[35,62],[32,120],[30,67],[118,152],[78,47],[139,-8],[40,12],[2,44],[-69,49],[33,23],[-41,103],[20,37],[63,36],[86,75],[88,65],[132,62],[80,7],[129,29],[191,10],[90,-24],[179,-77],[40,7],[39,-28],[40,16],[82,-13],[-1,-33],[46,-25],[62,-60],[93,-66],[99,4],[12,-28],[-23,-40],[78,14],[-2,-27],[97,-38],[76,-64],[-1,-39],[33,-26],[81,28],[273,24],[97,28],[103,110],[88,33],[94,70],[8,76],[34,47],[76,26],[64,-13],[86,31],[123,113],[69,90],[77,75],[97,122],[-6,19],[72,85],[152,105],[-6,46],[-52,80],[74,5],[42,-11],[39,-36],[39,23],[30,-30],[121,-15],[28,-43],[61,-31],[-99,-36],[10,-30],[-31,-52],[142,43],[47,-36],[21,42],[47,-19],[68,19],[97,-27],[91,40],[83,18],[82,-6],[81,-28],[92,8],[23,39],[89,-32],[92,34],[110,0],[107,35],[65,11],[46,30],[34,-2],[7,60],[49,22],[-8,37],[67,28],[35,35],[42,101],[69,-4],[80,75],[56,85],[104,109],[47,77],[9,44],[-7,111],[-45,98],[-25,77],[-46,90],[-73,96],[-61,145],[-23,86],[11,74],[-18,70],[9,133],[-29,53],[-47,47],[-336,282],[-9,23],[-223,82],[-4,17],[-96,-6],[-96,-55],[-20,41],[70,44],[19,38],[-11,85],[15,46],[56,15],[57,45],[34,5],[37,-35],[188,-50],[216,-8],[92,23],[5,32],[-122,56],[115,-4],[74,10],[98,90],[54,19],[96,64],[9,36],[-9,72],[18,38],[-3,90],[-124,151],[-25,67],[-151,51],[-135,81],[-76,62],[-34,44],[-49,27],[-21,-75],[-28,-29],[-119,-74],[-84,-89],[-16,-74],[-129,-43],[-93,-17],[-184,49],[-41,33],[-81,-38],[-163,-36],[-83,-48],[-55,-45],[26,-34],[-267,-25],[-132,-32],[-53,-51],[-39,-92],[-134,-44],[-42,-32],[-137,-59],[-68,-47],[-63,-18],[-71,-112],[-33,-27],[17,-52],[-22,-68],[-32,-26],[11,-56],[-159,-66],[-56,-68],[-39,11],[-10,54],[17,48],[-5,60],[-46,83],[-38,28],[-8,48],[47,23],[-32,45],[-96,48],[-28,53],[-115,23],[-33,77],[-67,35],[-82,25],[-4,51],[-70,32],[-36,-16],[-177,-131],[112,-96],[118,-13],[28,-58],[43,-16],[71,23],[77,-17],[-21,-43],[24,-27],[-93,-32],[-10,-88],[-17,-41],[-61,-26],[-39,4],[-28,43],[-82,85],[-3,35],[-194,111],[-189,73],[-126,36],[-104,12],[-104,-5],[-85,19],[-117,-3],[-45,-32],[-54,9],[-50,-27],[-122,22],[-167,9],[-201,-9],[-129,-25],[-215,-73],[-281,-110],[-48,-26],[-108,-37],[-111,-11],[-110,1],[-33,-16],[-255,71],[-325,73],[-154,27],[-241,49],[-196,26],[-69,1],[-282,55],[-262,42],[-66,25],[-191,110],[-78,114],[-53,111],[18,61],[-13,80],[72,25],[29,44],[3,78],[-23,49],[-49,54],[-129,91],[-220,101],[-19,26],[27,57],[-25,45],[-57,39],[-129,55],[-47,29],[-113,120],[-23,52],[70,186],[58,75],[35,-38],[-11,-38],[-86,-40],[-49,-111],[37,-62],[-8,-17],[129,-45],[3,-16],[179,-30],[95,7],[111,30],[30,34],[64,32],[62,57],[-18,109],[37,34],[98,38],[56,53],[-20,29],[-83,59],[-150,51],[-112,1],[-40,-22],[-100,5],[-202,36],[-137,52],[-189,45],[-141,6],[-95,19],[-97,-1],[-194,15],[-95,29],[-104,55],[-100,38],[-14,28],[-135,79],[-182,58],[-25,35],[-106,30],[-97,12],[-127,44],[-24,61],[-43,55],[-7,50]],[[15060,187731],[80,25],[6,-59],[-72,3],[-14,31]],[[14820,157490],[13,21],[60,13],[23,43],[-24,25],[115,15],[32,18],[21,46],[-29,34],[20,53],[64,-17],[91,57],[-27,119],[107,57],[43,82],[6,61],[-53,34],[15,113],[37,35],[-2,23],[58,58],[27,4],[33,57],[40,0],[63,69],[8,35],[39,-5],[21,-25],[55,-23],[35,7],[89,47],[21,-46],[81,20],[26,-24],[31,26],[4,74],[-36,-5],[-7,57],[-88,17],[25,34],[42,101],[-28,35],[-4,58],[21,17],[73,99],[83,45],[73,69],[4,17],[135,37],[84,37],[36,-15],[42,6],[39,26],[42,-10],[26,-25],[8,-43],[74,-26],[65,-6],[105,4],[10,-49],[-28,-57],[-75,-66],[0,-50],[20,-35],[-1,-59],[-84,-48],[-15,-25],[-105,-45],[-34,-36],[-83,-46],[-79,-28],[-11,-30],[-113,-34],[-110,-46],[-35,-42],[-57,-46],[17,-23],[-63,-59],[-11,-59],[14,-22],[-47,-24],[-36,-39],[-48,-74],[-13,-50],[-81,-19],[-13,-21],[-96,-22],[-71,-95],[-35,-26],[-86,-32],[-10,-42],[-64,28],[-25,-17],[5,-45],[36,-25],[2,-27],[-45,-7],[-28,46],[-42,-25],[-34,0],[-24,-30],[-125,-79],[-39,-16],[-64,4],[-34,-39],[-2,-33],[-55,-1],[-40,-20]],[[14608,157353],[77,59],[13,-29],[-90,-30]],[[13864,157864],[23,47],[-3,44],[100,34],[20,-27],[0,-41],[-22,-34],[-22,-82],[-38,-25],[-31,15],[-27,69]],[[13829,166355],[42,2],[153,-27],[62,5],[39,-10],[130,10],[48,-28],[-48,-55],[-54,-15],[-34,-57],[-27,-18],[-89,14],[-48,34],[-10,55],[-59,23],[-47,3],[-58,64]],[[13810,158039],[48,59],[40,-49],[-12,-35],[-76,25]],[[13498,157512],[34,60],[59,11],[87,-28],[33,10],[-5,48],[26,17],[45,-7],[112,28],[63,-16],[44,-33],[1,-57],[-25,-33],[24,-25],[-58,-49],[19,-49],[-55,-10],[-17,50],[-49,33],[-28,-8],[-84,49],[-96,-90],[-40,-4],[-72,52],[-18,51]],[[13334,157671],[35,17],[15,37],[49,1],[59,-18],[27,-27],[-12,-66],[-63,-36],[-63,23],[-47,69]],[[13242,157262],[6,64],[22,51],[-9,21],[86,13],[22,-26],[68,-19],[-7,-64],[-31,-49],[-67,-8],[-90,17]],[[12891,167635],[7,70],[42,36],[36,-10],[91,38],[27,-18],[77,-2],[148,36],[-40,-77],[0,-42],[-22,-29],[-58,-36],[-62,-16],[-2,-24],[-45,-20],[-1,53],[-20,21],[-50,-5],[-128,25]],[[12270,156881],[32,118],[1,54],[66,13],[32,20],[15,54],[25,23],[49,-6],[43,49],[96,-23],[53,-38],[-1,-77],[-21,-16],[-45,-77],[-77,-13],[-34,13],[-77,-41],[-12,-28],[-75,-67],[-36,34],[-34,8]],[[11774,156883],[57,56],[28,-10],[-1,-56],[-84,10]],[[11572,156697],[5,39],[26,37],[63,35],[82,-84],[-26,-53],[-43,-45],[-41,-2],[-54,15],[-12,58]],[[10786,182421],[26,67],[-15,87],[15,63],[56,78],[17,47],[44,25],[18,44],[-26,57],[47,95],[-25,130],[89,8],[60,-41],[12,-42],[-24,-25],[-3,-74],[22,-40],[129,-63],[264,-82],[173,-40],[54,-7],[256,-67],[138,-22],[66,3],[92,44],[30,27],[112,55],[68,53],[55,15],[19,26],[87,-12],[67,10],[11,37],[91,36],[83,-23],[106,-6],[86,6],[63,-56],[56,-23],[13,-37],[65,-45],[66,-6],[52,-68],[12,-103],[41,-50],[-26,-56],[42,-36],[96,-21],[112,-43],[39,-28],[168,-23],[147,-8],[118,-67],[33,-66],[88,-27],[126,-16],[135,-3],[73,-20],[130,-11],[133,-2],[47,9],[167,-16],[26,-20],[58,8],[102,-48],[170,-22],[14,-13],[-42,-53],[-12,-100],[-34,-23],[-53,-84],[-65,-57],[-74,-34],[-128,50],[-89,19],[-125,10],[-162,-11],[-137,-26],[-100,-32],[-21,-50],[-85,-62],[-50,-13],[-79,-51],[-61,-99],[72,-124],[-102,-14],[-43,-35],[-21,-47],[-180,62],[30,49],[-46,46],[1,42],[-24,52],[-54,74],[-61,61],[-139,92],[-62,5],[-46,55],[-139,39],[-38,-11],[-82,4],[-101,38],[-19,71],[-92,122],[-115,89],[-98,55],[-106,46],[-98,23],[-340,101],[-97,16],[-183,7],[-69,-7],[-83,-47],[-117,-20],[-70,-29],[9,-51],[-49,-25],[-9,-27],[-54,-3],[-123,-64],[-111,46],[-48,-21],[-23,44],[-47,-3],[-158,68],[-49,0],[-27,56],[-104,112],[5,47],[-39,70]],[[9626,156202],[18,69],[32,27],[39,86],[119,51],[22,32],[102,16],[2,-31],[41,-26],[78,-3],[29,-26],[5,-48],[-21,-40],[-112,-56],[-28,-39],[-48,17],[-46,-41],[-59,-5],[-30,-39],[-26,20],[-97,1],[-20,35]],[[8988,175445],[35,106],[-1,32],[49,14],[51,40],[32,50],[57,-3],[2,-39],[-29,-61],[75,-140],[106,-69],[47,-49],[246,-127],[116,-34],[125,0],[24,23],[71,-32],[64,-53],[122,-79],[57,-23],[-53,-36],[-59,-5],[-47,76],[-125,20],[-135,-3],[-54,-23],[-89,-20],[-47,43],[-146,62],[-59,68],[-123,97],[-64,43],[-54,60],[-76,12],[-118,50]],[[8903,175816],[42,82],[41,-1],[8,-118],[-44,0],[-47,37]],[[7526,155874],[115,-11],[45,2],[87,27],[-19,-63],[98,11],[23,-25],[41,16],[26,45],[93,5],[168,44],[50,-26],[46,42],[22,-39],[-43,-52],[39,-8],[33,-31],[27,34],[34,-32],[97,-1],[51,-14],[78,8],[41,18],[60,-34],[68,35],[48,-16],[23,-34],[43,31],[54,-12],[67,6],[43,-29],[-35,-25],[-113,4],[-77,-42],[-74,-2],[-23,16],[-36,-19],[-51,3],[-31,-14],[-72,-2],[-43,-29],[-152,13],[-22,-24],[-64,-8],[-18,-15],[-36,46],[-38,21],[-29,-14],[-58,26],[-24,-17],[-41,18],[-72,-25],[-50,8],[-78,-26],[-59,31],[-88,3],[-18,44],[-54,76],[-46,-13],[-56,69]],[[5623,155623],[62,-8],[64,52],[17,-20],[42,-1],[42,49],[88,11],[51,-53],[64,50],[28,50],[37,0],[25,-43],[94,81],[-1,34],[37,12],[28,-33],[33,4],[30,-25],[39,11],[47,-11],[51,9],[0,54],[40,6],[35,-30],[32,-4],[112,38],[10,47],[41,-20],[30,32],[-30,63],[16,11],[63,-19],[38,26],[72,-15],[31,18],[-59,39],[34,31],[55,11],[52,-15],[29,-36],[40,19],[26,46],[38,-1],[11,31],[36,8],[15,28],[-20,54],[-77,0],[-35,23],[-54,-15],[-36,7],[-20,29],[-40,-9],[-43,27],[-17,36],[29,21],[45,-14],[95,-7],[36,51],[-17,79],[23,16],[44,-6],[20,41],[78,12],[19,24],[80,22],[52,-47],[64,-18],[25,-48],[71,-26],[-4,-47],[35,-69],[-9,-51],[-35,-44],[-30,-16],[-4,-51],[-30,-42],[-115,13],[-27,-13],[-46,17],[-27,-41],[28,-44],[43,-6],[12,-52],[93,-73],[12,-44],[-44,-14],[-51,27],[-62,-23],[-49,-35],[-77,-11],[-16,43],[-69,17],[-20,-27],[-42,-5],[-2,-38],[-34,-5],[-1,-65],[-17,-12],[-10,-66],[-30,23],[-35,58],[-44,25],[-81,-30],[7,-36],[-35,-17],[-17,28],[-36,-5],[-40,-42],[-33,-14],[-18,25],[-42,11],[-37,-72],[-33,-3],[-82,57],[-53,-4],[-98,38],[-47,-29],[-62,9],[-8,-37],[-43,12],[-34,-49],[-87,11],[-39,-11],[-91,7],[-59,-8],[-90,28],[-53,-24],[-49,37]],[[5393,155517],[68,29],[29,-30],[-97,1]],[[5345,155986],[28,15],[29,-27],[-40,-25],[-17,37]],[[5027,155456],[19,54],[119,-32],[-87,-24],[-18,-45],[-33,47]],[[4833,155437],[24,22],[92,14],[27,-79],[-59,-9],[-27,40],[-57,12]],[[4709,155532],[71,25],[114,-10],[-21,-34],[-43,14],[-2,-42],[-80,21],[-39,26]],[[4479,155306],[37,3],[37,33],[113,20],[-11,-51],[69,-12],[-21,-28],[1,-62],[-93,46],[-46,-7],[-9,27],[-77,31]],[[4337,155712],[5,30],[38,29],[58,65],[134,-21],[32,-61],[43,-25],[-15,-42],[46,-52],[-102,-24],[41,-84],[-16,-21],[-49,-14],[-26,8],[-2,41],[-141,29],[4,36],[-32,47],[-18,59]],[[4303,155169],[48,45],[-23,35],[17,42],[52,-3],[56,-57],[-12,-37],[46,-4],[-2,33],[65,2],[58,-21],[4,-42],[-77,-12],[-50,18],[4,-70],[-38,-14],[-54,-44],[-22,34],[27,28],[-72,29],[-27,38]],[[3185,154702],[28,14],[-17,49],[23,49],[101,45],[54,58],[-17,49],[12,31],[-54,36],[-27,45],[12,35],[71,49],[27,-47],[34,-2],[58,31],[-17,25],[52,84],[-1,40],[-52,59],[-16,52],[27,62],[28,21],[74,8],[80,-37],[59,26],[-3,30],[58,57],[49,-19],[6,-52],[-19,-51],[31,-49],[-7,-26],[-45,-8],[-58,-29],[-9,-74],[-21,-37],[60,1],[3,-33],[52,11],[28,-21],[36,7],[33,29],[50,0],[12,-27],[80,66],[54,9],[32,-20],[49,26],[41,-31],[-14,-55],[-35,-9],[11,-40],[35,21],[19,-29],[5,-69],[-44,-33],[-33,-80],[-44,-21],[-24,18],[-52,4],[-5,123],[-37,-6],[-8,-38],[19,-18],[-11,-54],[-44,-10],[-25,28],[-141,-123],[-57,0],[-49,-16],[-29,7],[-36,-32],[-59,9],[-10,-57],[20,-14],[-10,-59],[-48,32],[-74,-67],[-19,36],[12,53],[-34,79],[19,34],[-8,57],[-55,-85],[-3,-42],[-28,-17],[-26,-46],[-19,-68],[-35,-44],[-63,31],[-12,59]],[[2484,155344],[36,40],[33,-45],[-48,-28],[-21,33]],[[2132,154884],[45,23],[51,44],[125,-35],[59,9],[5,41],[43,-7],[54,45],[51,-10],[26,21],[157,44],[68,34],[50,48],[9,58],[7,209],[24,27],[74,-5],[62,-25],[50,-50],[8,-33],[-37,-24],[10,-58],[-77,-46],[-19,-21],[-4,-59],[30,-49],[-18,-57],[7,-72],[-35,-55],[-43,6],[-44,-12],[-71,13],[14,-46],[-50,-25],[-32,15],[-25,37],[-71,75],[-17,-11],[-102,-7],[-90,-63],[-151,16],[-50,-41],[9,-66],[-53,-1],[-5,65],[-24,4],[-20,44]],[[1361,155282],[47,71],[101,25],[110,-14],[111,11],[37,-6],[0,-29],[70,-60],[-29,-45],[37,-27],[57,-2],[-1,-36],[53,0],[58,33],[39,-36],[37,-6],[64,43],[85,11],[18,-38],[-84,-43],[-51,3],[-108,-50],[-47,-11],[28,-39],[-61,-96],[17,-45],[-1,-43],[-54,-39],[-27,16],[-51,-28],[-13,-59],[20,-35],[20,-71],[-51,-12],[-36,65],[-8,54],[-102,11],[-13,45],[-62,-27],[-53,40],[20,32],[-5,43],[45,-14],[51,1],[127,42],[14,31],[-13,88],[-51,16],[-32,27],[-64,-24],[-16,34],[-33,16],[-11,38],[-68,29],[-47,38],[-48,17],[-26,55]],[[682,154639],[64,29],[55,-27],[34,10],[23,-21],[-39,-39],[-55,20],[-59,-2],[-23,30]],[[423,154577],[57,-6],[56,-31],[65,-9],[11,-31],[-127,-6],[-20,51],[-42,32]],[[410,155067],[16,79],[36,35],[60,1],[70,-59],[20,-64],[-54,-80],[-63,-4],[-85,92]],[[215,154131],[49,36],[62,-39],[31,-53],[-13,-52],[-65,17],[9,-31],[-25,-37],[-28,-2],[7,120],[-27,41]],[[0,153862],[12,31],[39,40],[49,-22],[14,-81],[-32,-65],[-40,-19],[-35,35],[13,44],[-20,37]],[[87376,132180],[182,5],[222,-2],[415,-2],[349,-6],[306,2],[450,-5],[289,9],[448,3],[479,4],[366,-1],[632,5],[254,-1]],[[96163,120504],[0,-368],[2,-360],[7,-451],[2,-62],[0,-211],[-3,-248],[2,-187],[-36,-36],[-43,-127],[-31,-23],[9,-44],[-34,-88],[-5,-45],[-21,-33],[-20,9],[-70,-28],[-37,-3],[-39,34],[-8,39],[-30,11],[-32,37],[8,38],[-32,54],[-44,52],[-20,36],[-64,5],[-42,-46],[-36,31],[-45,-29],[-14,54],[-93,4],[-67,-50],[-22,29],[-49,-61],[-27,-17],[-79,-11],[-27,-46],[27,-61],[-9,-30],[29,-43],[-26,-33],[0,-88],[41,-102],[18,-70],[55,-66],[-64,-58],[17,-39],[-25,-61],[19,-37],[5,-80],[-14,-104],[33,-52],[-10,-89],[54,-95],[-10,-55],[-15,-8],[19,-115],[-30,-49],[0,-56],[19,-94],[19,-47],[36,-46],[34,-131],[13,-66],[-3,-66],[16,-81],[10,-123],[16,-61],[-5,-105],[-39,-41],[-31,1],[-36,-37],[2,-22],[57,-50],[-3,-38],[-31,-33],[-14,-38],[5,-62]],[[129594,128400],[65,32],[3,61],[-11,41],[4,49],[20,65],[-6,66],[-28,48],[-27,23],[7,39],[32,35],[46,82],[62,39],[87,28],[90,-2],[93,74],[17,65],[-5,66],[11,61],[24,67],[-7,74],[10,31],[49,55],[18,47],[34,37],[34,56],[53,39],[16,78],[-9,50],[18,63],[5,66],[-10,89],[4,56],[-64,138],[-26,24],[-51,0],[-36,78],[-70,98],[-1,20],[33,86],[21,35],[19,158],[20,37],[5,60],[30,30],[77,24],[67,-29],[44,23],[63,50],[30,7],[148,-13],[120,28],[74,75],[16,39],[80,36],[59,-19],[58,13],[72,97],[103,53],[5,25],[-5,113],[13,76],[29,36],[-1,92],[54,78],[84,60],[50,23],[11,21],[-5,49],[21,102],[24,70],[3,57],[-18,33],[3,38],[23,47],[9,51],[-17,64],[-19,27],[-6,79],[8,95],[-12,20],[-44,14],[-12,50],[-60,44],[-48,18],[-68,51],[-42,11],[-51,47],[-41,67],[-17,56],[22,104],[-42,76],[-49,67],[-34,27],[-81,48],[-23,60],[-79,40],[-44,46],[-3,31],[19,39]],[[130741,133380],[350,-4],[491,4],[175,-7],[425,-1],[214,-7],[402,-9],[381,-5],[304,-9],[219,7],[542,-1],[231,3],[463,-8]],[[134938,133343],[6,-49],[-10,-95],[2,-95],[-20,-67],[-13,-15],[-13,-126],[9,-74],[39,-138],[97,-210],[37,-60],[43,-46],[16,-40],[3,-68],[23,-94],[21,-54],[24,-150],[13,-19],[-3,-58],[10,-55],[41,-96],[13,-58],[28,-44],[34,-29],[10,-93]],[[135348,131510],[-2,-528],[-1,-431],[0,-640],[1,-509],[-1,-731],[-7,-809],[-3,-645],[1,-552],[1,-673],[-21,10],[-22,-32],[-42,-11],[-24,-53],[0,-114],[37,-17],[9,-86],[-18,-44],[-24,-19],[-24,-45],[-26,-8],[-32,-77],[23,-17],[-15,-51],[51,-6],[4,-51],[22,-2],[42,-57],[-11,-36],[15,-44],[-10,-85],[69,-34],[24,-37],[-5,-54],[-16,-56],[-24,-47],[2,-52],[25,-42],[-2,-72],[46,-76],[-14,-118],[-38,-119],[-98,-44],[-44,-140],[7,-45],[-25,-28],[-17,-42],[-27,-34],[35,-74],[-40,-6],[-20,-37],[-41,-28],[-45,-6],[-17,-50],[35,-12],[-19,-97],[-56,-94],[-34,-13],[-26,-41],[-12,-44],[1,-64],[-18,-50],[-24,-3],[-30,67],[-12,-47],[-28,-37],[-39,61],[-25,-44],[-15,-93],[-28,8],[-7,-73],[21,-41],[43,-39],[44,-20],[-51,-93],[-35,9],[-9,-48],[-34,-4],[-27,-26],[18,-31],[65,35],[5,-30],[-15,-44],[-51,-37],[-46,1],[-2,-46],[25,-19],[-13,-39],[20,-71],[-12,-41],[-24,-6],[10,-63],[-36,8],[4,-41],[47,-7],[10,-42],[-62,-9],[-46,34],[-13,-28],[24,-34],[29,-71],[38,-16],[1,-41],[-37,-4],[-41,16],[-7,-30],[45,-36],[33,20],[14,-25]],[[134604,122371],[-21,-75],[-32,-66],[-90,-74],[-49,-100],[-1,-57],[37,-154],[41,-42],[26,-49],[28,-23],[10,-69],[-28,-53],[-79,-3],[-59,-19],[-158,-26],[-45,-28],[-73,-88],[-69,52],[-70,-39],[-31,-51],[-15,-110],[-36,-96],[-7,-34],[10,-51],[36,-50],[20,-48],[35,-39],[24,-101],[11,-19],[-52,-183],[-25,-14],[-67,-6],[-76,34],[-6,23],[-51,54],[-113,62],[-65,11],[-109,104],[-164,83],[-85,13],[-39,-12],[-43,-31],[-68,-85],[-25,-43],[-27,-88],[-64,-70],[-31,-63],[-10,-58],[23,-79],[50,-50]],[[156297,139230],[380,11],[174,-4],[181,6],[252,-2],[126,-6],[50,-11],[110,1],[253,-12],[221,6],[85,-1],[277,5],[218,8],[394,5]],[[159018,139236],[-43,-32],[-11,-36],[34,-60],[-1,-73],[28,-43],[-89,-141],[6,-26],[-34,-56],[6,-44],[-69,-91],[-10,-28],[62,-162],[-5,-36],[28,-13],[22,-55],[-6,-31],[13,-47],[19,-22],[-35,-51],[-47,0],[-11,-24],[37,-44],[-21,-51],[5,-27],[-23,-39],[-59,-20],[-34,-88],[-68,-66],[-84,-13],[-38,-14],[-35,-43],[3,-55],[-85,-50],[-48,24],[-39,-23],[-77,0],[-43,-37],[-34,-3],[-6,-53],[-32,-27],[-13,-36],[29,-76],[-27,-114],[37,-83],[-16,-80],[5,-54],[18,-19],[-58,-126],[-44,-52],[-17,-42],[3,-59],[-9,-118],[-45,-40],[-33,-51],[-21,-56],[9,-51],[-4,-69],[-29,-43],[-1,-35],[-41,-54],[-57,-33],[-47,-73],[-4,-85],[-14,-59],[-18,-10],[-7,-88],[-60,-46],[-15,-40],[4,-50],[-27,-65],[26,-46],[-17,-67],[-17,-171],[-18,-36],[4,-32],[33,-18],[-28,-55],[22,-43],[-19,-71],[-20,-45],[-20,-12],[-4,-130],[-18,-24],[-10,-107],[35,-63],[-15,-44],[12,-33],[-48,-80],[7,-56],[27,-42],[-23,-25],[-2,-40],[-18,-25],[-66,-21],[-24,-31],[15,-73],[-10,-48],[-32,-31],[-6,-74],[13,-26],[13,-87],[94,-110],[26,-72]],[[93211,148557],[810,0],[433,-4],[710,4],[518,2],[468,-6],[541,-3],[497,1],[512,1],[952,1],[539,0],[353,-3],[386,-2],[734,2],[608,3],[621,1],[521,1],[643,1],[566,-3],[757,1],[372,0],[390,1],[785,-1],[386,1],[514,0],[520,-1],[634,-1],[647,2],[379,-1],[710,-1],[337,1],[506,1],[378,0]],[[110938,148555],[0,-356],[1,-581],[3,-800],[3,-667],[3,-255],[-2,-270],[-1,-522],[-2,-421],[1,-505],[-2,-694],[1,-750],[0,-334],[0,-566],[-2,-291],[2,-129]],[[122158,135699],[442,0],[611,-1],[334,0],[531,1],[355,0],[523,0],[691,0],[439,-2],[441,0],[333,-1],[711,1],[568,2],[674,0],[441,0],[640,0]],[[129892,135699],[4,-37],[-25,-57],[5,-34],[38,-60],[8,-58],[-25,-69],[19,-39],[30,-7],[77,-46],[32,-30],[32,-51],[41,-88],[-31,-60],[-59,-65],[-36,-103],[-51,-65],[4,-58],[-6,-85],[7,-67],[41,-177],[-4,-54],[5,-71],[67,-62],[14,-78],[-6,-35],[25,-17],[0,-49],[19,-116],[21,-47],[82,-54],[22,-35],[42,-28],[46,-3],[31,-22],[71,-26],[122,-32],[73,-25],[26,-23],[23,-91],[38,-56],[23,-56],[13,-59],[-9,-24]],[[148617,113144],[-63,-18],[-129,-63],[-62,-40],[-87,-74],[-59,-59],[-74,-88],[-111,-154],[-102,-171],[-44,-99],[-71,-95],[-24,-53],[-51,-134],[-18,-60],[-15,-98],[-18,-28],[12,-37],[-13,-30],[-14,-97],[7,-100],[-28,-97],[-43,-47],[-34,-55],[-33,-15],[-70,-48],[-20,-29],[-17,-77],[-31,-105],[-80,-5],[0,22],[-99,-15],[-34,54],[-38,6],[-57,-50],[-53,-98],[-16,-64],[17,-44],[48,5],[-11,-51],[-74,-41],[-99,-87],[-8,-36],[-24,-24],[-10,-46],[-90,-51],[-54,-50],[-36,-22],[-55,80],[-55,-14],[-8,-64],[73,-8],[13,-49],[-25,-66],[0,-44],[-42,-42],[-81,-57],[-25,-33],[-20,-48],[-54,10],[-59,-16],[-65,-30],[-44,-38],[-22,-34],[-43,1],[-76,-56],[-127,-136],[-21,39],[-23,2],[-76,-58],[-7,44],[-38,36],[-41,-19],[-19,-84],[8,-35],[32,-83],[33,5],[9,-54],[-38,-117],[3,-40],[-99,-53],[-72,-54],[-56,-9],[-25,-34],[-32,6],[1,72],[-65,27],[-29,48],[-38,-10],[-29,-29],[-18,-49],[35,-52],[22,16],[60,-62],[21,-34],[1,-38],[-22,-23],[-40,-83],[-49,-61],[-110,-78],[-31,22],[-44,-82],[-16,-6],[-34,-75],[30,-32]],[[159018,139236],[15,66],[-11,65],[44,34],[30,66],[29,27],[-11,37],[56,149],[-33,69],[26,23],[29,-18],[69,89],[78,67],[28,-20],[3,-37],[51,-65],[37,11],[36,-30],[24,21],[42,-15],[54,135],[20,9]],[[159634,139919],[10,-137],[27,-566],[21,-374],[20,-443],[7,-227],[20,-509],[17,-579],[13,-413],[5,-289],[20,-392],[4,-128],[33,-45],[-19,-37],[14,-38],[-23,-76],[14,-46],[-2,-66],[-37,-56],[3,-90],[26,-75],[44,-15],[31,-40],[29,-82],[22,-30],[57,-42],[6,-27],[31,-12],[2,-54],[-10,-94],[-15,-64],[10,-47],[131,-124],[47,3],[4,-36]],[[160196,134669],[-37,-75],[-32,-84],[-9,-1],[-28,-80],[-28,-40],[-6,-45],[-18,-33],[-10,-80]],[[103550,107254],[-337,4],[-320,0],[-495,0],[-252,-2],[-207,2],[-472,-3],[-495,2],[-413,-3],[-431,219],[-286,145],[-310,155],[-309,155],[-394,195],[-535,261],[-383,186],[-382,181],[-542,271],[-381,188],[-311,153],[-428,209],[-369,178],[-462,220],[9,34],[-9,37],[17,28],[13,59],[-16,26],[7,48],[-15,55],[27,11],[40,49],[24,50],[5,34],[37,94]],[[150718,125025],[116,142],[195,-239],[-192,-237]],[[14224,764],[134,23],[14,-17],[-6,-85],[-57,14],[-46,-50],[-39,115]],[[14058,886],[33,26],[5,-52],[-9,-26],[-29,52]],[[13983,903],[57,-14],[-25,-35],[-25,10],[-7,39]],[[12263,531],[53,60],[19,13],[85,-5],[57,83],[43,38],[4,-24],[62,-20],[62,11],[32,19],[-2,-58],[-54,-31],[-7,32],[-21,-2],[-28,-36],[-33,-8],[-4,44],[-30,-1],[12,-62],[-57,-47],[7,-17],[-45,-94],[-26,-19],[-38,39],[-8,53],[-47,8],[-36,24]],[[168919,76861],[29,49],[32,2],[36,24],[37,4],[9,-23],[-16,-44],[18,-14],[1,-64],[-50,28],[-60,13],[-26,-9],[-10,34]],[[168764,75340],[26,50],[2,42],[-14,54],[8,42],[26,23],[46,-21],[47,37],[38,14],[50,0],[18,-38],[42,-48],[41,32],[59,-4],[37,7],[18,-17],[26,11],[12,-31],[-39,-2],[-7,-18],[-44,-36],[-117,-53],[-20,12],[-79,-19],[-62,-24],[-87,-1],[-27,-12]],[[168559,76913],[23,20],[48,-1],[4,23],[58,-5],[37,-24],[33,14],[55,-41],[33,-42],[-52,-51],[-26,5],[-35,29],[-12,43],[-51,-14],[-47,38],[-48,-20],[-20,26]],[[153023,126651],[36,40],[30,50],[11,67],[42,39],[7,51],[22,71],[65,84]],[[155290,129175],[-39,-32],[-28,-82],[-34,-28],[-51,-11],[-46,1]],[[155088,129026],[-29,3],[-31,-38],[-18,-154],[-26,-6],[-34,-33],[8,-59],[-34,-81],[16,-56],[100,-55],[20,40],[42,-24],[21,21],[91,-54],[42,-35],[61,-18],[16,20],[6,54],[-22,51],[21,12],[16,-62],[15,-208],[-9,-128],[-24,-144],[-54,-269],[-50,-336],[-6,-84],[-12,-75],[-30,-334],[4,-24],[-29,-43],[-42,-117],[-73,-150],[-73,-164],[-80,-125],[-42,-4],[15,-61],[-22,-46],[-1,-34],[-57,-88],[-83,-109],[-54,-24],[-48,-36],[-63,-63],[-26,-6],[-12,-52],[-28,-17],[-50,-61],[-85,-151],[-35,-75],[-28,-78],[12,-27],[-47,-65],[-61,-122],[-20,-24],[-1,-48],[-85,-88],[-21,-33],[-28,5],[-34,-25],[-40,-8],[-49,12],[-7,16],[24,142],[25,80],[52,122],[16,60],[8,107],[-19,34],[-93,43],[-93,4],[-1,46],[-32,4],[-104,-7],[-14,-51],[-21,-8],[-37,39],[-5,73],[-31,26],[-21,39],[-53,27],[-15,61],[-46,12],[-8,-32],[-39,44],[-28,82],[-72,21],[-29,63],[-38,15],[-21,34],[-34,85],[-50,24],[-14,24],[-41,3],[-10,23],[1,61],[22,4],[0,87],[-10,12],[34,64],[0,22],[-66,67]],[[153028,126595],[-5,56]],[[152303,122732],[-5,86],[13,97],[50,11],[40,-74],[-19,-46],[-1,-74]],[[152292,123061],[47,28],[21,-34],[-51,-23],[-17,29]],[[152241,123222],[11,30],[48,65],[34,-51],[-20,-34],[15,-31],[-33,-15],[-13,49],[-42,-13]],[[151802,125761],[43,27],[13,-25],[-35,-28],[-21,26]],[[151795,124632],[27,18],[13,-64],[-20,-9],[-20,55]],[[152684,126867],[0,-150],[28,-566],[30,-587],[25,-485],[22,-449],[36,-714],[197,-10],[194,-7],[359,-4],[202,1]],[[153777,123896],[-8,-86],[-27,-139],[-19,-72],[-26,-30],[-83,-298],[-29,-135],[-22,-71],[-72,-161]],[[152892,122763],[-15,-17],[-48,17],[-36,27],[-32,-35],[-26,29],[-44,-7],[-51,-62],[-22,-36],[-40,-29],[-47,-4],[4,86],[42,4],[-10,52],[-33,-1],[7,45],[42,99],[20,-26],[56,59],[8,21],[-65,25],[-39,-31],[-7,49],[29,57],[27,22],[-1,29],[45,33],[-42,24],[-34,-24],[-32,18],[-35,-14],[-48,-42],[-33,30],[25,117],[80,39],[36,-7],[52,36],[15,23],[-57,23],[50,40],[-33,10],[-9,-22],[-47,-8],[-18,-37],[-31,81],[23,53],[2,35],[26,66],[38,48],[11,36],[-93,-51],[-2,-38],[-21,-13],[-20,-64],[1,-54],[-21,-16],[-39,11],[-31,62],[-10,40],[64,24],[5,48],[-17,53],[-29,9],[-25,-14],[-10,-72],[-42,-34],[-7,-33],[34,-53],[-25,-93],[-21,-31],[-30,63],[1,28],[-26,26],[-28,52],[-19,-41],[-33,3],[23,59],[-45,14],[4,34],[-30,68],[-47,44],[-29,-30],[32,-64],[-15,-57],[24,-31],[7,-21],[34,-2],[-4,-47],[26,-50],[54,-14],[-21,-26],[-46,37],[-20,38],[-7,31],[-24,49],[-34,38],[-5,72],[-25,44],[-42,43],[-7,78],[-75,155],[15,26],[35,19],[51,-9],[27,61],[40,19],[-70,25],[-33,62],[35,40],[-19,59],[60,37],[0,-25],[52,-14],[39,40],[36,-75],[16,24],[40,-53],[41,6],[64,-55],[25,11],[-8,34],[-31,30],[-1,22],[-40,26],[-12,26],[-36,-11],[-32,41],[-18,-5],[-13,50],[-32,42],[-52,14],[-39,72],[1,56],[34,-19],[14,25],[-54,48],[-19,-55],[-22,-28],[-38,0],[-4,59],[-21,-9],[-31,-100],[-13,108],[12,56],[36,55],[2,39],[16,35],[47,45],[35,-71],[19,10],[27,-37],[-8,-44],[68,-77],[12,30],[-26,24],[-30,61],[14,62],[-22,55],[13,98],[-10,2],[-7,112],[-95,-4],[-44,-47],[-21,2],[-35,-26],[14,-111],[-48,-33],[-16,12],[14,43],[-1,79],[6,74],[11,42],[44,90],[6,64],[34,-9],[5,-35],[24,-51],[49,-4],[8,-17],[54,-1],[57,62],[-21,75],[4,64],[24,15],[21,64],[-58,9],[-28,-25],[-13,-38],[-1,-66],[16,-65],[-12,-11],[-48,47],[18,39],[-2,87],[-23,84],[3,28],[-46,36],[2,45],[35,79],[42,137],[64,99],[-9,45],[38,39],[39,-7],[2,46],[32,46],[71,-1],[58,-24],[44,24],[-3,30],[-53,1],[-3,42],[39,26],[14,37],[22,12],[23,64],[-48,8],[28,147],[27,17],[-12,50],[32,52],[-24,15],[-12,-37],[-39,-23],[-10,-34],[-45,16],[-88,-37],[-40,-113],[37,-30],[39,-2],[17,-59],[-31,-31],[-12,20],[-84,-93],[-19,2],[-56,-90],[-54,-37],[-28,42],[15,88],[26,42],[-33,22],[-11,-54],[-34,-94],[30,-79],[-48,-48],[-13,28],[4,49],[-20,9],[10,54],[-13,27],[-68,13],[18,-85],[16,-42],[-8,-67],[-23,11],[-56,-69],[-3,-46],[-30,-44],[-3,-66],[-28,-41],[-15,38],[-25,-29],[-47,-10],[-3,59],[-53,29],[-28,42],[-50,9],[31,-47],[1,-39],[48,-34],[9,-75],[55,-48],[26,-6],[59,-53],[-3,-49],[17,-80],[-25,-56],[50,-46],[15,-48],[-28,-26],[-49,-16],[-5,-40],[-38,9],[7,-58],[31,-36],[-28,-69],[-30,37],[-7,-43],[5,-57],[-67,-77],[31,1],[37,-32],[-12,-56],[-39,-46],[-22,-47],[-30,-17],[3,-53],[20,-40],[27,-8],[-9,-108],[11,-75],[20,-71],[-8,-60],[1,-143],[34,-108],[114,-159],[19,-47],[31,-19],[-8,-59],[-47,-89],[-48,0],[-25,14],[-12,-36],[26,-45],[44,0],[10,24],[39,9],[31,-21],[-28,-50],[-8,-44],[21,-97],[96,-186],[-30,-51],[13,-39],[3,-64],[12,-53],[-46,8],[-59,116],[-42,8],[-24,70],[-2,58],[-46,-18],[13,-33],[-13,-47],[-17,-7],[-31,53],[-56,33],[-19,80],[-55,63],[-62,27],[-22,-1],[-77,36],[-30,-17],[-18,30],[-30,-56],[-39,15],[1,34],[-40,25],[4,54],[-34,61],[-15,72],[12,32],[-43,26],[-20,-63],[27,-37],[25,-98],[-18,-41],[-26,29],[-63,46],[-26,5],[4,48],[-12,28],[-55,43],[-24,50],[-7,75],[-41,118],[-36,-2],[-52,-46],[-23,-41],[-47,8],[-20,-44],[-63,-55],[-41,-20],[-64,54],[-22,71],[13,40],[-26,120],[15,71],[39,93],[24,8],[76,120],[31,-3],[49,42],[-22,27]],[[164834,138060],[51,6],[28,-39],[-48,-53],[-3,51],[-28,35]],[[164749,138054],[28,3],[33,-43],[15,-78],[-23,-22],[-32,130],[-21,10]],[[164374,137909],[18,20],[18,-71],[-22,-2],[-14,53]],[[163784,137472],[35,-3],[9,-47],[-47,8],[3,42]],[[163633,137133],[40,35],[27,-54],[-45,-5],[-22,24]],[[163515,137672],[10,30],[36,34],[16,-34],[-46,-76],[-16,46]],[[163449,137227],[74,88],[23,-55],[41,19],[37,-48],[-14,-32],[-68,-61],[-25,49],[-4,43],[-34,-21],[-30,18]],[[163406,137647],[18,111],[25,2],[33,-146],[-68,10],[-8,23]],[[163198,137044],[103,25],[1,-96],[-18,-76],[-22,20],[-49,-10],[16,112],[-31,25]],[[163109,137387],[49,25],[2,32],[27,42],[24,12],[35,-14],[44,-46],[10,-50],[55,-41],[-21,-47],[-51,-2],[-41,-62],[-39,-13],[-61,12],[-18,32],[11,67],[-26,53]],[[163091,137571],[16,19],[44,-38],[31,-12],[-27,-40],[-36,25],[-28,46]],[[162843,137092],[4,37],[32,31],[39,-33],[56,27],[25,-14],[50,-89],[-3,-34],[-60,-74],[-43,18],[-38,-20],[-15,101],[-47,50]],[[162798,137532],[21,44],[37,49],[-13,95],[12,32],[58,-9],[0,-47],[-39,-43],[-13,-57],[19,-18],[-24,-57],[-16,-65],[-22,74],[-20,2]],[[162795,137130],[42,85],[43,27],[60,56],[31,4],[18,-84],[-25,1],[-80,-50],[-14,23],[-49,-32],[-26,-30]],[[161004,136190],[21,17],[22,66],[47,8],[-16,-55],[-74,-36]],[[159634,139919],[37,19],[39,-9],[35,21],[6,62],[28,-31],[49,16],[11,-31],[40,-32],[9,-37],[-14,-39],[34,-49],[20,-55],[41,-14],[13,80],[28,63],[25,28],[9,43],[-19,34],[14,31],[5,66],[-28,55],[65,72],[38,-6],[38,-68],[26,-20],[51,8],[39,-40],[41,68],[-6,36],[-34,55],[-36,17],[-25,52],[-38,36],[10,70],[35,68],[-2,29],[43,59],[22,48],[37,11],[40,42],[50,86],[47,-1],[90,94],[40,-5],[57,36],[17,70],[-26,28],[-16,79],[31,8],[12,47],[42,39],[25,39],[54,17],[32,29],[46,72],[-15,49],[35,47],[-54,54],[-43,-5],[-6,36],[10,44],[-22,48],[56,76],[-40,22],[25,77],[52,37],[22,76],[-78,114],[32,48],[33,129],[26,56],[37,20],[-2,74],[52,65],[35,-1],[87,121],[48,11],[89,654],[263,421],[373,584],[188,292],[317,490],[27,-13],[41,6],[83,-33],[22,-26],[39,-17],[25,21],[30,-12],[12,-31],[-28,-86],[-1,-146],[20,-163],[90,-60],[29,-34],[27,2],[52,-50],[66,9],[75,63],[71,15],[68,44],[62,4],[18,-14],[76,19],[28,34],[-8,25],[30,41],[37,-12],[53,32],[63,3],[25,-30],[43,-7],[18,14],[49,-3],[10,22],[-11,62],[8,49],[35,33],[37,7],[96,-18],[45,6],[17,-25],[105,-53],[22,-60],[80,-56],[31,-37],[68,-51],[39,-57],[55,-33],[1,-29],[36,-67],[25,-16],[30,-55],[2,-34],[145,-98],[2,-437],[-1,-202],[2,-451],[6,-384],[4,-370],[1,-786],[45,-59],[-25,-45],[-54,-37],[21,-72],[52,-66],[-70,-47],[-10,-84],[40,-85],[-41,-5],[9,-120],[51,-1],[52,-30],[31,39],[55,-118],[44,-40],[10,27],[45,-44],[28,1],[42,-28],[22,6],[69,-24],[21,34],[44,7],[38,-49],[13,-79],[-17,-21],[12,-82],[-37,-15],[-20,22],[-54,-72],[25,-40],[15,-88],[17,-2],[50,-75],[8,-38],[-11,-70],[-24,-33],[-22,-69],[-43,-45],[19,-15],[19,-72],[35,-40],[18,-59],[41,-57],[-7,-41],[36,-19],[39,-51],[48,4],[29,60],[18,74],[28,5],[36,-24],[28,-40],[35,18],[68,-24],[67,-114],[32,-102],[-40,-28],[53,-63],[20,-67],[20,-33],[32,-110],[72,-64],[-15,-48],[21,-84],[-24,-27],[30,-85],[-74,-93],[-45,8],[-25,-70],[-28,2],[-17,-60],[-52,-54],[-23,-57],[-47,-16],[-4,-40],[-66,-20],[-16,9],[6,58],[-47,-4],[11,-78],[-33,-15],[-7,57],[-23,30],[-1,108],[-75,-19],[-35,-25],[-6,-55],[19,-5],[18,-54],[-9,-36],[-31,-24],[-24,-47],[-36,45],[-28,-31],[-47,25],[-37,61],[-56,-24],[-26,-41],[7,-23],[-28,-91],[23,-48],[-7,-18],[-131,-15],[-29,32],[-35,-13],[-2,-57],[-22,-37],[-45,9],[-2,78],[-21,42],[-22,-3],[-9,-58],[-34,3],[-39,82],[-43,-93],[13,-55],[-17,-52],[-37,-4],[-5,-148],[-34,20],[4,82],[-34,-21],[2,-73],[-23,9],[-17,89],[-18,39],[-33,-23],[32,-117],[19,-28],[-37,-34],[-30,62],[-23,-28],[8,-30],[-21,-43],[-26,-23],[4,-33],[-35,-18],[-14,28],[-2,95],[-24,-3],[-27,34],[4,35],[-15,68],[7,52],[-36,24],[-3,32],[-29,9],[-15,-60],[-27,12],[-18,104],[-25,-62],[-37,-48],[-75,-3],[20,-47],[-26,-4],[-37,30],[-9,-30],[-36,11],[-20,-54],[30,-21],[52,52],[26,-27],[38,16],[31,-15],[12,-56],[35,-44],[28,-10],[33,-96],[-21,-89],[-53,-40],[-103,-8],[-38,3],[37,-61],[6,-37],[-29,-42],[-43,-12],[-18,33],[-78,39],[-39,105],[0,33],[28,22],[-8,52],[31,46],[-2,28],[61,38],[-18,66],[-21,29],[-45,-78],[-30,34],[10,64],[2,87],[-61,27],[-2,-51],[15,-50],[-19,-16],[19,-47],[-22,-38],[-21,96],[-18,-72],[-22,-2],[-20,-35],[-40,13],[-17,-22],[31,-92],[-26,-52],[-1,-58],[40,-39],[26,-76],[-44,-36],[-42,25],[-39,48],[-39,27],[-52,15],[-89,68],[-20,27],[-34,-9],[-49,-51],[-47,11],[2,52],[24,92],[-15,17],[4,103],[23,22],[3,33],[32,85],[-12,63],[-30,28],[-12,-64],[-31,-36],[6,-55],[-79,-69],[-18,52],[-37,14],[-15,-42],[-27,-19],[-65,-19],[19,-55],[49,-100],[-9,-75],[-38,-68],[-22,6],[-15,-54],[-52,-95],[-4,-43],[-24,-17],[3,-59],[-24,-16],[-11,-45],[7,-52],[-8,-44],[-28,3],[-7,-35],[10,-44],[62,28],[5,-42],[-61,-89],[-50,-51],[-10,-47],[-62,-27],[-11,-60],[-28,-42],[-104,-65],[-9,19],[18,50],[-31,33],[-54,31],[5,-46],[-63,-18],[51,66],[-48,52],[-24,3],[-31,-30],[-56,-16],[-37,-182],[-29,-45],[-31,-96],[-15,17],[-18,76],[-35,6],[6,-44],[-9,-62],[-79,55],[-12,-48],[-54,-3],[6,-39],[-12,-67],[-48,45],[-2,135],[3,68],[-9,47],[-21,-226],[-13,-24],[-10,-66],[-29,-30],[-19,-59],[-118,-61],[-36,14],[14,43],[-37,85],[-42,-16],[-44,28],[-35,-27],[-42,-65],[-88,9],[37,70],[55,80],[6,35],[34,49],[-61,9],[-35,16],[-37,-56],[-74,-46],[-47,-59],[-41,-36],[-49,-3],[-16,-47],[6,-27],[-85,-132],[15,-61],[24,-21],[5,-40],[21,-22],[-14,-63],[29,-74],[-39,-2],[-31,-29],[-41,25],[-40,-28],[-22,-36],[-41,13],[-28,-27],[-35,-77],[3,-62],[15,-34],[52,5],[-2,-32],[-34,-10],[-22,-27],[-19,-53],[-56,-37],[16,-66],[-87,-34],[-62,-6],[-26,-17],[-41,-61],[-46,-143],[27,-64],[-27,-77],[-37,-59],[-23,-102],[-42,-74],[-15,-42],[-45,-25]],[[165190,138297],[34,22],[31,-12],[-20,-40],[-32,-3],[-13,33]],[[34105,80132],[11,15],[11,109],[26,20],[72,120],[27,21],[36,-6],[22,17],[-2,32],[25,41],[23,94],[41,55],[6,26],[39,25],[14,126],[-65,119],[-25,66],[-25,135],[-6,76],[8,77],[17,52],[30,33],[44,5],[94,-60],[26,-10],[38,-43],[9,-43],[59,-53],[49,-32],[26,-49],[39,-15],[28,-44],[49,23],[58,-32],[29,-7],[87,-46],[206,-160],[26,-10],[49,-58],[64,-60],[89,-115],[30,-50],[24,-62],[23,-17],[15,-68],[-16,-62],[10,-61],[-6,-114],[12,-25],[31,6],[29,28],[30,-12],[26,7],[15,-30],[22,-81],[-6,-37],[4,-82],[29,-34],[22,-3],[-3,-40],[31,-31],[35,-55],[78,-51],[57,-46],[7,-25],[-20,-87],[-23,-40],[-79,-108],[-30,-21],[-83,-113],[-9,-19],[-114,-84],[-33,-6],[-87,-88],[-40,-20],[-41,-5],[-10,-17],[-61,15],[-44,21],[-45,-17],[-34,-49],[-26,-19],[-18,-47],[-79,-62],[-23,-9],[-52,-83],[-75,-33],[-37,-55],[-43,-79],[5,-60],[-20,-54],[-16,-12],[-26,-67],[-8,-62],[-30,-2],[-12,-46],[-40,-60],[-42,-28],[-1,56],[-59,75],[-52,25],[-62,77],[-73,22],[-43,33],[-6,43],[-34,65],[-17,82],[0,46],[11,39],[15,225],[17,97],[3,132],[-18,76],[-17,44],[8,32],[-24,60],[-9,53],[5,53],[-39,12],[3,21],[-17,58],[4,33],[-31,172],[-33,68],[-47,44],[8,47],[-31,53],[-2,37],[-17,37]],[[33165,82904],[7,72],[43,134],[19,2],[14,42],[49,4],[28,14],[8,-29],[34,-11],[37,-67],[15,-49],[43,-78],[24,-76],[44,-3],[37,30],[61,15],[21,31],[71,41],[21,-17],[37,14],[62,-23],[19,-17],[1,-31],[89,-116],[53,-15],[5,-43],[27,-38],[31,10],[49,-49],[69,-26],[34,-54],[2,-121],[-6,-32],[-37,-61],[-23,-7],[-27,-62],[-27,-14],[-20,10],[-48,-26],[-42,-51],[-22,19],[-34,-8],[-21,14],[-32,-13],[-31,-28],[-97,-66],[-34,5],[-75,-24],[-57,19],[-42,50],[2,40],[-21,36],[16,25],[-8,174],[-12,32],[-8,100],[-18,28],[-48,11],[-29,-45],[-17,-3],[-43,42],[-25,6],[-36,34],[-16,-5],[-81,126],[-18,60],[1,35],[-18,33]],[[33161,81996],[33,64],[47,20],[55,62],[30,23],[29,7],[22,-19],[22,-44],[-14,-26],[-9,-66],[33,-20],[-20,-38],[-32,10],[-30,-18],[-34,19],[-44,-27],[-9,25],[-29,-35],[-20,6],[-30,57]],[[32629,82871],[36,48],[72,15],[27,-13],[79,-9],[48,-35],[80,-114],[33,-80],[0,-35],[-35,-93],[-19,-22],[-35,-14],[-35,-38],[-71,3],[-37,-11],[-28,51],[-15,78],[7,71],[-28,75],[-64,49],[-17,47],[2,27]],[[32265,83353],[23,81],[58,82],[19,93],[62,-8],[15,-26],[45,-10],[39,1],[55,-11],[48,-21],[25,6],[66,-21],[19,16],[5,51],[29,10],[27,-92],[71,-22],[17,12],[28,-17],[91,33],[12,-15],[38,17],[46,-6],[5,-33],[39,-2],[-5,-34],[-34,-70],[-98,-110],[-22,-4],[-28,-27],[-32,4],[-25,-24],[-38,21],[-71,21],[-120,57],[-7,15],[-91,22],[-79,-28],[-12,3],[-140,-12],[-69,13],[-11,35]],[[30830,84449],[64,11],[118,-2],[47,6],[24,46],[61,84],[4,38],[79,105],[38,24],[24,0],[43,-79],[15,-54],[16,-15],[-3,-49],[27,-48],[37,-108],[30,-3],[31,-73],[-1,-42],[-23,-6],[2,-45],[17,-71],[31,-5],[17,-46],[40,-54],[22,60],[-23,21],[24,30],[26,-14],[22,16],[-8,-67],[-12,-21],[14,-52],[27,-17],[15,-30],[-5,-47],[23,-64],[51,-53],[12,-26],[-51,-54],[-9,-27],[-26,-11],[0,42],[-15,16],[-67,-22],[-46,-42],[-28,-2],[-12,35],[-34,24],[-60,59],[-30,-8],[-60,1],[0,28],[-26,27],[-20,-26],[-106,-35],[-78,-13],[-14,15],[-42,174],[-31,45],[-16,7],[-10,70],[-35,68],[-41,58],[-1,128],[-28,47],[-40,46]],[[28599,85508],[6,81],[57,77],[22,99],[13,24],[34,29],[60,24],[41,46],[36,27],[37,45],[32,7],[60,-36],[45,43],[50,-7],[37,-21],[33,19],[37,-20],[62,-20],[36,-51],[33,-99],[-5,-92],[-30,-69],[-7,-46],[-16,-12],[-9,-64],[13,-147],[-25,-56],[-49,-36],[-15,-32],[-81,-90],[-45,31],[-54,14],[-22,-10],[-70,21],[-23,24],[-27,-8],[-38,32],[-52,94],[-57,18],[-12,14],[-65,29],[-42,118]],[[27920,85041],[4,39],[18,37],[11,63],[34,40],[23,42],[74,49],[17,18],[16,50],[4,44],[61,22],[26,-25],[-35,-89],[-10,-62],[12,-77],[-124,-69],[-48,-119],[-18,-83],[-40,27],[-25,57],[0,36]],[[153028,126595],[-17,18],[12,38]],[[153224,127064],[-67,-47],[-60,-155],[-78,-148],[-37,-14],[-41,-82],[4,-43],[73,-82],[-14,-106],[-31,-88],[6,-43],[26,-52],[49,-52],[33,-89],[4,-29],[28,-45],[82,-78],[7,-55],[38,-59],[17,-113],[2,-58],[-19,-39],[-7,-50],[20,-127],[-5,-48],[10,-48],[82,-89],[33,-74],[10,-48],[-8,-80],[19,-48],[61,-83],[45,-78],[62,-87],[46,-39],[37,-19],[55,15],[22,-38],[4,-80],[20,-180],[24,-408],[1,-82]],[[478272,65445],[30,40],[55,-4],[40,13],[32,22],[67,7],[7,59],[36,2],[9,19],[-4,48],[50,130],[1,76],[22,57],[25,10],[46,-72],[9,-35],[30,-15],[45,-2],[-9,-48],[-15,-26],[0,-36],[-20,-71],[-51,-37],[-8,-33],[-23,-14],[-30,-54],[-67,-86],[-32,-11],[2,-25],[-22,-104],[3,-149],[-22,-58],[-37,-59],[-39,-15],[-42,20],[-23,39],[-1,58],[-33,99],[19,92],[17,49],[-12,37],[-55,77]],[[480040,75156],[11,38],[25,4],[18,-42],[-4,-29],[-30,-24],[-20,53]],[[479969,73060],[22,30],[13,-34],[-8,-31],[-27,35]],[[479883,76201],[13,63],[31,22],[27,34],[8,82],[-9,50],[34,31],[41,-29],[4,-58],[-16,-56],[-46,-12],[-56,-125],[-31,-2]],[[479855,69355],[27,102],[26,124],[45,62],[32,22],[51,87],[26,-40],[-8,-33],[-21,-4],[0,-38],[-47,-72],[0,-49],[28,-57],[-33,-31],[-11,24],[-24,-4],[-15,-49],[24,-41],[-9,-62],[-18,25],[-47,10],[-26,24]],[[479776,77908],[8,38],[23,41],[30,-12],[29,-43],[3,-69],[-12,-45],[-21,-7],[-14,-29],[-25,38],[-21,88]],[[479770,72266],[8,10],[94,0],[33,-25],[-12,-51],[-18,-10],[-68,6],[-16,-9],[-19,44],[-2,35]],[[479696,69115],[31,96],[59,97],[21,-43],[3,-56],[-17,-30],[14,-61],[25,-29],[-21,-135],[-21,-52],[-20,-3],[-8,85],[-21,18],[-11,54],[-21,-4],[-13,63]],[[479630,68713],[5,17],[48,32],[7,-24],[-22,-29],[-38,4]],[[479409,80041],[15,35],[24,-13],[4,-31],[-25,-28],[-18,37]],[[479015,67018],[57,111],[21,-2],[43,23],[57,54],[69,-18],[-7,-74],[-24,-21],[-37,1],[-16,-48],[-28,-38],[-42,2],[-21,-13],[-7,46],[-30,21],[-35,-44]],[[159235,131367],[68,-49],[8,-49],[-21,-52],[-28,6],[15,90],[-37,23],[-5,31]],[[159580,131017],[-27,-33],[-81,-63],[5,65],[-24,35],[8,35],[-21,76],[15,111],[-10,67],[-42,-9],[-5,-74],[11,-30],[0,-91],[12,-17],[-27,-80],[-73,-22],[0,-38],[-23,-41],[-66,-4],[-8,36],[67,30],[-22,96],[34,49],[-4,17],[55,141],[2,39],[31,35],[22,-1],[42,35],[18,51]],[[159166,130931],[9,15],[-7,60],[30,28],[-18,23],[10,98],[36,-1],[-9,-144],[11,-41],[-26,-5],[-36,-33]],[[158852,130228],[24,59],[51,91],[13,-26],[-19,-58],[33,-55],[-4,-26],[-78,-16],[-20,31]],[[158487,130602],[46,52],[-12,54],[7,51],[-16,43],[34,32],[34,-6],[16,559],[-17,653],[-2,170]],[[159426,131515],[-24,-30],[9,-48],[-27,-39],[-76,-3],[3,52],[17,49],[-24,45],[-47,7],[-31,47],[-17,90],[-30,-5],[16,-60],[0,-66],[25,-53],[-20,-89],[-19,41],[-75,5],[48,-54],[0,-96],[8,-77],[-52,-18],[-6,-38],[37,-68],[4,-46],[-9,-42],[4,-60],[-19,-60],[-36,-33],[4,-55],[-46,-88],[-70,11],[-126,-32],[-105,-47],[-42,-27],[-52,-14],[-33,6],[-61,-18],[-63,-32],[-4,32]],[[134604,122371],[19,7],[57,-33],[24,-34],[23,4],[15,47],[41,29],[5,24],[-17,74],[-31,43],[-4,53],[50,80],[18,7],[40,-30],[12,-34],[40,-56],[52,-3],[49,37],[76,7],[39,22],[28,-23],[0,-33],[-24,-55],[13,-63],[40,-7],[45,14],[37,62],[4,62],[-49,53],[-11,34],[32,62],[7,53],[38,-9],[-1,-36],[37,-63],[59,-44],[22,11],[46,53],[41,24],[36,1],[41,-16],[60,-62],[37,-13],[58,-47],[36,-40],[53,-45],[82,-18],[35,-59],[17,-69],[28,-10],[32,13],[29,32],[19,61],[20,95],[-3,61],[48,57],[50,27],[78,11],[35,26],[68,96],[48,27],[42,-22],[23,-79],[43,-100],[28,-43],[20,-3],[47,46],[54,-5],[7,-37],[-26,-89],[6,-30],[30,-3],[50,36],[9,22],[-2,92],[16,33],[81,-9],[34,21],[6,24],[-27,74],[0,140],[12,34],[96,19],[29,39],[-2,46],[-37,21],[-11,43],[24,30],[30,-4],[37,-46],[43,58],[52,-7],[28,45],[-10,19],[-56,15],[-17,23],[6,52],[38,4],[45,-52],[45,-35],[25,-66],[-13,-68],[17,-103],[50,-40],[19,-26],[65,-42],[71,14],[36,-9],[37,-28],[43,-94],[23,10],[-1,39],[14,31],[71,21],[45,4],[32,39],[13,91],[17,66],[-5,104],[7,95],[35,68],[41,44],[20,41],[4,60],[28,40],[45,14],[38,-39],[30,-9],[84,64],[42,67],[25,93],[8,75],[22,71],[47,56],[91,17],[38,25],[47,100],[66,52],[10,71],[-35,112],[1,112],[-25,53],[5,61],[24,48],[38,20],[56,-16],[99,26],[54,-3],[33,-20],[49,-85],[59,-17],[54,29],[96,96],[90,60],[28,27],[87,-3],[68,41],[73,-23],[38,18],[-22,60],[5,48],[52,59],[3,42],[-21,21],[-103,22],[-14,36],[13,31],[53,67],[7,27],[-10,43],[-88,153],[11,31],[42,27],[60,64]],[[139343,125425],[53,29],[44,67],[53,-22],[42,-77],[59,-29],[26,-35],[45,-6],[44,18],[32,41],[60,-14],[58,65],[38,-16],[18,-47],[4,-84],[34,-30],[69,-10],[50,-32],[32,-50],[25,-118],[46,-76],[33,-70],[6,-156],[26,-49],[84,-25],[70,-37],[55,-20],[40,0],[97,39],[51,-8],[25,-29],[59,-14],[42,-20],[18,-34],[9,-48],[27,-29],[57,-32],[17,-88],[14,-14],[62,-13],[78,-43],[32,21],[13,72],[15,27],[115,45],[42,10],[51,-30],[27,-34],[150,-40],[39,-30],[26,-35],[7,-50],[35,-30],[49,61],[32,14],[54,-27],[89,19],[29,80],[30,42],[73,43],[30,66],[31,14],[48,-9],[54,40],[72,31],[22,-12],[14,-54],[-12,-89],[21,-49],[11,-54],[1,-59],[12,-60],[40,-53],[30,-22],[111,-13],[52,-51],[48,-91],[64,-52],[14,-34],[16,-89]],[[142422,131264],[25,38],[56,-20],[0,-38],[-66,1],[-15,19]],[[142262,131365],[27,31],[34,-14],[-47,-57],[-14,40]],[[141361,131566],[-23,-32],[-11,-47],[23,-7],[49,38],[8,-53],[45,6],[59,-10],[25,43],[144,-128],[2,-14],[134,-64],[62,-10],[55,-43],[57,-92],[86,-74],[85,-19],[63,42],[27,64],[-13,31],[39,30],[20,-39],[51,-70],[53,13],[47,-10],[10,-33],[-22,-38],[-41,-3],[-17,-19],[-62,9],[-25,-37],[-30,27],[-57,-31],[-104,-1],[-31,-49],[-27,-18],[-21,11],[-47,-11],[53,-52],[24,33],[23,-5],[19,-44],[24,-25],[29,3],[50,32],[44,15],[68,67],[69,-56],[17,-4],[80,47],[42,-25],[18,-33],[50,-37],[39,-11],[127,-81],[48,-7],[74,36],[99,74],[107,0],[54,15],[114,86],[89,42],[156,61],[66,-25],[33,-29],[100,-21],[84,25],[56,4],[56,-20],[71,57],[47,47],[12,-5],[84,72],[103,126],[61,40],[69,100],[131,125],[98,76],[34,-5],[54,22],[169,117],[40,16],[122,66],[152,38],[81,47],[31,10],[33,37],[43,-2],[29,18],[48,9],[110,52],[24,3],[164,80]],[[139343,125425],[1,467],[5,402],[2,417],[1,371],[4,423],[11,736],[-1,237],[3,211],[0,699],[-1,441],[-1,615],[0,428],[-3,609]],[[136187,140036],[13,25],[-11,41],[18,73],[42,-16],[55,13],[36,-19],[42,1],[-37,-84],[-21,-12],[-4,-69],[-50,1],[-40,-15],[-43,30],[0,31]],[[135565,139634],[1,34],[33,-1],[33,20],[-9,-85],[-57,17],[-1,15]],[[131003,143886],[12,24],[1,64],[12,60],[17,18],[62,8],[2,-45],[-14,-76],[-41,-56],[-51,3]],[[130927,143590],[30,23],[69,31],[-36,-56],[-29,-12],[-34,14]],[[130841,143959],[45,-38],[-27,-49],[-18,87]],[[130725,143698],[25,46],[53,25],[107,37],[32,-25],[-27,-59],[-32,-20],[-44,-6],[-92,-35],[-22,37]],[[130689,143778],[35,48],[30,-14],[-55,-51],[-10,17]],[[130640,143851],[14,40],[48,-11],[-37,-40],[-25,11]],[[130564,143490],[8,40],[32,53],[23,-17],[-35,-66],[-28,-10]],[[130561,143756],[36,40],[37,-13],[31,-51],[8,-45],[-70,-9],[-42,78]],[[130543,143937],[27,24],[30,-48],[-25,-35],[-23,14],[-9,45]],[[130522,143377],[86,36],[31,48],[82,53],[59,72],[21,-4],[48,-53],[-21,-24],[-44,-4],[-88,-43],[5,-47],[19,-25],[-58,-16],[-29,8],[-34,-40],[-47,-35],[-30,74]],[[130240,143847],[47,10],[24,-18],[3,-45],[-50,-2],[-24,55]],[[128714,143194],[79,-56],[28,-6],[126,29],[55,-5],[45,10],[59,34],[154,60],[105,53],[94,0],[129,58],[21,27],[60,0],[45,56],[73,37],[48,8],[35,54],[42,-3],[21,-24],[79,29],[59,1],[4,43],[38,-4],[42,26],[8,32],[58,34],[45,61],[50,-26],[74,45],[25,26],[39,-13],[11,-50],[56,-5],[17,-58],[44,-37],[-55,-94],[-16,-70],[-40,-45],[-14,-33],[-31,-2],[-15,-57],[-27,-19],[21,-77],[26,-55],[-23,-45],[-63,-41],[-16,-81],[-41,-59],[7,-33],[40,-14],[63,44],[78,41],[41,13],[84,71],[-15,34],[79,-13],[160,-151],[71,-43],[48,20],[101,-66],[28,11]],[[135248,139425],[-27,-44],[-23,-71],[2,-72],[-8,-88],[-98,-6],[-104,-21],[-78,-33],[-37,-76],[24,-56],[-56,-126],[-52,-31],[-49,-144],[-51,-61],[-21,-46],[-6,-107],[-22,-24],[-11,-63],[9,-45],[-24,-87],[-24,-9],[7,-40],[34,-42],[56,-27],[61,14],[62,131],[45,65],[24,-3],[47,41],[63,14],[26,58],[46,73],[-5,62],[51,86],[34,43],[39,79],[39,58],[47,35],[28,-22],[13,-40],[31,58],[43,16],[22,-9],[42,58],[44,6],[67,-112],[-2,119],[-33,45],[11,49],[35,73],[21,73],[42,65],[16,53],[33,36],[27,51],[28,25],[2,63],[35,132],[61,-15],[73,67],[38,-2],[-4,75],[21,79],[46,-10],[15,101],[23,-23],[44,4],[36,25],[21,-7],[19,-40],[-20,-32],[4,-109],[-35,-10],[-8,31],[-36,6],[5,-37],[-21,-93],[1,-36],[24,-28],[-17,-24],[-45,39],[-7,-56],[27,-10],[15,-72],[-24,-34],[-33,36],[-35,-55],[-20,-12],[-3,-56],[-21,-69],[-36,-18],[-38,-85],[1,-48],[20,-47],[-43,-26],[-19,-44],[19,-52],[-85,-58],[-14,-19],[-17,-66],[-33,-23],[-20,-38],[-1,-40],[-23,-51],[-13,-71],[-45,-98],[-29,-86],[-65,-83],[-21,-75],[-24,-49],[-23,-95],[-9,-80],[-15,-49],[-3,-48],[-23,-96],[0,-44],[-24,-57],[-17,-70],[6,-66],[49,-148],[1,-44],[-18,-73],[-64,-83],[-56,-29],[-67,-63],[-13,-54],[-2,-70],[-40,-74],[-18,-72],[-5,-55],[-30,-66],[-25,-134],[11,-65],[4,-98],[45,-112],[-21,-63],[11,-112],[-47,-114],[-69,-142],[-14,-36],[-5,-89],[3,-76],[-18,-68],[-90,-163],[-26,-97],[-10,-104],[-19,-55],[-14,-79],[22,-84],[1,-40],[22,-62],[-30,-87],[4,-29],[33,-51],[19,-67],[-46,-65],[-4,-53],[28,-65],[42,-50],[6,-91],[9,-41],[-12,-42],[7,-54],[28,-90],[45,-67],[53,-56],[-23,-29],[-12,-46],[6,-46],[-11,-69],[-27,-60],[-20,-93],[-4,-67],[9,-65],[2,-137],[15,-65]],[[129892,135699],[-38,114],[17,76],[-54,79],[7,75],[-12,17],[5,128],[20,56],[16,96],[-27,41],[-32,128],[-40,48],[-14,49],[-54,67],[-11,42],[-31,45],[-30,22],[-51,88],[-60,16],[-38,25],[-112,20],[-36,47],[-56,36],[-54,81],[-38,15],[-5,38],[-30,29],[-31,5],[-97,69],[-17,33],[-68,52],[-26,81],[7,26],[-11,62],[-37,32],[10,58],[-17,52],[-51,60],[-116,69],[-23,29],[-85,29],[-19,20],[-134,38],[-91,82],[-38,62],[0,38],[-17,51],[-50,44],[-100,8],[-23,12],[-36,-9],[-57,10],[-36,21],[-33,-18],[-43,85],[-76,27],[-1,56],[-63,57],[-54,71],[-54,54],[-74,48],[-30,33],[4,39],[24,45],[35,125],[2,81],[-16,40],[23,35],[13,69],[-6,43],[-22,38],[-3,69],[10,64],[-48,51],[-8,34],[16,34],[69,67],[-17,102],[6,51],[-21,27],[4,45],[18,33],[-12,72],[12,28],[-10,69],[32,22],[40,49],[16,35],[-7,40],[36,45],[23,48],[20,12],[5,101],[-9,30],[-40,23],[-33,67],[-36,50],[1,62],[-65,61],[-79,-14],[-70,15],[-19,19],[2,81],[-8,67],[13,62],[15,122],[87,62],[38,47],[7,43],[32,67],[-11,37],[39,48],[7,48],[39,63],[100,87],[130,45],[3,38],[41,38],[46,-20],[39,2],[33,93],[32,25],[87,-32],[27,36],[0,34],[23,54],[50,19],[2,802],[1,581],[39,-35],[79,-2],[10,34],[43,60],[-43,29],[24,35],[63,-4],[13,55],[31,21],[40,2],[82,-95],[28,-5]],[[81153,132188],[-87,110],[-43,14],[-43,79],[-20,21],[-22,55],[8,40],[-22,55],[8,52],[-18,35],[-6,54],[-49,74],[4,70],[-6,63],[-31,39],[9,25],[2,174],[-15,65],[20,57],[0,82],[33,98],[15,85],[-15,40],[-2,83],[-18,71],[-55,42],[5,21],[-39,112],[-59,31],[-16,103],[-17,57],[-34,47],[33,65],[54,129],[28,80],[51,187],[21,154],[-3,43],[15,26],[33,135],[9,92],[20,108],[-10,47],[-20,36],[44,77],[29,9],[56,107],[42,112],[46,154],[35,141],[26,152],[12,109],[18,76],[38,239],[27,238],[17,198],[2,65],[20,193],[-6,38],[16,117],[12,218],[-11,22],[11,102],[12,32],[25,230],[0,165],[12,72],[14,150],[-4,40],[16,107],[-15,57],[15,121],[-16,77],[-8,71],[11,75],[19,18],[32,147],[34,271],[-13,77],[9,63],[33,40],[21,121],[11,130],[-7,35],[15,150],[-2,86],[-23,71],[20,90],[8,105],[-21,85],[19,70],[18,112],[-4,96],[18,178],[1,62],[-10,104],[-54,81],[20,29],[12,132],[-9,166],[-39,90],[35,53],[48,19],[14,76],[-8,145],[-21,104],[-39,123],[-54,128],[15,30],[41,-56],[100,-74],[4,-28],[70,-27],[17,33],[-24,21],[20,29],[36,-6],[57,19],[38,34],[58,-56],[37,2],[28,20],[11,46],[70,-6],[105,78],[1,24]],[[110938,148555],[668,-2],[327,0],[645,1],[387,-1],[687,-1],[668,1],[447,1],[489,-1],[810,1],[388,0],[592,-1],[377,1],[418,0],[359,1],[584,1],[388,0],[396,0],[379,0],[387,1],[679,0]],[[121013,148557],[-15,-42],[7,-82],[26,-35],[13,-70],[26,-19],[-13,-34],[27,-18],[11,-52],[-7,-59],[28,-33],[2,-79],[28,-63],[-5,-29],[34,-62],[-2,-23],[27,-47],[4,-52],[-21,-67],[-45,-75],[-11,-71],[-29,-6],[26,-84],[5,-64],[26,-22],[-37,-26],[43,-49],[-19,-51],[-3,-48],[17,-27],[-38,-49],[27,-36],[-24,-15],[44,-60],[-18,-61],[18,-47],[1,-91],[-29,-16],[5,-102],[-13,-44],[6,-90],[24,-28],[44,-111],[3,-34],[33,-43],[17,-127],[15,-25],[-11,-57],[10,-40],[54,-62],[-10,-58],[5,-52],[24,-6],[35,-93],[3,-62],[32,-28],[3,-40],[31,-19],[3,-69],[19,-34],[19,-67],[32,-71],[15,-81],[27,-42],[5,-73],[-22,-33],[27,-31],[-29,-55],[31,-72],[-20,-142],[1,-54],[32,-37],[-18,-90],[17,-44],[13,-79],[-18,-33],[-3,-47],[19,-63],[-14,-34],[28,-134],[-9,-78],[19,-74],[0,-72],[-12,-54],[11,-22],[-24,-83],[21,-77],[41,-114],[48,-2],[-33,-133],[7,-32],[-29,-113],[0,-73],[30,-23],[-13,-59],[8,-45],[-8,-68],[-20,-94],[29,-69],[10,-49],[37,-65],[-3,-61],[22,-90],[-6,-23],[17,-68],[20,-17],[-8,-58],[37,-42],[41,-111],[33,-29],[65,-77],[6,-123],[-6,-34],[10,-113],[12,-23],[-10,-45],[17,-20],[1,-67],[16,-36],[21,-112],[-4,-45],[-31,-89],[11,-148],[10,-66]],[[135348,131510],[24,-34],[59,-50],[27,27],[37,14],[24,-46],[-36,-50],[95,-44],[118,-22],[101,8],[86,26],[0,23],[93,15],[105,54],[156,89],[20,33],[50,26],[74,52]],[[121013,148557],[440,-2],[386,0],[680,0],[654,-1],[587,-2],[318,1],[0,419],[0,482],[40,-35],[101,-38],[65,7],[37,30],[47,3],[152,-108],[56,-7],[-13,-63],[41,-187],[-1,-38],[37,-180],[34,-51],[46,-232],[51,-271],[-13,-71],[11,-31],[-27,-38],[14,-35],[0,-63],[63,-61],[16,-35],[33,-9],[43,-45],[50,-4],[26,-32],[147,-18],[33,38],[41,2],[68,-20],[51,16],[64,-27],[20,-36],[-5,-45],[15,-25],[129,-18],[97,-5],[38,6],[54,-12],[33,5],[118,-28],[23,8],[100,-12],[31,-48],[26,-90],[-19,-94],[35,-33],[126,5],[21,-8],[73,6],[28,32],[117,-6],[70,30],[48,10],[16,38],[-12,70],[39,4],[44,35],[20,-12],[58,19],[12,35],[137,38],[70,-1],[43,-44],[133,10],[153,-9],[51,15],[0,-51],[30,-4],[298,-158],[104,17],[34,-8],[14,-70],[-17,-32],[-92,-11],[-20,-74],[36,-45],[47,-17],[119,10],[57,16],[44,1],[75,-110],[-30,-68],[10,-47],[56,-109],[24,-23],[69,-176],[24,24],[57,24],[50,9],[10,29],[-24,20],[-17,54],[19,127],[39,28],[82,-22],[42,15],[24,27],[27,-17],[89,-5],[42,12],[13,-57],[23,-21],[45,-10],[-19,-56],[10,-75],[77,-32],[-5,-44],[95,11],[38,-43],[5,-28],[72,11],[26,-21],[123,-9],[14,-66],[-5,-42],[15,-26],[-20,-63],[52,-18],[34,6],[20,-30],[76,12],[28,-20],[-9,-104],[13,-12],[116,57],[57,1],[30,-47],[57,20],[30,29],[119,10],[59,24],[53,44],[113,108],[34,40],[48,34],[75,18],[81,73],[76,24],[59,37],[15,-19],[53,4],[10,-153],[42,9],[11,-89],[29,-36],[23,-61],[30,-8],[147,21],[22,19],[75,21],[28,-58],[104,7],[28,23],[43,-24],[52,15],[31,-28],[65,7],[49,21],[24,-14],[95,21],[136,9],[61,-17],[100,-46],[44,-84],[1,-48],[142,-95],[38,-4],[61,33],[37,32],[55,20],[50,-1],[48,-37],[19,11],[94,1],[65,-36],[-5,-34],[-37,-3],[-11,38],[-88,-72],[-31,-57],[-56,-55],[-86,-61],[-89,-41],[-26,0],[-77,-28],[-6,-26],[-69,-48],[-74,-29],[-70,-16],[-67,-38],[-65,-5],[-40,-37],[-60,-2],[-168,-73],[-71,-9],[-70,-22],[-5,-16],[-141,-51],[-21,-29],[-50,-23],[-128,-80],[-84,-43],[-198,-158],[-100,-100],[-31,-23],[-121,-116],[-19,-4],[-73,-98],[-48,-35],[-71,-95],[-12,-36],[-81,-90],[-15,-49],[-114,-105],[-40,-67],[-47,-55],[-50,-35],[-62,-88],[-68,-37],[-21,-33],[-78,-34],[-31,-64],[-52,-35],[-45,-75],[-65,-24],[-48,-52],[-63,-92],[-48,-30],[-43,-13],[-105,-95],[-59,-41],[-68,-66],[-70,-47],[-24,-34],[-47,-38],[25,-68],[39,-63],[52,-59]],[[158487,130602],[-25,37],[-65,-19],[-36,23],[-25,-38],[-25,20],[-46,-54],[-57,29],[-67,-12],[-25,-35],[-33,1],[-65,54],[-37,-22],[2,-58],[-65,21],[-23,-34],[-84,-12],[-36,-21],[-65,-16],[-18,38],[-41,-9],[-38,11],[-24,-23],[-26,4],[-36,-33],[-34,14],[-16,-33],[-40,45],[-68,10],[-100,-33],[-71,-8],[-36,29],[-42,-5],[-48,-38],[-13,35],[-51,-43],[-29,-6],[-36,65],[-11,61],[-34,-55],[0,-31],[-38,-18],[-15,-35],[-45,-34],[-18,-42],[-52,14],[-58,-54],[-28,-44],[7,-40],[-40,-11],[-62,29],[-45,-3],[-88,-93],[-36,23],[-33,-31],[-61,-20],[-77,-47],[-45,-71],[-26,3],[-58,-40],[-5,19],[-86,-55],[-48,-55],[-17,35],[-47,-33],[-19,3],[-25,-42]]],"transform":{"scale":[0.0006769497043596344,0.0004277728307035058],"translate":[-179.14819599999998,-14.547906000000001]},"objects":{"cb_2018_us_state_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]],[[2,3,4,5,6]]],"type":"MultiPolygon","properties":{"STATEFP":"28","STATENS":"01779790","AFFGEOID":"0400000US28","GEOID":"28","STUSPS":"MS","NAME":"Mississippi","LSAD":"00","ALAND":121533519481,"AWATER":3926919758}},{"arcs":[[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13,14,15,16,17]]],"type":"MultiPolygon","properties":{"STATEFP":"37","STATENS":"01027616","AFFGEOID":"0400000US37","GEOID":"37","STUSPS":"NC","NAME":"North Carolina","LSAD":"00","ALAND":125923656064,"AWATER":13466071395}},{"arcs":[[18,19,20,21,22,23]],"type":"Polygon","properties":{"STATEFP":"40","STATENS":"01102857","AFFGEOID":"0400000US40","GEOID":"40","STUSPS":"OK","NAME":"Oklahoma","LSAD":"00","ALAND":177662925723,"AWATER":3374587997}},{"arcs":[[[24,25]],[[26,27]],[[28,29,30,31,32,-14,33,34]]],"type":"MultiPolygon","properties":{"STATEFP":"51","STATENS":"01779803","AFFGEOID":"0400000US51","GEOID":"51","STUSPS":"VA","NAME":"Virginia","LSAD":"00","ALAND":102257717110,"AWATER":8528531774}},{"arcs":[[35,36,37,-29,38]],"type":"Polygon","properties":{"STATEFP":"54","STATENS":"01779805","AFFGEOID":"0400000US54","GEOID":"54","STUSPS":"WV","NAME":"West Virginia","LSAD":"00","ALAND":62266474513,"AWATER":489028543}},{"arcs":[[[39]],[[40]],[[41]],[[42]],[[43]],[[44,-7,45,46]]],"type":"MultiPolygon","properties":{"STATEFP":"22","STATENS":"01629543","AFFGEOID":"0400000US22","GEOID":"22","STUSPS":"LA","NAME":"Louisiana","LSAD":"00","ALAND":111897594374,"AWATER":23753621895}},{"arcs":[[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63,64,65]],[[66]],[[67]],[[68,69]]],"type":"MultiPolygon","properties":{"STATEFP":"26","STATENS":"01779789","AFFGEOID":"0400000US26","GEOID":"26","STUSPS":"MI","NAME":"Michigan","LSAD":"00","ALAND":146600952990,"AWATER":103885855702}},{"arcs":[[[70]],[[71]],[[72]],[[73]],[[74,75,76,77,78,79,80,81]]],"type":"MultiPolygon","properties":{"STATEFP":"25","STATENS":"00606926","AFFGEOID":"0400000US25","GEOID":"25","STUSPS":"MA","NAME":"Massachusetts","LSAD":"00","ALAND":20205125364,"AWATER":7129925486}},{"arcs":[[82,83,84,85,86,87,88]],"type":"Polygon","properties":{"STATEFP":"16","STATENS":"01779783","AFFGEOID":"0400000US16","GEOID":"16","STUSPS":"ID","NAME":"Idaho","LSAD":"00","ALAND":214049787659,"AWATER":2391722557}},{"arcs":[[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99,100,101]]],"type":"MultiPolygon","properties":{"STATEFP":"12","STATENS":"00294478","AFFGEOID":"0400000US12","GEOID":"12","STUSPS":"FL","NAME":"Florida","LSAD":"00","ALAND":138949136250,"AWATER":31361101223}},{"arcs":[[102,103,104,105,106,107]],"type":"Polygon","properties":{"STATEFP":"31","STATENS":"01779792","AFFGEOID":"0400000US31","GEOID":"31","STUSPS":"NE","NAME":"Nebraska","LSAD":"00","ALAND":198956658395,"AWATER":1371829134}},{"arcs":[[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[-83,123,124]],[[125]]],"type":"MultiPolygon","properties":{"STATEFP":"53","STATENS":"01779804","AFFGEOID":"0400000US53","GEOID":"53","STUSPS":"WA","NAME":"Washington","LSAD":"00","ALAND":172112588220,"AWATER":12559278850}},{"arcs":[[126,-24,127,128,129]],"type":"Polygon","properties":{"STATEFP":"35","STATENS":"00897535","AFFGEOID":"0400000US35","GEOID":"35","STUSPS":"NM","NAME":"New Mexico","LSAD":"00","ALAND":314196306401,"AWATER":728776523}},{"arcs":[[[130]],[[131]],[[132]],[[133]]],"type":"MultiPolygon","properties":{"STATEFP":"72","STATENS":"01779808","AFFGEOID":"0400000US72","GEOID":"72","STUSPS":"PR","NAME":"Puerto Rico","LSAD":"00","ALAND":8868896030,"AWATER":4922382562}},{"arcs":[[134,135,136,137,-103,138]],"type":"Polygon","properties":{"STATEFP":"46","STATENS":"01785534","AFFGEOID":"0400000US46","GEOID":"46","STUSPS":"SD","NAME":"South Dakota","LSAD":"00","ALAND":196346981786,"AWATER":3382720225}},{"arcs":[[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[-23,145,-47,146,-128]]],"type":"MultiPolygon","properties":{"STATEFP":"48","STATENS":"01779801","AFFGEOID":"0400000US48","GEOID":"48","STUSPS":"TX","NAME":"Texas","LSAD":"00","ALAND":676653171537,"AWATER":19006305260}},{"arcs":[[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153,154,155,156]]],"type":"MultiPolygon","properties":{"STATEFP":"06","STATENS":"01779778","AFFGEOID":"0400000US06","GEOID":"06","STUSPS":"CA","NAME":"California","LSAD":"00","ALAND":403503931312,"AWATER":20463871877}},{"arcs":[[[157]],[[158]],[[159,160,-102,161,-5]]],"type":"MultiPolygon","properties":{"STATEFP":"01","STATENS":"01779775","AFFGEOID":"0400000US01","GEOID":"01","STUSPS":"AL","NAME":"Alabama","LSAD":"00","ALAND":131174048583,"AWATER":4593327154}},{"arcs":[[162,-17,163,164,-100,-161]],"type":"Polygon","properties":{"STATEFP":"13","STATENS":"01705317","AFFGEOID":"0400000US13","GEOID":"13","STUSPS":"GA","NAME":"Georgia","LSAD":"00","ALAND":149482048342,"AWATER":4422936154}},{"arcs":[[165,166,167,168,169,170,-37,171]],"type":"Polygon","properties":{"STATEFP":"42","STATENS":"01779798","AFFGEOID":"0400000US42","GEOID":"42","STUSPS":"PA","NAME":"Pennsylvania","LSAD":"00","ALAND":115884442321,"AWATER":3394589990}},{"arcs":[[172,173,174,175,176,177,178,-21,179,-105]],"type":"Polygon","properties":{"STATEFP":"29","STATENS":"01779791","AFFGEOID":"0400000US29","GEOID":"29","STUSPS":"MO","NAME":"Missouri","LSAD":"00","ALAND":178050802184,"AWATER":2489425460}},{"arcs":[[180,-107,181,-19,-127,182]],"type":"Polygon","properties":{"STATEFP":"08","STATENS":"01779779","AFFGEOID":"0400000US08","GEOID":"08","STUSPS":"CO","NAME":"Colorado","LSAD":"00","ALAND":268422891711,"AWATER":1181621593}},{"arcs":[[-87,183,-183,184,185]],"type":"Polygon","properties":{"STATEFP":"49","STATENS":"01455989","AFFGEOID":"0400000US49","GEOID":"49","STUSPS":"UT","NAME":"Utah","LSAD":"00","ALAND":212886221680,"AWATER":6998824394}},{"arcs":[[-178,186,-176,187,-34,-18,-163,-160,-4,188]],"type":"Polygon","properties":{"STATEFP":"47","STATENS":"01325873","AFFGEOID":"0400000US47","GEOID":"47","STUSPS":"TN","NAME":"Tennessee","LSAD":"00","ALAND":106802728188,"AWATER":2350123465}},{"arcs":[[-139,-108,-181,-184,-86,189]],"type":"Polygon","properties":{"STATEFP":"56","STATENS":"01779807","AFFGEOID":"0400000US56","GEOID":"56","STUSPS":"WY","NAME":"Wyoming","LSAD":"00","ALAND":251458544898,"AWATER":1867670745}},{"arcs":[[[190]],[[191]],[[194]],[[195]],[[196]],[[197]],[[198,199,-82,200,201,202,-167]]],"type":"MultiPolygon","properties":{"STATEFP":"36","STATENS":"01779796","AFFGEOID":"0400000US36","GEOID":"36","STUSPS":"NY","NAME":"New York","LSAD":"00","ALAND":122049149763,"AWATER":19246994695}},{"arcs":[[-106,-180,-20,-182]],"type":"Polygon","properties":{"STATEFP":"20","STATENS":"00481813","AFFGEOID":"0400000US20","GEOID":"20","STUSPS":"KS","NAME":"Kansas","LSAD":"00","ALAND":211755344060,"AWATER":1344141205}},{"arcs":[[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[327]],[[328]],[[329]],[[330]],[[331]],[[332]],[[333]],[[334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]]],"type":"MultiPolygon","properties":{"STATEFP":"02","STATENS":"01785533","AFFGEOID":"0400000US02","GEOID":"02","STUSPS":"AK","NAME":"Alaska","LSAD":"00","ALAND":1478839695958,"AWATER":245481577452}},{"arcs":[[414,-88,-186,415,-155]],"type":"Polygon","properties":{"STATEFP":"32","STATENS":"01779793","AFFGEOID":"0400000US32","GEOID":"32","STUSPS":"NV","NAME":"Nevada","LSAD":"00","ALAND":284329506470,"AWATER":2047206072}},{"arcs":[[416,417,418,419,420,-174]],"type":"Polygon","properties":{"STATEFP":"17","STATENS":"01779784","AFFGEOID":"0400000US17","GEOID":"17","STUSPS":"IL","NAME":"Illinois","LSAD":"00","ALAND":143780567633,"AWATER":6214824948}},{"arcs":[[421,422,-75,-200]],"type":"Polygon","properties":{"STATEFP":"50","STATENS":"01779802","AFFGEOID":"0400000US50","GEOID":"50","STUSPS":"VT","NAME":"Vermont","LSAD":"00","ALAND":23874175944,"AWATER":1030416650}},{"arcs":[[423,424,-135,-190,-85]],"type":"Polygon","properties":{"STATEFP":"30","STATENS":"00767982","AFFGEOID":"0400000US30","GEOID":"30","STUSPS":"MT","NAME":"Montana","LSAD":"00","ALAND":376962738765,"AWATER":3869208832}},{"arcs":[[425,426,-417,-173,-104,-138]],"type":"Polygon","properties":{"STATEFP":"19","STATENS":"01779785","AFFGEOID":"0400000US19","GEOID":"19","STUSPS":"IA","NAME":"Iowa","LSAD":"00","ALAND":144661267977,"AWATER":1084180812}},{"arcs":[[-16,427,-164]],"type":"Polygon","properties":{"STATEFP":"45","STATENS":"01779799","AFFGEOID":"0400000US45","GEOID":"45","STUSPS":"SC","NAME":"South Carolina","LSAD":"00","ALAND":77864918488,"AWATER":5075218778}},{"arcs":[[428,429,430,-76,-423]],"type":"Polygon","properties":{"STATEFP":"33","STATENS":"01779794","AFFGEOID":"0400000US33","GEOID":"33","STUSPS":"NH","NAME":"New Hampshire","LSAD":"00","ALAND":23189413166,"AWATER":1026675248}},{"arcs":[[-156,-416,-185,-130,431]],"type":"Polygon","properties":{"STATEFP":"04","STATENS":"01779777","AFFGEOID":"0400000US04","GEOID":"04","STUSPS":"AZ","NAME":"Arizona","LSAD":"00","ALAND":294198551143,"AWATER":1027337603}},{"arcs":[[432,-31]],"type":"Polygon","properties":{"STATEFP":"11","STATENS":"01702382","AFFGEOID":"0400000US11","GEOID":"11","STUSPS":"DC","NAME":"District of Columbia","LSAD":"00","ALAND":158340391,"AWATER":18687198}},{"arcs":[[[433]],[[434]],[[435]],[[436]]],"type":"MultiPolygon","properties":{"STATEFP":"60","STATENS":"01802701","AFFGEOID":"0400000US60","GEOID":"60","STUSPS":"AS","NAME":"American Samoa","LSAD":"00","ALAND":197759063,"AWATER":1307243754}},{"arcs":[[[437]],[[438]],[[439]]],"type":"MultiPolygon","properties":{"STATEFP":"78","STATENS":"01802710","AFFGEOID":"0400000US78","GEOID":"78","STUSPS":"VI","NAME":"United States Virgin Islands","LSAD":"00","ALAND":348021896,"AWATER":1550236201}},{"arcs":[[440,-168,-203,441,-193,442,443]],"type":"Polygon","properties":{"STATEFP":"34","STATENS":"01779795","AFFGEOID":"0400000US34","GEOID":"34","STUSPS":"NJ","NAME":"New Jersey","LSAD":"00","ALAND":19047825980,"AWATER":3544860246}},{"arcs":[[[-27,444]],[[445]],[[446]],[[447]],[[448]],[[-171,449,450,-25,451,-32,-433,-30,-38]]],"type":"MultiPolygon","properties":{"STATEFP":"24","STATENS":"01714934","AFFGEOID":"0400000US24","GEOID":"24","STUSPS":"MD","NAME":"Maryland","LSAD":"00","ALAND":25151100280,"AWATER":6979966958}},{"arcs":[[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[-430,467]],[[468]]],"type":"MultiPolygon","properties":{"STATEFP":"23","STATENS":"01779787","AFFGEOID":"0400000US23","GEOID":"23","STUSPS":"ME","NAME":"Maine","LSAD":"00","ALAND":79887426037,"AWATER":11746549764}},{"arcs":[[[469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476]]],"type":"MultiPolygon","properties":{"STATEFP":"15","STATENS":"01779782","AFFGEOID":"0400000US15","GEOID":"15","STUSPS":"HI","NAME":"Hawaii","LSAD":"00","ALAND":16633990195,"AWATER":11777809026}},{"arcs":[[[-444,477]],[[-170,478,-450]]],"type":"MultiPolygon","properties":{"STATEFP":"10","STATENS":"01779781","AFFGEOID":"0400000US10","GEOID":"10","STUSPS":"DE","NAME":"Delaware","LSAD":"00","ALAND":5045925646,"AWATER":1399985648}},{"arcs":[[479]],"type":"Polygon","properties":{"STATEFP":"66","STATENS":"01802705","AFFGEOID":"0400000US66","GEOID":"66","STUSPS":"GU","NAME":"Guam","LSAD":"00","ALAND":543555840,"AWATER":934337453}},{"arcs":[[[480]],[[481]],[[482]],[[483]],[[484]],[[485]],[[486]],[[487]],[[488]],[[489]]],"type":"MultiPolygon","properties":{"STATEFP":"69","STATENS":"01779809","AFFGEOID":"0400000US69","GEOID":"69","STUSPS":"MP","NAME":"Commonwealth of the Northern Mariana Islands","LSAD":"00","ALAND":472292529,"AWATER":4644252461}},{"arcs":[[[490]],[[-78,491]],[[492]],[[493]],[[494,-80,495]]],"type":"MultiPolygon","properties":{"STATEFP":"44","STATENS":"01219835","AFFGEOID":"0400000US44","GEOID":"44","STUSPS":"RI","NAME":"Rhode Island","LSAD":"00","ALAND":2677779902,"AWATER":1323670487}},{"arcs":[[[-421,496,497,-39,-35,-188,-175]],[[-187,-177]]],"type":"MultiPolygon","properties":{"STATEFP":"21","STATENS":"01779786","AFFGEOID":"0400000US21","GEOID":"21","STUSPS":"KY","NAME":"Kentucky","LSAD":"00","ALAND":102279490672,"AWATER":2375337755}},{"arcs":[[[498]],[[499]],[[-65,500,-172,-36,-498,501]]],"type":"MultiPolygon","properties":{"STATEFP":"39","STATENS":"01085497","AFFGEOID":"0400000US39","GEOID":"39","STUSPS":"OH","NAME":"Ohio","LSAD":"00","ALAND":105828882568,"AWATER":10268850702}},{"arcs":[[[502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515,-70,516,-418,-427,517]]],"type":"MultiPolygon","properties":{"STATEFP":"55","STATENS":"01779806","AFFGEOID":"0400000US55","GEOID":"55","STUSPS":"WI","NAME":"Wisconsin","LSAD":"00","ALAND":140290039723,"AWATER":29344951758}},{"arcs":[[-124,-89,-415,-154,518]],"type":"Polygon","properties":{"STATEFP":"41","STATENS":"01155107","AFFGEOID":"0400000US41","GEOID":"41","STUSPS":"OR","NAME":"Oregon","LSAD":"00","ALAND":248606993270,"AWATER":6192386935}},{"arcs":[[519,520,-136,-425]],"type":"Polygon","properties":{"STATEFP":"38","STATENS":"01779797","AFFGEOID":"0400000US38","GEOID":"38","STUSPS":"ND","NAME":"North Dakota","LSAD":"00","ALAND":178707534813,"AWATER":4403267548}},{"arcs":[[-189,-3,-45,-146,-22,-179]],"type":"Polygon","properties":{"STATEFP":"05","STATENS":"00068085","AFFGEOID":"0400000US05","GEOID":"05","STUSPS":"AR","NAME":"Arkansas","LSAD":"00","ALAND":134768872727,"AWATER":2962859592}},{"arcs":[[521,-66,-502,-497,-420]],"type":"Polygon","properties":{"STATEFP":"18","STATENS":"00448508","AFFGEOID":"0400000US18","GEOID":"18","STUSPS":"IN","NAME":"Indiana","LSAD":"00","ALAND":92789302676,"AWATER":1538002829}},{"arcs":[[522,-518,-426,-137,-521]],"type":"Polygon","properties":{"STATEFP":"27","STATENS":"00662849","AFFGEOID":"0400000US27","GEOID":"27","STUSPS":"MN","NAME":"Minnesota","LSAD":"00","ALAND":206228939448,"AWATER":18945217189}},{"arcs":[[-81,-495,523,-201]],"type":"Polygon","properties":{"STATEFP":"09","STATENS":"01779780","AFFGEOID":"0400000US09","GEOID":"09","STUSPS":"CT","NAME":"Connecticut","LSAD":"00","ALAND":12542497068,"AWATER":1815617571}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ak.topo.json b/app/assets/topojson/states/ak.topo.json new file mode 100755 index 00000000..7d49982a --- /dev/null +++ b/app/assets/topojson/states/ak.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[34805,18712],[2,45],[34,37],[-14,44],[51,59],[55,-26],[9,-40],[-7,-84],[-17,-64],[-71,-59],[-42,88]],[[34642,20636],[55,28],[30,-29],[-67,-18],[-18,19]],[[34573,20658],[19,53],[27,16],[17,-31],[-29,-33],[-34,-5]],[[34275,17524],[52,57],[17,36],[26,-44],[-73,-51],[-22,2]],[[34266,16476],[48,74],[33,-28],[-42,-45],[-39,-1]],[[34214,20637],[41,-6],[41,111],[79,-48],[42,5],[-56,-72],[-66,-19],[-47,5],[-34,24]],[[34214,17597],[39,50],[24,-51],[-18,-38],[-37,-16],[-8,55]],[[33572,18067],[17,37],[69,23],[56,-7],[36,25],[-22,-107],[-27,-57],[-26,-11],[-87,55],[-16,42]],[[32859,18345],[29,54],[76,51],[-1,52],[25,46],[29,26],[47,-4],[81,-114],[33,-33],[99,1],[49,58],[-88,2],[-47,-6],[-10,45],[-25,21],[-42,65],[12,113],[45,41],[31,-23],[82,-18],[37,-19],[31,20],[32,-5],[1,58],[-77,40],[-44,65],[43,47],[28,73],[73,-26],[12,-23],[79,-10],[15,-31],[37,9],[0,32],[80,3],[-38,33],[-79,17],[-37,72],[17,19],[44,4],[19,-22],[66,-14],[63,-31],[-46,69],[30,20],[3,46],[-34,-2],[-23,38],[-31,0],[-13,59],[64,3],[45,43],[9,46],[28,9],[7,50],[40,14],[45,-3],[31,51],[59,-36],[34,0],[43,-27],[36,22],[-62,29],[-15,23],[-51,19],[-50,36],[16,64],[-29,21],[11,69],[25,26],[-4,35],[40,51],[25,-5],[21,42],[35,-24],[0,-27],[52,-11],[31,35],[35,62],[48,-65],[20,48],[76,32],[-15,-112],[20,-24],[-42,-67],[-14,-49],[24,-32],[-48,-47],[-12,-57],[-34,-33],[-55,-33],[-1,-27],[-28,-41],[-14,-46],[9,-37],[47,-36],[-32,-70],[9,-56],[41,0],[24,55],[31,-64],[53,26],[4,54],[29,38],[-21,61],[43,50],[53,-29],[18,-33],[29,-18],[41,-64],[-31,-32],[32,-46],[40,14],[17,46],[54,50],[16,-55],[34,3],[-28,-124],[-35,-93],[-10,-70],[5,-114],[21,12],[23,80],[1,54],[32,78],[33,5],[-18,-101],[47,43],[45,147],[23,5],[21,-35],[-8,-46],[7,-150],[-27,-50],[17,-21],[-34,-70],[-42,4],[-31,-32],[14,-31],[-48,-82],[-39,-15],[-29,25],[-7,50],[-54,-12],[-22,12],[-28,77],[22,20],[-20,48],[-41,40],[-12,-17],[-61,7],[-1,-77],[28,-27],[1,-69],[-55,35],[9,-74],[79,-75],[-103,-63],[-5,36],[-45,10],[-13,-25],[-76,48],[-9,-29],[-79,-26],[-14,-76],[-32,-5],[-16,83],[14,54],[-2,108],[-12,29],[-30,-3],[-14,-90],[-1,-82],[-32,-98],[-34,-66],[-97,-29],[-37,16],[-21,-10],[30,-74],[-32,-87],[-24,-10],[-70,11],[-47,-64],[-32,20],[-85,3],[-32,19],[-52,6],[-51,30],[-55,53],[-100,39],[-22,46],[-20,-14],[-71,16],[-86,-33],[-18,38],[-52,23]],[[32606,15232],[20,20],[56,18],[1,-38],[-41,-34],[-36,34]],[[31918,14651],[24,58],[24,19],[30,-17],[32,34],[35,10],[28,-13],[4,-68],[-11,-18],[-124,26],[-42,-31]],[[31654,14273],[64,117],[33,30],[84,53],[35,-26],[62,7],[63,26],[23,-38],[3,-39],[41,-84],[27,-18],[103,15],[41,16],[49,-5],[8,-31],[-25,-52],[-66,-39],[-19,-32],[-53,-8],[-11,12],[-77,-16],[-58,0],[-69,25],[-88,-44],[-57,28],[-82,10],[-29,48],[-2,45]],[[31460,18355],[20,18],[43,-19],[2,-23],[-47,-18],[-18,42]],[[31102,13976],[36,86],[51,97],[49,71],[64,53],[103,108],[58,39],[50,2],[93,-40],[17,-43],[-6,-45],[-90,-74],[-6,-34],[-110,-46],[-59,-34],[-48,-41],[-62,-89],[-18,-39],[-36,-41],[-38,-9],[-40,43],[-8,36]],[[31101,16433],[21,49],[23,-22],[31,1],[25,31],[23,59],[3,72],[-24,31],[65,70],[22,85],[22,55],[60,31],[68,57],[20,71],[21,27],[47,-18],[49,26],[35,61],[62,50],[11,41],[46,-4],[53,16],[46,54],[163,-31],[53,8],[33,19],[64,-31],[-12,-49],[12,-26],[-3,-95],[15,-50],[-17,-62],[76,-30],[6,-70],[62,20],[-7,83],[36,46],[4,33],[51,31],[-28,43],[-49,49],[-16,32],[18,47],[55,-5],[102,6],[24,-21],[79,-4],[17,28],[-35,48],[-37,11],[-119,61],[-31,-4],[-54,29],[-72,-13],[-21,87],[11,49],[-8,58],[4,95],[42,40],[3,23],[37,15],[19,35],[-5,33],[86,14],[71,65],[27,-19],[65,-17],[55,6],[-16,-51],[11,-51],[32,1],[34,-31],[16,-74],[19,-19],[17,-62],[-26,-41],[-1,-100],[36,-28],[22,66],[21,107],[32,-28],[34,8],[-7,43],[-44,78],[-10,59],[18,19],[80,-29],[70,-57],[71,-22],[36,45],[-57,14],[-20,71],[-81,17],[-18,39],[-57,17],[-48,53],[-56,80],[23,88],[50,26],[21,-6],[53,-52],[29,-6],[109,-103],[33,-6],[36,-54],[25,25],[32,-7],[61,-39],[12,-27],[73,-70],[15,31],[-8,39],[-24,14],[-27,51],[-78,89],[-11,34],[-29,8],[-56,41],[-36,56],[-10,37],[31,26],[38,-9],[63,-73],[60,-10],[44,-46],[40,28],[39,5],[70,-38],[54,-7],[34,12],[39,-36],[67,-14],[61,-44],[12,-26],[-25,-30],[-62,-41],[22,-28],[-31,-19],[-42,-84],[-9,-48],[21,-35],[-14,-54],[-3,-60],[44,-56],[34,4],[-12,125],[9,115],[21,42],[46,36],[48,-28],[16,-69],[20,0],[16,100],[19,38],[51,27],[28,37],[2,57],[36,19],[58,-57],[33,13],[69,99],[-7,56],[39,-22],[32,45],[35,-33],[-14,-61],[27,-24],[48,-4],[48,-29],[-52,-86],[-53,7],[-26,40],[-29,6],[-27,-34],[16,-52],[41,-12],[25,-52],[-47,-26],[29,-57],[29,27],[66,22],[26,-32],[-23,-36],[-47,-41],[-8,-56],[-43,-2],[-18,29],[-46,-43],[-14,-62],[16,-31],[33,-23],[-40,-32],[9,-25],[-9,-80],[-46,-38],[26,-33],[26,34],[91,80],[33,-27],[-61,-75],[-41,-98],[-12,-53],[41,0],[24,40],[57,54],[0,33],[26,33],[38,-47],[-1,-45],[59,28],[27,-38],[94,20],[22,-84],[-131,-172],[-45,-29],[-39,-129],[-3,-76],[15,-23],[-31,-26],[-88,39],[-62,18],[6,40],[-45,25],[-37,-92],[-32,41],[-61,14],[-44,60],[-36,-32],[-43,5],[-67,102],[-47,-2],[-34,-25],[-56,35],[-48,10],[-39,-86],[18,-31],[24,9],[82,2],[71,-36],[39,-56],[8,-41],[75,-40],[49,-3],[5,-37],[28,-23],[-5,-70],[-34,-30],[-2,-71],[-81,-106],[-17,60],[-45,26],[-84,-122],[-41,22],[7,60],[-24,20],[-22,-37],[-50,51],[-4,34],[32,28],[-2,30],[-61,-37],[-49,2],[-9,27],[-87,-30],[-59,-33],[-57,9],[-34,-27],[27,-32],[44,-4],[23,-28],[37,20],[41,-2],[27,19],[53,-44],[43,-67],[-13,-30],[-37,-30],[-56,-18],[-62,-48],[-109,4],[-17,17],[-41,3],[-17,-21],[8,-37],[52,-7],[11,-26],[-4,-79],[62,56],[67,30],[-12,-43],[67,-14],[14,34],[49,21],[29,-3],[36,-59],[52,-1],[13,-42],[-57,-66],[-53,-16],[-85,10],[-47,-37],[-43,-6],[0,-29],[-38,-16],[-43,27],[-64,-57],[-16,-50],[27,-56],[-49,-98],[-35,-2],[-56,-31],[-49,54],[30,40],[-1,44],[-46,26],[35,41],[-16,30],[-70,-42],[-4,48],[58,51],[-26,60],[54,64],[42,75],[17,14],[0,89],[-41,-50],[-27,-13],[-34,24],[2,-59],[-42,-58],[-35,-76],[-29,-38],[-22,11],[-22,62],[-29,11],[-11,-40],[29,-60],[10,-46],[-18,-64],[-29,28],[-71,47],[-38,-18],[-80,0],[1,-34],[-43,-45],[53,-10],[30,15],[57,-9],[19,-45],[-41,-48],[88,-54],[-18,-82],[-53,-38],[-14,-58],[-75,-9],[-48,26],[17,-65],[-19,-39],[-35,-34],[-43,-22],[-11,-36],[72,25],[50,-5],[-32,-59],[-41,-13],[-63,-43],[-17,44],[-44,-26],[-9,-51],[-69,-80],[-10,-58],[-36,-17],[-57,-48],[-53,0],[-25,54],[-24,0],[-38,-34],[-58,-22],[-16,20],[19,92],[31,39],[0,36],[50,97],[72,30],[35,98],[47,48],[33,5],[19,24],[38,5],[36,46],[4,57],[-25,28],[-69,-50],[-75,4],[16,85],[-7,15],[48,102],[19,54],[-12,18],[67,74],[28,6],[64,61],[25,52],[-5,64],[-27,4],[-20,-43],[0,-37],[-27,-20],[-51,-10],[-29,-55],[-88,-88],[-5,-23],[-52,-99],[-31,-40],[-10,-36],[-33,-55],[-53,-4],[-13,-41],[-46,-90],[-61,-28],[-26,-59],[5,-34],[-59,-56],[-35,-6],[1,94],[-9,63],[-26,48],[-46,33],[-49,68],[-81,46],[-76,32],[12,88],[2,132],[-13,214],[-8,71],[-22,64],[-24,40],[-9,48],[-23,45],[-38,39],[-67,11],[-23,29],[-45,-21],[-70,11],[40,28],[-7,35],[17,28],[-10,34],[-35,14],[-24,37]],[[29880,12343],[94,66],[33,49],[25,93],[47,35],[44,-16],[3,-32],[-32,-115],[26,-105],[3,-60],[-30,-75],[-35,-15],[-40,42],[-34,10],[-29,-11],[-41,7],[-11,44],[14,33],[-37,50]],[[31728,19932],[624,0],[0,233],[227,0],[0,310],[415,0]],[[32994,20475],[12,0]],[[33006,20475],[67,2]],[[33073,20477],[-49,-45],[-59,26],[-36,-57],[-18,-137],[-20,-72],[-48,-90],[-29,-22],[-29,13],[-41,-56],[-59,-16],[-34,-61],[-13,-79],[-51,-6],[-37,-45],[-94,-13],[-42,-16],[-91,23],[-68,-13],[-16,-60],[11,-44],[-24,-62],[-7,-57],[16,-20],[-29,-57],[-35,-17],[-55,8],[-79,-16],[-16,-36],[10,-92],[23,-69],[24,-28],[26,3],[33,-29],[-19,-47],[-38,-9],[-19,-43],[-61,9],[-44,-36],[-33,32],[-32,3],[17,-63],[-78,-11],[-153,-114],[-6,-24],[28,-49],[92,30],[-13,57],[95,33],[-14,39],[66,-13],[19,-67],[48,-34],[-38,-32],[-79,-13],[-17,-22],[74,-60],[1,-51],[-43,-2],[18,-38],[-74,-35],[-34,10],[-28,-67],[70,-53],[-1,-27],[-66,-11],[-37,44],[-51,32],[9,-52],[-8,-37],[25,-33],[9,-62],[-39,-13],[-65,109],[-26,13],[-31,49],[-1,67],[-40,14],[15,-83],[12,-138],[-21,-44],[-37,9],[-51,-14],[-9,-62],[-23,-35],[-11,-46],[-96,21],[-12,82],[-37,5],[-54,-36],[-19,-102],[-36,-23],[-55,-13],[-27,48],[-76,22],[-30,-11],[-48,-53],[-42,-2],[-67,-47],[8,-26],[-17,-49],[-43,-3],[-52,-21],[23,-64],[46,-44],[2,-21],[-29,-66],[-85,-42],[-35,5],[-18,-21],[-41,37],[10,-76],[-28,-27],[-52,-14],[-68,19],[1,-79],[-30,-22],[42,-71],[34,-40],[-8,-67],[-57,-3],[-55,-48],[-20,88],[-86,30],[-49,32],[-76,76],[-54,-37],[0,-74],[-23,-57],[-5,-61],[32,-49],[41,-21],[-23,-51],[-60,-13],[-66,-26],[-21,-26],[-40,-8],[17,-33],[-17,-50],[21,-61],[-15,-28],[2,-67],[-62,9],[-39,41],[-3,38],[-43,-24],[-15,-39],[-63,-25],[-28,-26],[-50,27],[-43,62],[-48,-6],[22,-116],[-19,-3],[8,-138],[28,-48],[-13,-46],[-90,11],[-47,81],[-64,37],[-36,-27],[-14,-71],[-44,-14],[-33,-28],[-56,-15],[-24,-27],[-75,-112],[-41,-15],[-31,-59],[-66,-26],[-37,-25],[-12,-53],[18,-62],[23,20],[157,75],[51,17],[35,-27],[-19,-37],[32,-19],[-28,-117],[-52,-9],[-20,-20],[-12,-47],[28,-60],[69,-33],[-36,-87]],[[29110,15914],[0,15],[-147,-11],[-358,19],[0,195],[100,-2],[0,156],[65,-1],[5,113],[100,-3],[-17,40],[-1,42],[65,-5],[-8,194],[61,-2],[4,120],[67,-2],[0,40],[43,1],[2,78],[207,1],[-1,-40],[98,5],[2,79],[36,0],[1,44],[38,1],[1,76],[77,1],[-1,38],[75,-2],[2,-119],[38,1],[-2,44],[33,-1],[0,40],[33,0],[-1,40],[66,-1],[1,37],[-34,0],[0,42],[-67,-3],[1,108],[166,0],[-1,78],[28,0],[-1,114],[71,-2],[-2,158],[198,5],[4,70],[114,3],[0,119],[148,13],[-2,461],[66,-1],[0,163],[-66,-2],[0,229],[141,0],[0,116],[209,-1],[-1,77],[68,0],[-3,70],[177,-1],[-1,38],[178,0],[1,75],[204,1],[1,74],[132,2],[0,79],[43,0],[0,75],[104,-2],[-6,114],[67,-1],[-3,516]],[[28605,12917],[33,-1],[14,60],[-29,40],[8,28],[42,-39],[27,47],[46,-45],[8,-60],[-57,-23],[-4,-49],[15,-67],[-15,-5],[-31,43],[2,26],[-43,12],[-16,33]],[[28534,13268],[0,79],[31,31],[39,-46],[-17,-47],[0,-59],[-51,11],[-2,31]],[[24974,38360],[0,696],[-14,0],[0,465],[808,0],[0,464],[280,0],[1081,0],[0,929],[1092,0],[0,-464],[546,0],[0,464],[546,1],[0,-233],[273,0],[0,-232],[546,0],[0,464],[57,0],[0,233],[830,0],[0,464],[831,0],[0,232],[81,0],[0,929],[-200,0],[0,232],[-569,0],[0,697],[74,0],[0,232],[-288,0],[-1,232],[-288,0],[0,232],[-289,0],[0,233],[64,0],[0,370]],[[30434,45000],[381,0],[1074,0],[990,0],[1123,0],[1222,0],[1178,0],[824,0],[862,0],[1234,0],[1088,0],[1212,0],[713,0],[0,430],[0,911],[1287,0],[1190,0],[1275,0],[1279,0],[1352,-4]],[[48718,46337],[0,-823],[0,-704],[0,-1034],[0,-2760],[0,-1468],[0,-342]],[[48718,39206],[-34,-4],[-104,-45],[-21,-56],[-31,-5],[-22,-40],[-70,-46],[-79,-81],[-2,-17],[-63,-49],[-19,-124],[-42,-43],[-25,-47],[18,-49],[-39,-16],[-47,-52],[-54,15],[-19,-69],[-41,16],[-21,-65],[-83,-17],[5,-58],[-58,-15],[-31,14],[-74,-54],[-48,1],[-6,-74],[-76,-51],[-4,-25],[-138,2],[-29,-16],[-51,16],[-21,29],[-72,8],[-26,31],[-75,-32],[-41,2],[-29,-28],[-94,-26],[-98,-79],[-37,-4],[-41,-45],[4,-21],[-58,-35],[-51,4],[-59,39],[-37,8],[-79,-51],[-30,-96],[-94,-54],[45,-78],[-12,-69],[4,-74],[-41,-26],[-13,-75],[-44,-41],[-71,-108],[-46,21],[-45,-6],[-32,-28],[-93,-6],[-62,-33],[-41,-38],[-57,-80],[-41,26],[-53,-53],[-18,-43],[-84,-42],[-42,22],[-31,-12],[28,-38],[-32,-15],[10,-59],[-55,-49],[-79,9],[-42,-108],[36,-67],[-18,-39],[-1,-48],[-18,-70],[6,-38],[32,-13],[52,-47],[-58,-57],[-65,2],[18,-34],[-24,-27],[52,-34],[-17,-32],[-35,-12],[-79,-53],[-55,-101],[-11,-61],[-48,-11],[-11,-25],[-75,-22],[-161,43],[-185,32],[-34,-6],[-24,27]],[[44802,36106],[11,56],[-63,17],[-9,39],[27,44],[51,51],[26,44],[-50,8],[-45,64],[42,46],[-36,75],[49,35],[-15,39],[30,72],[-42,33],[73,56],[24,3],[31,79],[-31,36],[-48,9],[-61,47],[15,54],[38,-17],[11,44],[73,46],[37,-3],[51,29],[36,88],[-24,28],[-80,47],[-62,-21],[-44,20],[-102,-26],[-69,25],[-33,-20],[-38,17],[-108,-26],[-13,-58],[-66,-16],[-86,-52],[-9,30],[-45,25],[-48,-36],[-185,102],[-33,-32],[-54,14],[-50,36],[-73,30],[-63,39],[-22,-34],[-32,2],[-54,28],[-62,-53],[-65,-32],[-5,-19],[-96,-3],[-82,-75],[-62,-4],[-36,11],[-60,-5],[-59,43],[-36,-2],[-21,-49],[-101,-11],[-5,-39],[-79,-2],[-38,-27],[-51,-4],[-5,42],[-26,18],[4,37],[-65,11],[-56,-16],[-10,26],[48,60],[84,37],[6,35],[47,21],[0,45],[-41,34],[-14,50],[-69,-6],[-93,37],[-95,50],[-14,-25],[-78,-1],[-58,62],[-29,-1],[-80,58],[9,31],[-64,43],[27,36],[-7,32],[-39,33],[35,27],[76,84],[56,8],[3,36],[42,57],[-18,38],[-157,-11],[-17,34],[-56,26],[-7,60],[-42,11],[-48,-35],[-56,0],[-29,-33],[-70,9],[-42,-34],[-43,34],[-43,9],[-55,-58],[0,-45],[22,-36],[-74,-101],[-45,-15],[-43,8],[-92,-60],[-40,-6],[-92,-62],[-141,-30],[-34,-40],[-64,36],[-37,-10],[-100,10],[-41,-26],[-43,42],[-80,-31],[-129,-3],[-107,-66],[-130,-48],[-71,-61],[-538,0],[-871,0],[0,-929],[16,0],[0,-746],[35,58],[32,25],[58,2],[24,-25],[95,-48],[41,-40],[10,-72],[18,-45],[67,-25],[31,-27],[36,-66],[35,12],[39,-19],[-1,-26],[39,-70],[-17,-37],[153,-154],[-5,-42],[49,-19],[30,-30]],[[39722,35195],[-926,0],[-461,0],[0,39],[-683,0],[-1226,-1],[-131,0],[-705,-967],[-161,0],[-32,28],[-107,34],[34,64],[-96,28],[0,39],[-210,0],[-59,10],[-23,-10],[-42,-77],[-42,-58],[37,-59],[-277,0],[-11,0],[1,-464],[-222,0],[1,-465],[-824,0],[0,-464],[80,0],[0,-349],[244,0],[0,-116],[245,0],[0,-325],[-577,-970],[-151,-252]],[[33398,30860],[-5,0],[1,-1159],[2,-7]],[[33396,29694],[-90,0],[0,-232],[-415,0],[0,-233],[-469,0],[0,-232],[-219,0],[-1252,0],[-1218,0],[-262,0],[-1266,0],[0,232],[-728,0],[-1146,0],[0,-232],[-937,0],[0,-233],[-366,0],[-1256,0]],[[23772,28764],[-487,0],[0,697],[-168,0],[0,930],[66,0],[0,929],[67,0],[0,269],[109,0],[0,34]],[[23359,31623],[0,697],[244,0],[0,232],[-29,0],[0,465],[246,0],[0,232],[493,0],[0,233],[228,0],[0,232],[250,0],[0,697],[-15,0],[-253,0],[0,929],[-20,0],[0,929],[240,0],[0,465],[259,0],[0,464],[-14,1],[0,464],[262,0],[0,464],[-10,0],[0,233],[-266,0]],[[41058,34963],[441,0],[90,18],[125,48],[69,-1],[112,-14],[76,74],[68,18],[4,72],[-18,48],[31,34],[55,10],[23,29],[108,12],[18,-19],[71,3],[67,59],[27,42],[50,28],[111,5],[41,18],[41,60],[72,-42],[62,-12],[21,-37],[77,-6],[29,-17],[47,15],[81,57],[81,32],[-3,73],[86,28],[47,-9],[47,18],[33,29],[62,-24],[16,14],[81,7],[85,93],[39,72],[79,23],[23,-15],[102,-14],[36,5],[12,32],[51,34],[22,-16],[53,5],[22,-16],[65,41],[88,7],[8,-27],[62,0],[48,-20],[52,32],[128,61],[-10,26],[18,43],[133,13],[24,-20],[50,41],[41,-16],[59,10],[21,37],[-16,42]],[[48718,39206],[1,-1360],[1,-932],[0,-2625],[-1,-2450],[0,-754],[0,-777],[0,-753],[-1,-903]],[[48718,28652],[-1059,0],[0,571],[-234,2],[0,124],[48,0],[0,929],[-190,0],[0,233],[-239,0],[0,232],[-246,0],[-26,-3],[-82,27],[-46,-11],[-12,31],[-64,29],[-58,-7],[-26,-104],[15,-24],[-66,-17],[-13,-41],[-35,-38],[-3,-66],[-122,30],[-8,-34],[-44,-3],[-49,41],[-126,5],[-47,34],[-41,62],[24,38],[31,-8],[0,103],[51,12],[36,90],[38,27],[30,51],[-58,8],[-110,90],[-29,-7],[-56,75],[55,14],[3,47],[41,16],[12,51],[33,7],[35,97],[45,43],[-8,100],[47,13],[0,58],[-124,33],[18,47],[-7,26],[-43,17],[3,139],[-14,64],[-619,0],[-1230,0],[0,38],[-734,0],[0,232],[-628,0],[-594,0],[0,-49],[-37,-41],[-64,-10],[-37,11],[-140,16],[-157,-31],[-54,-27]],[[41704,32044],[13,31],[-7,811],[-652,-9]],[[41058,32877],[0,1020],[0,1066]],[[40108,27370],[686,0],[0,120],[338,0],[0,929],[-24,0],[0,930],[-24,0],[0,232],[710,0],[0,697],[-16,0],[-1,929],[-16,0],[0,271],[-57,0],[0,566]],[[48718,28652],[1,-788],[0,-1006],[0,-1132],[0,-1130]],[[48719,24596],[-270,0],[0,117],[-737,0],[0,232],[-221,0],[-1157,0],[-414,0],[-684,-1021],[-210,-314],[0,-102]],[[45026,23508],[-86,31],[-34,42],[-106,18],[-70,-13],[-75,19],[-91,4],[49,44],[88,7],[46,-16],[26,22],[35,-15],[29,11],[-32,76],[-109,93],[-58,20],[-20,34],[-53,8],[-53,34],[14,39],[-35,18],[8,41],[-84,-30],[-76,4],[-58,-10],[-67,49],[-43,-28],[-76,50],[-80,37],[-74,20],[-212,22],[-23,26],[78,42],[77,8],[76,28],[-46,55],[-42,-4],[-85,31],[-38,-28],[-60,21],[-10,57],[80,142],[27,62],[-4,20],[69,134],[31,51],[-47,2],[-55,-18],[-32,-37],[-11,-44],[-122,-34],[-47,-34],[-37,-61],[-37,-109],[-1,-88],[-36,-23],[-36,30],[-66,-14],[-105,73],[-13,23],[-67,23],[-105,94],[-51,15],[-28,31],[18,52],[-63,22],[-66,57],[-125,33],[-50,-6],[-37,17],[-21,-22],[-127,-27],[-110,59],[42,37],[21,37],[28,-15],[58,59],[65,31],[27,69],[96,120],[37,107],[61,48],[-6,40],[-26,7],[-22,-30],[-130,-76],[-107,-46],[-53,-2],[3,25],[39,12],[40,33],[-21,25],[-64,21],[-41,-13],[-14,-65],[-81,-23],[-13,14],[10,55],[94,158],[-45,-23],[-102,-78],[-99,-54],[-33,-30],[-141,-16],[-15,63],[41,19],[58,78],[87,76],[31,10],[55,51],[-28,21],[53,29],[-43,48],[-41,-54],[-45,-24],[-30,-53],[-81,54],[-9,-68],[-29,-16],[-54,0],[-24,25],[-17,60],[-63,-111],[-67,-51],[-84,-11],[-132,36],[-28,-34],[-54,32],[4,50],[-47,58],[33,19],[22,-34],[32,29],[32,59],[36,-19],[-10,-44],[88,51],[-2,43],[76,-2],[125,42],[33,1],[106,82],[18,63],[84,16],[85,-35],[-15,37],[-30,0],[-71,74],[-19,-20],[-39,33],[-36,-45],[2,-23],[-85,-89],[-90,-27],[-15,58],[-45,-53],[-28,-10],[-66,3],[-45,20],[-15,26],[24,28],[-41,37],[-25,-29],[-19,-60],[-25,-3],[8,70],[25,57],[-34,31],[-46,-46],[-28,36],[-12,42],[-37,52],[-2,52],[-31,54],[42,13],[4,-31],[32,-29],[54,21],[38,-39],[50,8],[-25,55],[-34,16],[-57,-18],[-49,53],[26,31],[2,62],[34,83],[30,-23],[62,3],[41,-17],[-9,50],[-102,32],[-10,38],[51,53],[63,-11],[71,11],[35,-8],[69,4],[78,24],[52,-20],[85,15],[8,50],[-46,53],[-129,-7],[-22,27],[-65,-4],[-39,-24],[-146,-9],[-46,-35],[-36,-64],[-27,-75],[-51,-23],[-48,-6],[-51,-61],[-50,-77],[-11,-50],[-83,-89],[-66,-32],[-8,17],[-83,14],[-8,11],[81,61],[20,48],[-48,9],[-13,-43],[-47,-52],[-4,49],[77,109],[18,59],[-66,178],[-26,46],[49,26],[30,54],[-103,19],[-55,-39],[18,-65],[2,-49],[-31,-25],[34,-32],[25,-159],[-80,-112],[10,-98],[-50,-23],[-51,55],[-1,86],[-78,-28],[3,-35],[36,-86],[-12,-17],[-72,-14],[-15,-53],[-45,-34],[-57,25],[-57,4],[11,47],[-14,25],[77,106],[-17,14],[-47,-66],[-19,52],[6,80],[-19,1],[-18,-72],[-21,-35],[-7,-107],[-14,-49],[-31,22],[-7,34],[20,31],[-6,79],[-16,73],[32,38],[4,42],[-10,123],[44,18],[-25,44],[6,37],[-44,109],[-35,-15],[19,-36],[6,-64],[-22,-78],[-43,-92],[22,-33],[-32,-103],[-19,-38],[39,-27],[3,-33],[-28,-65],[25,-45],[5,-49],[-12,-88],[-83,-31],[-16,45],[1,56],[-61,16],[-17,31],[27,107],[-34,11],[-13,-54],[-43,-120],[-33,-12],[90,-69],[-37,-86],[-54,23],[-14,22],[-40,-17],[-29,16],[-42,64],[4,44],[-16,59],[-34,-99],[44,-73],[-6,-39],[-55,-22],[-93,-54],[-46,18],[-37,-9],[-58,31],[-9,56],[35,80],[-7,36],[42,82],[-10,54],[29,22],[46,82],[41,34],[41,89],[44,51],[8,76],[40,67],[-51,7],[72,75],[51,79],[106,127],[8,25],[79,31],[83,57],[-66,20],[-92,-38],[53,80],[26,65],[-41,22],[-82,-108],[-47,-105],[-52,-52],[-104,-150],[-28,-28],[-33,-59],[1,-88],[-36,-56],[-51,-60],[-27,-15],[-15,79],[-19,8],[-7,83],[-40,84],[21,38],[-53,3],[-16,-78],[-49,10],[-79,-21],[-56,-67],[-82,2],[-4,-29],[53,-17],[-21,-78],[-31,-39],[-50,-35],[28,-36],[51,34],[85,142],[67,50],[38,7],[76,35],[-1,-99],[-14,-64],[0,-54],[-20,-15],[-7,-47],[-47,-30],[2,-47],[-80,49],[12,-95],[34,-16],[-16,-52],[-41,-76],[26,-10],[-21,-75],[-94,65],[-28,-37],[88,-79],[-30,-38],[-40,5],[-50,68],[-97,3],[-56,-28],[-75,15],[-80,-68],[-64,-37],[4,-30],[63,7],[120,77],[46,-22],[58,24],[46,-6],[4,-38],[-21,-23],[-82,2],[-71,-44],[-41,-40],[-48,-72]],[[38942,25489],[0,22],[-113,0]],[[38829,25511],[0,233],[9,77],[340,0],[0,852],[13,0],[0,697]],[[39191,27370],[917,0]],[[44336,23963],[40,-1],[84,-33],[15,-49],[-7,-53],[-24,-37],[-34,65],[-63,72],[-11,36]],[[44115,22988],[35,89],[18,72],[61,79],[93,104],[16,54],[45,4],[67,75],[0,32],[161,64],[32,-9],[-42,-44],[-89,-74],[-100,-105],[-50,-41],[-51,-88],[-42,-25],[-51,-60],[-48,-83],[-55,-44]],[[43496,24411],[20,79],[45,18],[-57,-97],[-8,0]],[[42755,24520],[90,12],[48,-21],[33,-62],[28,-18],[0,-40],[-65,-37],[-48,17],[-20,43],[-56,59],[-10,47]],[[42321,24608],[74,31],[78,-28],[41,4],[53,-31],[89,4],[8,-31],[-15,-48],[-33,-18],[-65,-6],[-46,19],[-30,43],[-146,46],[-8,15]],[[41905,24790],[21,39],[0,44],[39,58],[86,5],[79,26],[20,-17],[92,65],[71,23],[25,41],[30,-24],[26,55],[53,4],[11,16],[67,-6],[71,27],[38,-32],[-51,-66],[-102,-58],[-46,-34],[-39,-12],[-98,-57],[-81,-63],[-180,-71],[-107,7],[-25,30]],[[41401,24569],[24,15],[8,66],[29,36],[48,98],[41,56],[96,10],[31,-41],[59,5],[31,-15],[66,41],[55,-39],[-16,-53],[-4,-58],[32,-55],[45,24],[84,13],[136,33],[11,-51],[41,-4],[13,-128],[-84,8],[-57,-19],[-75,-69],[-30,23],[-84,-15],[-121,-66],[-65,-50],[-79,-86],[-80,-71],[-55,4],[-10,44],[-30,2],[-21,65],[57,59],[113,59],[6,31],[41,0],[14,70],[-58,-25],[-61,7],[-26,-56],[-26,-12],[-49,48],[-37,-11],[-13,43],[12,26],[-12,38]],[[41292,25739],[0,61],[40,71],[38,-40],[10,71],[60,-81],[-23,-31],[7,-41],[-17,-28],[-84,-16],[-31,34]],[[40641,25896],[79,32],[5,25],[42,30],[79,-31],[116,1],[-19,-69],[-59,-50],[-69,14],[-17,36],[-33,-19],[-27,17],[-60,0],[-37,14]],[[40523,25426],[73,35],[9,-32],[-28,-49],[-54,46]],[[40468,25904],[50,-10],[-14,-34],[-36,44]],[[40441,25502],[90,6],[3,-39],[-85,14],[-8,19]],[[40416,25301],[51,17],[35,64],[33,10],[39,-99],[24,38],[49,-33],[-30,-68],[-28,-7],[-54,53],[-15,-43],[-47,-30],[-8,25],[34,58],[-66,-14],[-17,29]],[[40416,24236],[46,21],[44,61],[47,38],[15,-27],[52,34],[5,-75],[-26,-29],[-63,-30],[-86,-74],[-34,81]],[[39871,22972],[37,26],[3,53],[-19,58],[33,67],[32,26],[102,6],[33,39],[-52,0],[-22,54],[11,32],[57,37],[27,55],[70,-2],[23,36],[-23,36],[-1,42],[91,45],[53,52],[23,50],[153,115],[39,48],[7,35],[32,40],[0,53],[39,26],[36,55],[18,48],[-13,42],[128,41],[-2,75],[14,33],[-34,18],[15,54],[55,3],[-1,32],[-52,22],[6,55],[62,33],[10,28],[75,22],[10,-41],[-67,-65],[87,-1],[90,14],[-17,-58],[-90,-84],[-31,-60],[23,-15],[72,45],[41,51],[36,0],[29,29],[45,-9],[1,-42],[-39,-55],[-24,-59],[-146,-129],[-5,-19],[-63,-35],[-84,-78],[-60,-86],[-24,-46],[-49,-53],[-69,-100],[-32,-111],[17,-26],[-14,-54],[35,-34],[-26,-22],[-61,36],[-96,-73],[-4,-53],[17,-29],[54,-14],[-9,-63],[11,-24],[-34,-39],[-76,-45],[-58,34],[-55,-4],[-48,-56],[-8,-40],[-50,-25],[-55,-11],[-77,-44],[-38,-40],[-56,-17],[-41,20],[-27,40]],[[39820,24217],[40,30],[10,67],[18,29],[111,10],[41,13],[30,36],[39,15],[-22,43],[-60,-48],[-48,-24],[-60,3],[-16,58],[39,17],[-11,50],[32,38],[47,183],[34,45],[0,37],[33,1],[-21,-79],[68,-4],[13,170],[37,10],[30,-43],[29,33],[-29,93],[34,-3],[27,36],[89,42],[3,-50],[-34,-29],[-10,-68],[-22,-39],[-49,-33],[21,-69],[-31,-44],[41,-33],[5,-28],[-49,-40],[-49,-8],[-8,-22],[25,-38],[61,16],[11,-63],[-30,-49],[-1,-31],[-31,-18],[4,-39],[-39,-46],[-10,-32],[-32,-23],[5,-39],[-29,-18],[14,-53],[47,18],[-27,-104],[-28,-23],[-25,-108],[-36,14],[-16,64],[-23,-16],[-31,33],[39,81],[-181,20],[6,39],[-25,20]],[[39754,25487],[39,11],[22,-68],[23,-6],[-29,104],[34,17],[22,-23],[40,-6],[73,-115],[-26,-57],[-81,24],[-7,-65],[-46,48],[-4,34],[-34,1],[5,66],[-31,35]],[[39722,23978],[29,60],[24,-48],[-35,-50],[-18,38]],[[39708,23410],[64,109],[25,9],[10,36],[49,36],[10,55],[67,76],[38,26],[46,-51],[-66,-174],[-65,-70],[-145,-83],[-33,31]],[[39583,24384],[9,43],[70,36],[-8,34],[57,58],[39,-10],[18,32],[29,-37],[-5,-59],[-33,-92],[-7,-92],[-69,-19],[-65,19],[-30,37],[-5,50]],[[39586,23540],[29,15],[18,128],[24,35],[26,73],[42,24],[4,28],[60,24],[-7,25],[25,40],[22,-49],[67,14],[25,-40],[1,-34],[-122,-116],[-5,-37],[-52,-5],[-21,-38],[-25,0],[-71,-120],[-40,33]],[[39462,23380],[45,1],[22,58],[-9,31],[77,15],[32,-30],[70,106],[67,88],[23,-29],[-24,-30],[-33,-73],[-70,-92],[-71,-47],[-97,-16],[-32,18]],[[38942,25331],[69,85],[41,110],[39,24],[21,45],[23,12],[72,-44],[12,41],[56,31],[44,-34],[-19,-24],[12,-65],[-39,-35],[13,-96],[-34,-61],[-45,-27],[50,-43],[62,80],[15,67],[64,88],[39,92],[41,14],[116,-15],[39,-24],[16,-30],[18,-203],[-53,-62],[-7,-39],[-68,-35],[-71,-60],[-27,-8],[-15,-40],[-74,-103],[-93,37],[-12,29],[-40,34],[-38,9],[-59,-23],[-74,-66],[-65,-70],[-29,-45]],[[38942,24877],[0,454]],[[38942,25405],[4,33],[37,8],[-41,-76]],[[38942,25370],[0,35]],[[38924,23334],[35,8],[74,39],[-1,331],[19,0],[0,172],[11,0],[-1,775],[-128,0],[0,111]],[[38933,24770],[34,9],[28,46],[43,40],[25,43],[33,7],[113,93],[24,-37],[-12,-41],[70,8],[11,-44],[33,4],[22,-31],[-36,-29],[33,-21],[38,27],[51,2],[4,-62],[-26,-82],[50,38],[11,45],[-1,62],[-15,13],[-1,76],[56,64],[27,-17],[4,-93],[19,1],[-6,107],[8,59],[20,50],[34,-5],[7,37],[42,5],[27,-74],[32,-22],[-54,-39],[15,-50],[46,52],[28,-24],[-5,-55],[43,6],[21,-51],[-28,-68],[-32,-35],[37,-30],[32,33],[25,-68],[-29,-45],[-36,-10],[-59,-68],[-61,-6],[-10,-39],[-82,19],[38,-60],[-14,-32],[-43,-27],[-69,12],[19,-103],[-122,-117],[-32,4],[-16,38],[-45,25],[-51,-47],[47,-17],[41,-88],[-29,-60],[19,-31],[28,62],[17,0],[55,85],[86,27],[31,-26],[-8,-29],[-53,-10],[57,-88],[-18,-76],[22,-25],[24,104],[13,8],[7,80],[80,-59],[-35,-55],[-30,-86],[32,-22],[-11,-44],[40,2],[13,88],[-3,56],[41,26],[15,-35],[-50,-148],[-29,-42],[20,-18],[-30,-75],[-44,-72],[5,-29],[-41,-49],[-70,-36],[-62,12],[-51,23],[152,23],[-74,25],[-54,0],[15,43],[42,12],[65,-1],[6,43],[-40,-6],[-87,43],[5,45],[-17,19],[17,44],[-1,60],[-32,25],[-41,-3],[-15,-40],[17,-35],[-30,-20],[-23,-74],[28,-36],[-17,-69],[-23,-11],[1,-50],[-16,-31],[-43,-15],[58,-36],[-15,-50],[11,-20],[-29,-51],[-6,-44],[-55,15],[-3,47],[-22,20],[-6,60],[-20,3],[-38,76],[-6,-164],[-20,-54],[-71,-76],[-69,1]],[[36466,22021],[-83,-41],[-42,40],[-23,-4],[-34,-15],[-9,-57],[-32,-74],[-43,-37],[-51,-11],[-13,-55],[-29,-53],[-35,-1],[-27,-25],[39,-49],[15,-59],[-70,-89],[-46,8],[-42,-22],[-20,27],[33,51],[0,35],[-33,-2],[-4,44],[-24,19],[-52,-63],[-44,31],[-52,10],[-67,55],[-59,-32],[87,-39],[48,-43],[65,-23],[3,-67],[-27,-38],[-56,-35],[-69,41],[-39,-42],[-18,66],[-51,-46],[-50,35],[-45,58],[-71,23],[-101,-75],[23,-31],[-34,-47],[-67,23],[-18,-31],[-50,-10],[66,-43],[-22,-30],[-27,8],[-110,-4],[-32,-21],[-32,15],[-19,43],[10,61],[-12,62],[-44,-37],[-79,3],[-71,49],[42,57],[-56,12],[-38,-18],[-25,16],[0,70],[-17,88],[31,27],[6,60],[49,37],[62,5],[52,-19],[25,-34],[43,-5],[-24,49],[-85,37],[-29,32],[-11,50],[23,56],[91,35],[46,32],[47,-4],[-9,-47],[66,-90],[13,15],[-36,51],[-15,57],[24,80],[50,14],[16,24],[104,-43],[68,11],[17,28],[75,-46],[-36,79],[0,20],[40,62],[1,43],[70,2],[46,65],[62,34],[28,-21],[28,64],[55,-11],[72,6],[-38,39],[-22,87],[63,38],[60,52],[-7,62],[45,47],[12,36],[30,32],[37,17],[0,36],[50,17],[10,25],[-26,56],[-61,-4],[-66,-24],[-88,-75],[-54,-65],[-57,-47],[-121,-88],[-47,-7],[-61,-29],[-21,-46],[-64,-54],[-192,42],[-49,29],[-158,130],[-25,27],[-42,79],[-20,66],[49,112],[33,115],[10,67],[50,79],[25,84],[30,179],[19,61],[37,37],[73,132],[126,133],[123,182],[34,98],[17,128],[3,175],[16,28],[90,53],[12,113],[8,209],[16,98],[-44,33],[-43,70],[-19,124],[-14,53],[-56,121],[-4,59],[58,40],[81,19],[38,23],[12,57],[54,20],[140,10],[57,10],[50,24],[17,35],[148,120],[39,46],[51,36],[93,98],[51,36],[44,63],[63,24],[150,100],[87,39],[60,51],[25,3],[45,-40],[28,-76],[39,-80],[61,-81],[61,-92],[69,1],[62,-43],[33,14],[55,-19],[2,-51],[40,15],[1,62],[51,13],[54,89],[4,22],[64,74],[110,2],[125,-62],[30,-57],[43,3],[59,28],[53,-30],[69,-17],[51,-42],[24,17],[32,-28],[45,-10],[115,2],[35,-18],[82,-4],[24,-24],[38,1],[55,-34],[56,-53]],[[38460,25814],[-4,-70],[0,-233],[373,0]],[[38942,25489],[-21,-23],[-14,-81],[35,20]],[[38942,25370],[0,-39]],[[38942,24877],[-13,-30],[-62,-69],[35,-52],[31,44]],[[38924,23334],[-1,52],[-45,-4],[-50,48],[-70,-11],[-25,-57],[-50,-19],[-51,58],[-24,67],[-52,5],[-42,-51],[-33,-14],[-12,41],[-28,10],[-22,-33],[-74,25],[3,47],[75,112],[23,14],[8,42],[-32,29],[-41,-30],[-35,2],[-22,-38],[-32,-6],[-19,-69],[-57,-97],[-1,-51],[-18,-51],[-41,-45],[22,-41],[-30,-47],[-21,9],[8,56],[-17,40],[9,65],[-1,74],[-35,6],[11,106],[-23,-13],[-14,190],[-32,41],[9,59],[-11,16],[-76,-15],[-20,-51],[13,-77],[-12,-92],[69,-102],[-51,-45],[-21,-96],[-22,-66],[-25,34],[-30,0],[-35,-23],[-42,-59],[16,-60],[-32,-1],[-15,-88],[-31,-32],[-11,-47],[37,-22],[13,-72],[49,-50],[7,-48],[-39,-37],[-11,44],[6,38],[-42,10],[-21,97],[-27,-19],[-22,23],[31,82],[-36,8],[8,51],[58,57],[-53,15],[-10,124],[-29,62],[-44,11],[-26,-31],[28,-113],[-3,-59],[-38,-41],[14,-96],[-82,63],[-57,-15],[44,-34],[32,-75],[35,-25],[-30,-37],[26,-22],[-23,-27],[37,-24],[-6,-35],[18,-51],[-3,-78],[-18,-10],[24,-66],[-24,-20],[-40,-2],[17,58],[-29,3],[13,45],[37,18],[-98,65],[-5,30],[-52,3],[-10,51],[-29,31],[-59,-2],[-25,13],[-35,49],[-55,-1],[-31,-14],[15,-31],[116,-65],[20,-32],[-16,-61],[37,16],[26,-18],[2,-68],[-17,-59],[-23,-20],[-51,-11],[-7,-41],[-39,-73],[-30,45],[7,46],[-47,41],[-19,-88],[-3,-54],[-18,-24],[-33,55],[-18,-37],[47,-54],[42,-23],[-41,-32],[-55,-21],[-61,52],[14,-76],[27,-35],[-76,-33],[-31,2],[29,-77],[-26,-37],[-74,-7],[0,-77],[11,-57],[-49,7],[2,-48],[-55,7],[11,-40],[-35,-43],[-37,22],[25,72],[32,48],[32,22],[16,32],[-67,-2],[18,41],[52,-9],[13,32],[-30,19],[33,41],[-40,23],[57,92],[-2,37],[44,46],[-35,30],[69,99],[-27,32],[38,53],[11,83],[27,36],[10,43],[-16,52],[-64,-132],[-4,-33],[-32,-61],[-16,-78],[-46,-74],[-33,-86],[-34,-22],[-28,-120],[-26,-48],[-16,-58],[-26,-40],[-48,15],[1,44],[42,14],[-14,29],[-32,-7],[-40,25],[6,35],[-25,34],[35,39],[45,83],[-1,61],[-35,-14],[-49,-42],[-25,-80],[-28,-26],[-23,23],[-38,-17],[66,-61],[5,-32],[36,-36],[-1,-65],[-80,1],[-2,-20],[67,-19],[15,-23],[-19,-37]],[[36237,21719],[7,57],[27,-9],[14,69],[33,18],[10,41],[-6,50],[15,40],[74,-29],[34,-36],[-14,-25],[17,-48],[-11,-41],[-30,-11],[-24,-36],[-2,-34],[-24,-45],[-51,-42],[-11,60],[-27,-21],[-32,11],[1,31]],[[35274,21259],[36,0],[64,-38],[24,-42],[-13,-27],[-42,17],[-26,32],[-37,14],[-6,44]],[[35023,21175],[27,37],[83,-52],[-29,-40],[-66,15],[-15,40]],[[34822,21282],[75,59],[29,-1],[14,-36],[-23,-79],[-39,26],[-48,5],[-8,26]],[[34562,24469],[12,49],[50,0],[34,24],[6,54],[-17,25],[49,31],[20,54],[11,79],[-16,38],[27,67],[29,37],[89,-55],[25,-24],[-75,-58],[9,-48],[-14,-19],[-60,-29],[-45,-91],[31,-63],[-40,-32],[-112,-50],[-13,11]],[[33854,23989],[24,41],[50,-21],[28,-81],[13,-69],[-5,-45],[-44,36],[-56,97],[-10,42]],[[33006,20475],[52,29],[15,-27]],[[32660,21871],[18,42],[80,3],[43,35],[59,23],[37,-9],[14,-47],[40,-51],[9,-46],[-29,-51],[-71,-28],[-120,-19],[-50,39],[12,61],[-42,48]],[[32832,25976],[0,697],[-57,0],[0,697],[621,0]],[[33396,27370],[1121,0],[766,0],[242,0],[0,-464],[458,0],[0,-169]],[[35983,26737],[-78,-52],[-46,-70],[-11,-37],[-75,-173],[-34,-52],[-118,-20],[-66,-21],[-41,-54],[-27,-5],[-78,11],[-82,-4],[-61,-47],[-49,-50],[-62,-48],[-24,-43],[-66,-65],[-27,-4],[-10,-42],[-62,-64],[-38,-59],[2,-47],[29,-83],[31,-52],[58,-146],[-13,-59],[-43,9],[-16,26],[-109,32],[-88,-47],[-106,-94],[-51,-59],[-49,-90],[-28,-89],[-46,-42],[-47,-4],[-112,-99],[-62,-88],[-29,-91],[2,-81],[28,-70],[44,-22],[42,-44],[-83,-65],[0,-18],[-85,-27],[-20,-62],[-7,-67],[-30,-43],[-66,-19],[-41,-30],[-47,-58],[-14,-48],[-23,-16],[-56,-5],[-41,22],[-22,32],[-36,-17],[-42,18],[-37,-46],[-48,4],[-125,42],[39,-63],[65,-52],[50,-12],[39,-54],[72,-51],[-12,-41],[37,-51],[77,-53],[32,-62],[-5,-77],[-31,-56],[1,-32],[-91,-117],[-14,-26],[-14,-103],[-19,-34],[-107,-46],[-21,-48],[-74,-8],[-28,22],[-67,-20],[-25,21],[-49,8],[-47,-8],[-46,-29],[-91,-34],[-21,14],[-47,-33],[-50,-67],[52,-6],[60,-45],[49,18],[25,49],[37,-7],[50,9],[24,-15],[14,-49],[-9,-76],[-61,-203],[-60,-61],[-69,-30],[-11,-44],[-82,-55],[-52,11],[-26,82],[-49,-17],[19,-35],[3,-52],[-50,-25],[-58,44],[-39,-3],[-6,36],[43,36],[-1,39],[21,56],[-11,41],[53,32],[-25,26],[-28,-11],[-68,114],[-36,-29],[25,-126],[-1,-51],[-22,-54],[-7,-70],[-33,-39],[-48,-11],[-39,-27],[-8,37],[-40,45],[-12,72],[-27,-33],[3,-62],[-33,-13],[-60,-1],[-1,-39],[27,-10],[74,24],[26,-51],[51,-15],[4,-45],[-34,-94],[-11,-8],[-74,11],[-56,-15],[-33,4],[-60,-33],[-9,-38],[21,-37],[31,-14],[39,-111],[-48,-41],[17,-37],[-44,-10],[-78,-36],[-58,16],[-44,-18],[-61,-89],[-41,8],[-54,-27],[-26,33],[-39,-42],[-34,-19],[-46,0],[54,-61],[63,25],[75,-11],[-39,-48],[-74,-40],[-44,-37],[-30,-89],[-6,-97],[12,-101],[-25,13],[-41,-26],[17,-33],[-38,-29],[-37,4],[-15,-37],[-33,-37],[5,-36],[78,-5],[32,-14],[8,-52],[-37,-22],[18,-47],[-22,-37],[45,-90],[30,-18],[28,27],[72,109],[57,4],[89,-17],[39,-20],[83,-16],[54,50],[30,16],[34,-8],[14,-27],[59,27],[72,-126],[49,-61],[71,-51],[41,-10],[45,43],[56,-70],[46,0],[8,-60],[47,-68],[43,0],[-4,-46],[14,-67],[-24,-45],[34,-31]],[[31728,19932],[-430,0],[0,233],[-67,0],[-1,930],[-68,0],[0,465],[430,0],[0,464],[369,0],[0,233],[217,0],[0,465],[217,0],[0,232],[161,0],[0,930],[165,0],[-1,930],[168,0],[0,929],[-56,0],[0,233]],[[38039,23288],[37,15],[-30,40],[35,57],[14,-33],[-13,-72],[-43,-7]],[[37978,23146],[18,48],[41,-29],[-59,-19]],[[37423,22677],[50,-56],[35,-63],[19,-65],[-89,128],[-15,56]],[[36665,21859],[18,18],[64,11],[7,-27],[-19,-80],[-43,23],[32,49],[-59,6]],[[61514,11118],[15,36],[30,8],[24,-112],[-40,-67],[-22,78],[-7,57]],[[61180,10336],[1,33],[22,16],[20,53],[28,-12],[18,-57],[-23,-42],[7,-45],[-11,-30],[-55,50],[-7,34]],[[61125,10170],[12,35],[40,-2],[-7,-34],[-45,1]],[[60907,10849],[65,-33],[13,-37],[-37,-3],[-41,73]],[[60856,9961],[40,91],[64,-14],[19,33],[43,2],[43,49],[39,-11],[77,34],[12,-30],[-25,-44],[28,-72],[-17,-41],[60,-29],[9,-22],[-46,-59],[6,-27],[-42,-15],[-9,-44],[-47,3],[-26,25],[-30,-41],[-58,37],[-13,54],[-55,38],[-72,83]],[[60804,10143],[53,-31],[-4,-66],[-22,18],[-27,79]],[[60704,9996],[29,24],[8,37],[70,-41],[-47,-24],[-23,-42],[-37,46]],[[60577,12434],[36,50],[-1,40],[27,41],[38,19],[62,-101],[1,-60],[-72,15],[-91,-4]],[[60406,11545],[40,14],[11,27],[73,7],[-5,-75],[-35,-38],[-66,-24],[4,49],[-22,40]],[[59961,11836],[21,1],[42,41],[38,7],[37,23],[3,98],[39,37],[32,-43],[31,-21],[30,3],[29,33],[-27,67],[13,30],[-6,45],[23,26],[28,59],[4,35],[-47,83],[-49,69],[4,40],[63,39],[1,63],[27,20],[52,14],[30,76],[-43,81],[32,51],[7,67],[20,36],[44,0],[-10,45],[80,9],[48,21],[28,-31],[36,2],[24,37],[-29,73],[42,24],[19,-33],[49,-26],[22,-43],[72,-33],[-2,-48],[73,-33],[74,9],[43,-35],[20,12],[-28,94],[21,45],[-39,39],[-51,122],[3,27],[57,0],[46,49],[26,62],[48,28],[18,34],[40,7],[17,-92],[38,32],[77,9],[32,33],[24,-14],[56,84],[2,28],[57,35],[23,66],[-26,-3],[-24,31],[-3,39],[26,47],[-44,33],[-54,16],[-23,63],[13,50],[21,11],[11,43],[-11,23]],[[61381,13907],[390,-105],[203,-268],[106,-52],[92,-12],[54,-272],[97,-35],[132,-86]],[[62455,13077],[-46,-46],[-12,-62],[24,-54],[28,-21],[1,-31],[36,-49],[-51,-36],[-42,32],[-38,-43],[6,-32],[-41,-2],[-40,-30],[-6,-37],[50,-62],[21,-43],[27,14],[29,-60],[-12,-53],[77,-136],[35,-16],[23,-58],[52,-58]],[[62576,12194],[5,-140],[46,-86],[-20,-274],[48,-222],[62,-124],[26,-306],[57,-100],[3,-50],[-164,-239],[-56,-134],[-8,-49],[-36,-89],[-9,-76],[-109,-239],[-91,-148],[-100,-122],[-47,-66],[-139,-151],[-77,-26],[-39,-52],[40,-64],[-32,-41],[-83,34],[-26,32],[-14,71],[15,87],[-36,7],[-28,34],[-5,-96],[-29,-35],[-55,-28],[-42,36],[-57,64],[-17,76],[13,54],[-17,15],[-7,127],[-24,51],[10,31],[26,0],[1,39],[-26,37],[-16,51],[-45,52],[12,103],[17,16],[3,64],[101,44],[51,39],[16,44],[40,3],[5,-58],[37,-58],[94,56],[18,81],[-35,19],[-10,-80],[-41,-23],[-28,27],[-5,47],[-21,66],[-26,-31],[-46,-20],[-33,-59],[-35,-21],[-88,-30],[-42,21],[-10,41],[-48,42],[-3,54],[-17,52],[-5,79],[78,85],[29,46],[27,19],[39,67],[5,40],[36,33],[52,-19],[43,24],[-27,30],[-7,92],[-9,37],[10,60],[-8,46],[-27,-1],[-21,120],[26,56],[35,97],[-9,52],[19,54],[-12,42],[-9,105],[-30,239],[12,47],[-93,216],[24,26],[-6,25],[-45,-16],[-19,22],[-67,152],[-46,87],[-19,13],[-43,75],[-49,52],[-44,113],[42,43],[33,16],[70,66],[-7,56],[-30,-6],[-32,-49],[-25,-9],[-70,-74],[-104,-39],[-41,-61],[13,-31],[63,40],[37,-1],[22,-57],[42,-60],[46,-49],[16,-35],[103,-175],[40,-128],[-12,-27],[69,-132],[33,-49],[2,-67],[31,-80],[-5,-29],[14,-55],[-20,-39],[-5,-43],[33,-8],[5,-32],[-23,-54],[-46,33],[-6,-86],[9,-42],[-3,-79],[-14,-44],[7,-27],[24,-182],[-27,-43],[-22,71],[-35,-15],[11,-75],[-9,-89],[-22,-33],[3,-58],[-12,-28],[-6,-90],[-50,-43],[-21,-58],[-19,2],[-32,-70],[-58,-20],[-80,50],[-7,36],[-48,48],[89,127],[32,102],[5,50],[20,41],[-4,87],[-30,12],[-91,-40],[8,-61],[43,-71],[-23,-43],[-15,-72],[-20,-33],[-43,-16],[-29,-31],[-30,15],[-32,-7],[-73,41],[-25,47],[34,69],[81,49],[-49,20],[-45,-27],[-23,-27],[-28,20],[-38,-107],[-79,54],[-53,64],[-38,26],[-27,-8],[91,-136],[-38,-23],[-28,44],[-31,7],[7,-57],[21,-64],[-15,-11],[-9,-83],[-47,17],[-27,-29],[48,-69],[-15,-62],[-24,-38],[22,-44],[-29,-30],[-24,0],[-35,64],[-22,64],[-29,54],[7,16],[-18,78],[-7,103],[-19,42],[-12,87],[20,90],[-32,59],[2,22],[41,24],[-11,83],[26,3],[98,-108],[28,26],[-51,79],[-70,68],[0,53],[18,18],[49,14],[76,104],[41,124],[-17,14],[33,44],[32,-13],[9,61],[-74,26],[-30,57],[26,140],[-5,53],[-34,56],[10,46],[70,71],[33,1],[32,-22],[49,48],[44,-17],[65,48],[-51,33],[-20,-36],[-39,8],[-60,-30],[-58,41],[-36,-24],[-11,125],[67,9],[31,-9],[125,-4],[35,16],[-67,30],[5,40],[-53,89],[10,28],[28,7],[-6,43],[-38,-21],[-16,49],[-80,-57],[-101,-108],[-49,13],[-154,-51],[34,-52],[64,0],[53,-24],[39,-31],[1,-81],[-26,-67],[-15,-3],[-21,-112],[-11,-21],[-54,10],[61,-142],[-39,-37],[-9,-62],[-21,4],[-24,-49],[-27,-11],[-65,62],[5,-81],[31,-34],[-5,-115],[5,-36],[-28,-11],[-8,-74],[-20,-11],[-56,46],[-27,48],[-96,41],[-38,35],[-18,46],[-27,21],[-15,49],[-3,75]],[[33398,30860],[199,-4],[1211,0],[0,193],[992,471],[1093,519],[939,446],[646,0],[647,0],[623,0],[0,387],[1150,0],[160,5]],[[39191,27370],[-917,0],[0,78],[-77,0],[0,77],[-152,0],[-92,-43]],[[37953,27482],[-61,1],[-56,35],[-9,33],[-74,-7],[-15,10],[-56,-21],[-48,-40],[-97,-67],[-26,-62],[-52,-74],[-63,-17],[-19,-19],[-12,-67],[-25,-48],[-9,-56],[9,-41],[-12,-52],[5,-45],[-88,-81],[-114,43],[-74,12],[-92,4],[-105,-5],[-130,-31],[-102,-4],[-34,18],[-41,45],[-31,72],[-41,-7],[-16,-33],[-31,-5],[-45,42],[-45,-88],[-79,-50],[-105,-46],[-61,-41],[-64,-8],[-52,-45]],[[33396,27370],[0,1048],[0,1276]],[[38460,25814],[33,24],[-29,32],[-19,45],[-63,79],[-45,15],[-85,69],[-36,-12],[-108,-15],[-68,-22],[-22,54],[-39,15],[-107,84],[-149,6],[-35,36],[-70,20],[-62,34],[-47,46],[-33,62],[-60,75],[-63,32],[-41,33],[-46,57],[-123,49],[-1,40],[47,45],[5,44],[53,-1],[72,22],[33,39],[30,101],[27,30],[58,121],[47,32],[43,2],[31,24],[5,63],[-10,32],[66,44],[36,-4],[84,55],[42,-3],[47,49],[39,20],[68,59],[-12,36]],[[36862,26568],[54,28],[22,82],[72,21],[1,-58],[-36,-42],[-53,-42],[-60,11]],[[40720,50935],[52,50],[40,-29],[-92,-21]],[[30434,45000],[0,94],[-1173,0],[0,232],[-1172,0],[0,232],[-1227,0],[-775,0],[-1240,0],[0,232],[-595,0],[0,-232],[-1191,0],[0,232],[-595,0],[0,-232],[-595,0],[0,232],[-892,0],[0,-232],[-1042,0],[-1228,0],[0,-464],[-1119,-1]],[[17590,45093],[-127,58],[-237,82],[-170,34],[-100,28],[-119,70],[-21,20],[-31,80],[-49,74],[-117,111],[-129,83],[-79,39],[-142,57],[-227,67],[-130,23],[-108,4],[-43,21],[246,88],[129,39],[182,72],[46,34],[37,68],[-6,55],[21,54],[-11,28],[84,120],[14,62],[-13,34],[23,132],[-19,17],[45,106],[-8,59],[17,209],[-46,228],[14,15],[210,-26],[490,-49],[130,-6],[47,7],[194,7],[116,11],[319,49],[215,38],[201,26],[129,36],[160,0],[153,16],[194,34],[95,37],[80,52],[132,48],[73,35],[114,103],[183,103],[160,142],[63,77],[51,86],[146,141],[112,131],[52,79],[64,147],[36,117],[-1,176],[5,125],[-9,197],[11,89],[45,103],[21,88],[85,246],[63,88],[167,174],[190,211],[116,161],[37,67],[68,68],[61,99],[181,187],[78,53],[210,125],[76,52],[143,78],[73,55],[326,-63],[228,-29],[201,5],[175,56],[123,28],[360,152],[298,167],[275,195],[149,120],[139,148],[69,43],[196,176],[119,80],[88,73],[103,98],[131,59],[430,142],[-3,-14],[-133,-38],[6,-17],[143,9],[32,27],[76,-108],[-95,0],[-125,-15],[-74,-19],[-1,-63],[30,-13],[29,-49],[52,45],[77,-40],[98,-3],[63,17],[103,-1],[33,11],[19,47],[-30,18],[-116,28],[0,35],[148,-53],[99,-14],[261,-16],[96,12],[32,16],[71,-7],[76,35],[68,-20],[46,42],[190,8],[171,22],[64,14],[190,60],[144,60],[68,36],[272,159],[104,76],[172,148],[93,99],[145,184],[44,44],[132,155],[195,201],[209,137],[99,39],[8,-98],[37,-54],[88,-26],[29,12],[55,-61],[38,-16],[96,8],[143,-28],[36,-22],[95,-19],[-14,-45],[77,-54],[-49,-92],[70,14],[75,36],[16,67],[27,-5],[40,-62],[108,19],[77,-2],[48,-38],[73,5],[105,-48],[-3,-70],[70,-108],[4,-37],[-41,-58],[-46,-16],[-22,-38],[-46,3],[-38,-55],[-63,-32],[-23,-71],[-76,0],[-20,-41],[-73,7],[-163,-13],[-12,-43],[36,-106],[61,-141],[-14,-56],[74,-19],[88,12],[48,-11],[84,13],[51,26],[21,-45],[52,-9],[41,54],[110,32],[10,67],[-11,75],[-28,91],[56,5],[118,99],[11,35],[143,56],[58,-97],[52,9],[17,57],[-33,73],[-73,70],[-23,49],[50,39],[85,43],[41,-88],[57,-9],[10,92],[-14,77],[-23,35],[30,18],[200,-98],[201,-124],[170,-132],[75,-83],[-52,-47],[-12,-76],[3,-112],[15,-122],[23,-67],[124,-22],[104,18],[76,0],[117,-38],[43,-61],[-34,-42],[84,-25],[57,13],[78,44],[97,76],[75,120],[-3,37],[81,17],[160,16],[264,-14],[101,4],[81,16],[195,73],[69,6],[201,-26],[48,-43],[101,-13],[73,-105],[67,-8],[44,90],[144,-10],[110,9],[115,-42],[118,-22],[46,-31],[173,-51],[38,-35],[4,-36],[-80,-16],[-60,-39],[-98,-174],[-59,-59],[-66,-6],[19,-147],[51,-69],[97,-36],[38,16],[174,-47],[71,15],[62,-16],[13,-54],[-89,17],[-96,32],[-51,-32],[-47,11],[-156,-6],[-131,24],[-59,-47],[53,-67],[80,13],[27,23],[115,-4],[45,-15],[111,-16],[36,24],[91,8],[90,-17],[31,42],[59,11],[80,-28],[39,8],[87,-27],[126,24],[-12,-38],[-85,-102],[26,-47],[-66,-3],[-110,-27],[-46,-46],[15,-31],[83,-43],[35,11],[108,3],[75,-13],[106,7],[64,15],[89,-33],[203,-48],[59,-22],[65,-76],[128,14],[16,37],[61,29],[50,69],[123,85],[60,3],[62,-24],[88,30],[56,-5],[56,-36],[42,41],[5,39],[182,15],[29,-32],[105,-31],[49,-57],[-14,-27],[33,-52],[70,17],[148,53],[103,-16],[82,47],[232,172],[47,-44],[62,-21],[79,49],[85,0],[88,-24],[66,13],[79,42],[60,-68],[42,-10],[68,38],[68,-35],[57,4],[102,-18],[29,-29],[94,-23],[129,-107],[75,11],[79,-25],[6,-27],[60,-17],[88,26],[18,-16],[72,0],[28,-35],[46,19],[50,-54],[28,1],[65,-50],[21,-61],[-31,-49],[3,-33],[107,-16],[57,1],[100,61],[59,14],[3,-75],[60,-10],[64,70],[4,34],[106,-40],[33,-38],[108,-23],[47,-49],[102,-16],[35,-43],[-21,-40],[-63,-19],[100,-58],[39,9],[38,-30],[58,-13],[174,2],[192,-51],[53,2],[75,23],[59,-10],[7,-55],[44,-5],[33,-42],[235,1],[22,-8],[74,47],[47,0],[36,36],[104,-5],[48,-13],[87,0],[54,18],[50,-9],[72,22],[56,-14],[240,-9],[82,-36],[122,-11],[45,-42],[46,4],[87,-23],[32,15],[47,-29],[76,38],[22,43],[116,-96],[180,-113],[59,-13],[127,-53],[49,-66],[219,-58],[60,14],[-6,-41],[54,-32],[254,-50],[22,-34],[68,6],[95,53],[150,-37],[107,-5],[77,34],[156,151],[88,15],[119,-2],[53,48],[102,13],[41,37],[88,29],[63,3],[91,30],[55,54],[36,-1],[68,-33],[63,11],[4,36],[113,24],[71,-1],[33,30],[69,-1],[131,-52],[88,10],[131,67],[69,-45],[238,-108],[48,-32],[117,-37],[173,-64],[181,-93],[104,-78],[62,-32],[-15,-45],[164,-83],[-14,-38],[116,7],[205,-127],[136,-55],[98,-56],[98,-18],[172,-62],[154,-75],[60,-38],[162,-132],[-29,-10],[50,-56],[10,-50],[79,-71],[149,-6],[13,52],[51,90],[103,-26],[151,-73],[0,-965],[0,-1083],[0,-924],[-2,-106]],[[24137,28414],[59,-14],[19,67],[-76,16],[1,40],[-96,-26],[-97,13],[-51,19],[-40,30],[-42,62],[-33,91],[-9,52]],[[32832,25976],[-1043,0],[-319,0],[-1265,0],[-641,0]],[[29564,25976],[-1243,0],[-248,0],[0,232],[-453,0],[0,-232],[-227,0],[0,-233],[-227,0],[0,233],[-1245,0],[-114,0],[0,-233],[-94,0],[0,-232],[-224,0],[0,-233],[-224,0],[0,-407],[0,-57],[-88,0],[1,-233],[-222,0],[0,-465],[-222,0],[0,-232],[-81,0],[0,-465],[-220,0],[0,-465],[-295,0],[0,-465],[-217,0],[0,-465],[-73,0],[0,-232],[-215,0],[0,-233],[-215,0],[0,-465],[-67,0],[0,-232],[-213,0],[0,-428],[-3,-3]],[[23135,20431],[-39,-35]],[[23096,20396],[-384,1],[0,-232],[43,-1]],[[22755,20164],[-36,-44],[-19,-54],[-2,-67],[18,-42],[-146,-52],[-67,-37],[-40,-72],[-42,9],[-47,-16],[-58,-54],[-15,-51],[-60,-8],[-33,-18],[5,72],[-23,65],[-29,48],[-31,25],[-102,0],[-42,10],[-29,-25],[-33,23],[-119,-29],[-37,28],[-62,19],[-13,43],[47,9],[11,29],[120,5],[33,28],[35,-35],[32,-5],[0,-44],[72,13],[46,49],[18,53],[-35,38],[28,47],[51,34],[39,81],[26,105],[-4,71],[-34,136],[-5,130],[6,30],[-8,77],[-25,69],[-42,84],[25,58],[-73,47],[-87,137],[-44,78],[-40,117],[-55,196],[30,63],[50,134],[47,37],[2,72],[94,45],[22,72],[24,29],[33,-7],[20,76],[23,21],[56,2],[38,30],[14,52],[-53,88],[-37,77],[-55,75],[-21,55],[-49,81],[-11,51],[3,45],[-20,40],[12,35],[-60,96],[1,29],[-52,135],[-118,161],[-30,63],[-34,110],[8,72],[-21,39],[-30,9],[-37,55],[-48,108],[-18,84],[-43,6],[-18,68],[-62,65],[-49,101],[-16,51],[-100,14],[-50,-77],[-12,-46],[7,-156],[20,-108],[-42,-87],[-41,-43],[-111,-20],[-114,47],[-30,-19],[5,-43],[-32,-50],[-57,-43],[-94,-29],[-147,-100],[-62,-29],[-51,-37],[-138,-58],[-81,-16],[-66,-29],[-173,-40],[-153,-20],[-179,-15],[-151,1],[-179,33],[-27,15],[-85,21],[-110,58],[-36,53],[-32,98],[-29,72],[-11,50],[59,57],[33,-8],[40,19],[-4,50],[-35,25],[-72,84],[-146,78],[-28,-3],[-34,58],[-23,-6],[-54,102],[-83,137],[7,43],[-38,48],[-52,21],[-70,61],[-37,45],[-32,106],[-3,56],[-22,0],[-34,-39],[-43,0],[-112,22],[-66,31],[-68,47],[-99,91],[-106,129],[-38,59],[42,56],[55,11],[67,58],[19,68],[26,8],[8,51],[-15,31],[-115,12],[-22,-28],[-31,-4],[-25,-32],[-48,-16],[-46,-47],[-95,-10],[-43,28],[-94,20],[-19,58],[-18,6],[-15,56],[33,18],[13,41],[36,6],[76,-14],[54,39],[-5,36],[32,40],[50,-3],[30,33],[23,56],[65,13],[14,50],[33,40],[45,-5],[67,67],[8,40],[-53,51],[-28,60],[-2,52],[47,1],[43,17],[29,29],[69,41],[29,66],[-17,30],[-69,49],[-30,43],[-4,35],[24,57],[24,15],[-7,51],[-38,-2],[-28,-39],[-62,-60],[-63,1],[-67,27]],[[17906,26016],[163,114],[11,-42],[68,14],[67,37],[42,8],[71,33],[37,-20],[67,25],[51,-20],[76,6],[1,-73],[110,-30],[101,45],[50,-19],[27,59],[65,16],[48,-9],[21,29],[58,4],[26,53],[83,42],[11,140],[-56,-9],[-28,29],[16,74],[-37,30],[34,82],[57,4],[34,-32],[11,-38],[57,44],[-4,44],[80,89],[25,-3],[99,50],[9,32],[-13,69],[-71,36],[-14,61],[17,52],[-40,52],[30,131],[65,-18],[74,10],[69,-35],[47,30],[99,-47],[22,1],[45,-38],[90,9],[77,43],[5,25],[-28,46],[14,53],[81,21],[5,35],[-28,29],[49,36],[24,42],[-14,47],[41,11],[14,-55],[48,30],[82,-50],[158,-18],[43,22],[48,45],[49,15],[130,7],[57,9],[87,35],[119,118],[47,-16],[270,53],[48,-36],[-10,-105],[99,-13],[38,13],[52,38],[79,-22],[57,0],[121,-34],[91,-42],[54,-12],[163,15],[188,95],[53,32],[43,9],[82,-1],[79,29],[112,67],[157,31],[65,20],[190,31],[55,43],[72,102],[94,86],[108,75],[120,67],[117,35],[110,23],[175,107],[72,33],[69,18],[58,1],[71,-11]],[[18034,25786],[29,109],[89,-40],[57,-65],[-70,-35],[-68,-20],[-29,14],[-8,37]],[[14928,24113],[62,-33],[54,51],[92,39],[56,-35],[31,34],[72,-4],[55,-15],[33,24],[15,-26],[64,-28],[67,16],[60,5],[3,-48],[44,-6],[44,30],[25,-26],[40,54],[22,56],[-7,38],[-25,22],[20,41],[95,81],[31,-27],[14,43],[52,-2],[3,31],[66,-33],[22,-24],[28,38],[-15,81],[57,27],[50,61],[27,-3],[79,-38],[43,-44],[35,28],[52,21],[14,20],[132,34],[54,-37],[28,33],[-29,83],[27,4],[15,-42],[-1,-81],[30,-28],[-6,-23],[45,-49],[-9,-44],[95,-25],[98,16],[14,52],[41,11],[93,-50],[43,1],[12,-34],[105,-55],[-14,-31],[27,-33],[-25,-43],[-43,-14],[10,-50],[36,-10],[10,-70],[-35,-46],[-18,-51],[14,-25],[46,5],[-10,-42],[29,-62],[-5,-54],[-52,-73],[31,-34],[0,-59],[65,-43],[-25,-82],[59,-61],[33,38],[31,-20],[-33,-33],[-13,-46],[34,-42],[-21,-48],[-45,1],[-23,-25],[-41,-2],[-67,-23],[-17,32],[-39,2],[-61,-32],[-25,5],[-56,-52],[-94,9],[-66,-22],[-52,-30],[-88,-79],[-45,-14],[42,-53],[-2,-25],[39,-52],[-9,-36],[-81,-33],[-47,5],[-29,35],[-6,50],[-43,53],[-54,48],[-63,18],[-24,34],[-90,43],[-56,-9],[-37,-19],[-60,12],[-79,-1],[-79,85],[-59,24],[-45,6],[-36,51],[-66,63],[-85,68],[-61,24],[-21,22],[-63,17],[-38,26],[-75,-11],[-78,60],[-75,81],[-21,42],[-82,11],[-39,25],[12,49],[-21,102],[-67,116],[-20,48],[-48,39],[-13,26]],[[7771,24893],[30,122],[-1,37],[42,16],[45,45],[28,58],[48,-3],[2,-45],[-25,-70],[33,-71],[7,-43],[25,-46],[48,-50],[44,-30],[41,-56],[105,-76],[89,-51],[18,-19],[100,-38],[108,0],[21,26],[64,-21],[-2,-16],[55,-61],[105,-91],[50,-25],[-46,-42],[-51,-5],[-41,86],[-108,23],[-117,-3],[-46,-27],[-77,-22],[-41,49],[-126,71],[-51,78],[-34,29],[-72,83],[-56,49],[-46,69],[-66,13],[-41,31],[-49,5],[-12,21]],[[7697,25319],[37,94],[35,-1],[7,-135],[-38,-1],[-41,43]],[[56058,18639],[-7,11]],[[56051,18650],[7,-11]],[[55933,20905],[32,-17],[40,-122],[-8,-82],[-34,12],[-22,105],[-8,104]],[[55922,21803],[421,-1],[2,-10]],[[56345,21792],[90,-175],[331,-86],[28,-152],[145,-164],[105,1],[46,-113],[84,-136],[-33,-159],[110,-42]],[[57251,20766],[-17,-4],[-191,3],[-585,8],[-20,15],[-276,5]],[[56162,20793],[-4,67],[-34,84],[4,64],[-7,62],[-21,40],[-12,78],[-25,75],[-29,47],[-23,95],[-41,-10],[-13,38],[8,44],[-57,106],[8,33],[-3,88],[16,79],[-7,20]],[[55468,22821],[424,-988]],[[55892,21833],[-20,-128],[11,-45],[-17,-21],[-105,38],[-57,57],[-15,-39],[96,-72],[31,-15],[3,-39],[23,-49],[-17,-44],[63,-25],[36,-49],[39,-129],[-22,-21],[67,-147],[-32,11],[-64,49],[-18,125],[-33,81],[-44,44],[-9,31],[-52,50],[-65,35],[-26,30],[-57,-7],[53,-37],[26,-57],[79,-96],[18,-33],[3,-80],[34,-83],[48,-10],[34,-47],[-6,-57],[-22,-89],[28,-44],[-31,-28],[15,-75],[-15,-26],[34,-79],[3,-55],[61,-22],[-2,-50],[-17,-18],[70,-190],[16,-15],[39,-84],[3,-148],[57,-91],[17,-70],[50,-123],[9,-106],[-24,8],[-4,62],[-46,-33],[11,-62],[25,-24],[-1,-58],[17,-17],[41,-117],[-20,-19],[20,-64],[35,-68],[23,-168],[26,-65],[8,-121],[-68,-24],[14,-49],[-22,-30],[20,-82],[37,-95],[-13,-22],[-36,15],[-47,48],[-34,-14],[-79,73],[-59,-12],[-53,38],[-43,77],[-26,85],[-37,50],[-46,207],[-25,70],[2,65],[-27,79],[-26,48]],[[55755,19522],[71,39],[36,-25],[38,-7],[30,-31],[33,13],[13,42],[-24,44],[-35,19],[1,36],[-21,65],[-42,49],[24,35],[-35,74],[-38,10],[-48,56],[-51,2],[-27,113],[-34,2],[-69,36],[-21,22],[-32,-22],[-46,63],[-27,-30],[-32,53],[4,31],[28,18],[-2,65],[25,24],[0,69],[46,43],[-8,36],[56,13],[26,-12],[51,25],[63,61],[-32,47],[-35,-11],[-30,17],[-4,51],[54,55],[-1,55],[-44,49],[-45,27],[-9,26],[-68,81],[-33,101],[16,85],[-53,76],[-32,26],[-50,-8],[-70,59],[-36,55],[-90,2],[-52,18],[-28,-29],[-31,9],[2,44],[-85,32],[-15,-51],[-68,50],[-3,32],[-59,-16],[-34,38],[-61,14],[-68,1],[-4,40],[-54,-10],[-43,24],[-22,30],[-38,-13]],[[54483,21559],[-9,42],[34,24],[-11,248],[1,240],[133,-44],[86,40],[85,161],[-1,94],[-146,108],[206,108],[307,59],[300,182]],[[55200,21947],[91,-49],[3,27],[-85,40],[-9,-18]],[[24974,38360],[-265,0],[0,-233],[-1064,0],[-326,0],[-1163,0],[-1235,0],[-1262,0],[0,465],[-266,0],[0,464],[-358,0],[0,929],[-96,0],[0,929],[-98,0],[0,282]],[[18841,41196],[55,-2],[330,31],[179,5],[121,-3],[143,-17],[100,-29],[83,-48],[-57,-10],[-181,53],[-61,8],[-42,-26],[-75,10],[14,-32],[87,12],[69,-28],[56,-2],[3,-67],[24,-15],[2,-82],[-40,-98],[-114,-106],[-25,-73],[9,-59],[-6,-89],[-13,-37],[55,-40],[10,-70],[-14,-50],[-33,-19],[-82,-94],[-131,-19],[0,-64],[25,-19],[55,19],[9,-38],[84,46],[43,-131],[23,-48],[97,-116],[58,-28],[132,-30],[37,29],[66,2],[62,39],[95,-9],[115,15],[2,-22],[64,-29],[115,-10],[47,-12],[126,24],[71,25],[50,35],[37,1],[75,-23],[136,38],[26,-40],[67,-26],[11,-38],[65,-54],[143,25],[74,29],[37,-18],[23,-46],[49,-15],[127,33],[77,35],[95,67],[30,-34],[113,-7],[130,-77],[50,-43],[15,-34],[-34,-82],[85,-18],[64,19],[-58,69],[30,45],[-27,63],[174,186],[51,77],[38,104],[61,99],[21,67],[75,54],[100,-9],[85,6],[46,-103],[116,-29],[57,3],[113,56],[13,-107],[46,-29],[43,33],[-5,51],[25,14],[9,45],[-44,73],[-49,50],[-26,71],[-38,58],[-36,26],[-111,29],[-67,35],[-108,38],[-57,2],[-83,35],[-82,22],[-78,-7],[-64,8],[-66,-7],[-106,-62],[-75,-32],[-25,3],[-63,-29],[21,-32],[-25,-47],[51,-44],[0,-46],[39,-13],[11,-46],[-89,2],[3,118],[-50,31],[60,174],[25,103],[10,166],[-20,74],[-23,39],[-90,102],[-52,40],[-93,55],[-15,18],[-34,111],[-56,84],[-37,35],[-78,47],[-106,30],[-108,15],[-65,0],[-34,17],[4,36],[-23,87],[-60,103],[-46,51],[-28,49],[0,44],[28,65],[118,26],[22,94],[32,21],[28,-70],[57,-12],[79,45],[39,5],[103,-195],[89,-94],[51,-88],[65,-42],[67,-5],[5,-49],[-39,-111],[-41,-47],[9,-64],[-12,-37],[8,-55],[46,-28],[18,-36],[80,-94],[37,-87],[170,-135],[97,-60],[50,-14],[74,-70],[59,-29],[73,8],[138,52],[40,30],[66,15],[59,73],[-17,44],[-123,3],[-40,22],[-41,-22],[-39,6],[-36,51],[-34,13],[-18,36],[25,41],[-74,26],[-46,51],[-40,11],[-57,41],[-35,59],[-132,101],[-65,86],[50,117],[-20,42],[-3,68],[61,51],[45,86],[-14,85],[77,60],[21,72],[90,53],[46,-11],[47,-31],[109,6],[10,33],[-15,48],[-52,46],[-73,-12],[-46,71],[-95,6],[-31,-35],[-47,81],[-42,37],[-94,17],[-61,-23],[-69,-1],[-201,-50],[-55,-20],[-83,-50],[-163,-6],[-59,-25],[-121,-20],[-154,41],[0,21],[-50,27],[-54,62],[-44,-10],[-27,48],[-92,-34],[-20,17],[-118,-21],[0,-39],[157,-52],[-34,-22],[-141,78],[-119,41],[-93,15],[-122,35],[-122,22],[-199,56],[-159,24],[-96,21],[-76,45],[-28,33],[10,145],[-24,175],[-35,136],[-12,11],[-46,161],[-42,114],[-49,99],[-141,266],[-53,83],[-53,63],[-114,97],[-446,246],[-120,105],[-311,251],[-60,37],[-230,177],[-88,52],[-84,87],[-131,95],[-50,28]],[[60127,12903],[1,34],[45,136],[30,-48],[37,-141],[-6,-49],[-23,-14],[-8,-50],[-27,-21],[-24,25],[10,41],[-35,58],[0,29]],[[59606,14212],[1,54],[36,10],[12,-51],[-33,-34],[-16,21]],[[59599,14347],[40,70],[58,28],[-3,-58],[-63,-59],[-32,19]],[[59498,13854],[11,54],[22,39],[56,52],[113,-94],[-3,-36],[-41,-5],[-14,-43],[-47,-17],[-10,-34],[-36,-3],[-33,24],[-18,63]],[[59492,14240],[42,86],[16,-61],[-19,-70],[-16,-8],[-23,53]],[[59428,14176],[44,19],[15,-17],[-1,-55],[-54,19],[-4,34]],[[59381,14109],[29,22],[52,-39],[19,-37],[-18,-34],[-73,55],[-9,33]],[[59504,14737],[31,-5],[48,38],[31,8],[40,106],[73,12],[47,22],[54,42],[25,51],[7,75],[46,34],[4,51],[30,38],[71,31],[57,-34]],[[60068,15206],[-10,-45],[320,-181],[-36,-141],[52,-136],[32,-278],[325,35],[139,-160],[381,-276],[110,-117]],[[59961,11836],[-19,70],[-18,107],[-75,166],[27,6],[39,-54],[33,-24],[22,13],[9,48],[-6,90],[5,32],[47,0],[24,22],[71,-4],[12,46],[-30,17],[-10,46],[35,60],[27,26],[-7,73],[-22,38],[10,59],[26,37],[96,24],[0,74],[16,6],[-34,171],[13,167],[-2,130],[104,25],[5,40],[21,16],[60,-32],[68,37],[78,-49],[35,18],[45,-26],[-1,43],[-60,41],[-50,0],[-29,23],[-63,-19],[-36,5],[-49,31],[-29,-12],[-57,-87],[-68,4],[-29,-32],[2,-30],[-16,-103],[-37,2],[-23,-48],[-29,47],[-5,37],[-30,50],[-66,17],[-8,-37],[41,-68],[43,-33],[22,-47],[-29,-35],[-30,22],[-13,-41],[-42,-20],[-5,31],[-44,-19],[7,-33],[56,-39],[-20,-15],[48,-106],[-17,-47],[19,-18],[28,-62],[-2,-50],[-43,-65],[-29,39],[-16,71],[-28,-77],[-21,-5],[-45,21],[-4,-30],[-51,-98],[14,-70],[-82,-32],[-15,56],[-21,34],[47,118],[-53,62],[-50,6],[12,47],[-35,8],[32,40],[-25,27],[68,14],[22,23],[-68,17],[-43,-7],[-15,47],[32,94],[-45,-14],[-27,27],[-28,-10],[-18,-36],[-42,57],[-33,-40],[-4,-52],[27,-30],[-5,-45],[-57,45],[-32,72],[-15,52],[-34,78],[4,25],[-26,72],[34,61],[-15,77],[23,28],[-34,24],[27,50],[28,19],[33,-20],[59,16],[35,155],[32,31],[2,49],[23,32],[37,-5],[83,43],[20,-13],[53,-105],[-22,-88],[17,-41],[-20,-61],[57,-53],[44,-70],[65,-3],[-10,44],[-69,77],[-24,96],[-22,30],[21,57],[11,100],[-30,87],[16,46],[20,15],[-8,44],[-25,26],[-25,59],[-16,104],[42,3],[35,-41],[70,-21],[32,-32],[27,-92],[-7,-48],[34,-60],[30,-22],[11,87],[-21,39],[-19,115],[-67,80],[-33,-7],[-29,55],[-61,61],[-9,36],[0,145],[20,13],[40,102],[-26,8],[-58,-38],[-48,-46],[-74,-17],[-56,27],[-53,42],[-5,37],[19,32],[-24,53],[39,3],[12,59],[-30,49]],[[59014,13165],[24,52],[58,-28],[33,-79],[-34,15],[-18,-18],[-39,7],[-24,51]],[[58934,13349],[51,2],[69,-69],[-8,-38],[-42,14],[-38,67],[-32,24]],[[58932,13510],[16,53],[40,-12],[3,-40],[-42,-28],[-17,27]],[[58929,13421],[2,49],[64,-8],[30,-22],[7,-41],[-16,-30],[-36,0],[-44,24],[-7,28]],[[58922,13318],[31,-14],[16,-60],[-32,-12],[-15,86]],[[58849,13771],[31,43],[52,155],[65,64],[34,14],[72,-5],[57,-39],[98,43],[43,-3],[58,-40],[53,-64],[8,-79],[-31,-23],[-39,-79],[2,-35],[21,-41],[11,-69],[-8,-50],[-17,-19],[-72,-39],[-93,-18],[-93,-46],[-14,43],[-73,68],[-14,42],[-50,44],[-96,67],[-5,66]],[[58777,14057],[33,3],[31,27],[17,-44],[-40,-1],[-41,15]],[[58409,14089],[-1,-39]],[[58408,14050],[1,39]],[[58523,15525],[21,16],[60,-21],[88,10],[91,-27],[21,2],[37,-31],[55,-103],[48,-33],[23,-51],[15,-90],[18,-30],[16,-90],[-6,-42],[39,-60],[56,-20],[59,-9],[51,-84],[23,-17],[32,-81],[3,-35],[42,-31],[20,-37],[88,-50],[-10,-60],[23,-28],[14,-51],[72,-32],[1,-56],[-101,-87],[-37,4],[-31,-40],[-36,-25],[-45,-61],[-37,0],[-11,-20],[-53,-12],[-71,40],[-36,-22],[-63,24],[-14,74],[-31,-13],[8,-44],[-17,-15],[-61,22],[-22,39],[-35,-9],[13,-44],[-33,1],[-32,-98],[-37,-47],[-63,-32],[-64,78],[-35,-18],[-24,26],[-35,-35],[-39,18],[-1,40],[-19,16],[-51,-1]],[[58410,14143],[10,66],[-22,40],[-21,5],[-11,128],[24,9],[3,86],[-18,51],[-39,12],[-15,25],[-3,61],[-34,30],[52,69],[-45,4],[-78,94],[-6,38],[60,-38],[46,20],[-11,30],[12,49],[-36,47],[27,41],[11,58],[1,74],[-15,42],[75,0],[41,36],[40,-2],[8,30],[123,42],[15,32],[-40,87],[-4,31],[-37,85]],[[58177,17571],[54,1],[47,107],[23,16],[60,-12],[39,-38],[0,-28],[88,-46],[39,10],[38,43],[23,-19],[-7,-48],[70,13],[21,-48],[32,-37],[67,3],[0,-29],[33,-10],[47,42],[30,-60],[51,-11],[35,15],[34,65],[36,-38],[49,-20],[16,-31],[-25,-28],[-9,-42],[46,-11],[28,-52],[-51,-61],[-9,-71],[96,-101],[80,19],[36,-19],[85,19],[3,65]],[[59382,17129],[127,-298],[209,-351],[34,-63],[147,-351],[-155,-321],[414,-124],[-90,-415]],[[59504,14737],[37,89],[-147,88],[-70,72],[-116,94],[-17,55],[4,35],[-21,38],[-53,38],[-35,43],[-27,93],[-25,45],[-30,22],[-6,34],[78,-2],[51,31],[40,-4],[-7,-32],[20,-55],[29,13],[-12,60],[9,25],[-19,35],[-40,110],[30,41],[1,47],[-24,27],[-19,-57],[-36,-40],[12,-59],[-9,-40],[-27,-17],[-53,56],[-60,20],[-12,-34],[-37,45],[-44,25],[-31,44],[-46,15],[-64,-7],[-28,11],[-28,72],[21,30],[-8,27],[-81,-7],[-14,-53],[-54,-25],[-60,38],[-5,21],[-69,25],[-7,20],[-50,13],[-6,26],[-44,36],[-83,45],[56,15],[17,17],[17,64],[-19,57],[-27,37],[11,49],[51,11],[-17,53],[30,14],[64,-59],[35,7],[44,-12],[43,41],[26,-22],[78,6],[25,35],[50,13],[-11,51],[-51,-24],[-59,34],[-92,-4],[-83,34],[-39,25],[-30,69],[26,43],[44,20],[-4,27],[-56,22],[-72,144],[1,99],[13,18],[-4,66],[36,20],[14,89],[-108,-61],[-73,44],[-4,32],[-53,64],[-14,37],[1,79],[21,25],[10,71],[-7,41],[115,16],[68,-90],[54,-9],[108,-54],[65,-58],[142,-90],[62,-56],[74,-130],[58,-60],[15,39],[-63,61],[-56,110],[-47,67],[-55,48],[-31,50],[-32,30],[-60,4],[-73,78],[-49,81],[-58,25],[-40,32],[-32,49],[-75,-1],[-15,29]],[[27866,14262],[76,110],[34,10],[47,-16],[50,18],[46,-10],[69,1],[104,-78],[-27,-8],[-131,11],[-27,-27],[-12,-39],[-43,11],[-15,-13],[-59,16],[-32,-11],[-48,7],[-32,18]],[[27132,13747],[44,36],[50,19],[29,-28],[-16,-29],[26,-63],[-35,-34],[-31,24],[-17,41],[-35,9],[-15,25]],[[25868,15179],[0,-22]],[[25868,15157],[0,22]],[[25861,12352],[28,86],[-13,19],[23,35],[32,-2],[57,42],[67,-47],[2,-68],[35,-2],[22,-26],[-15,-39],[-25,6],[3,37],[-41,-14],[-15,28],[-37,8],[11,38],[-66,-20],[-22,-35],[-2,-46],[-44,0]],[[25496,12396],[40,59],[7,32],[66,-58],[3,-57],[-27,-24],[-32,7],[-57,41]],[[25266,12263],[13,36],[52,24],[29,-46],[-3,-44],[26,-20],[-13,-38],[-34,20],[-38,63],[-32,5]],[[25222,12064],[18,22],[19,122],[45,-4],[2,-33],[-64,-95],[-20,-12]],[[25868,14983],[100,-50],[52,-7],[31,22],[129,23],[-13,28],[11,83],[-27,40],[-5,50],[-22,28],[15,93],[-19,40],[10,95],[34,108],[48,103],[69,115],[39,81],[103,171],[102,155],[92,115],[51,30],[46,49],[61,46],[128,57],[3,38],[36,42],[67,54],[90,179],[76,53],[105,130],[52,37],[81,15],[5,-64],[35,-69],[2,-38],[67,-24],[37,86],[-24,164],[-16,74],[-27,10],[-96,-1],[-18,66],[8,195],[37,134],[23,103],[30,262],[12,171],[16,163],[32,236],[47,136],[27,14],[62,-10],[62,12],[38,31],[19,75],[-69,6],[-120,172],[8,46],[-19,28],[-2,94],[15,148],[13,57],[39,105],[16,71],[38,79],[17,0],[39,47],[38,0],[54,65],[58,120],[39,66]],[[27955,19836],[491,-1],[717,0],[0,722],[-884,0]],[[28279,20557],[24,24],[17,52],[1,92],[16,46],[41,10],[-22,38],[-33,-1],[-56,-41],[-39,-68],[5,-74],[-34,-43],[-18,-64],[-60,-32],[-38,-6],[-47,-26]],[[28036,20464],[0,631],[-101,0],[0,464],[215,0],[0,233],[431,0],[0,232],[120,0],[0,233],[217,0],[0,232],[435,0],[0,233],[211,0],[0,1338],[0,1042],[0,874]],[[29110,15914],[-16,-31],[-36,-15],[-18,-41],[-71,8],[23,-40],[9,-74],[-45,-14],[-13,-35],[-37,-43],[-84,-11],[39,-119],[-14,-49],[-40,13],[-75,45],[-32,7],[-31,69],[-25,19],[-40,-29],[-39,-4],[45,-75],[-49,-76],[-5,-75],[-22,-99],[-43,-11],[-12,69],[-38,48],[-13,56],[-37,-3],[-20,-25],[-23,-114],[-39,2],[-57,-59],[-64,-150],[-76,-4],[-23,-48],[21,-22],[-3,-47],[-35,-47],[-36,-10],[-37,14],[-35,50],[-47,26],[-5,32],[-115,128],[-28,6],[-40,-16],[-44,-67],[11,-64],[15,-20],[40,-6],[-1,-40],[24,-32],[-46,-16],[-34,-34],[-17,26],[-41,2],[-33,-44],[-34,-114],[14,-67],[35,-12],[17,-26],[38,15],[12,-44],[27,-39],[-12,-37],[-40,-27],[-58,-13],[-8,15],[-80,6],[-36,-28],[-51,3],[-38,37],[-43,136],[-64,2],[-61,-50],[-12,-32],[-47,9],[-61,-27],[-20,-21],[-17,-56],[-26,-16],[-60,-3],[-62,-74],[-36,-21],[-25,-38],[-4,-65],[56,27],[102,38],[49,32],[77,12],[41,-22],[38,13],[27,-48],[-19,-29],[11,-56],[-6,-49],[-36,-28],[-2,-35],[-32,-4],[-46,33],[-51,5],[-18,33],[-31,-8],[-35,35],[-30,-6],[-65,13],[-48,23],[-21,-38],[52,-48],[-16,-74],[-44,13],[-25,-28],[-27,18],[-58,5],[-53,42],[-48,7],[-61,-64],[-43,-19],[-32,-72],[-41,-75],[-54,-62],[10,-58],[34,-33],[43,9],[4,-27],[43,-18],[-11,-45],[11,-41],[28,13],[9,39],[53,28],[22,-27],[24,4],[17,-35],[41,1],[14,-27],[51,-10],[-23,-57],[-43,-21],[-76,-65],[-87,-25],[58,-36],[45,-4],[-40,-95],[86,44],[64,58],[47,57],[23,-21],[-4,-30],[-29,-25],[-4,-42],[-39,2],[-46,-21],[-14,-49],[-20,13],[-90,-58],[15,-50],[-14,-19],[-33,32],[-1,102],[-21,-12],[-19,-50],[3,-51],[-42,23],[55,-138],[-8,-73],[-33,21],[4,37],[-53,57],[-31,-1],[33,-68],[4,-28],[-27,-55],[37,-57],[11,23],[-13,55],[56,-33],[-12,-67],[6,-39],[-40,-18],[-10,42],[-43,66],[-21,0],[13,-81],[-8,-71],[-17,3],[-38,74],[-20,60],[56,41],[-11,22],[-59,-30],[-32,-4],[3,71],[52,18],[-5,20],[-51,0],[10,86],[41,9],[11,78],[12,25],[57,32],[-30,28],[-1,49],[-54,-19],[-39,5],[8,-40],[41,-21],[-41,-38],[0,-37],[-35,-51],[-38,-27],[-17,23],[17,40],[-13,33],[-27,-22],[7,-38],[-19,-51],[42,-50],[-19,-17],[5,-59],[-32,-30],[-52,0],[13,-44],[64,9],[32,-44],[-5,-78],[-63,-22],[51,-52],[-33,-33],[-23,43],[-35,-35],[-33,19],[11,37],[31,7],[-20,48],[17,27],[-68,34],[3,-44],[-26,-43],[-28,12],[-16,67],[-27,-2],[-15,-56],[-36,-65],[-36,-109],[-43,16],[-68,-15],[-5,-101],[-34,6],[-49,82],[-20,1],[-59,-40],[-22,2],[-25,-53],[-47,25],[-37,-3],[-58,-25],[-12,-60],[-73,31],[-35,-21],[-34,-37],[-10,-87],[9,-68],[-23,-33],[-21,20],[-13,45],[-21,21],[-14,65],[16,50],[-14,32],[23,61],[-49,10],[-50,-36],[-20,-56],[21,-46],[24,-19],[11,-56],[-2,-50],[10,-42],[2,-66],[-10,-37],[-39,-44],[-27,-56],[28,-35],[-10,-62],[-1,-73],[-25,-23]],[[25015,11849],[0,666],[-391,0],[0,233],[79,0],[0,930],[-120,0],[0,465],[398,0],[0,233],[399,0],[0,233],[287,0],[0,232],[201,0],[0,142]],[[60665,10261],[21,7],[20,63],[31,42],[-28,37],[19,64],[27,14],[44,-29],[11,73],[-45,20],[-2,33],[-45,22],[32,23],[-36,146],[21,49],[2,46],[29,-16],[49,6],[9,-20],[55,-26],[-11,-21],[56,-74],[37,-2],[26,-20],[23,-49],[66,-58],[-48,-17],[16,-120],[-27,-81],[28,-45],[-7,-83],[-43,-78],[-131,1],[-21,40],[3,47],[-22,50],[-21,-15],[9,-59],[-60,-56],[-35,-55],[-48,46],[-4,95]],[[62455,13077],[182,70],[129,-307],[-19,-258],[18,-13],[-102,-229],[-52,-43],[-35,-103]],[[59728,11486],[54,0],[14,-44],[-49,18],[-19,26]],[[59156,9924],[47,8],[11,23],[79,19],[50,-81],[38,-4],[39,-77],[-22,-9],[-23,-39],[35,-30],[-50,-73],[40,-17],[14,-61],[23,-47],[-33,-72],[-29,12],[-25,34],[-36,131],[-39,43],[-5,21],[-61,47],[-29,74],[3,42],[-27,56]],[[59079,10068],[44,47],[41,-33],[-16,-48],[17,-36],[-51,-14],[-41,69],[6,15]],[[59018,10321],[4,29],[50,46],[9,-77],[-43,-31],[-20,33]],[[58920,10573],[57,34],[4,-28],[-37,-23],[-24,17]],[[58833,13068],[0,16],[54,47],[39,16],[25,-31],[-14,-27],[26,-51],[-2,-55],[-83,9],[-38,20],[-7,56]],[[58524,11258],[35,71],[53,14],[30,-17],[-1,-37],[-27,-65],[-26,7],[-42,-22],[-22,49]],[[58357,11563],[51,99],[27,-14],[31,29],[28,-28],[42,-5],[33,-36],[12,-64],[-13,-67],[-21,-51],[-51,-33],[-18,-53],[-59,83],[-16,67],[-38,35],[-8,38]],[[58230,9726],[24,-12],[25,-69],[9,-64],[-14,-69],[-35,37],[7,78],[-16,99]],[[58145,11344],[26,47],[43,18],[36,52],[-5,60],[20,34],[76,-54],[39,-48],[14,-81],[-3,-27],[-33,-41],[-130,-20],[-20,43],[-63,17]],[[58101,11814],[35,-37],[35,15],[8,25],[-39,50],[37,54],[-29,22],[9,40],[44,-12],[45,-43],[-5,-63],[-40,-51],[-12,-49],[-27,-54],[-19,-13],[-50,105],[8,11]],[[58086,11264],[26,48],[39,-14],[-65,-34]],[[58057,10960],[1,28],[42,32],[16,56],[26,36],[-56,22],[20,55],[57,29],[-7,41],[22,31],[26,1],[13,-46],[35,-2],[63,20],[17,-21],[70,34],[13,-60],[-10,-44],[-52,-21],[-44,-33],[-63,-83],[-32,22],[-8,-77],[-25,-57],[-22,-111],[-31,-1],[-12,49],[-31,17],[0,79],[-28,4]],[[58033,12507],[21,21],[25,-34],[-26,-19],[-20,32]],[[58027,11920],[3,25],[56,21],[14,-9],[-17,-74],[-56,37]],[[58008,11744],[28,16],[16,-43],[-28,-22],[-16,49]],[[57896,12695],[34,42],[16,56],[44,88],[53,70],[-1,45],[53,48],[78,-4],[27,-25],[40,12],[54,-4],[-18,48],[-81,9],[-56,22],[-20,26],[20,89],[57,-53],[30,37],[20,1],[-12,77],[-44,17],[-31,68],[-49,-15],[-20,50],[41,6],[6,74],[-25,42],[-12,51],[12,38],[-22,42],[19,48],[24,-18],[23,22],[-34,42],[19,34],[180,-49],[79,-32],[22,22],[77,1],[30,-8],[14,-29],[71,30],[28,-30],[38,35],[35,-20],[57,-124],[16,-20],[5,-69],[51,-9],[5,-56],[29,-47],[-14,-43],[25,-43],[-10,-66],[-39,-53],[3,-35],[-44,-59],[-8,-50],[29,-43],[-4,-33],[38,-18],[66,37],[22,-23],[37,36],[46,-1],[10,-35],[-3,-64],[43,4],[9,20],[57,3],[28,-55],[61,-58],[49,-21],[22,-66],[127,-136],[3,-31],[42,-46],[27,-63],[36,-45],[67,-135],[13,-15],[-30,-65],[16,-39],[46,-68],[-17,-48],[3,-58],[18,-25],[0,-75],[33,20],[-3,47],[36,7],[44,-73],[18,-118],[19,-18],[-2,-46],[31,-43],[8,-56],[27,8],[99,-73],[63,-104],[7,-56],[-39,-11],[-53,51],[-18,41],[-151,102],[-96,45],[-50,44],[-33,67],[-92,-3],[-28,-22],[61,-29],[8,-27],[-63,-88],[-51,-102],[65,-11],[9,82],[56,21],[41,-26],[88,30],[23,-108],[29,15],[37,-17],[27,15],[11,-32],[44,-64],[-26,-18],[-81,-23],[-39,15],[-27,-36],[48,-77],[22,41],[79,31],[46,-5],[39,-63],[4,-32],[100,-95],[8,-71],[43,-97],[22,-4],[0,-43],[-49,-69],[-32,-12],[-70,20],[-35,-41],[-20,-3],[-11,-64],[79,36],[18,19],[110,-68],[40,91],[-8,34],[39,77],[34,12],[35,-51],[-1,-54],[19,-72],[4,-94],[-43,-70],[-29,-30],[-3,-39],[48,-20],[4,-23],[-71,-70],[-49,-12],[-22,-51],[24,-47],[-60,-37],[-8,-21],[-116,-52],[4,-29],[41,-6],[11,20],[54,-20],[37,54],[41,2],[21,37],[22,-5],[17,44],[26,-15],[45,16],[-12,-69],[16,-6],[-7,-61],[20,-72],[-7,-89],[-8,-20],[9,-119],[-16,-22],[-52,50],[3,38],[-37,-12],[13,-47],[86,-74],[16,-43],[12,-84],[-5,-36],[-42,-20],[-28,-65],[16,-26],[1,-47],[-26,-55],[4,-51],[-53,27],[-43,-1],[-37,-29],[-61,4],[4,36],[-44,6],[-4,48],[-40,-22],[-38,30],[-22,-44],[-52,19],[9,29],[-12,38],[-54,10],[-15,23],[13,38],[-6,34],[-34,-23],[-40,31],[-76,-28],[-18,33],[50,18],[-2,39],[29,54],[43,-30],[6,24],[54,-23],[46,51],[-24,10],[-11,58],[-68,30],[-21,61],[-55,12],[-50,-20],[-23,7],[-22,56],[13,41],[-42,5],[-68,99],[3,54],[16,31],[33,-12],[2,46],[-26,4],[8,60],[27,13],[19,43],[-17,16],[23,82],[20,11],[2,40],[-39,-21],[3,42],[-22,7],[-43,-101],[-22,-96],[-16,71],[16,57],[-3,28],[40,117],[1,50],[-18,65],[-48,69],[-17,-27],[40,-106],[-7,-46],[-26,-41],[-43,5],[-45,24],[-58,66],[-39,13],[2,27],[-43,22],[27,-71],[28,-7],[26,-46],[39,-45],[32,7],[19,-31],[3,-52],[-21,-39],[26,-39],[-8,-34],[20,-53],[-16,-73],[-88,-61],[-22,32],[-36,-5],[-34,34],[-47,11],[-26,34],[32,81],[11,76],[-23,14],[-9,42],[-37,25],[-4,40],[27,47],[-28,30],[-38,17],[19,48],[-8,46],[-59,10],[-37,-30],[-33,13],[-11,34],[16,45],[-7,67],[-34,13],[-4,-36],[-38,20],[-2,-46],[10,-99],[-11,-52],[37,11],[20,-76],[-39,-26],[101,-82],[2,-101],[-66,-14],[68,-75],[-11,-19],[79,-78],[-11,-74],[9,-37],[60,-80],[16,-42],[-23,-23],[32,-56],[43,-7],[7,-35],[41,-59],[-7,-33],[31,-8],[63,-72],[3,-44],[39,-92],[-11,-36],[-1,-58],[53,-13],[-27,-52],[11,-30],[-29,-14],[60,-47],[-22,-33],[-22,22],[-26,-20],[-34,47],[-8,32],[-36,-24],[-78,21],[-32,32],[19,19],[-30,58],[15,43],[-41,73],[-49,16],[-37,44],[-5,30],[-34,35],[-38,80],[-15,84],[-39,57],[-2,33],[-53,7],[-39,46],[-24,46],[16,11],[-18,71],[19,24],[-19,46],[2,36],[-39,17],[-20,37],[0,40],[20,10],[-54,63],[1,40],[66,25],[-53,27],[34,40],[-34,61],[29,36],[-41,20],[1,41],[17,55],[0,59],[10,18],[82,23],[35,46],[-66,-16],[-39,24],[-34,-17],[-7,-48],[-23,-78],[-67,-16],[-41,-25],[-20,50],[-35,13],[-41,-54],[-31,7],[-25,39],[-9,60],[4,71],[53,-7],[-8,31],[-32,13],[-13,84],[31,22],[68,-11],[0,37],[41,25],[33,-5],[45,-139],[65,-8],[6,54],[-45,53],[-8,33],[15,41],[53,68],[45,-1],[41,-46],[15,60],[28,34],[44,-1],[14,58],[-49,36],[-5,67],[-27,31],[-51,33],[63,36],[-12,58],[-30,1],[8,44],[-27,4],[-14,44],[42,27],[6,28],[-55,38],[-23,-34],[-40,13],[-76,-16],[5,42],[-37,17],[-58,56],[-50,26],[-18,38],[5,52],[40,11],[4,43],[-39,94],[11,23],[59,7],[33,57],[-32,28],[-72,-50],[-51,24],[-38,31],[-30,4],[23,-75],[14,-5],[-9,-71],[-45,-33],[-67,30],[-26,31],[-52,34],[-42,76],[5,23],[-38,49],[60,34],[-13,23],[11,49],[47,15],[10,-37],[39,60],[36,-3],[14,-23],[68,-40],[-11,-44],[13,-18],[60,-3],[79,17],[10,37],[51,-6],[11,20],[-28,44],[15,71],[-26,73],[-55,-16],[-14,49],[-71,32],[31,23],[17,35],[-56,8],[-47,50],[52,112],[-18,43],[-24,12],[-53,-89],[-70,-36],[-33,-96],[-24,-31],[-77,-24],[-2,-31],[-29,-8],[-1,53],[-39,-12],[-17,41],[-44,-19],[-18,92]],[[57887,11328],[5,24],[50,43],[-3,41],[19,42],[61,40],[6,18],[-57,31],[29,55],[91,10],[52,-51],[3,45],[34,-20],[15,-30],[-15,-105],[-45,-20],[-9,-85],[-37,-55],[-26,35],[-37,14],[-17,36],[-71,-29],[-31,-49],[-17,10]],[[57874,13951],[37,-4],[33,-50],[-37,-20],[-33,74]],[[57866,14143],[31,0],[34,-38],[18,-43],[-21,-21],[-35,34],[-27,68]],[[57733,12553],[0,41],[82,59],[31,-21],[18,-103],[-7,-62],[-32,-68],[-49,19],[-26,46],[-17,89]],[[57193,12578],[37,47],[50,-27],[44,22],[2,-90],[45,7],[-3,27],[51,11],[51,36],[38,-14],[-13,-50],[-50,-23],[-9,-17],[-64,-50],[-12,-33],[-49,-27],[-51,-44],[-35,33],[-6,35],[37,44],[-46,59],[-17,54]],[[58410,14143],[-31,-15],[30,-39]],[[58408,14050],[-23,-21],[-79,-8],[-16,-32],[-34,5],[-87,-8],[-53,12],[-22,17],[-11,108],[-7,130],[14,49],[-36,26],[2,42],[45,36],[-31,47],[-29,-55],[-27,-16],[-19,-65],[-58,8],[-15,49],[-52,43],[-4,32],[-45,-6],[-12,-32],[42,-26],[13,-41],[-23,-29],[-18,-101],[-20,-31],[-46,15],[5,-51],[77,-49],[11,-79],[22,-48],[-38,-4],[-25,40],[-29,-12],[40,-124],[-51,-21],[11,-49],[73,-45],[24,-72],[-38,-50],[12,-48],[-32,-28],[-22,62],[-21,8],[-55,118],[-39,-8],[10,-73],[48,-35],[12,-64],[17,-12],[44,-137],[-24,-55],[-27,25],[-44,-18],[27,-109],[-5,-79],[-26,-8],[4,-92],[-6,-18],[-47,-25],[-24,12],[-37,83],[23,83],[3,43],[-13,75],[-31,66],[-2,59],[24,38],[-11,111],[-28,59],[-2,-99],[-9,-32],[9,-70],[-30,-28],[1,-140],[-24,-40],[-71,-7],[-21,-25],[109,-43],[-12,-87],[31,-23],[-26,-39],[-30,-7],[-7,-32],[33,-44],[-12,-80],[-22,-29],[-52,38],[-8,87],[-66,37],[9,55],[23,38],[-62,40],[-3,32],[44,26],[23,39],[-14,22],[-55,1],[9,31],[0,126],[-26,82],[2,34],[58,26],[17,23],[10,65],[44,32],[-23,20],[-58,-47],[7,-26],[-23,-32],[-34,-1],[-23,58],[28,16],[-3,33],[-24,37],[1,33],[41,44],[34,104],[-21,16],[16,42],[-19,29],[9,39],[41,54],[37,-73],[48,-173],[16,58],[-28,82],[42,57],[-35,92],[-46,63],[-18,69],[-52,38],[-60,10],[-37,17],[31,29],[-18,52],[35,67],[-23,75],[-42,-2],[-16,66],[-31,5],[-2,41],[-39,99],[13,89],[-27,109],[-14,87],[16,61],[35,23],[38,53],[-4,21],[46,41],[36,0],[86,-88],[47,-35],[35,-39],[17,79],[-89,67],[18,19],[-36,40],[-30,-6],[-9,46],[67,-21],[26,-29],[33,16],[34,71],[31,-31],[65,-28],[21,-26],[47,-165],[10,-92],[43,-5],[-1,-45],[38,-37],[20,-115],[-26,-38],[33,-38],[21,-45],[28,47],[-1,51],[13,111],[-32,58],[26,19],[26,-20],[49,-5],[-1,-33],[54,-5],[-6,59],[-25,42],[-49,47],[21,29],[-69,16],[-31,70],[24,41],[3,46],[-28,60],[-5,38],[-61,58],[-50,68],[-62,54],[25,52],[-20,40],[27,43],[87,34],[80,41],[93,-39],[100,-15],[38,-40],[76,-20],[47,6],[46,-42],[47,-22],[48,-1],[22,-28],[29,-2],[58,-42],[106,3]],[[56810,13500],[26,31],[25,-4],[-33,-87],[-10,-61],[10,-23],[-18,-91]],[[56810,13265],[0,235]],[[20983,33150],[85,50],[36,58],[40,2],[42,29],[37,-2],[65,-32],[41,6],[18,36],[68,-30],[0,-49],[47,-43],[-25,-23],[-9,-41],[25,-51],[-72,27],[-28,-39],[-71,10],[-11,-18],[-70,17],[-95,-18],[-25,40],[-47,-2],[-6,48],[-45,25]],[[14117,36870],[26,33],[35,-12],[-2,-43],[-59,22]],[[23359,31623],[-1131,0],[-329,0],[0,232],[-244,0],[0,233],[-243,0],[0,232],[-260,0]],[[21152,32320],[62,106],[66,87],[84,139],[-4,22],[61,97],[132,121],[-6,53],[-44,92],[64,6],[36,-13],[33,-41],[34,26],[27,-35],[62,-18],[42,2],[25,-51],[52,-35],[-86,-41],[9,-35],[-27,-59],[59,17],[64,32],[41,-41],[18,48],[40,-21],[59,21],[55,-9],[29,-22],[79,46],[29,-5],[43,26],[71,-7],[70,-32],[79,9],[20,45],[77,-37],[79,39],[55,9],[41,-9],[92,40],[56,13],[40,34],[30,-2],[5,69],[43,25],[-8,42],[59,32],[30,40],[36,116],[30,-24],[30,20],[69,85],[48,99],[90,125],[41,88],[8,50],[-7,127],[-38,113],[-22,88],[-40,103],[-63,110],[-52,167],[-20,99],[9,84],[-15,81],[7,153],[-25,61],[-40,53],[-152,167],[-138,157],[-8,27],[-193,94],[-3,18],[-84,-6],[-83,-63],[-17,47],[60,50],[17,44],[-10,97],[13,53],[48,18],[50,51],[29,5],[33,-39],[162,-58],[187,-8],[79,25],[5,37],[-106,65],[100,-5],[64,11],[85,104],[46,21],[83,74],[8,41],[-8,83],[15,43],[-2,103],[-71,107],[-36,67],[-22,77],[-131,58],[-116,93],[-66,71],[-29,50],[1,48],[-44,-16],[-20,-50],[2,-37],[-24,-33],[-103,-84],[-73,-103],[-13,-85],[-112,-49],[-80,-19],[-159,56],[-36,37],[-69,-43],[-142,-41],[-42,-47],[-30,-9],[-47,-51],[23,-39],[-232,-29],[-113,-37],[-47,-58],[-7,-49],[-26,-57],[-35,-23],[-81,-27],[-36,-36],[-119,-68],[-59,-55],[-54,-20],[-37,-64],[-25,-64],[-28,-31],[15,-60],[-19,-78],[-28,-30],[10,-64],[-138,-76],[-48,-77],[-34,12],[-8,62],[14,54],[-4,70],[-40,95],[-32,32],[-8,56],[41,26],[-28,51],[-83,55],[-24,62],[-99,25],[-5,46],[-24,43],[-57,40],[-72,29],[-4,58],[22,26],[-81,11],[-32,-19],[-153,-150],[-3,-31],[35,-16],[65,-63],[102,-15],[24,-66],[37,-19],[62,27],[67,-20],[-19,-49],[21,-31],[-81,-37],[-8,-101],[-15,-47],[-53,-30],[-33,4],[-25,51],[-71,97],[-2,40],[-68,55],[-44,6],[-4,28],[-52,38],[-163,84],[-109,41],[-90,14],[-90,-6],[-73,22],[-102,-3],[-38,-37],[-47,10],[-43,-30],[-105,24],[-145,11],[-174,-10],[-112,-29],[-186,-84],[-243,-127],[-41,-29],[-93,-42],[-96,-13],[-95,2],[-29,-19],[-221,82],[-280,83],[-134,31],[-207,56],[-171,30],[-59,2],[-244,62],[-226,48],[-57,29],[-87,71],[-78,55],[-21,27],[-47,105],[-46,126],[16,70],[-12,93],[63,28],[25,50],[2,90],[-19,56],[-42,62],[-56,59],[-56,46],[-190,115],[-17,30],[24,66],[-22,51],[-49,45],[-112,63],[-40,33],[-98,137],[-21,61],[62,213],[49,86],[31,-44],[-10,-43],[-74,-46],[-43,-128],[33,-70],[-8,-20],[112,-52],[2,-18],[155,-34],[82,8],[96,34],[26,39],[56,37],[54,66],[-16,125],[32,38],[84,44],[49,61],[-17,33],[-72,67],[-60,34],[-70,25],[-97,1],[-34,-25],[-87,5],[-174,42],[-119,59],[-163,52],[-122,7],[-82,22],[-84,-1],[-168,17],[-82,34],[-90,62],[-86,43],[-12,34],[-117,89],[-157,67],[-22,40],[-92,35],[-84,13],[-109,51],[-29,48],[8,22],[-37,63],[-6,57],[21,82],[20,27],[132,96],[146,72],[200,81],[210,96],[224,132],[128,88],[211,155],[368,245],[284,186],[250,142],[206,105],[93,18],[41,58],[79,50],[43,10],[33,30],[114,69],[279,147],[115,57],[293,133],[301,124],[495,171],[432,123],[38,7]],[[13020,38988],[69,29],[6,-68],[-63,4],[-12,35]],[[9325,32897],[6,59],[17,17],[-13,100],[13,72],[48,89],[15,55],[38,28],[16,51],[-23,65],[10,49],[31,60],[-22,150],[77,9],[52,-47],[10,-48],[-20,-29],[-3,-85],[19,-46],[46,-37],[66,-36],[228,-93],[149,-46],[47,-8],[221,-77],[120,-25],[57,3],[22,24],[58,27],[25,30],[97,64],[59,61],[47,17],[16,29],[76,-13],[57,12],[10,42],[79,41],[72,-27],[92,-6],[74,7],[54,-65],[49,-25],[11,-43],[56,-52],[57,-7],[45,-78],[8,-61],[18,-33],[-16,-24],[36,-58],[-23,-64],[37,-41],[67,-30],[15,6],[98,-50],[34,-32],[145,-26],[127,-9],[24,-27],[78,-50],[1,-38],[27,-38],[76,-31],[109,-18],[117,-4],[63,-22],[112,-13],[116,-2],[40,10],[145,-19],[22,-22],[50,9],[88,-55],[147,-25],[13,-16],[-37,-60],[-10,-115],[-30,-27],[-45,-95],[-57,-66],[-64,-39],[-90,40],[-20,17],[-77,22],[-108,11],[-141,-12],[-118,-29],[-86,-38],[-19,-57],[-73,-71],[-43,-15],[-69,-59],[-53,-113],[27,-72],[36,-70],[-88,-16],[-37,-40],[-19,-54],[-83,38],[-58,15],[-15,18],[27,56],[-40,53],[1,48],[-21,60],[-46,84],[-54,70],[-72,57],[-48,49],[-53,5],[-40,43],[0,21],[-54,27],[-66,17],[-33,-13],[-71,6],[-87,43],[-16,82],[-80,139],[-99,103],[-85,63],[-92,52],[-85,27],[-294,116],[-84,18],[-157,9],[-61,-9],[-71,-53],[-101,-24],[-60,-34],[7,-57],[-43,-30],[-7,-30],[-47,-4],[-106,-73],[-96,52],[-42,-24],[-19,52],[-41,-4],[-136,78],[-43,0],[-24,64],[-89,129],[4,53],[-34,81]],[[55917,15575],[45,28],[-2,-41],[-43,13]],[[55815,15329],[35,18],[25,-27],[-29,-23],[-31,32]],[[55753,15762],[22,47],[38,-2],[15,-39],[-15,-44],[-60,38]],[[55726,16112],[45,63],[45,-24],[42,14],[20,-36],[-1,-43],[-31,-67],[-35,-29],[-16,14],[-69,108]],[[55652,15133],[10,17],[96,-46],[-57,-42],[-33,20],[-16,51]],[[56810,13265],[-49,56],[22,30],[-23,56],[-38,-19],[-48,13],[-46,61],[-22,69],[8,33],[-26,13],[1,35],[-71,49],[-7,84],[-55,79],[7,84],[-47,52],[-21,91],[-41,67],[-14,86],[-30,23],[13,53],[-15,62],[34,64],[53,28],[29,-5],[22,34],[-45,51],[-51,7],[-10,-36],[-76,-67],[-62,-3],[16,52],[-8,50],[-21,36],[22,102],[-49,-9],[-5,-42],[-43,-10],[-34,47],[18,36],[27,9],[15,42],[-29,13],[-13,-40],[-33,-18],[-40,10],[-46,72],[-2,56],[57,34],[-6,27],[-46,38],[-47,-91],[-21,85],[-37,-15],[-60,17],[-24,-21],[-48,34],[13,67],[-5,49],[103,34],[24,-4],[19,118],[26,22],[11,43],[0,64],[-59,36],[19,15],[6,96],[88,-19],[-3,28],[-67,13],[-1,37],[44,-24],[52,34],[41,-7],[39,58],[67,-59],[-40,80],[-28,19],[-34,-41],[-31,0],[-25,38],[-38,6],[-52,-23],[16,52],[-14,14],[-45,108],[14,54],[27,16],[-8,39],[51,43],[69,3],[-30,37],[-50,-15],[-42,-32],[-21,-46],[-22,20],[-17,51],[27,48],[33,34],[7,85],[36,42],[-90,16],[-41,-14],[-30,20],[-40,-3],[-39,-42],[-29,-7],[-35,92],[-22,30],[35,23],[-83,64],[-1,22],[-46,40],[-25,66],[10,28],[74,3],[95,-29],[39,-1],[0,32],[-59,19],[-17,20],[-56,-1],[-8,28],[57,41],[30,55],[3,37],[34,4],[1,96],[-19,51],[38,18],[91,126],[87,-1],[73,-51],[17,-53],[24,-24],[-24,-41],[-73,-41],[-64,-55],[32,-15],[38,21],[16,34],[70,27],[61,-5],[30,19],[45,-26],[30,-67],[-36,-12],[105,-42],[60,-33],[9,-32],[70,9],[15,27],[68,19],[56,-16],[78,-60],[-9,-37],[21,-43],[7,-56],[17,-29],[-13,-55],[2,-62],[-25,-11],[-13,43],[-27,17],[-50,72],[-41,-14],[-21,-25],[-10,-52],[24,-28],[-7,-73],[37,-31],[18,32],[-14,50],[43,2],[49,-113],[-4,-55],[-19,-37],[59,-79],[17,-57],[-19,-51],[23,-28],[58,-271],[-14,-27],[29,-46],[-2,-140],[18,-13],[14,-70],[25,-62],[-9,-55],[2,-113],[38,-45],[24,-181],[29,-74],[2,-87],[14,-68],[-8,-43],[11,-41],[-16,-129],[-3,-109],[-20,-6],[-18,108],[-16,-55],[4,-65],[18,-94],[-5,-32],[26,-43],[-7,-133],[14,-68],[-11,-28],[15,-42],[-22,-85],[-62,-60],[75,17],[3,-66],[-32,-54],[-20,-11],[12,-67]],[[55265,16105],[56,73],[-16,47],[7,64],[14,38],[-38,35],[13,46],[81,-10],[22,38],[178,-126],[74,-145],[1,-55],[-34,1],[-39,46],[5,-79],[27,-51],[-4,-88],[55,40],[16,26],[-1,57],[22,48],[98,-127],[-56,-64],[-16,-44],[-70,41],[7,-55],[-19,-67],[7,-52],[-43,-60],[-8,-68],[-33,-54],[-27,-21],[-32,0],[-43,-30],[-65,-3],[-58,-20],[-51,-5],[-8,45],[14,17],[7,187],[24,15],[30,46],[49,14],[3,67],[31,26],[-16,43],[-52,28],[-28,-24],[-33,25],[23,79],[-4,42],[25,38],[-31,23],[-13,-47],[-51,0]],[[54736,17421],[24,0],[25,32],[28,-63],[-44,-9],[-33,40]],[[54622,17731],[454,18],[57,138],[99,298],[30,-10],[76,-63],[34,-44],[99,-76],[85,-43],[52,-34],[101,-54],[130,-98],[61,-56],[36,-47],[96,-86],[48,-31],[79,-11],[82,25]],[[56241,17557],[22,-40],[61,6],[31,-28],[54,45],[65,-9],[13,-126],[21,-46],[-37,-73],[43,-32],[49,-129],[12,-69],[-9,-133],[25,-74],[4,-57],[-13,-10],[-34,60],[-36,-26],[35,-49],[-27,-34],[-48,-2],[-52,10],[-69,-20],[-41,23],[-38,2],[-23,25],[-27,60],[-40,25],[-45,53],[-27,6],[-44,55],[-29,17],[-99,93],[-25,0],[-57,58],[-82,54],[-46,53],[-67,53],[-106,-126],[54,-36],[37,21],[66,-32],[16,-25],[-70,-40],[-16,-34],[-28,11],[-13,-30],[61,-40],[-18,-71],[41,-112],[-6,-62],[-57,-35],[5,-43],[-35,-18],[-18,-36],[-52,0],[2,-51],[-40,-50],[-54,3],[-41,49],[-36,-7],[-54,25],[-28,68],[-49,66],[-44,43],[-29,5],[-16,64],[-26,30],[-25,2],[-41,44],[4,33],[-31,37],[-26,54],[4,27],[46,28],[-42,45],[-42,-24],[-30,-44],[-31,1],[-79,59],[59,39],[-61,38],[5,31],[-24,35],[-18,84],[43,43],[31,-7],[1,63],[37,12],[-16,34],[-38,19],[-52,68],[-15,-93],[-32,-7],[-15,45],[-21,17],[22,64],[-28,7],[-13,53],[-34,19],[3,37],[-26,33]],[[54560,17729],[51,2]],[[54611,17731],[-12,-35],[-29,1],[-10,32]],[[18559,31712],[32,31],[49,-18],[-34,-43],[-47,30]],[[18532,31814],[43,68],[24,-59],[-40,-31],[-27,22]],[[18142,30672],[29,44],[25,-28],[45,7],[29,-27],[34,-140],[-80,-21],[-41,22],[-35,48],[-6,95]],[[18031,30552],[23,69],[87,-109],[-20,-24],[-68,-2],[-22,66]],[[17972,30470],[42,36],[34,-32],[-65,-18],[-11,14]],[[17906,26016],[-36,20],[-33,53],[-12,93],[66,73],[30,14],[121,-13],[93,42],[-5,115],[-38,9],[-39,-51],[-70,20],[-69,47],[-21,62],[-60,47],[15,64],[-85,20],[-77,82],[-42,-30],[4,-26],[-36,-88],[-14,-118],[-33,-13],[-63,14],[-48,-1],[-74,17],[-56,29],[-19,24],[-36,155],[13,78],[-33,86],[5,35],[38,29],[20,56],[-21,52],[-34,-34],[-14,35],[-60,0],[-119,53],[-65,-10],[-52,51],[-29,101],[-28,65],[4,80],[48,21],[88,55],[55,24],[22,59],[-11,52],[-32,27],[-38,60],[-44,-2],[-76,50],[-42,16],[-55,-13],[-19,-29],[-104,-24],[-30,-52],[39,-23],[-32,-25],[-61,51],[1,15],[-42,146],[-8,55],[20,117],[36,-10],[114,16],[49,21],[141,42],[105,21],[62,19],[-35,32],[-47,-3],[-31,32],[-66,-3],[-58,35],[2,31],[-57,-11],[-55,98],[-4,26],[-63,82],[4,52],[36,-8],[36,19],[149,27],[66,-18],[85,13],[33,-36],[56,72],[107,18],[46,14],[-86,111],[-1,28],[-48,70],[-44,147],[-7,143],[35,136],[24,18],[22,71],[15,11],[34,92],[36,16],[62,89],[94,146],[103,131],[93,145],[41,8],[20,87],[27,58],[46,73],[62,82],[132,129],[78,51],[80,64],[55,12],[101,5],[28,24],[77,35],[-5,46],[-32,11],[-28,68],[-13,82],[-49,130],[-4,44],[23,36],[-20,109],[66,34],[-51,42],[7,57],[30,71],[27,138],[26,77],[102,174],[68,54],[120,-9],[34,14],[2,50],[-59,56],[28,27],[-36,118],[18,42],[54,42],[75,86],[76,74],[56,42],[58,30],[69,8],[112,33],[165,11],[77,-27],[155,-89],[35,8],[33,-31],[35,17],[71,-14],[-1,-38],[40,-29],[54,-69],[80,-75],[18,37],[31,-28],[37,-5],[10,-32],[-20,-46],[67,16],[-1,-31],[83,-43],[66,-74],[-1,-44],[29,-30],[70,32],[236,27],[84,32],[89,126],[76,38],[81,81],[12,22],[-4,65],[28,53],[66,31],[55,-16],[75,37],[104,126]],[[41058,34963],[-969,0],[-41,12],[-38,52],[-61,17],[-33,50],[-82,49],[-57,59],[-55,-7]],[[58209,17857],[504,728]],[[58713,18585],[128,-404],[264,-421],[144,-369],[126,-230],[7,-32]],[[58177,17571],[50,23],[1,57],[-30,83],[14,73],[-3,50]],[[58139,17756],[-11,-43],[4,-92],[-56,-12],[-27,15]],[[58049,17624],[90,132]],[[57819,16225],[3,42],[23,65],[39,16],[43,-47],[-108,-76]],[[57471,18463],[55,-17],[-3,-41],[-48,25],[-4,33]],[[57381,17896],[34,-5],[7,-36],[32,-74],[70,-139],[8,-56],[-36,1],[-3,30],[-74,121],[22,30],[-60,128]],[[57299,18065],[48,-3],[32,-41],[26,-2],[30,-54],[-8,-28],[-68,-11],[-52,90],[-8,49]],[[56675,18414],[62,-79],[33,-67],[32,-7],[57,84],[94,-11],[3,71],[18,40],[35,-15],[50,5],[56,28],[13,27],[307,116],[2,-3]],[[57437,18603],[-7,-38],[18,-42],[-44,-35],[26,-56],[-11,-26],[24,-44],[89,-125],[15,-62],[-15,-26],[84,-132],[56,-71],[-18,-49],[135,-233],[-4,-106],[17,-74],[19,-18],[-23,-45],[1,-87],[49,-86],[56,-62],[12,-118],[-12,-39],[-34,17],[-22,64],[-1,53],[-71,117],[-29,20],[-47,67],[-39,117],[2,32],[-29,41],[8,64],[-33,75],[-79,86],[-27,86],[-28,0],[-29,127],[22,25],[-11,49],[-42,60],[2,23],[-43,68],[-49,15],[-27,26],[-42,9],[95,-126],[-35,-17],[-33,14],[-41,39],[-16,-34],[25,-27],[15,-66],[37,-94],[-2,-71],[-29,-114],[69,70],[22,-23],[23,-73],[73,-147],[7,-35],[63,-137],[53,-62],[20,-57],[-48,-8],[-15,-33],[108,-8],[46,-46],[42,-55],[10,-28],[-15,-107],[23,-88],[53,-79],[43,-121],[-27,10],[-36,54],[-35,-52],[25,-52],[17,2],[24,-66],[-11,-47],[31,-103],[-21,-41],[-71,-45],[-35,-75],[-22,-6],[-42,54],[-58,20],[-38,72],[-1,-73],[-25,-28],[-20,83],[-20,43],[-24,11],[-15,45],[-35,-20],[46,-52],[5,-52],[38,-60],[-9,-37],[51,-69],[-4,-50],[-33,-32],[-36,-13],[-8,-106],[-71,-86],[-58,22],[-34,-80],[7,-28],[-30,-16],[-42,12],[9,-44],[-82,10],[-20,-42],[45,-53],[-65,-68],[-76,-51],[13,-60],[-50,4],[-42,-13],[-26,41],[-65,-15],[12,34],[-38,166],[-1,78],[44,58],[-51,82],[-12,71],[2,46],[35,8],[69,-37],[31,43],[-43,14],[-44,51],[-5,31],[35,15],[38,79],[66,26],[-3,31],[-31,26],[-38,-4],[-17,18],[14,91],[-14,61],[66,14],[-5,-44],[56,-43],[72,-8],[8,40],[-55,-2],[2,24],[-99,161],[-2,39],[-46,12],[7,30],[-17,52],[-29,163],[-49,84],[-36,46],[6,17],[-41,170],[4,44],[-32,45],[-8,73],[31,116],[-12,23],[17,99],[-20,38],[8,24],[-18,87],[-18,36],[-5,104],[-32,99],[17,8],[-10,53],[-47,82],[-8,44],[12,67],[36,44]],[[56754,18796],[-41,-107],[-39,-61],[6,-71],[-11,-109]],[[56669,18448],[-31,15],[-24,98],[-39,61],[-7,33],[-54,47],[-25,82],[49,69],[-17,16],[-36,-28],[-28,70],[-17,105],[8,61],[-25,95],[17,110],[45,-71],[45,-169],[20,2],[-13,82],[52,-26],[46,-55],[1,-65],[66,-73],[11,-63],[41,-48]],[[56058,18639],[-7,11]],[[55447,19167],[100,49],[55,-23],[96,-87],[-20,-44],[-30,-7],[-63,9],[-32,-8],[-40,14],[-66,97]],[[54912,19782],[13,33],[41,-3],[28,-111],[-17,-18],[-65,99]],[[54905,18936],[51,61],[30,-7],[72,48],[2,-124],[-28,4],[-25,-38],[-29,-9],[-39,15],[-34,50]],[[54791,19964],[42,10],[-1,-34],[-23,-33],[-18,57]],[[54590,18908],[49,-19],[62,26],[47,-34],[-7,-37],[-26,-40],[-62,16],[-63,88]],[[54622,17731],[-11,0]],[[54560,17729],[-44,62],[-28,12],[-14,32],[29,45],[-17,26],[-45,10],[-42,26],[-19,-10],[-7,69],[21,17],[-19,45],[16,87],[35,26],[-42,20],[-11,81],[20,36],[-11,44],[39,86],[58,10],[30,-6],[27,35],[-3,23],[52,46],[54,32],[40,-37],[39,-9],[-25,97],[-41,67],[-9,41],[11,37],[54,-31],[22,33],[27,-21],[1,-39],[35,-36],[16,-81],[29,-7],[26,21],[-15,46],[48,67],[3,44],[24,10],[94,-27],[37,10],[27,-38],[0,-34],[52,4],[10,45],[37,31],[16,34],[39,37],[36,8],[47,48],[11,36],[59,5],[13,-48],[48,-75],[66,-35],[45,18],[32,-56],[117,-63],[41,-44],[-36,-58],[3,-79],[-21,-51],[-57,-51],[-54,-89],[-55,17],[-29,-36],[17,-29],[66,-24],[-14,-61],[5,-33],[50,7],[39,75],[5,46],[35,73],[23,7],[22,64],[59,36],[-14,51],[3,35],[50,25],[35,-7],[73,-56],[52,-80],[24,19],[126,-29],[78,13],[37,-27],[-7,-46],[149,-42],[32,-24],[26,-62],[4,-50],[18,-54],[-28,-11],[-4,-50],[24,-22],[-4,-61],[-97,-91],[-51,14],[-55,43],[-41,17],[-102,73],[-5,-30],[45,-77],[39,-48],[82,-32],[35,-27],[16,-65],[92,-69],[-70,-75],[-74,-33],[-32,30],[-32,-21],[8,-29]],[[54003,20698],[16,27],[53,-18],[-3,-37],[34,-44],[-44,-3],[-49,51],[-7,24]],[[52623,20350],[536,269]],[[53159,20619],[100,2],[233,249],[512,365],[47,53],[313,18],[119,253]],[[55755,19522],[-26,-13],[44,-80],[-29,-36],[55,-117],[-13,-69],[-36,-17],[-78,87],[-24,-3],[-54,49],[-71,-75],[-57,-14],[-79,7],[-64,-25],[-42,-1],[-67,-17],[-8,20],[29,85],[-7,23],[6,107],[-55,-44],[-68,51],[-4,34],[54,57],[27,-12],[7,49],[-30,10],[-21,53],[-6,82],[49,65],[41,-55],[74,57],[-48,16],[-50,76],[-53,181],[-31,3],[-32,43],[5,47],[-31,74],[-10,53],[-55,83],[9,50],[30,25],[51,13],[3,31],[-49,19],[-21,66],[10,111],[-27,19],[-8,31],[-36,32],[1,49],[-52,6],[-6,-46],[13,-48],[32,-23],[9,-39],[-24,-48],[26,-30],[15,-76],[-30,-131],[-24,-31],[3,-59],[-16,-12],[5,-72],[-47,14],[-30,-14],[-46,8],[-36,50],[-56,21],[-97,106],[-39,-3],[-11,25],[-39,1],[-27,29],[-27,65],[5,40],[-33,121],[1,68],[-51,27],[-1,-86],[-37,-29],[-19,58],[-27,28],[-28,78],[-51,72],[-16,-3],[70,-161],[34,-60],[9,-53],[-8,-28],[-69,23],[-11,30],[-82,62],[-45,13],[-10,19],[-99,51],[-34,63],[-58,42],[-33,69],[-44,38],[-25,46],[-39,-1],[-11,-36],[28,-64],[39,-7],[41,-95],[48,-28],[29,-52],[7,-52],[-28,-45],[-27,19],[-75,-4],[-34,-24],[-43,-113],[-59,-71],[19,-34],[96,123],[25,67],[61,-10],[24,-16],[33,17],[39,-36],[25,4],[44,-21],[23,-27],[28,19],[70,-2],[57,-51],[39,-10],[9,-29],[56,6],[42,-15],[124,-124],[51,-68],[-41,-26],[11,-47],[19,-4],[85,-57],[52,-85],[-60,-90],[-76,-52],[-44,-69],[-53,-22],[34,-23],[50,0],[2,40],[25,29],[40,15],[25,-11],[15,36],[45,43],[22,48],[20,14],[60,-61],[15,-35],[64,-56],[-23,-30],[20,-65],[32,-42],[24,12],[24,-33],[9,-46],[27,-62],[23,-7],[-6,-42],[15,-60],[27,-21],[-20,-54],[29,-33],[14,-74],[-5,-33],[26,-32],[-2,-30],[-44,-13],[-44,-61],[-62,3],[-64,-20],[-13,-26],[-87,-34],[-26,22],[4,52],[30,62],[-41,31],[-28,-23],[-65,-8],[25,-45],[2,-57],[-10,-67],[-27,-16],[-28,37],[-38,13],[-17,-34],[-26,12],[-37,-12],[-44,41],[-29,0],[-32,84],[-65,-31],[13,-40],[50,-56],[-1,-37],[21,-19],[7,-98],[-28,-24],[-4,-48],[-36,-21],[-83,2],[-49,92],[-10,68],[35,30],[-72,9],[-40,18],[-2,60],[-38,-20],[-37,41],[12,101],[-26,18],[-13,-54],[-42,-11],[1,64],[17,43],[-38,40],[-119,35],[-77,-31],[2,-35],[-25,-10],[-87,115],[-100,77],[-50,17],[-42,50],[-118,86],[-71,89],[-189,151],[-47,11],[-42,46],[3,69],[-12,41],[-81,101],[-61,66],[-102,88],[-70,73],[-19,65]],[[56754,18796],[2,-100],[17,-83],[75,6],[91,43],[37,9],[46,-27],[71,4],[31,-11],[60,-51],[68,-18],[15,21],[42,-6],[13,22],[44,-1],[33,25],[9,-13],[29,-6],[0,-7]],[[56675,18414],[-6,34]],[[56479,19465],[26,9],[20,-51],[36,-60],[71,-177],[-47,4],[-69,162],[0,44],[-28,33],[-9,36]],[[56328,19615],[60,-85],[30,-1],[22,-87],[-52,28],[-43,85],[-17,60]],[[57251,20766],[9,-8],[-28,-100],[100,-167],[365,-252],[168,-101],[170,-314],[191,-239],[231,-249],[-108,-115],[148,-298],[97,-132],[124,-197],[-5,-9]],[[58209,17857],[-22,128],[-21,-46],[6,-121],[-19,-11],[-26,37],[-18,-25],[30,-63]],[[58049,17624],[-37,34],[-26,69],[1,30],[-29,41],[-18,60],[-86,146],[-5,50],[26,41],[92,75],[45,-125],[37,-14],[7,38],[-13,70],[-37,82],[-32,25],[-9,73],[-14,13],[-41,-47],[-3,-41],[13,-52],[-68,-34],[-47,-47],[-50,29],[-114,162],[-46,75],[-21,63],[5,104],[-15,22],[-2,58],[-14,59],[4,71],[38,33],[-4,99],[-28,46],[99,41],[20,41],[27,20],[-48,69],[12,53],[-20,34],[-18,82],[-20,-12],[-15,-91],[-8,-94],[-47,-31],[-43,-43],[-27,-63],[62,-100],[-2,-25],[-36,-8],[-21,-85],[-48,21],[-90,-29],[-30,-18],[-94,25],[-67,50],[-27,2],[-43,26],[-29,1],[-31,-36],[-106,37],[-55,62],[-48,70],[-25,58],[50,47],[61,19],[-14,46],[-48,-7],[11,67],[-4,54],[-71,-20],[-48,-3],[-49,44],[18,69],[-43,219],[-54,49],[14,27],[-34,36],[-37,79],[-54,97],[-24,24],[-58,160],[90,11],[-32,57],[1,62],[19,74],[-8,77],[-24,20],[-42,65],[-18,-10],[-18,-132],[-42,-26],[-22,34],[-19,72],[-72,107],[-22,70],[18,49],[-10,68],[-29,78],[-7,49],[3,72]],[[27955,19836],[69,69],[44,69],[116,106],[37,11],[-16,51],[2,104],[35,41],[53,98],[6,82],[-35,45],[13,45]],[[50511,22789],[17,39],[43,-8],[45,-31],[-53,-36],[-45,16],[-7,20]],[[50248,22437],[41,40],[33,62],[28,12],[-10,-86],[21,-24],[-21,-29],[-40,-9],[-27,-46],[-25,80]],[[48719,24596],[0,-229],[91,-35],[206,-88],[318,-109],[79,237],[610,-339],[368,411],[789,47],[3,-89],[-161,-620],[185,-250],[326,-189],[116,-49],[36,-163],[14,-96],[54,-110],[196,-210],[308,-330],[285,-306],[260,-285],[252,-277],[84,-371],[53,-322],[-32,-205]],[[52623,20350],[20,28],[7,60],[-20,58],[-5,47],[-78,110],[-88,102],[-128,118],[-15,34],[-68,58],[-127,79],[-254,113],[-94,36],[-90,73],[-155,147],[-108,86],[-88,56],[-113,60],[-283,140],[-71,38],[-187,129],[-168,122],[-90,82],[-217,154],[-32,37],[35,46],[74,-44],[55,10],[-22,28],[20,40],[30,0],[15,51],[-25,29],[34,51],[28,-24],[-7,-71],[8,-41],[54,41],[4,28],[58,31],[-30,19],[31,82],[27,16],[6,34],[33,30],[59,91],[-81,86],[-23,67],[-22,24],[-22,71],[7,43],[-41,77],[-12,75],[11,77],[27,7],[73,61],[33,59],[2,38],[41,83],[-43,68],[-11,56],[-30,-23],[-39,-75],[-33,-34],[5,-64],[-13,-60],[-55,-33],[-44,-13],[-31,-25],[-72,-131],[7,-75],[-13,-43],[-40,-30],[-127,-55],[-52,-17],[-138,-73],[-92,-35],[-61,-33],[-18,-37],[-39,-35],[-116,-44],[-96,16],[-369,41],[-201,51],[-69,24],[-117,75],[-133,67],[-253,134],[-112,52],[-96,57],[26,48],[38,21],[11,37],[35,22],[35,-8],[61,26],[-6,75],[31,36],[9,46],[-29,46],[-9,50],[-50,65],[48,0],[20,56],[46,27],[23,45],[83,40],[19,82],[-23,11],[-33,-82],[-60,-32],[-48,-42],[-43,-18],[-70,15],[-22,38],[11,98],[-26,37],[-21,-14],[-35,-62],[-74,42],[-41,55],[-36,4],[-5,-45],[26,-33],[6,-37],[43,-18],[28,-33],[24,-64],[-1,-40],[48,-12],[59,-85],[-39,-70],[-77,-32],[-54,-13],[-52,-58],[-65,-19],[-112,-5],[-68,5],[-185,101],[-141,52],[-139,21],[-133,48],[-119,32],[-111,18],[-61,-1],[-19,23],[-115,34],[-206,25],[-142,5],[-127,-13],[-106,-29],[-175,-38],[-500,-52],[-130,-19],[-93,-31],[-147,-66],[-52,-33],[-54,-12]],[[25295,9869],[47,24],[10,32],[-21,29],[43,48],[18,-23],[0,-39],[33,-12],[43,16],[10,-47],[-17,-50],[-27,-39],[-53,-37],[-45,13],[-18,63],[-23,22]],[[25118,10190],[32,38],[20,68],[37,-15],[48,24],[33,-13],[12,-40],[-23,-13],[-33,20],[-17,-55],[25,-3],[41,-62],[20,-63],[-48,-14],[-26,-48],[-35,-11],[-17,-23],[-33,80],[22,32],[47,-18],[-1,50],[-28,22],[3,94],[-24,-15],[-27,-46],[-28,11]],[[24959,9639],[13,25],[36,-3],[33,-58],[38,-38],[-12,-77],[-65,-10],[-30,24],[19,27],[-12,64],[-20,46]],[[24893,10468],[12,30],[42,-21],[30,-47],[40,-27],[7,30],[-43,45],[11,49],[46,-12],[-7,37],[-27,18],[5,38],[-26,97],[18,16],[32,-28],[35,96],[19,-20],[-13,-80],[-33,-37],[7,-45],[42,3],[13,-53],[-38,-10],[36,-43],[-27,-37],[-19,-46],[-3,-60],[58,-80],[-32,-31],[-29,32],[-20,69],[-34,3],[9,-96],[-31,-2],[-21,21],[-50,-14],[-3,50],[22,52],[39,-4],[9,30],[-40,24],[-8,35],[-28,18]],[[24768,10389],[35,89],[26,-26],[-7,-60],[-19,-19],[-35,16]],[[24682,9644],[45,23],[19,-7],[42,53],[58,-21],[-65,-43],[-32,-66],[-38,2],[-29,59]],[[24675,10333],[30,53],[47,-21],[4,-41],[-49,-25],[-32,34]],[[24637,10254],[39,-14],[20,-60],[-25,-15],[-34,89]],[[24311,11031],[33,25],[32,0],[45,-51],[-15,-46],[-84,18],[-11,54]],[[24127,9877],[13,70],[24,27],[44,-22],[26,44],[-21,47],[36,25],[34,99],[39,30],[30,48],[-20,31],[-49,-21],[-46,20],[-3,43],[75,30],[-14,25],[-79,38],[10,52],[30,-2],[57,-47],[34,-7],[-40,78],[-14,46],[26,36],[39,-37],[30,-65],[63,-40],[13,29],[-7,42],[-26,26],[1,34],[-21,24],[-20,53],[29,50],[28,-18],[44,-56],[24,0],[-17,97],[31,-15],[27,16],[-21,78],[43,62],[17,62],[18,3],[33,-58],[11,-61],[-15,-40],[-60,-2],[-9,-17],[18,-68],[-16,-145],[57,19],[0,65],[41,8],[20,-48],[-18,-86],[-42,3],[17,-53],[-26,-39],[-42,33],[-44,60],[-18,-11],[-1,-67],[17,-73],[-9,-18],[-40,2],[-36,22],[-8,-32],[25,-41],[-46,-63],[-18,15],[-15,-67],[-38,-34],[-34,-14],[-21,-56],[4,-47],[-40,-13],[-42,-33],[6,-76],[-32,-41],[11,-35],[-45,-1],[-4,41],[-28,36]],[[24013,11278],[29,51],[80,51],[31,-17],[44,-49],[33,2],[27,21],[-1,-85],[18,-38],[-15,-65],[-64,38],[-36,54],[-45,1],[-19,-48],[-50,-2],[-34,67],[2,19]],[[23781,10994],[40,35],[-8,43],[45,22],[9,-27],[51,-24],[68,53],[44,4],[11,-23],[-35,-36],[38,-12],[18,-80],[-30,-116],[-14,-14],[-49,21],[-11,67],[-50,-1],[-16,31],[-40,-25],[-57,54],[-14,28]],[[23350,10998],[34,15],[-1,38],[50,106],[58,31],[32,40],[31,-20],[55,-7],[18,-26],[-3,-113],[-57,-61],[16,-46],[21,-9],[54,58],[36,24],[-26,45],[65,111],[58,-35],[3,-55],[-22,-37],[-41,-33],[-16,-68],[14,-81],[50,-48],[-7,-49],[-26,7],[-14,-33],[72,-3],[27,-92],[-25,-33],[17,-43],[-38,-91],[-16,69],[-39,-6],[-25,-25],[-33,4],[-24,47],[-22,-7],[-32,24],[-12,60],[-32,14],[-61,-12],[-36,-93],[-12,-72],[-30,-24],[15,87],[-16,83],[-41,80],[20,63],[-2,43],[-28,38],[28,74],[-17,45],[-20,16]],[[23261,12542],[27,27],[59,6],[45,66],[27,-46],[-152,-57],[-6,4]],[[22612,10676],[22,41],[34,20],[31,-23],[31,19],[7,-49],[21,-40],[2,-42],[-21,-41],[-88,59],[-39,56]],[[22398,10329],[47,80],[33,-51],[-3,-42],[-41,-24],[-36,37]],[[22290,10698],[15,61],[35,32],[61,-10],[29,23],[64,27],[10,-22],[-26,-39],[-18,-85],[-32,21],[-53,-49],[-85,41]],[[22026,10520],[16,47],[33,10],[13,29],[35,17],[45,-32],[35,-2],[58,-74],[102,-45],[5,-52],[-52,-28],[-39,-35],[-11,-42],[-54,-27],[-45,54],[1,66],[35,34],[12,43],[-11,51],[-23,36],[-36,-139],[-74,49],[-25,-4],[-20,44]],[[22012,10190],[31,-8],[34,-51],[-12,-31],[-29,34],[-24,56]],[[21997,10433],[27,17],[16,-28],[38,-15],[-27,-42],[-54,68]],[[21944,10346],[48,-98],[-17,-13],[-25,63],[-6,48]],[[21345,9946],[48,15],[21,22],[20,60],[53,50],[80,-19],[32,-55],[-3,-81],[8,-101],[-51,-82],[-2,-41],[-53,-38],[-38,24],[-10,40],[-41,28],[-16,38],[-20,3],[-14,62],[2,55],[-16,20]],[[21285,8563],[50,3],[42,-37],[8,-41],[30,10],[20,-23],[-21,-29],[-25,16],[-39,-13],[-28,31],[-37,83]],[[20807,8594],[28,41],[1,102],[44,36],[119,-59],[10,-19],[39,-9],[48,-39],[33,-8],[55,-36],[9,-86],[-40,-25],[-80,19],[-25,-28],[-36,11],[-46,36],[-55,-46],[-45,25],[-28,52],[-31,33]],[[20401,11253],[7,37],[36,15],[32,-34],[-2,-55],[-27,-19],[-28,19],[-18,37]],[[25868,15157],[-68,-52],[-4,-28],[29,-52],[43,-42]],[[25015,11849],[-21,12],[-27,-41],[-2,-29],[-27,-74],[-84,-44],[-55,-7],[33,102],[60,26],[57,45],[-8,30],[-71,31],[-25,-9],[30,93],[57,47],[-33,20],[-34,69],[67,170],[5,33],[-24,34],[-107,60],[-74,2],[-48,13],[-49,-32],[20,-35],[-12,-29],[9,-42],[-19,-44],[-50,-6],[-76,91],[-17,-19],[14,-45],[-10,-59],[-31,56],[-41,-10],[-30,-83],[36,-35],[10,-32],[-20,-46],[-74,26],[8,-53],[-43,5],[-34,-15],[21,-84],[-3,-22],[-110,-26],[-30,30],[-55,-74],[-93,22],[-78,48],[-25,-67],[58,-31],[40,-42],[-39,-18],[-39,-71],[-35,-14],[2,-61],[-28,-65],[10,-37],[-17,-53],[-42,-46],[-42,9],[-25,117],[-34,71],[3,39],[-39,38],[-48,-79],[-26,-12],[-61,36],[-53,-17],[-14,-60],[39,-15],[30,7],[68,-19],[16,-41],[-1,-56],[-17,-49],[-32,-19],[-140,-4],[-51,42],[-4,59],[20,29],[-11,34],[-26,17],[-57,5],[-61,-49],[-16,-56],[-34,-56],[-14,-68],[-69,-47],[-46,-45],[-44,-29],[-80,-32],[-24,-33],[-50,-40],[-61,-2],[-33,13],[-4,48],[-52,15],[-58,-24],[-63,-46],[-63,9],[-17,32],[2,42],[24,23],[12,42],[18,127],[-8,82],[71,97],[9,39],[29,59],[25,23],[16,51],[-2,67],[-31,30],[-86,17],[-111,-13],[-63,-27],[-29,-30],[6,-37],[-20,-13],[-33,-81],[-33,-54],[6,-25],[-34,-23],[14,-39],[-16,-211],[15,-62],[-76,-134],[-16,-16],[-65,-110],[-17,-38],[-46,-59],[-16,-49],[-7,-78],[-27,-15],[-5,-35],[-36,20],[-59,62],[-64,2],[-12,-40],[29,-13],[19,-99],[-21,-24],[69,-33],[0,-57],[21,-31],[-18,-52],[-36,-29],[-41,-11],[-39,-52],[-37,46],[-74,64],[36,32],[-12,26],[10,37],[-46,21],[-38,-8],[-9,-36],[-48,-60],[-8,-35],[29,-50],[-3,-28],[20,-48],[-37,-77],[-39,-28],[-34,9],[-31,45],[-13,53],[-20,-10],[-21,-46],[-47,11],[-43,-16],[-46,28],[-57,57],[-32,130],[67,25],[33,-18],[8,-33],[53,-22],[53,16],[-29,37],[-32,-5],[-36,48],[-25,50],[-43,20],[-23,70],[-17,174],[-96,57],[24,77],[-52,-1],[-37,12],[-30,-18],[-19,-50],[-40,-71],[-18,-70],[5,-43],[35,-42],[56,5],[13,-38],[27,-33],[8,-43],[29,-35],[-15,-45],[-35,-26],[2,-39],[30,-35],[6,-85],[37,-97],[-2,-120],[23,-29],[-15,-22],[-28,17],[-8,38],[-37,42],[-77,16],[-47,-40],[18,-38],[-20,-43],[-17,3],[-25,-38],[-34,-13],[-29,20],[-28,-9],[-13,-27],[-60,13],[-43,50],[-7,50],[-44,38],[-15,44],[4,38],[22,26],[-42,60],[-37,88],[-77,72],[-49,-2],[-47,-33],[-53,9],[-10,-49],[-35,-103],[5,-34],[59,-44],[27,6],[32,-35],[93,-81],[25,-72],[-40,-50],[-46,-26],[-57,-55],[0,-17],[-41,-49],[-29,-4],[-27,-74],[-36,-23],[-67,-10],[-22,-56],[-51,7],[-17,72],[-22,53],[81,48],[10,87],[-38,49],[12,76],[35,-22],[77,-20],[15,22],[-70,51],[-6,22],[21,105],[-5,103],[-42,81],[18,35],[-26,18],[-23,-41],[-20,4],[89,92],[110,105],[71,39],[39,3],[53,57],[50,71],[28,-21],[-40,-26],[-21,-43],[-28,-26],[15,-31],[47,-4],[52,27],[46,-35],[30,30],[54,16],[24,-8],[19,100],[17,15],[-8,51],[-23,14],[-23,-24],[-31,31],[74,83],[36,13],[23,29],[11,40],[40,11],[40,-19],[49,66],[21,53],[51,43],[50,-17],[34,-38],[50,29],[29,42],[15,41],[-5,59],[-20,43],[18,47],[-3,37],[-44,-2],[-42,-26],[-19,11],[97,117],[53,88],[115,163],[99,166],[47,91],[70,74],[87,54],[122,154],[72,19],[77,57],[73,79],[86,116],[150,48],[88,39],[59,38],[250,76],[115,46],[147,71],[5,-13],[-131,-56],[-13,-36],[7,-34],[67,-16],[49,23],[62,-22],[50,30],[2,-31],[29,-25],[38,1],[32,49],[70,21],[26,46],[31,-6],[59,40],[20,-50],[-6,-70],[23,-37],[-23,-26],[-34,58],[-70,-16],[-41,-28],[-44,-58],[-13,-48],[23,-60],[61,-22],[5,-110],[19,-37],[46,-21],[68,-111],[22,-19],[42,-72],[28,62],[39,-3],[57,-44],[4,-48],[19,-54],[19,3],[23,113],[-56,42],[12,19],[-38,33],[-20,-2],[-39,33],[13,51],[-19,133],[-35,58],[1,26],[47,-12],[75,-51],[60,-13],[114,7],[37,26],[48,-15],[42,-87],[-15,-33],[2,-65],[29,-28],[22,47],[43,14],[22,-67],[33,-18],[42,13],[30,-28],[61,-7],[9,34],[-31,10],[-29,33],[1,25],[-36,32],[31,16],[93,29],[-43,63],[-47,-13],[-126,103],[-35,49],[-74,24],[-39,47],[-12,32],[-31,-6],[20,84],[-35,39],[-40,-14],[107,206],[46,109],[17,54],[2,43],[53,170],[31,120],[42,94],[44,50],[53,40],[58,67],[42,82],[59,64],[49,31],[65,25],[150,150],[80,94],[40,60],[43,46],[184,101],[157,96],[88,70],[31,36],[85,80],[40,7],[73,56],[26,4],[69,51],[52,49],[194,148],[115,134],[63,60]],[[18219,7988],[38,17],[71,48],[42,4],[2,-38],[-36,9],[-39,-36],[-50,-25],[-28,21]],[[18141,9003],[21,56],[56,21],[36,40],[64,44],[48,4],[69,49],[49,102],[43,105],[34,119],[33,61],[42,130],[-4,50],[10,52],[38,26],[35,48],[45,13],[36,29],[45,-22],[74,-74],[88,31],[88,65],[47,63],[41,33],[66,-21],[54,22],[102,83],[79,100],[58,-4],[92,47],[43,-20],[104,-12],[128,15],[29,13],[-2,-66],[12,-26],[56,-51],[58,-78],[21,-44],[41,-152],[-15,-24],[4,-114],[38,-70],[4,-85],[56,-92],[38,-3],[85,12],[60,52],[12,-26],[34,-1],[58,-92],[8,-62],[-4,-40],[42,-15],[27,-38],[-20,-28],[-32,2],[-79,34],[46,48],[-69,17],[-39,0],[-37,-18],[-45,8],[7,46],[-45,-30],[-42,52],[-13,73],[-45,6],[-35,-19],[-38,-62],[21,-75],[-13,-90],[-108,-15],[-23,-54],[-67,-13],[-17,-41],[-79,31],[-50,12],[-158,21],[-52,-10],[-133,-1],[-115,-16],[-56,-14],[-78,-32],[-70,-36],[-56,-42],[-91,-96],[-28,-60],[23,-45],[-17,-18],[7,-40],[-12,-30],[-41,-54],[-96,-84],[-51,-18],[-30,2],[-110,-32],[-61,-36],[-73,31],[-43,-17],[-69,21],[-66,47],[-12,51],[-21,11],[-9,58],[-44,49],[17,33],[-10,42],[-32,31],[-9,38],[2,60],[-10,49]],[[17789,7724],[32,42],[53,-8],[16,46],[44,-21],[38,17],[43,-36],[25,22],[62,-16],[11,38],[44,12],[17,-65],[-21,-29],[-27,-76],[-37,12],[-69,-32],[-53,8],[-68,46],[-29,-16],[-36,23],[-38,4],[-7,29]],[[17455,7652],[63,19],[43,-1],[43,27],[53,-6],[47,14],[32,-7],[36,-73],[-59,-2],[-11,-66],[-36,23],[-24,61],[-107,11],[-21,-12],[-59,12]],[[17335,7566],[17,3],[46,58],[47,-75],[-85,-35],[-25,49]],[[17193,8111],[14,60],[52,26],[6,58],[30,-11],[39,-38],[38,39],[44,12],[48,-16],[-7,-32],[-38,5],[-11,-46],[-48,-26],[0,-49],[74,-76],[35,7],[52,-19],[29,20],[29,-42],[-20,-60],[-21,13],[-81,0],[-14,-52],[-83,-43],[24,-41],[-16,-42],[-33,-12],[-47,20],[-14,77],[31,52],[3,26],[-31,17],[-20,47],[10,20],[58,54],[-2,23],[-38,29],[-35,-43],[-35,0],[-22,43]],[[16650,7783],[16,13],[1,59],[28,13],[-8,61],[40,34],[34,4],[31,57],[26,24],[95,-24],[44,3],[10,-36],[-19,-55],[24,-36],[35,-13],[26,43],[83,-45],[11,-43],[-69,-52],[72,-34],[41,13],[53,30],[-21,-99],[-45,-9],[-73,-61],[-21,22],[-78,11],[-4,-61],[-39,-56],[-24,11],[4,54],[-42,20],[-31,-19],[-32,32],[-13,-37],[-75,-33],[-1,78],[-24,40],[-30,19],[-25,72]],[[16539,7418],[37,7],[8,28],[75,-27],[7,-26],[33,-26],[-16,-25],[-34,-11],[-79,0],[-25,8],[-6,72]],[[24462,19827],[35,-6],[11,-29],[-24,-24],[-22,59]],[[24048,20032],[19,39],[38,12],[-5,-71],[40,-38],[-30,-19],[-60,58],[-2,19]],[[23892,20029],[17,35],[6,76],[25,52],[23,-54],[1,-67],[-51,-67],[-21,25]],[[28036,20464],[-19,-19],[-67,-17],[-84,-11],[-18,-22],[-73,-44],[-37,-42],[-57,-19],[-75,-36],[-28,-43],[-194,-72],[-114,-82],[-25,-25],[-61,-34],[-274,-139],[-80,-28],[-94,2],[-75,48],[-74,79],[-2,64],[-16,94],[-44,82],[-79,62],[-107,34],[-49,44],[16,44],[-8,29],[66,60],[-5,23],[19,225],[14,28],[-9,39],[11,74],[-61,-4],[-88,-168],[-20,-56],[-48,-44],[-90,-68],[-68,14],[9,-34],[-33,-166],[25,-82],[-36,-99],[-27,-23],[-69,3],[1,-67],[24,-40],[25,-98],[11,-80],[36,-106],[36,-7],[-3,-60],[16,-101],[11,-30],[68,-36],[-50,-113],[-76,-120],[-40,-25],[-87,-16],[-56,10],[-129,57],[-25,17],[-74,177],[-83,175],[-92,212],[-106,223],[-85,146],[-70,89],[-47,44],[-106,45],[-18,-22],[-48,43],[6,28],[59,101],[-40,98],[-43,16],[-119,-31],[19,-33],[-19,-57],[-34,-56],[30,-41],[-7,-34],[-60,21],[-18,-24],[17,-40],[6,-58],[-37,-26],[-43,-9],[0,-28],[-56,-24],[-67,91],[-21,59],[-28,14],[11,78],[-30,42],[-46,13],[-57,-18],[-8,-44],[-92,19],[18,52],[-26,63],[-29,5],[-39,-24],[-31,-37],[4,85],[-30,70],[-38,6],[-18,32],[36,40],[29,-3],[7,51],[-33,86],[-68,68],[36,16],[-12,29],[-48,11],[-42,-53],[-110,-69],[-52,-41],[-32,-52],[-38,-20],[-148,-125],[-85,-89],[-53,-88],[-36,-112],[-9,57],[-35,59],[-29,22],[-48,-20],[-57,1],[-38,-57],[-55,-41]],[[23071,19767],[16,38],[-11,82],[29,102],[3,66],[44,28],[27,35],[104,64],[61,-2],[38,19],[63,60],[32,0],[31,64],[33,4],[15,-25],[-82,-174],[-41,-122],[-63,-134],[-44,-136],[-44,-46],[-58,-31],[-23,13],[-75,6],[-39,-30],[-17,20],[16,51],[-15,48]],[[23096,20396],[-21,-25],[-41,-12],[-24,-32],[-28,6],[-28,-20],[-4,-30],[-46,0],[-94,-33],[-15,-42],[-40,-44]],[[55922,21803],[5,60],[17,43],[5,95],[13,46],[-39,16],[-19,-96],[2,-40],[-14,-94]],[[55468,22821],[304,183],[152,-162],[137,-106],[25,-6],[17,-89],[80,-99],[51,-7],[113,-160],[2,-238],[-63,-62],[-31,-65],[142,-108],[-52,-110]],[[458028,2044],[72,7],[56,85],[51,21],[52,-5],[141,-140],[6,-23],[-25,-42],[-9,-61],[-22,-43],[-109,-91],[-45,-5],[-118,67],[-47,65],[-12,44],[9,121]],[[456934,1118],[25,54],[38,4],[19,-39],[61,-31],[85,6],[127,-54],[19,-25],[3,-52],[104,-91],[95,-144],[85,-78],[61,-18],[34,-64],[16,-69],[43,-20],[156,-4],[98,-76],[-16,-29],[-65,-15],[-42,33],[-134,-38],[-53,51],[-3,29],[-154,142],[-47,39],[-60,113],[-79,120],[-138,98],[-15,6],[-60,-24],[-101,57],[-92,83],[-10,36]],[[456705,2032],[41,25],[94,-36],[50,-57],[-2,-20],[-64,-113],[-48,-10],[-22,28],[-22,58],[-27,125]],[[456437,1630],[88,-18],[38,-39],[47,-88],[-68,-5],[-18,14],[-75,106],[-12,30]],[[456255,2180],[32,49],[29,-2],[48,-47],[15,-80],[-22,-32],[-53,-12],[-34,30],[-15,94]],[[455117,1813],[39,35],[50,28],[24,-2],[64,96],[5,21],[87,45],[89,14],[18,23],[10,61],[0,60],[51,168],[23,56],[50,41],[75,-66],[19,-55],[-21,-61],[-35,-13],[-39,-130],[-31,-30],[-50,-70],[7,-61],[46,-14],[41,0],[-7,-69],[-59,-24],[-193,39],[-45,-30],[-32,-41],[-28,-82],[9,-79],[-28,-49],[-24,52],[-74,75],[-40,19],[-1,43]],[[453420,3085],[41,13],[56,-20],[21,-23],[-29,-62],[-42,-5],[-26,26],[-22,45],[1,26]],[[451114,4061],[35,23],[63,-40],[16,-60],[-62,7],[-48,26],[-4,44]],[[450967,4106],[64,-19],[23,-38],[-22,-28],[-41,26],[-24,59]],[[450857,4169],[38,-9],[44,-35],[-47,-21],[-35,65]],[[450204,3178],[30,71],[84,62],[39,-35],[32,-3],[37,24],[33,79],[40,-7],[47,81],[72,16],[114,-2],[-19,-43],[-60,-50],[-21,-85],[27,-66],[17,-173],[-95,-1],[-57,59],[-23,61],[-37,0],[-61,-43],[-60,-1],[-12,13],[-77,35],[-50,8]],[[449061,4577],[214,199],[18,10],[132,15],[461,-47],[31,-15],[36,-36],[16,-36],[50,-57],[51,13],[56,-46],[161,-219],[-11,-47],[-141,-13],[-23,13],[-71,76],[-30,-20],[-22,-47],[-27,-97],[-41,-29],[-21,0],[-153,34],[-121,-95],[-121,74],[-58,92],[4,105],[-16,40],[-145,128],[-71,-11],[-92,-43],[-56,17],[-10,42]],[[16396,6887],[13,28],[35,-42],[2,49],[40,21],[3,-85],[22,30],[16,59],[-5,50],[17,20],[51,21],[64,5],[28,-11],[-63,-62],[-5,-43],[31,-21],[-21,-27],[0,-46],[-39,-2],[-24,18],[-20,-16],[48,-58],[-33,-46],[-47,5],[-10,-59],[-25,16],[-19,55],[-34,6],[-12,37],[-2,74],[-11,24]],[[14427,5607],[55,36],[70,63],[1,21],[74,83],[50,8],[41,-19],[38,10],[29,47],[26,-4],[11,-34],[57,12],[-17,48],[30,18],[33,73],[57,-35],[21,-53],[21,7],[-8,56],[50,-39],[26,-45],[12,40],[-25,50],[9,52],[47,-63],[-2,92],[16,26],[109,-45],[14,27],[44,-13],[-4,112],[-33,41],[87,-22],[60,-25],[20,27],[-47,23],[-5,38],[-53,30],[-11,87],[-23,48],[19,58],[53,31],[22,-6],[29,-41],[36,-8],[-2,52],[46,-31],[-4,55],[-40,39],[-36,19],[-4,54],[44,65],[43,19],[135,3],[4,-38],[30,-33],[15,-46],[-8,-31],[11,-46],[31,39],[29,-37],[19,32],[-24,66],[-20,15],[23,56],[26,-31],[26,69],[40,-19],[50,-3],[-17,37],[-76,23],[-30,-1],[-78,24],[-35,34],[-54,7],[-48,47],[-58,-59],[-83,85],[-25,87],[-75,25],[-5,80],[39,12],[27,42],[18,85],[20,38],[50,23],[12,48],[24,24],[38,-9],[60,36],[58,50],[23,-25],[41,1],[20,34],[48,15],[45,43],[26,-40],[30,-1],[15,33],[29,14],[54,-28],[30,-56],[7,-46],[-8,-35],[-28,-12],[-28,-75],[35,-82],[-23,-40],[26,-23],[27,40],[12,-34],[-8,-55],[-18,-17],[22,-34],[15,45],[38,31],[-21,48],[23,27],[-4,58],[25,36],[26,8],[10,-31],[-44,-45],[36,-32],[49,48],[28,-3],[15,59],[-10,23],[3,51],[33,-19],[8,107],[35,29],[35,-7],[-31,-121],[53,-4],[69,95],[26,-27],[18,-82],[-8,-48],[18,-12],[31,23],[4,-47],[-36,-30],[5,-43],[-60,-37],[-59,9],[-23,37],[-8,-78],[-42,-40],[-13,-36],[-39,2],[19,-58],[-76,-51],[-59,3],[26,-79],[-97,-43],[4,-30],[30,-14],[-43,-39],[38,-11],[32,-43],[12,43],[-5,28],[22,24],[35,-17],[27,74],[56,36],[45,-72],[7,99],[45,33],[22,-57],[15,-78],[29,-7],[22,-35],[6,-42],[-27,-12],[-3,-43],[-47,-13],[-53,-31],[-30,20],[-15,-38],[-35,-7],[-28,-60],[-33,28],[-33,-39],[-42,19],[-24,-37],[-19,-106],[7,-26],[-16,-50],[-27,19],[-8,-51],[-28,29],[-8,55],[-34,44],[-11,-36],[25,-46],[14,-99],[-34,-1],[18,-48],[-13,-55],[-25,3],[-25,48],[-18,-18],[-35,26],[-6,40],[-22,17],[-20,65],[-28,-20],[37,-97],[-10,-37],[40,-27],[4,-58],[-23,-18],[-7,-39],[-38,34],[-25,-2],[-7,-42],[-51,61],[-17,-85],[-70,30],[8,55],[-42,6],[-13,-90],[-42,-5],[21,53],[-44,10],[-44,-10],[-11,-56],[-33,-16],[-70,10],[-34,-58],[-48,-23],[-21,-35],[-96,-34],[-14,-95],[-83,4],[-14,23],[-33,-37],[-56,-27],[1,-28],[-30,-62],[-26,-24],[11,-42],[-22,-9],[-42,53],[-29,-10],[-16,20],[-38,11],[-15,-24],[-15,-68],[-40,-20],[-16,40],[-44,23],[-112,23],[-9,41],[-38,14],[-30,37]],[[12813,4295],[11,24],[52,15],[20,50],[-21,28],[99,17],[29,20],[18,54],[-26,38],[18,62],[55,-20],[79,65],[-11,34],[-12,103],[92,65],[37,94],[5,70],[-46,39],[-3,34],[14,34],[-10,27],[12,34],[32,41],[-1,26],[50,67],[23,5],[25,36],[3,29],[35,0],[55,80],[6,39],[35,-5],[17,-29],[48,-27],[31,9],[34,31],[2,26],[40,-4],[18,-52],[71,23],[22,-27],[27,29],[3,85],[-31,-6],[-6,65],[-76,20],[22,40],[36,115],[-24,40],[-4,67],[18,20],[63,112],[73,53],[62,78],[4,20],[117,42],[72,43],[31,-17],[37,6],[34,30],[36,-11],[22,-29],[7,-49],[64,-30],[56,-7],[91,5],[8,-57],[-24,-65],[-65,-76],[0,-57],[18,-40],[-1,-68],[-38,-37],[-35,-18],[-13,-29],[-46,-19],[-45,-32],[-29,-41],[-72,-53],[-68,-33],[-9,-34],[-98,-39],[-95,-53],[-31,-48],[-49,-52],[15,-26],[-28,-28],[3,-37],[-30,-3],[-9,-68],[12,-25],[-41,-28],[-30,-44],[-42,-86],[-11,-57],[-71,-22],[-11,-24],[-83,-25],[-61,-109],[-30,-30],[-75,-36],[-8,-49],[-55,33],[-22,-20],[4,-52],[32,-28],[1,-32],[-39,-7],[-24,52],[-36,-29],[-30,1],[-21,-35],[-108,-91],[-33,-18],[-55,4],[-30,-44],[-2,-37],[-48,-2],[-34,-23]],[[12630,4137],[66,68],[44,33],[25,-6],[-57,-60],[-78,-35]],[[11986,4725],[20,53],[-2,50],[31,4],[21,28],[34,8],[17,-31],[0,-48],[-19,-39],[-19,-93],[-32,-29],[-27,16],[-24,81]],[[11956,14465],[37,3],[132,-32],[53,7],[34,-12],[112,12],[42,-33],[-42,-63],[-46,-17],[-29,-65],[-24,-21],[-76,16],[-42,39],[-9,63],[-51,26],[-40,4],[-51,73]],[[11940,4925],[41,68],[34,-56],[-10,-40],[-65,28]],[[11670,4321],[29,69],[52,11],[75,-31],[28,11],[-4,56],[22,18],[40,-8],[45,11],[-3,23],[54,-2],[54,-18],[15,-37],[23,-1],[1,-65],[-22,-37],[21,-30],[-50,-55],[16,-57],[-47,-12],[-14,58],[-42,38],[-25,-9],[-41,22],[-32,33],[-83,-103],[-34,-4],[-32,20],[-31,40],[-15,59]],[[11529,4503],[30,20],[13,42],[42,1],[51,-21],[24,-31],[-11,-76],[-55,-41],[-54,26],[-40,80]],[[11449,4033],[12,21],[-7,53],[19,59],[-8,23],[74,16],[19,-30],[59,-22],[-6,-73],[-27,-56],[-58,-10],[-77,19]],[[11145,15934],[6,80],[37,41],[31,-11],[78,43],[23,-21],[67,-1],[102,38],[26,3],[-34,-88],[0,-48],[-19,-34],[-51,-42],[-53,-17],[-2,-29],[-39,-22],[-1,60],[-17,25],[-44,-6],[-110,29]],[[10608,3597],[28,135],[1,62],[57,14],[27,23],[14,62],[21,27],[43,-7],[37,56],[83,-27],[46,-42],[-2,-89],[-17,-18],[-39,-89],[-67,-14],[-29,14],[-30,-11],[-37,-36],[-10,-32],[-29,-25],[-36,-52],[-32,39],[-29,10]],[[10180,3599],[22,44],[26,20],[25,-12],[-1,-64],[-72,12]],[[10004,3385],[5,46],[22,42],[55,39],[71,-96],[-22,-60],[-37,-52],[-36,-2],[-17,20],[-30,-3],[-11,66]],[[8322,2818],[16,78],[28,32],[33,98],[103,59],[20,36],[51,19],[36,0],[2,-36],[36,-29],[67,-4],[25,-30],[4,-54],[-17,-46],[-32,-14],[-65,-51],[-24,-45],[-42,19],[-40,-47],[-51,-5],[-26,-45],[-22,24],[-85,1],[-17,40]],[[6506,2441],[100,-12],[39,2],[75,31],[-16,-72],[84,12],[21,-28],[35,18],[23,52],[80,5],[88,31],[16,18],[41,1],[44,-30],[39,49],[19,-45],[-37,-59],[34,-10],[4,-36],[24,1],[24,39],[29,-37],[58,-9],[25,8],[44,-16],[68,10],[36,20],[30,-10],[22,-29],[58,40],[42,-18],[20,-39],[21,55],[16,-19],[47,-15],[57,7],[37,-12],[1,-21],[-31,-29],[-97,5],[-67,-48],[-64,-2],[-20,18],[-31,-22],[-44,3],[-27,-16],[-62,-1],[-37,-35],[-132,16],[-19,-28],[-55,-10],[-16,-16],[-31,53],[-32,24],[-25,-16],[-51,30],[-20,-20],[-36,21],[-62,-29],[-43,9],[-68,-30],[-51,36],[-76,4],[-15,50],[-47,87],[-40,-15],[-49,79]],[[4861,2154],[23,9],[31,-20],[55,61],[15,-23],[36,-1],[37,56],[76,13],[44,-61],[56,57],[24,58],[31,-1],[22,-49],[81,93],[-1,38],[33,15],[23,-38],[29,5],[26,-29],[34,13],[41,-13],[43,10],[12,24],[-11,38],[34,7],[30,-34],[28,-5],[57,20],[40,23],[8,55],[36,-24],[65,6],[7,31],[-46,0],[-26,72],[14,14],[54,-22],[33,30],[62,-18],[27,21],[-51,45],[-6,44],[35,-9],[48,13],[45,-18],[25,-40],[12,36],[23,-15],[23,53],[32,-1],[9,35],[32,9],[12,32],[-16,62],[-67,0],[-30,27],[-47,-18],[-31,8],[-18,34],[-34,-10],[-37,30],[-15,42],[25,23],[39,-15],[82,-8],[31,58],[-14,91],[19,18],[38,-7],[17,47],[68,14],[17,27],[68,26],[45,-54],[57,-21],[20,-55],[33,-25],[29,-5],[-3,-53],[20,-33],[10,-47],[-8,-58],[-30,-51],[-26,-18],[-3,-58],[-27,-48],[-99,14],[-23,-14],[-40,18],[-23,-46],[24,-51],[37,-6],[10,-60],[81,-84],[10,-50],[-24,-57],[-14,41],[-44,30],[-53,-26],[-43,-40],[-67,-13],[-13,50],[-60,19],[-17,-31],[-37,-5],[-1,-44],[-29,-6],[-2,-74],[-14,-14],[-9,-76],[-26,26],[-30,67],[-38,28],[-70,-34],[6,-41],[-31,-19],[-14,32],[-31,-6],[-35,-48],[-28,-16],[-16,28],[-36,12],[-7,-39],[-25,-43],[-29,-3],[-71,65],[-45,-4],[-86,43],[-40,-33],[-54,11],[-6,-43],[-37,13],[-30,-55],[-17,11],[-58,1],[-34,-13],[-79,8],[-51,-8],[-77,32],[-34,-7],[-12,-21],[-43,43]],[[4662,2032],[41,11],[18,21],[25,-33],[-84,1]],[[4621,2569],[25,18],[25,-31],[-35,-28],[-15,41]],[[4346,1962],[16,62],[62,-26],[18,19],[24,-30],[-76,-27],[-15,-53],[-29,55]],[[4178,1940],[21,25],[79,16],[24,-91],[-51,-10],[-24,46],[-49,14]],[[4071,2049],[62,29],[99,-12],[-19,-39],[-37,16],[-2,-48],[-69,24],[-34,30]],[[3950,1913],[7,37],[23,20],[8,-58],[-38,1]],[[3872,1790],[32,3],[33,38],[51,18],[46,5],[-9,-59],[59,-14],[-18,-32],[10,-34],[-9,-37],[-81,54],[-39,-9],[-8,31],[-67,36]],[[3749,2256],[5,34],[33,33],[1,38],[23,2],[26,34],[116,-24],[27,-70],[38,-28],[-13,-48],[39,-61],[-51,-8],[-36,-18],[4,-32],[30,-65],[-13,-25],[-42,-16],[-23,10],[-2,47],[-22,26],[-20,-14],[-80,21],[4,42],[-28,53],[-16,69]],[[3721,1632],[41,52],[-20,40],[14,49],[46,-4],[16,-37],[32,-28],[-10,-43],[39,-4],[-2,37],[57,3],[50,-25],[3,-48],[-66,-14],[-44,21],[4,-80],[-33,-16],[-46,-50],[-19,38],[23,32],[-63,33],[-22,44]],[[2754,1096],[24,17],[-14,56],[19,56],[42,33],[45,19],[24,49],[23,17],[-14,56],[10,36],[-47,42],[-23,51],[10,40],[61,56],[24,-54],[29,-2],[50,36],[-14,29],[45,96],[-2,46],[-44,68],[-14,59],[23,72],[25,23],[64,9],[69,-43],[50,31],[-2,34],[50,66],[43,-22],[5,-60],[-16,-58],[26,-56],[-5,-30],[-40,-9],[-50,-34],[-7,-85],[-19,-42],[52,1],[3,-38],[45,12],[23,-23],[32,8],[29,33],[42,-1],[11,-30],[69,76],[47,10],[28,-23],[42,30],[21,-3],[14,-33],[-12,-63],[-30,-10],[9,-46],[31,23],[16,-32],[4,-80],[-38,-38],[-28,-91],[-38,-24],[-21,21],[-45,4],[-4,142],[-32,-7],[-7,-44],[16,-20],[-10,-63],[-37,-12],[-21,33],[-123,-141],[-49,0],[-43,-19],[-24,8],[-31,-37],[-22,19],[-29,-8],[-9,-65],[17,-17],[-8,-67],[-42,37],[-64,-77],[-17,41],[11,61],[-30,90],[17,39],[-7,66],[-47,-98],[-3,-48],[-24,-20],[-23,-52],[-17,-78],[-30,-50],[-54,35],[-10,67]],[[2147,1833],[3,26],[29,20],[19,-13],[9,-38],[-41,-33],[-19,38]],[[1843,1305],[39,27],[44,51],[54,-26],[55,-14],[50,10],[5,47],[37,-8],[46,51],[44,-11],[23,23],[55,26],[81,25],[59,39],[43,55],[-5,51],[12,16],[-3,56],[7,54],[2,129],[21,32],[64,-6],[54,-29],[44,-57],[6,-38],[-32,-28],[9,-67],[-67,-52],[-16,-24],[-4,-68],[26,-56],[-15,-66],[6,-82],[-30,-63],[-37,6],[-39,-13],[-61,15],[12,-53],[-43,-28],[-28,17],[-21,42],[-62,86],[-15,-12],[-87,-8],[-37,-42],[-41,-30],[-131,18],[-43,-48],[7,-75],[-45,-2],[-4,75],[-22,5],[2,44],[-19,6]],[[1177,1763],[40,81],[88,29],[62,-5],[32,-12],[97,12],[32,-6],[0,-33],[61,-70],[-26,-51],[32,-31],[49,-2],[0,-42],[46,1],[13,22],[36,15],[34,-41],[32,-7],[55,49],[74,14],[15,-44],[-72,-50],[-44,4],[-93,-58],[-41,-13],[24,-44],[-53,-110],[15,-52],[-1,-49],[-47,-45],[-23,19],[-44,-32],[-12,-68],[18,-40],[18,-82],[-44,-13],[-32,74],[6,45],[-13,17],[-58,1],[-30,11],[-11,53],[-54,-32],[-45,45],[17,38],[-5,49],[39,-16],[45,1],[32,21],[77,27],[12,36],[-11,101],[-44,19],[-28,30],[-28,-28],[-27,0],[-14,39],[-28,19],[-10,44],[-59,33],[-40,43],[-42,20],[-20,29],[-2,35]],[[590,1025],[0,15],[55,18],[47,-32],[30,12],[20,-24],[-8,-34],[-26,-11],[-47,23],[-52,-2],[-19,35]],[[366,953],[49,-6],[49,-36],[30,6],[26,-17],[9,-35],[-68,2],[-42,-9],[-17,58],[-36,37]],[[355,1515],[14,91],[30,41],[52,0],[61,-67],[17,-74],[-46,-92],[-55,-4],[-73,105]],[[186,442],[43,41],[21,-30],[32,-15],[27,-61],[-12,-59],[-56,19],[8,-35],[-22,-43],[-24,-2],[-1,73],[7,64],[-23,48]],[[0,133],[10,36],[34,45],[42,-25],[13,-93],[-28,-74],[-34,-22],[-31,40],[11,51],[-17,42]]],"transform":{"scale":[0.0007829885865368254,0.00037287494446912485],"translate":[-179.14819599999998,51.22051]},"objects":{"cb_2019_02_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16,17,18,19,20]],[[21]],[[22]]],"type":"MultiPolygon","properties":{"COUNTYFP":"150"}},{"arcs":[[23,24,25,26,27,28,29,30,31,32]],"type":"Polygon","properties":{"COUNTYFP":"290"}},{"arcs":[[33,-27,34,35,36,37]],"type":"Polygon","properties":{"COUNTYFP":"240"}},{"arcs":[[[38,-36,39,40,41,42,43,44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67,68]],[[69,70]],[[71,72]]],"type":"MultiPolygon","properties":{"COUNTYFP":"261"}},{"arcs":[[[73,74,-43,75,-71,76,-69,77,-72,78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[-19,85]],[[86]],[[87,88,89,-17,90]],[[91]],[[92]],[[93]],[[94]]],"type":"MultiPolygon","properties":{"COUNTYFP":"122"}},{"arcs":[[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104,105,106,107]]],"type":"MultiPolygon","properties":{"COUNTYFP":"130"}},{"arcs":[[108,-37,-39,-45,109,110,-89,111,-30]],"type":"Polygon","properties":{"COUNTYFP":"170"}},{"arcs":[[[-110,-44,-75,112]],[[113]]],"type":"MultiPolygon","properties":{"COUNTYFP":"020"}},{"arcs":[[[114]],[[-25,115,116]]],"type":"MultiPolygon","properties":{"COUNTYFP":"185"}},{"arcs":[[[117,-31,-112,-88,118,119,120,121,122,123]],[[124]],[[125]],[[126]],[[127]]],"type":"MultiPolygon","properties":{"COUNTYFP":"050"}},{"arcs":[[[130]],[[131,132,133,134]],[[135,136,137,138],[139]]],"type":"MultiPolygon","properties":{"COUNTYFP":"100"}},{"arcs":[[-116,-24,140,141]],"type":"Polygon","properties":{"COUNTYFP":"188"}},{"arcs":[[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149,150,-105,151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]]],"type":"MultiPolygon","properties":{"COUNTYFP":"275"}},{"arcs":[[[158]],[[161,162]],[[163,164,-150,165]]],"type":"MultiPolygon","properties":{"COUNTYFP":"195"}},{"arcs":[[[166]],[[167]],[[170]],[[171]],[[172]],[[173]],[[174,175,176,177,-119,-91,-21,178,179]]],"type":"MultiPolygon","properties":{"COUNTYFP":"164"}},{"arcs":[[[180]],[[181,-107]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[-163,204,-161,205]],[[206,207]]],"type":"MultiPolygon","properties":{"COUNTYFP":"198"}},{"arcs":[[[208]],[[209]],[[-141,-33,210,211]],[[212]],[[213]]],"type":"MultiPolygon","properties":{"COUNTYFP":"180"}},{"arcs":[[[214]],[[215]],[[216]],[[217]],[[218]],[[-208,219]],[[220]],[[221]],[[222,223]],[[224,225]]],"type":"MultiPolygon","properties":{"COUNTYFP":"220"}},{"arcs":[[[226]],[[227]],[[228]],[[229]],[[230]],[[-211,-32,-118,-124,231]]],"type":"MultiPolygon","properties":{"COUNTYFP":"158"}},{"arcs":[[-28,-34,232]],"type":"Polygon","properties":{"COUNTYFP":"090"}},{"arcs":[[[233,234,-164,235]],[[236,237]],[[238]],[[239]],[[240]],[[241]],[[242,243]],[[244,245]],[[247]],[[248]],[[249]],[[250]],[[251]],[[-223,252,-225,253]],[[254]],[[255,256,-138,257]],[[-140]]],"type":"MultiPolygon","properties":{"COUNTYFP":"105"}},{"arcs":[[[258,-243,259,-245]],[[260]],[[261]],[[-134,262,-234,263,-238,264]]],"type":"MultiPolygon","properties":{"COUNTYFP":"110"}},{"arcs":[[-176,265]],"type":"Polygon","properties":{"COUNTYFP":"060"}},{"arcs":[[[266]],[[267]],[[-41,268,-256,269]]],"type":"MultiPolygon","properties":{"COUNTYFP":"282"}},{"arcs":[[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[-170,295,-180,296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]]],"type":"MultiPolygon","properties":{"COUNTYFP":"013"}},{"arcs":[[[305]],[[306]],[[307]],[[-120,-178,308]],[[309]],[[310,-122]]],"type":"MultiPolygon","properties":{"COUNTYFP":"070"}},{"arcs":[[-132,311,-136,312]],"type":"Polygon","properties":{"COUNTYFP":"230"}},{"arcs":[[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[327]],[[328]],[[329]],[[330]],[[331]],[[332]],[[333]],[[334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]]],"type":"MultiPolygon","properties":{"COUNTYFP":"016"}},{"arcs":[[-29,-233,-38,-109]],"type":"Polygon","properties":{"COUNTYFP":"068"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/al.topo.json b/app/assets/topojson/states/al.topo.json new file mode 100755 index 00000000..c6f7200d --- /dev/null +++ b/app/assets/topojson/states/al.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[2494,6169],[128,1],[-4,518],[127,0],[97,0],[248,4],[32,8],[142,1],[119,1],[36,45],[30,93],[25,16],[-4,91],[100,80],[-16,69],[11,65],[28,63],[-3,94],[39,100]],[[3629,7418],[0,-197],[250,3]],[[3879,7224],[-4,-59],[20,-45],[3,-62],[29,-120],[-12,-80],[-2,-28],[33,-54],[51,-130],[3,-32],[34,-58],[67,-30],[-43,-38],[5,-45],[41,-64],[29,-23],[20,-49],[-18,-40]],[[4135,6267],[-89,-35],[0,-57],[60,-12],[-80,-64],[-14,-40],[55,-82],[56,-27],[23,-27],[-244,1],[0,-64],[1,-112],[2,-348]],[[3905,5400],[-527,-2],[-148,1],[8,19],[-36,83],[-37,26],[-48,8],[-27,24],[-28,60],[-40,6],[23,55],[-64,13],[-34,56],[-76,51],[-23,44],[-81,-5],[-28,76],[-35,4],[-14,42],[-37,-2],[-34,22],[-54,73],[-69,-12]],[[2496,6042],[-2,127]],[[3628,3071],[367,2],[267,-2],[-21,-31],[22,-88],[-23,-30],[17,-54],[67,6],[45,-33],[51,26]],[[4420,2867],[0,-568],[30,-17]],[[4450,2282],[-92,7],[-505,2],[-531,6],[-57,-2],[-28,-1],[-157,-7],[-43,6],[-271,0],[-586,-2]],[[2180,2291],[-41,-1],[0,129],[-1,603]],[[2138,3022],[32,-5],[109,-46],[58,29],[32,32],[38,2],[46,34],[154,1]],[[2607,3069],[503,1],[155,0],[363,1]],[[1076,6486],[-12,-112],[67,-19],[64,-69],[57,-9],[48,-45],[25,-43],[28,-12]],[[1353,6177],[-578,-7],[-272,-1],[-374,3]],[[129,6172],[44,415],[45,462],[42,407],[2,20],[35,373],[34,343]],[[331,8192],[420,14]],[[751,8206],[17,-123],[-59,14],[34,-80],[-53,11],[-21,-52],[38,-22],[24,-116],[62,-55],[-58,-72],[78,-11],[36,23],[25,-45],[60,-64],[48,25],[37,-36],[-37,-57],[-59,19],[-16,-25],[20,-94],[50,-55],[-10,-34],[-73,-22],[19,-37],[72,-15],[64,39],[29,-23],[-43,-45],[13,-35],[-21,-64],[-44,-7],[-1,-56],[64,-78],[98,20],[93,32],[74,48],[47,16],[42,-23],[17,-30],[61,21],[51,-1],[48,-46],[-37,-46],[-17,50],[-51,8],[-39,-52],[58,-60],[3,-82],[51,-36]],[[1545,6833],[1,-50],[-120,24],[-31,-15],[-42,-53],[-36,-27],[-28,-61],[-47,-39],[-49,-6],[-92,-64],[-25,-56]],[[733,4729],[43,58],[7,34],[43,36],[31,120],[102,17],[29,33],[43,-5],[-20,49],[-51,-44],[-35,53],[-37,-2],[-11,33],[62,44],[39,-33],[19,107]],[[997,5229],[195,-1],[473,2],[343,3]],[[2008,5233],[2,-343],[85,1],[30,-17],[2,-113],[0,-15],[293,7],[4,0]],[[2424,4753],[0,-45],[-43,1],[3,-181],[2,-164],[-126,-2],[1,-110],[2,-315],[-84,-78],[-51,-25],[38,-56],[97,-54],[5,-50],[-34,-97],[-57,-62],[-53,-3],[-46,43],[-64,-4],[-50,-47],[-30,-9],[-19,-8],[-52,-83],[8,-89],[-59,-30],[-54,32],[-42,-58],[16,-56],[33,-25]],[[1765,3178],[-58,0],[12,-58],[-44,-23],[-42,26],[-25,-10],[-22,-83],[-66,-63],[34,-43],[-60,-30],[-39,9],[-41,-15],[-19,-35],[-82,16]],[[1313,2869],[-5,41],[43,53],[-32,58],[-48,18],[-27,59],[53,5],[-7,37],[13,44],[-22,50],[87,-10],[14,83],[38,-13],[37,82],[-37,72],[-9,52],[-51,5],[41,49],[-49,61],[39,14],[-9,52],[32,73],[-46,33],[-47,71],[-67,10],[-152,89],[-22,35],[-28,33],[-52,33],[-20,33],[15,32],[-25,41],[-18,79],[31,16],[-3,43],[-18,35],[-2,31]],[[960,4368],[-13,113],[-29,69],[-42,0],[-52,-25],[-40,41],[-16,67],[-38,76],[3,20]],[[5478,3647],[40,0],[-5,-43],[170,-3]],[[5683,3601],[-6,-44],[4,-262],[3,-428]],[[5684,2867],[0,-199],[8,-361],[7,-27]],[[5699,2280],[-453,2],[-376,-4],[-56,3],[-63,3],[-301,-2]],[[4420,2867],[-2,365],[4,96],[24,2],[56,60],[-7,40],[21,60],[-32,100],[-66,1],[-1,258]],[[4417,3849],[436,1],[69,3]],[[4922,3853],[33,0],[176,1],[38,4],[4,-224],[70,66],[16,39],[63,2],[28,45],[71,62],[47,14],[10,-215]],[[1138,5712],[14,49],[10,46],[-13,46],[12,54],[-19,47],[14,79],[-26,30],[2,39],[69,28],[40,39],[19,-28],[49,17],[46,-34],[-2,53]],[[1545,6833],[22,44],[56,-9],[24,-57]],[[1647,6811],[210,0],[-1,-129],[45,-1],[464,4]],[[2365,6685],[1,-173],[-4,-130],[4,-214],[128,1]],[[2496,6042],[-105,3],[-23,-33],[3,-361],[-8,0],[-240,-1],[-6,0],[3,-376],[-112,-10],[0,-31]],[[997,5229],[-26,24],[-28,-15],[-46,39],[-10,31],[8,122],[46,35],[63,-24],[61,58],[-15,60],[41,128],[47,25]],[[7637,5692],[380,5],[3,-36],[54,-59],[35,-62],[62,-40],[27,-59],[322,4]],[[8520,5445],[2,-155],[-21,-20],[-18,-66],[12,-31],[-52,-40],[20,-52],[-48,-41],[-40,-98],[-47,0],[10,-50],[-28,-52],[-4,-58],[25,-61],[-3,-78],[-22,-30],[37,-58]],[[8343,4555],[-54,33],[-67,-58],[-77,-38],[-8,-91],[-16,-24],[-43,2],[-252,9],[-204,2],[1,-74],[-2,-184]],[[7621,4132],[-255,0],[-110,-5],[-462,0]],[[6794,4127],[28,17],[52,109],[-4,111],[30,32],[11,96],[68,52],[24,62],[-24,80],[14,82],[-23,53],[50,83]],[[7020,4904],[22,92],[71,101],[39,45],[28,94],[15,14],[187,7],[-1,43],[210,2],[-3,92],[6,277],[43,21]],[[1956,14149],[277,0],[350,-2],[219,-4],[346,-8]],[[3148,14135],[-4,-293],[-7,-247],[-101,-83],[-52,-23],[-5,-21],[44,-44]],[[3023,13424],[-93,-23],[-115,135],[-82,23],[-95,-11],[-28,-2]],[[2610,13546],[-59,25],[-91,18],[-94,53],[-73,-16],[-47,-7],[-43,-41],[-60,-35],[-72,-17],[-64,-31],[-65,-18],[-56,-33],[-32,-52],[-94,-39],[-99,-8],[-72,27],[-63,65],[-68,53],[-64,53],[-34,53],[-14,65],[-40,76],[-59,54],[-145,64],[-49,6],[-54,-28],[-63,-14]],[[936,13819],[-97,46],[-45,44],[-53,118],[-57,85],[-10,50],[506,-6],[182,-1],[187,0],[407,-6]],[[2431,12079],[309,-10],[100,-2],[196,-3],[363,0]],[[3399,12064],[-5,-658],[0,-250],[-98,2]],[[3296,11158],[-44,35],[-52,-6],[-25,-53],[-42,26],[-30,0],[-347,6],[-156,0],[-174,2],[-142,9],[-197,8]],[[2087,11185],[-1,351],[4,172],[1,379]],[[2091,12087],[261,-7]],[[2352,12080],[79,-1]],[[7618,3551],[3,-147],[-2,-174]],[[7619,3230],[1,-85],[-171,3],[-1,-121],[-45,0],[-51,21],[-54,2],[-42,21],[-56,9],[-44,24],[-80,10],[-77,-25],[-23,-34],[10,-16],[-56,-90],[1,-30],[-43,-43]],[[6888,2876],[-202,3]],[[6686,2879],[0,283],[4,191],[1,388],[1,297],[0,89]],[[6692,4127],[102,0]],[[7621,4132],[2,-382],[-5,-199]],[[5338,11246],[-1,-109],[-42,-85],[-52,-52],[111,1]],[[5354,11001],[9,-24],[-60,-49],[-4,-42],[21,-19],[-22,-41],[-72,-57],[-72,-77],[-56,-38],[-104,-6],[-40,-22],[-66,-9],[-23,-25],[-105,0],[-34,0],[0,-108]],[[4726,10484],[-26,0],[-149,1],[6,21],[-102,72],[-144,101],[-23,17],[-14,10],[-312,8],[-131,-83],[-42,0]],[[3789,10631],[-2,88],[-23,40]],[[3764,10759],[44,26],[34,0],[31,52],[-19,39],[8,33],[94,23],[1,49],[45,-2],[62,47],[39,-13],[15,38],[79,-9],[-5,28],[69,32],[10,64],[27,5],[17,35],[102,77],[-20,36],[34,41],[-6,70],[74,-4],[30,23],[8,47],[73,44],[33,-25],[40,64],[18,9],[34,80],[60,47],[-17,35],[12,38],[34,53],[37,8],[10,74],[51,-9],[30,34],[85,-2]],[[5037,11946],[95,-140],[91,-113],[187,-222]],[[5410,11471],[-48,-79],[-24,-76],[0,-70]],[[78,5692],[20,184],[31,296]],[[960,4368],[-460,-2],[-478,-2]],[[22,4364],[-14,359],[-8,221],[78,748]],[[6366,9564],[-10,-173],[-42,-1],[-1,-42],[-88,0],[-6,-160],[-4,-99],[-78,0],[-222,6],[-43,0],[-6,-301],[-131,2],[-3,-269]],[[5732,8527],[-517,-4],[-273,0]],[[4942,8523],[27,36],[51,29],[-58,69],[-1,33],[-49,58],[24,53],[78,9],[-11,73],[21,50],[28,3],[36,5],[20,48],[-24,45],[14,21],[45,-29],[43,7],[80,51],[0,43],[-15,30],[-3,73],[62,22],[-23,69],[-65,54]],[[5222,9375],[40,47],[37,9],[62,103],[50,55],[13,48],[28,32],[0,42],[50,31],[2,-55],[31,-22],[45,17],[21,77],[90,69],[-5,27],[-40,20],[-28,68],[21,35],[62,-9],[-30,63],[73,19],[12,45],[-20,75],[-70,51],[0,52],[60,6],[14,-51],[40,-23],[23,22]],[[5803,10228],[240,-16],[9,-31],[50,-50],[10,-133],[65,-1],[0,-25],[2,-18],[499,-3],[-3,-86]],[[6675,9865],[-2,-43],[-137,-128]],[[6536,9694],[-133,0],[-1,-130],[-36,0]],[[7532,7420],[54,0],[0,43],[43,0],[22,-42],[68,-1],[209,1],[21,43],[374,5]],[[8323,7469],[54,-42],[-24,-50],[19,-84],[54,-52],[13,-36],[-42,-38],[39,-58],[55,-135],[112,-109],[54,-97]],[[8657,6768],[-149,-3],[4,-107],[-265,-6],[-420,-7],[9,-171],[-79,-1],[-180,-2]],[[7577,6471],[-11,259],[-127,-1],[-23,11],[-87,43],[-46,23],[-272,133],[0,43],[-86,-1],[0,41]],[[6925,7022],[0,301],[40,1],[-1,43],[174,4],[1,42],[42,2]],[[7181,7415],[255,6],[96,-1]],[[1247,2780],[73,-4],[-7,93]],[[1765,3178],[52,13],[80,-2],[25,-45],[29,-9],[36,-61],[89,-53],[62,1]],[[2180,2291],[24,-98],[-7,-39],[-39,-79],[-36,-116],[-32,-58],[19,-53],[67,-81],[46,-24],[75,-78],[37,-70],[11,-56],[52,-30],[24,-35],[52,-15],[17,-29],[58,-21],[38,-33],[72,-39],[25,-62],[9,-70],[-14,-74],[-19,-17],[-14,-77],[-16,-36],[-42,-38],[-27,-65],[4,-58],[34,-34],[-9,-42],[50,-72],[45,-20],[65,-11],[-1,-49],[-81,-60],[-65,-11],[-28,-44],[5,-32],[-31,-40],[1,-62],[-35,-38],[-67,-8],[-35,-46],[27,-30],[88,10],[18,-24],[-164,-49],[-101,-37],[-56,-6],[-189,-58],[-196,-27],[-162,-33],[-94,-7],[-219,10],[-90,-3],[-163,-17],[9,20],[143,15],[44,62],[32,15],[107,-66],[83,3],[105,42],[75,0],[49,24],[32,52],[-1,33],[-43,61],[-91,62],[-51,62],[-18,64],[-70,24],[-103,77],[-34,181],[-42,37],[79,161],[7,52],[-31,91],[6,89],[-22,33],[-10,65],[-28,25],[-48,4],[-74,55],[-58,18]],[[1158,1361],[19,44],[-34,73],[1,44],[-30,46],[11,63],[78,58],[9,51],[106,46],[-1,30],[-24,36],[-66,37],[-15,40],[40,66],[28,17],[14,48],[11,21],[64,26],[-48,78],[-50,13],[17,70],[-4,39],[19,56],[-17,22],[41,56],[-19,58],[-38,1],[-30,42],[73,116],[17,72],[-66,7],[-17,43]],[[3191,3733],[-38,-81],[-52,-11],[-104,-111],[-64,-44],[-54,-68],[-34,-68],[-35,-14],[-35,-98],[-82,-49],[-69,-73],[-17,-47]],[[2424,4753],[680,6],[25,-6],[138,-3],[638,7]],[[3905,4757],[3,-230]],[[3908,4527],[-70,-20],[-69,-47],[-69,-35],[-88,-18],[-66,17],[-25,-40],[13,-81],[-57,-33],[-32,-41],[-33,-2],[-79,-32],[-3,-78],[-19,-81],[-17,-20],[-34,-111],[0,-64],[-69,-108]],[[1738,9763],[95,-7],[178,6],[0,172],[87,3],[0,86],[208,-11],[311,-12]],[[2617,10000],[131,-1],[0,-43],[131,1],[1,-217],[128,-4]],[[3008,9736],[-4,-46],[-43,15],[1,-49],[-92,19],[-49,-64],[15,-42],[54,-2],[-1,-41],[75,-4],[0,-44],[44,-3],[45,-42],[-2,-44],[44,-1],[0,-87],[42,-22],[43,-1],[7,-44],[37,-1],[1,-64],[44,-1],[0,-42],[87,-2],[1,-45],[98,0],[0,-16],[50,-28],[4,-86]],[[3509,8949],[-27,0],[-68,-75],[-44,1],[-1,41],[-53,1],[-31,-19],[-108,-98],[-1,-195],[-206,7],[-74,-116],[-1,-17],[0,-6],[-16,-237],[-258,-8]],[[2621,8228],[-515,4],[-217,6]],[[1889,8238],[9,26],[2,7],[-302,-1],[2,117],[0,109],[-19,0],[3,127],[1,50]],[[1585,8673],[-1,282],[-2,571],[-5,246]],[[1577,9772],[161,-9]],[[5330,13002],[21,-50]],[[5351,12952],[59,-20],[1,-38],[-47,-9],[-21,-31],[59,-16],[-12,-64],[-33,-30],[-24,-57],[-53,41],[-27,-26],[-42,18],[-15,-63],[-58,-16],[-29,-43],[-75,12],[-37,-24],[-77,20],[-70,47],[-58,128],[3,13]],[[4795,12794],[-9,47],[-32,38],[-49,24],[-70,-16],[-80,-84],[-47,9],[-25,32],[-16,60],[-51,18],[-54,-24],[-64,-65],[-29,-20],[-73,-4]],[[4196,12809],[8,331],[2,251],[0,1],[6,405],[1,317]],[[4213,14114],[354,0],[419,-3],[190,3],[214,-2]],[[5390,14112],[15,-56],[46,-43],[64,-36],[11,-56],[-38,-7],[-53,62],[-72,-57],[27,-33],[-19,-37],[-49,-23],[-20,-55],[-1,-54],[51,-78],[-42,-42],[9,-68],[1,-112],[-10,-31],[-37,-32],[0,-70],[-2,-233],[59,-49]],[[3008,9736],[43,5],[48,72],[50,0],[33,70],[-19,49],[18,36],[44,24],[1,43],[87,-1],[0,44],[129,-1],[0,86],[87,13],[1,71],[44,0],[-1,32],[-1,97],[43,43],[0,86],[43,0],[0,43],[48,-1],[40,-1],[-1,44],[38,-1],[6,42]],[[4726,10484],[87,-1],[0,-87],[44,-43],[-1,-65],[0,-15],[1,-135],[-44,-42],[-21,-43],[-1,-96],[-1,-78],[22,-21],[66,-2],[0,-22]],[[4878,9834],[-1,-64],[-65,0],[-43,-20],[-66,-106],[-44,-43],[-174,-2],[0,-44],[-44,1],[-46,-63],[-19,-43],[-86,3],[0,-53],[-21,-32],[-43,1],[-1,-65],[-48,1],[-39,-20],[-42,1],[-1,-85],[-100,1],[-29,1],[-44,-52],[-65,-55],[0,-54],[-108,-32],[-33,-64],[-110,2]],[[3606,8948],[-97,1]],[[5223,9539],[-1,-164]],[[4942,8523],[-53,-51],[16,-53],[-35,-32],[6,-108]],[[4876,8279],[-48,11],[-34,-16],[-119,81],[-30,70],[-299,-2],[-180,-1],[-198,9],[1,-65]],[[3969,8366],[-43,21],[-44,0],[-44,21],[0,43],[-44,0],[2,59],[-46,-1],[-1,177],[-140,23],[0,39]],[[3609,8748],[11,37],[-11,54],[-3,109]],[[4878,9834],[88,1],[-1,-129],[171,-1],[87,0],[0,-166]],[[8657,6768],[15,-71],[-8,-72],[12,-33],[54,-23],[21,-60],[-40,-31],[-19,-157],[-44,-41],[7,-69],[31,-8],[139,-62],[27,-38],[84,-73],[-31,-10],[-71,-114],[-70,-3],[-35,1],[19,-68],[-110,-39],[-92,-113],[-41,-34],[41,-135],[-19,-18],[-7,-52]],[[7637,5692],[-43,0],[-15,261]],[[7579,5953],[-3,245],[2,221],[-1,52]],[[6976,12195],[28,55],[70,14],[53,82],[8,32],[55,56],[25,47],[-7,56],[27,42],[-14,33],[81,46],[63,78],[14,-6]],[[7379,12730],[108,-580],[64,-380],[114,-698]],[[7665,11072],[-67,-21],[-173,0],[-2,-43],[-85,-3]],[[7338,11005],[1,43],[-108,7],[-414,30]],[[6817,11085],[5,61],[-131,288],[-20,57],[16,57],[-52,0],[-53,-44],[-20,2],[-2,123],[-4,141]],[[6556,11770],[0,132],[88,-15],[-2,58],[87,0],[75,76],[172,174]],[[3908,4527],[0,-171],[-2,-185],[40,-75],[52,-122],[9,-59],[70,-62],[86,-4],[254,0]],[[915,676],[5,-73],[-8,-148],[-20,-62],[-40,-65],[-21,-63],[-40,41],[-89,-30],[-12,61],[20,22],[3,53],[-55,-8],[-18,22],[-110,44],[-80,14],[-49,-31],[-7,44],[-57,39],[-48,3],[-17,-52],[-26,-8],[-51,-47],[-27,652],[-22,579],[-28,638],[-15,335]],[[103,2636],[254,1],[1,87],[280,0],[51,0],[434,1],[85,86],[39,-31]],[[1158,1361],[-28,-23],[-10,-46],[-36,-36],[-58,-13],[19,-92],[-27,-72],[-56,-68],[14,-56],[-3,-52],[-45,-56],[-5,-50],[15,-65],[-23,-56]],[[364,18],[69,6],[187,41],[208,28],[26,21],[15,64],[94,-71],[30,-32],[-66,-21],[-59,17],[-104,6],[-82,-6],[-262,-58],[-56,5]],[[1047,839],[45,44],[22,-16],[-1,-75],[-66,47]],[[5951,6506],[-75,-13],[-18,9],[-39,28],[-95,32],[-29,47],[-31,-13],[-36,65],[-53,62],[-62,20],[-40,-46],[-74,-53],[-23,-93],[20,-69],[-89,57],[-130,-16],[-3,-43],[-33,-8]],[[5141,6472],[-3,531],[-2,349]],[[5136,7352],[0,128],[105,0],[-10,9]],[[5231,7489],[96,0],[0,43],[44,-1],[-1,-42],[649,4],[129,0]],[[6148,7493],[88,0],[-2,42],[43,0],[2,-43],[148,0],[39,0],[-5,-51],[-29,-29],[-3,-54],[-32,-30],[-5,-68],[54,-85],[-6,-43],[-11,-89],[23,-177],[-14,-78],[12,-70]],[[6450,6718],[83,-53],[-49,-4],[-24,-56],[-31,-22],[-93,18],[-37,-29],[-30,-8],[-37,36],[-54,-75],[-69,-24]],[[6109,6501],[-49,-6],[-9,-35],[-77,17],[-23,29]],[[2087,11185],[0,-100],[1,-158]],[[2088,10927],[-127,0],[-131,-1],[-246,11],[-284,4]],[[1300,10941],[0,303],[-29,1],[-60,1],[1,86],[-549,19]],[[663,11351],[3,30],[46,403],[2,48],[33,297]],[[747,12129],[452,-19],[272,-8],[293,-4],[327,-11]],[[1889,8238],[20,-27],[-12,-34],[-39,-1],[-48,-60],[43,-48],[-35,-41],[-37,-1],[-40,-45],[32,-33],[-15,-29],[-64,-1],[-41,-44],[-30,-10],[1,-48],[-25,-70],[38,-23],[9,-67],[-21,-46],[-77,-65],[-31,3],[-10,-38],[21,-12],[93,27],[37,-40],[2,-55],[-33,-1],[-25,-61],[40,-18],[25,24],[45,-96],[-18,-48],[15,-36],[45,-13],[43,29],[23,-23],[-17,-42],[-59,13],[-99,-24],[37,-69],[35,-16],[89,24],[28,-67],[-51,-34],[-58,19],[-12,-53],[-37,-26],[8,-45],[-37,-56]],[[751,8206],[21,69],[52,20],[-19,28],[88,19],[22,-17],[50,0],[21,49],[52,-38],[64,8],[-1,56],[79,27],[35,23],[43,-2],[36,41],[18,49],[175,92],[50,3],[48,40]],[[5390,14112],[609,-5],[514,-3],[399,-7],[239,-4],[55,-368]],[[7206,13725],[-109,-84],[-19,-98],[-65,-130],[-33,-30],[-48,-2],[-148,-229],[-84,-126],[-73,-56],[-308,-237],[-53,-68],[-109,-66],[-56,-13],[-79,1]],[[6022,12587],[-62,-34],[-15,54],[-39,71],[17,21],[-82,47],[-38,-29],[-10,41]],[[5793,12758],[3,193],[-221,3],[-224,-2]],[[7619,3230],[106,-1],[363,-15],[167,-5],[186,3]],[[8441,3212],[-5,-41],[-52,-39],[-7,-51],[41,-115],[-27,-106],[23,-29],[-4,-43],[58,-25],[32,-43],[23,-64],[48,-38],[23,-71],[-6,-28],[43,-62],[5,-63],[25,-55],[-8,-39],[-592,1],[-222,-4],[-397,-8]],[[7442,2289],[6,212],[0,389],[-249,-15],[-311,1]],[[4928,6278],[10,50],[40,9],[35,40],[9,53],[84,19],[35,23]],[[6109,6501],[30,-46],[-9,-55],[28,-42],[34,-105],[35,-8],[42,-28],[11,-64],[34,-44],[42,-13],[11,-26]],[[6367,6070],[-167,-6],[0,-64],[-32,0],[4,-323],[2,-268]],[[6174,5409],[3,-247],[-108,-1],[-240,-2],[-140,0]],[[5689,5159],[-276,-4],[-4,256],[-104,-1],[-152,-2]],[[5153,5408],[-1,44],[-5,529],[-124,88],[-30,-12],[-35,43],[-13,26],[40,95],[-57,57]],[[7180,7691],[-1,69],[1,412],[1,94],[0,270]],[[7181,8536],[342,5],[557,-3]],[[8080,8538],[71,-418],[47,-281],[2,-31],[75,-41],[-34,-54],[0,-52],[40,-52],[74,-62],[-51,-37],[19,-41]],[[7181,7415],[-1,276]],[[6174,5409],[52,10],[124,1],[37,-22],[44,0],[3,-172],[21,-22],[0,-43],[48,0],[187,0],[-3,-257],[333,0]],[[6692,4127],[-343,3],[-183,1],[-363,-4]],[[5803,4127],[-85,-4],[3,35],[49,57],[-2,38],[31,8],[0,334],[-3,44],[-127,-1],[0,51],[41,73],[2,111],[23,67],[-5,113],[-27,94],[-14,12]],[[5028,4239],[20,0],[6,135],[-1,386],[-3,115],[-1,278]],[[5049,5153],[107,-2],[-3,257]],[[5803,4127],[4,-237],[-31,-23],[-95,0],[0,-17],[2,-249]],[[4922,3853],[-1,299],[0,86],[107,1]],[[5732,8527],[260,1],[151,0],[0,-43]],[[6143,8485],[4,-552],[1,-440]],[[5231,7489],[-54,27],[-41,75],[-35,11],[-74,65],[-9,54],[32,56],[-9,38],[-36,16],[-32,10],[-30,98],[-33,20],[-30,50],[-6,124],[19,42],[-29,56],[12,48]],[[2610,13546],[1,-40],[-21,-38],[46,-19],[-30,-45],[-13,-102],[16,-26],[-60,-37],[-6,-29],[25,-33],[-16,-78],[-85,-3],[-10,-60],[-41,-33],[-24,-64],[17,-26],[-57,-56]],[[2352,12857],[-260,6],[-539,13],[-305,7],[-417,17]],[[831,12900],[54,422],[51,497]],[[3598,14125],[419,-11],[196,0]],[[4196,12809],[-120,17],[-60,33],[-113,36],[-39,20],[-123,78],[-48,42],[-108,73],[-36,-7],[-89,59],[-49,49]],[[3411,13209],[-50,46],[-34,67],[-82,55],[-65,21],[-38,29],[-54,12],[-65,-15]],[[3148,14135],[450,-10]],[[3764,10759],[-71,4],[-37,20],[-1,66],[-211,4],[-22,26],[47,22],[-9,38],[-49,50],[-14,60],[-58,26],[-43,83]],[[3399,12064],[0,43]],[[3399,12107],[43,-4],[210,-2],[26,0],[261,-7],[354,-7],[225,-5],[197,-2]],[[4715,12080],[261,-6],[1,-39],[44,-1],[21,-43],[-5,-45]],[[4135,6267],[-15,-22],[1,-54],[24,-22],[49,20],[45,78],[-23,87],[2,66],[78,-10],[57,45],[23,-5],[-2,-91],[19,-33],[81,-16],[58,62],[4,59],[21,18],[68,10],[12,-35],[-4,-58],[49,-38],[18,19],[44,21],[70,-34],[17,-68],[97,12]],[[5049,5153],[-129,-3],[-284,1],[-236,-3],[-246,-4],[-126,2]],[[4028,5146],[-3,217],[6,38],[-126,-1]],[[4028,5146],[-128,-1],[5,-388]],[[2621,8228],[4,-334],[-2,-47]],[[2623,7847],[-1,-130],[-126,0],[0,-258],[-4,-54],[-1,-206],[-127,-6],[-1,-102],[1,-78],[1,-328]],[[331,8192],[24,243],[76,733],[8,83],[56,548]],[[495,9799],[481,-15],[288,-12],[49,-3]],[[1313,9769],[264,3]],[[6530,11030],[-69,1],[-45,-22],[1,-108],[-87,0],[0,43],[-87,-19],[0,-64],[-43,3],[-3,-43],[-19,-43],[-65,4],[0,-43],[-68,3],[-41,-31]],[[6004,10711],[20,46],[-40,24],[-61,-13],[-28,59],[-9,67],[-76,-14],[-16,63],[-43,23],[-4,109],[-61,25],[7,29],[-56,13],[-45,-15],[-53,-50],[-42,39],[-15,29],[-39,-15],[-45,-64],[-27,-20],[-17,-45]],[[5410,11471],[125,113],[138,121],[76,28],[154,-4],[-1,43]],[[5902,11772],[243,-3],[24,-1],[223,2],[164,0]],[[6817,11085],[-14,-96],[-192,41],[-61,22],[-20,-22]],[[2617,10000],[-1,258],[-260,9],[-4,206],[-2,87],[-2,226],[-74,4],[-187,9],[1,128]],[[3411,13209],[-2,-238],[-3,-315],[-7,-331],[0,-218]],[[2352,12080],[-2,389],[2,244],[0,144]],[[3143,7730],[482,6]],[[3625,7736],[4,-318]],[[2623,7847],[254,2],[0,-130],[214,3],[52,8]],[[5999,10702],[34,-53],[-29,-36],[2,-33],[39,-57],[12,-45],[-47,-11],[-47,-50],[-87,-56],[-19,-39],[-33,14],[-22,-39],[1,-69]],[[6004,10711],[-5,-9]],[[4795,12794],[-7,-18],[-52,-360],[-12,-90],[-7,-49],[-2,-197]],[[103,2636],[-18,393],[-26,559],[-9,206],[-28,570]],[[3879,7224],[251,-12],[113,2],[145,3],[-2,130],[150,1],[69,1],[465,5],[66,-2]],[[6022,12587],[-131,-143],[0,-27],[5,-306],[0,-50],[6,-289]],[[7044,9281],[4,81],[7,324]],[[7055,9686],[354,-4],[371,-6],[54,-4],[66,-24]],[[7900,9648],[105,-644],[75,-466]],[[7181,8536],[-151,-2]],[[7030,8534],[4,431],[10,316]],[[747,12129],[20,182],[23,238],[41,351]],[[6925,7022],[-43,-1],[1,-41],[-215,-2],[4,-257],[-222,-3]],[[6143,8485],[87,1],[-1,44],[259,-1],[74,-2],[170,1],[298,6]],[[7206,13725],[62,-373],[59,-324],[52,-298]],[[7579,5953],[-403,-5],[-144,1],[-355,-1],[-149,-3],[-54,43],[-3,133],[-40,21],[-12,-70],[-52,-2]],[[7442,2289],[-394,-3],[-461,-6],[-335,-3],[-377,0],[-176,3]],[[5684,2867],[169,2],[22,-27],[0,27],[259,7],[117,2],[435,1]],[[7665,11072],[109,-666],[126,-758]],[[7055,9686],[-304,8],[0,-45],[-43,1],[0,-43],[-262,1],[44,21],[2,44],[44,21]],[[6675,9865],[129,-1],[5,130],[12,0],[31,40],[87,-2],[-2,44],[87,-1],[1,32],[42,33],[2,367],[42,1],[0,42],[44,2],[0,41],[43,-1],[2,130],[-128,2],[-1,87],[88,-3],[0,44],[173,-2],[6,155]],[[8343,4555],[20,-88],[-19,-47],[2,-65],[83,-103],[46,-90],[41,-33],[-1,-141],[41,-89],[-16,-79],[-59,-136],[14,-111],[-24,-18],[-17,-119],[-24,-59],[15,-42],[5,-65],[-9,-58]],[[1313,9769],[-1,462],[-6,259],[-6,271],[0,180]],[[3625,7736],[158,2],[199,-5],[0,195],[-1,346],[-12,92]],[[495,9799],[31,291],[51,505],[38,321],[48,435]]],"transform":{"scale":[0.0004010907564906,0.0003378324389210562],"translate":[-88.473227,30.223645]},"objects":{"cb_2019_01_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[6,7,8,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[12,13,14,15,16,17]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[18,19,20,21,22,23,24]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[25,26,27,28,-8,29,30,31]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[32,-13,-18,33,34,35,-6,36,-20,37]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[38,39,40,41,42,43]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[44,45,46,47,48]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[49,50,51,52,53,54]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[55,56,57,58,59,-42,60]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[61,62,63,64,65,66,67]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[68,-14,-33,-38,-19,-25,69,70]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[71,72,73,74,75,76,77]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[78,79,80,81,82,83]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[84,-23,85,-10,86,87]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[88,-11,-86,-22,89,90,91]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[92,93,94,95,96,97,98,99]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[100,101,102,103,104,105]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[106,-64,107,108,109,-95]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[110,-74,111,112,113,114,-109,115]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-81,116,-39,117,118]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[119,120,121,122,123,124]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-30,-7,-12,-89,-92,125]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[[126,127,-88,128]],[[129]],[[130]]],"type":"MultiPolygon","properties":{"COUNTYFP":"097"}},{"arcs":[[131,132,133,134,135,136,137]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-53,138,139,140,141,142]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-98,143,-34,-17,144]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[145,146,147,148,-101,-106]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-57,149,150,151]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[152,-132,-138,153,154,155,156,157]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[158,159,160,-79,-84,161]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-156,162,-43,-60,163,164]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[165,166,-157,-165,167,-26,-32,168]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-112,-73,169,170,-135,171]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-48,172,173,174]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[175,-104,176,177,-46,178]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-66,179,-51,180,181,182]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-4,183,-158,-167,184,185]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-37,-5,-186,186,-90,-21]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-144,-97,187,188,-35]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[189,190,191,-99,-145,-16]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[192,193,-62,-68,194,195,-124,196]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-52,-180,-65,-107,-94,197,-139]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[-173,-47,-178,198,-181,-50,-55,199]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[200,201,-1,-36,-189,202]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[203,-75,-111,-116,-108,-63,-194,204]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[-182,-199,-177,-103,205]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[-24,-85,-128,206,-70]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[-184,-3,207,-133,-153]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-67,-183,-206,-102,-149,-148,208,-195]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[209,210,211,-160,212,213]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-174,-200,-54,-143,214]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-159,-162,-83,215,-136,-171,216,-213]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[-120,-125,-196,-209,-147,217]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[-137,-216,-82,-119,218,-154]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-219,-118,-44,-163,-155]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-152,219,-28,220,-58]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[-185,-166,-169,-31,-126,-91,-187]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-122,221,-211,222,-77,223]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-197,-123,-224,-76,-204,-205,-193]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-150,-56,-61,-41,224]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-168,-164,-59,-221,-27]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-140,-198,-93,-100,-192,225]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-72,-78,-223,-210,-214,-217,-170]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[226,-113,-172,-134,-208,-2,-202]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-96,-110,-115,-114,-227,-201,-203,-188]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-226,-191,227,-141]],"type":"Polygon","properties":{"COUNTYFP":"075"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ar.topo.json b/app/assets/topojson/states/ar.topo.json new file mode 100755 index 00000000..4f59a2a4 --- /dev/null +++ b/app/assets/topojson/states/ar.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[1256,7721],[38,-1],[119,-3]],[[1413,7717],[112,-4]],[[1525,7713],[40,-1],[-1,-40],[-40,1],[-1,-41],[-113,4],[-2,-80],[-38,1],[-3,-121],[-78,2],[-100,3],[-16,0],[-1,-81],[-4,-163],[92,-2],[23,-1],[-2,-50],[-26,-12],[-11,-58],[20,-41],[-3,-43],[-34,-22],[-11,-44],[58,-47],[-103,-44]],[[1171,6833],[-13,-4],[-95,18],[-38,0],[-41,-42],[41,-56],[16,-45],[-27,-56],[-42,-3],[-48,28],[-33,-78],[-63,-17],[-18,3],[-91,-32],[-44,26],[-82,53],[-10,31],[18,75],[-41,54],[-63,53],[-58,-5],[-26,-45],[3,-60],[-13,-39]],[[403,6692],[-41,289],[-15,122],[-30,245],[-47,364]],[[270,7712],[105,-3],[122,-3],[67,-1],[157,-6],[6,0],[130,-4],[17,-1],[189,-7],[2,40],[38,-1],[153,-5]],[[6370,2206],[229,-25]],[[6599,2181],[44,-5],[188,-3],[-2,-119],[0,-3],[-3,-198],[-2,-166],[0,-121]],[[6824,1566],[-9,-488],[0,-1]],[[6815,1077],[-185,6],[-3,0],[-132,1],[-53,2],[-261,4],[-36,0],[-225,8],[-39,0],[-214,5]],[[5667,1103],[-23,43],[18,62],[-44,32],[-5,29],[33,44],[-20,38],[21,37],[-1,41],[-18,41],[69,1],[0,40],[0,429],[0,20]],[[5697,1960],[0,245]],[[5697,2205],[222,-1],[113,1],[111,0],[227,1]],[[6449,8216],[78,-2],[276,-5],[-3,-124],[231,-5]],[[7031,8080],[290,-1],[53,-1]],[[7374,8078],[-41,-22],[12,-64],[-31,-41],[-27,-72],[-84,-74],[-31,-58],[-40,-16],[-35,-54],[-12,-80],[-13,-15],[-38,-33],[40,-111],[-5,-26],[40,-35],[-50,-8],[-53,9],[-1,-147],[0,-146],[0,-25],[-228,2],[-8,1],[-222,8]],[[6547,7071],[-143,6],[-130,2],[-6,0],[-178,3]],[[6090,7082],[1,84],[4,184],[3,145],[1,84],[-37,-20],[-66,1]],[[5996,7560],[3,123],[-62,59],[-10,62],[-3,51],[35,66],[5,16],[6,78]],[[5970,8015],[124,126],[42,43],[41,42],[38,-1],[55,-2]],[[6270,8223],[179,-7]],[[6815,1077],[-2,-163],[-3,-164],[-1,-285],[0,-82],[0,-161],[0,-217]],[[6809,5],[-86,2],[-429,2],[-218,0],[-383,1],[-197,1]],[[5496,11],[-33,67],[-54,6],[-10,101],[-33,3],[-7,71],[2,41],[40,58],[5,71],[-57,16]],[[5349,445],[19,57],[-17,32],[47,72],[27,-6],[46,53],[38,50],[58,37],[30,30],[46,18],[2,52],[49,-5],[3,70],[-25,38],[44,43],[13,66],[-55,21],[-7,30]],[[4095,5792],[-31,-4],[-153,2],[-113,3],[-19,1],[-94,2],[-155,2],[-128,4]],[[3402,5802],[30,32],[-18,65],[119,18],[1,2],[14,46],[36,14],[67,78],[62,7]],[[3713,6064],[49,2],[40,4],[1,245],[1,40],[1,104],[1,100],[1,81],[4,242]],[[3811,6882],[228,-5],[212,-5],[85,-2],[86,-4],[189,-4],[-2,-121],[-1,-70],[-1,-53]],[[4607,6618],[-4,-120],[-2,-125],[-31,-47],[-34,-20],[19,-40],[-56,-52],[19,-21],[-15,-59],[64,-73],[-12,-85],[-34,-68],[-72,-4]],[[4449,5904],[-19,7],[-100,-100],[-75,-11],[42,47],[4,44],[-56,-11],[-68,-79],[-82,-9]],[[5581,4405],[1,122],[-172,4],[1,63],[21,48],[4,62],[9,82],[31,45],[1,39],[5,278],[7,228],[4,244],[-109,1]],[[5384,5621],[3,152]],[[5387,5773],[67,-5],[35,25],[49,-19],[71,21],[33,-34],[45,-12],[67,-38],[52,4],[50,-51],[25,9],[25,-18],[93,17],[72,0]],[[6071,5672],[-2,-305],[237,-5],[-2,-103],[0,-22],[-6,-202],[-3,-122],[-5,-244],[17,-3],[108,-96],[10,-30],[-21,-37],[-26,-40],[-10,-52],[60,-37],[4,-58],[-90,-101],[-2,-78]],[[6340,4137],[-59,2]],[[6281,4139],[-235,4],[-232,11],[-114,1],[-119,2]],[[5581,4157],[0,248]],[[1844,4838],[-40,1],[-1,-41],[-76,1],[0,-20],[-115,3],[-16,-61],[-1,-71],[-113,1]],[[1482,4651],[1,40],[-190,9],[0,26],[-113,2],[-226,5],[-59,1],[-169,4],[-78,2],[1,81],[-59,1],[-238,6]],[[352,4828],[8,285],[1,62],[3,102],[3,125]],[[367,5402],[37,-8],[46,52],[37,-17],[67,52],[32,-41],[20,2],[28,21],[63,-8],[62,12],[76,32],[1,48],[4,201],[-48,22],[39,14],[21,24],[59,-2],[39,40],[40,0],[39,20]],[[1029,5866],[-2,-123],[36,-1],[110,-4],[-1,-77],[116,-4]],[[1288,5657],[226,-5],[227,-7],[228,-3]],[[1969,5642],[-3,-202],[-2,-119],[-2,-123],[-1,-79],[-4,-245]],[[1957,4874],[-75,3],[-1,-41],[-37,2]],[[7704,8809],[192,-2],[159,0],[86,-2],[71,-1]],[[8212,8804],[134,-1],[-51,-70],[1,-30],[-50,-59],[-58,-35],[-10,-69],[-29,-43],[1,-39],[-42,-91],[34,-28],[-21,-43]],[[8121,8296],[-18,-30],[-5,-52],[-21,-40],[-1,-122],[-233,8],[-111,4]],[[7732,8064],[-175,11],[-183,3]],[[7031,8080],[7,249],[1,40],[4,167],[2,24],[4,223],[-6,45],[2,121],[2,83],[38,0],[3,39],[92,-2],[63,-2],[0,41]],[[7243,9108],[40,-1],[-3,-90],[39,-1],[87,-54],[44,0],[16,-23],[15,-60],[29,-26],[33,-37],[80,-8],[-5,-55],[25,-46],[21,18],[-4,54],[44,30]],[[1447,8365],[-4,-170],[-3,-114],[-4,-162],[-19,0],[-4,-202]],[[270,7712],[-32,239],[-32,243],[-28,205],[-36,273]],[[142,8672],[196,-5],[143,-3],[11,121],[115,-1],[3,80],[3,123],[219,-6],[81,-2],[122,-4],[53,-2],[207,-5],[73,12],[18,34],[36,-7],[31,40],[121,-3]],[[1574,9044],[-9,-31],[-76,-251],[-36,-121],[-1,-31],[-3,-130],[-2,-115]],[[6825,9568],[-3,-243],[-125,4],[-116,1],[0,-224],[0,-21],[-270,10]],[[6311,9095],[-79,1],[-120,2],[-114,3],[-77,1],[-114,2],[-78,1],[-191,5],[-231,7]],[[5307,9117],[-5,0],[2,82],[7,163],[4,81],[5,162],[1,176]],[[5321,9781],[232,1],[229,-1],[334,2],[354,0],[361,-5]],[[6831,9778],[-6,-210]],[[4893,4417],[226,-3],[-4,-245]],[[5115,4169],[-266,5],[-53,1],[-3,0],[-18,0],[-2,-122],[-157,3],[-63,2],[-179,5],[-10,-7],[-15,-39],[-47,-38],[-4,-35],[-95,3]],[[4203,3947],[-37,1],[2,164],[-116,2],[1,82],[-80,2],[-38,-1]],[[3935,4197],[4,164],[-38,0],[1,42],[1,37],[-149,2],[3,123],[-225,6],[2,133],[20,2],[1,81],[0,162],[-228,-1]],[[3327,4948],[3,241],[225,3],[301,-10],[26,-23],[33,7],[47,-28],[52,8],[36,30]],[[4050,5176],[191,-4],[-7,-244],[226,-8],[-5,-203],[14,0],[100,-4],[-2,-40],[122,-4],[-4,-127],[213,-3],[-5,-122]],[[4628,2947],[-8,-236],[42,-1],[9,-31],[68,-64],[43,-70],[18,-82],[23,-41],[51,-42],[44,-73],[-9,-66],[16,-27]],[[4925,2214],[-129,6],[-141,5],[-47,1],[-220,8]],[[4388,2234],[-6,0],[-14,1],[-356,11],[-124,4],[-170,6]],[[3718,2256],[2,59],[35,33],[-16,36],[-34,3],[-25,96],[5,75],[-50,37],[-2,27],[-19,78],[-39,7],[24,42],[120,-8],[10,322],[5,161]],[[3734,3224],[65,-4],[91,-8],[144,-2],[148,-4]],[[4182,3206],[227,-6],[172,-9],[54,-19],[43,-40],[48,6],[50,-58],[20,0],[41,-50],[13,-37],[46,-7],[23,-31]],[[4919,2955],[-291,-8]],[[4944,8314],[39,-1],[5,244],[231,-5],[5,205]],[[5224,8757],[13,-76],[28,-9],[52,39],[37,-29],[21,-67],[27,-49],[58,-16],[30,-28],[30,-35],[-12,-33],[-65,-16],[-13,-25],[25,-56],[5,-10],[1,-57],[-47,-36],[-13,-33],[32,-39],[40,0],[70,45],[38,-11],[19,-62],[38,9],[27,32],[31,25],[51,-26],[30,-47],[86,-80],[20,-16],[62,2],[25,-38]],[[5996,7560],[-89,2],[-88,1],[-173,3],[-70,2],[-58,1],[-96,2],[-26,1],[-193,6],[-76,2]],[[5127,7580],[-121,4],[-82,2],[-10,0],[-171,5],[3,155],[0,48]],[[4746,7794],[4,202],[-3,121],[2,80],[3,121]],[[4752,8318],[192,-4]],[[2843,8930],[1,106],[3,159],[3,201],[0,51],[1,136],[0,151],[5,47]],[[2856,9781],[361,-2],[242,1],[345,0]],[[3804,9780],[-16,-71],[-27,8],[-24,43],[-7,-442],[-3,-41],[1,-187],[0,-139],[-3,-246]],[[3725,8705],[-117,3]],[[3608,8708],[0,1],[-115,2],[-39,0],[-39,0],[-133,9],[-96,-5],[-154,4],[-115,4],[-77,3]],[[2840,8726],[3,204]],[[7059,9564],[77,-2],[-3,-85],[40,-2],[-3,-39],[39,-3],[-3,-121],[38,0],[-1,-204]],[[6270,8223],[2,124],[0,41],[58,-1],[-19,52],[21,28],[0,3],[1,122],[1,194],[12,61],[2,123],[-39,1],[2,124]],[[6831,9778],[93,-1]],[[6924,9777],[-1,-28],[57,-41],[41,0],[19,-62],[9,-82],[10,0]],[[3972,1512],[36,22],[26,-21],[33,47],[37,-13],[10,95],[-55,94],[26,77],[68,9],[95,24],[29,78],[75,55],[1,20],[31,62],[4,173]],[[4925,2214],[13,-61],[-24,-62],[18,-121]],[[4932,1970],[23,-72],[-15,-58],[14,-42],[-13,-73],[-5,-51],[17,-48],[-7,-36],[14,-72],[-11,-62],[24,-60],[-22,-46],[6,-34],[-40,-106],[-8,-62],[-30,-35],[-8,-55],[-33,-10],[-5,-45],[-11,-55],[13,-83],[55,-40]],[[4890,825],[-65,-56],[-91,-16],[-49,9],[-30,75],[-40,66],[-29,-27],[-25,29],[-51,-18],[-13,91],[-75,38]],[[4422,1016],[-28,17],[-25,84],[-28,-4],[-64,32],[-40,58],[-112,-7],[-4,42],[-36,37],[16,62],[-12,19],[-67,-12],[-29,28],[16,103],[-37,37]],[[3263,3883],[261,-5],[77,-1],[0,168],[47,-2],[28,0],[-5,121],[1,40],[263,-7]],[[4203,3947],[-3,-162],[-4,-205],[-1,-41],[-8,-81],[-5,-252]],[[3734,3224],[-336,11],[-2,58],[23,45],[6,43],[-19,26],[8,43],[-121,2],[2,23],[-236,7],[2,82],[-113,3],[-229,5],[3,163],[-113,3]],[[2609,3738],[2,162]],[[2611,3900],[344,-7],[39,-1],[269,-9]],[[9191,9112],[-192,1],[-163,5],[-148,6],[-77,5],[-78,3],[-314,1]],[[8219,9133],[1,59],[40,16],[11,-23],[66,-5],[7,361],[-28,0],[-35,37],[-4,33],[23,113],[-33,57]],[[8267,9781],[431,0],[313,0],[262,-1],[155,-1],[201,1],[-13,-52],[37,-46],[16,-74],[-1,-51],[54,-40],[69,-19],[28,-43],[-1,-42],[-27,-52],[-10,-74],[39,-53],[-30,-41],[-12,-45],[-68,-19],[-4,-18],[-20,-83],[-35,-5],[-103,-74]],[[9548,8949],[-211,-2],[-33,0],[-38,0],[2,107],[0,57],[-77,1]],[[1983,7535],[-4,-122],[-6,-242],[-1,-41],[-4,-139],[-3,-65],[-1,-41],[-6,-248]],[[1958,6637],[-58,-19],[-20,-10],[-25,34],[-80,72],[-26,76],[-3,-125],[-3,-137],[-1,-65],[-231,17],[-3,-129],[-1,-41],[-2,-81],[-116,2],[-118,3],[-1,-49]],[[1270,6185],[-38,2],[-3,-42],[-36,1],[1,42],[-40,0],[6,202],[0,96],[2,37],[2,126],[1,47],[6,137]],[[1525,7713],[0,41],[231,-6],[79,-4],[153,-6]],[[1988,7738],[-5,-203]],[[6090,7082],[-1,-40],[-3,-180],[-56,-14],[-62,-40],[-3,-156],[0,-62],[-111,2],[-77,1],[-151,1],[-221,8]],[[5405,6602],[-152,0],[-153,3]],[[5100,6605],[2,121],[2,82],[3,123],[2,121],[10,130],[0,14],[0,11],[5,179],[0,11],[3,183]],[[1619,9408],[7,-73],[64,-43],[4,-31],[37,-17]],[[1731,9244],[-116,2],[-1,-203],[-40,1]],[[142,8672],[-30,222],[-40,307],[-72,583],[505,0],[246,-1],[423,-1],[446,0]],[[1620,9782],[0,-169],[0,-123],[-38,-7],[-8,-33],[45,-42]],[[7259,6588],[143,-3],[21,0],[252,-6],[41,-1]],[[7716,6578],[-2,-246],[-3,-247],[-1,-84]],[[7710,6001],[-2,-164],[-2,-169],[-2,-78],[-225,4]],[[7479,5594],[-76,2],[-51,0],[-62,3],[-2,-55],[-80,1],[-38,0],[-4,-203],[-159,0]],[[7007,5342],[4,265],[6,81],[0,42],[-168,3],[-50,104]],[[6799,5837],[48,62],[8,17],[-28,56],[50,-3],[-10,42],[-56,10],[-1,32],[55,2],[-3,41],[20,10],[33,33],[7,43],[38,-25],[22,26],[-18,52],[1,55],[-27,37],[-24,2],[-2,106],[-54,-19],[6,52],[21,42],[-11,22],[15,59],[18,62],[95,70],[31,6],[24,44],[-4,43]],[[7053,6816],[-6,16],[209,3],[3,-247]],[[4503,23],[-373,5],[-225,3],[-186,3],[-206,3]],[[3513,37],[6,277],[7,365],[9,366]],[[3535,1045],[74,-3],[117,-4],[184,-6],[1,0],[120,31],[60,-5],[12,-31],[69,-24],[57,-13],[23,29],[48,-25],[57,28],[65,-6]],[[4890,825],[10,-49],[54,-54],[88,18],[71,-50],[49,3],[-20,-45],[19,-65],[49,-21],[51,0],[-8,-47],[96,-70]],[[5496,11],[-331,3],[-365,5],[-297,4]],[[5391,5926],[-4,-153]],[[5384,5621],[-229,6],[-5,-243],[-191,5],[-218,6],[1,-44],[-68,-41],[17,-87],[-10,-37],[24,-41],[-45,29],[-16,33],[27,81],[-3,36],[-50,112],[-46,19],[-52,-7],[-49,8]],[[4471,5456],[-61,28],[-34,37],[-21,66],[31,56],[50,43],[33,55],[11,67],[-31,96]],[[4607,6618],[308,-8],[20,-1],[127,-4],[38,0]],[[5405,6602],[-5,-246],[-4,-174],[-1,-44],[-1,-113],[-3,-99]],[[2619,4496],[-1,-104],[-3,-166],[-4,-295],[0,-31]],[[2609,3738],[-152,4]],[[2457,3742],[-164,5],[-139,6],[-72,1],[-156,6],[-230,0],[-224,8]],[[1472,3768],[1,122],[0,117],[0,8],[4,232],[0,44],[1,38],[4,322]],[[1957,4874],[112,-2],[115,-1],[262,-1],[116,-1],[77,-1]],[[2639,4868],[1,-162],[-18,-1],[-3,-209]],[[291,2091],[5,202],[2,94],[5,235]],[[303,2622],[23,11],[44,-43],[75,-7],[-19,47],[75,-8],[-3,-60],[-3,-68],[24,-6],[45,-42],[33,13],[17,-62],[47,-21],[21,-89],[47,22],[23,-31],[40,-5],[41,-41],[98,29],[9,-65],[36,7],[60,-28],[35,28],[75,-22],[98,-3],[-2,-81],[179,-6]],[[1421,2091],[4,-1]],[[1425,2090],[-23,-53],[7,-50],[28,-20],[-21,-29],[-9,-75],[74,-44],[23,32],[37,-40],[-26,-51],[43,19],[24,-35],[24,19],[44,-56],[58,-11]],[[1708,1696],[-23,-19],[-44,22],[-41,-56],[-33,0],[-14,-54],[-70,31],[-23,-31],[13,-53],[-50,10],[-18,68],[-24,-12],[13,-61],[-25,-58],[-35,31],[1,54],[-96,-34]],[[1239,1534],[-62,5],[13,42],[-36,18],[-80,-23],[-62,-4],[-29,65],[-47,16],[-27,-36],[-31,4],[-6,-56],[-28,-29],[-51,11],[24,56],[-40,16],[-36,-67],[-17,40],[-35,9],[-24,-68],[-39,-1],[-23,44],[-31,-18],[-7,-49],[-72,10],[-51,63],[-37,61],[-52,3],[-33,42],[32,22],[13,55],[-80,9],[5,242],[1,75]],[[9566,6810],[-73,2],[-154,2]],[[9339,6814],[0,244],[0,40],[0,20],[2,286],[-1,142]],[[9340,7546],[-1,243],[0,204],[-4,383]],[[9335,8376],[367,4],[373,3],[304,3],[155,1],[30,-41],[10,-64],[59,-43],[67,-61],[24,-60],[-8,-30],[-38,-30],[-47,39],[-58,26],[-57,2],[-53,-44],[-15,-42],[18,-50],[119,-54],[16,-42],[-46,-41],[-43,-10],[-32,13],[-51,-15],[-32,-34],[-6,-49],[-33,-43],[-69,-12],[-57,-40],[-70,49],[-84,-50],[-31,-37],[7,-104],[53,-86],[33,-20],[62,2],[48,47],[24,-20],[0,-65],[-88,-68],[-35,5],[-75,-44],[-25,-31],[6,-41],[28,-55],[60,-19],[20,-43],[-33,-57],[-55,15],[-28,22],[-1,41],[-67,51],[-23,3],[-71,-21],[-35,-88],[1,-50],[30,-66],[34,-44],[-27,-104],[-54,-67],[-38,84],[14,91],[-48,35],[-38,-5],[-28,-32],[-19,-66],[-23,-16]],[[9656,6808],[-90,2]],[[6853,3083],[-14,67],[-68,15],[-41,-10],[4,50],[-43,-18],[1,82],[-26,29],[-4,92],[-40,22],[-39,6],[-66,-36],[-7,46],[-18,5],[-225,9],[4,207],[4,160],[2,84],[4,246]],[[6340,4137],[133,-7],[45,3],[2,245],[234,-7],[233,-6]],[[6987,4365],[186,-5],[2,-91],[62,-5],[15,-96],[85,-57],[29,-77],[62,-3],[42,-62],[-26,-28],[59,-26],[18,-54],[52,-49],[-4,-35],[35,-28],[26,12],[50,-31]],[[7680,3730],[7,-15],[-17,-97],[-36,-37],[27,-56],[5,-26],[-16,-148],[-52,-40],[23,-77],[0,-38],[-58,-41],[-16,-34]],[[7547,3121],[-11,-34],[-39,13],[-15,-67],[-43,18],[-56,-62],[14,-28],[-20,-33],[30,-94],[25,-3],[31,-61],[-4,-41],[50,-48],[7,-19],[-41,-49],[-54,60],[-73,-11],[-8,48],[-51,9],[-32,-53],[-40,44],[-30,2],[-44,-33],[-91,-18],[-21,25],[69,44],[13,28],[-22,42],[-50,-9],[-45,-53],[-31,-4],[-73,94]],[[6892,2828],[-33,57],[3,94],[-21,33]],[[6841,3012],[20,10],[-8,61]],[[3598,7862],[-4,-247]],[[3594,7615],[-155,3],[-305,9]],[[3134,7627],[-305,4],[-158,0],[-115,4],[-112,6],[-76,1],[1,82]],[[2369,7724],[5,167],[-20,1],[6,162],[38,-1],[2,123],[39,-2],[1,40],[1,41],[38,-1],[1,41],[37,0],[4,162],[1,79],[6,76],[-75,2],[2,122]],[[2455,8736],[75,-2],[196,-6],[114,-2]],[[3608,8708],[-2,-121],[15,0],[-5,-229],[-1,-96],[-7,-237],[-10,-163]],[[2867,5275],[38,1],[1,42],[38,-1],[1,41],[37,-1],[0,41],[38,0],[0,43],[36,-1],[1,41],[40,-1],[1,41],[45,-2],[0,41],[39,-1],[1,41],[38,-1],[1,40],[38,-2],[2,46],[39,-1],[0,40],[38,-1],[1,41],[38,-1],[24,41]],[[4471,5456],[0,-48],[-223,9],[-4,-82],[-75,1],[-149,2],[-4,-161],[34,-1]],[[3327,4948],[-420,0],[-39,4]],[[2868,4952],[-1,246],[-38,0],[1,40],[37,0],[0,37]],[[1941,2778],[39,-4],[37,-32],[80,-5],[67,-61],[28,13],[103,-24],[49,-5],[4,-30],[42,7],[40,28],[74,2]],[[2504,2667],[-8,-329],[-23,-40],[-6,-202],[-4,-147],[-2,-98],[-4,-164],[-5,-122],[-2,-121],[-3,-123]],[[2447,1321],[-114,4],[-184,5],[-41,2],[-178,6]],[[1930,1338],[-24,42],[-46,17],[-37,-13],[-13,77],[-37,49],[-26,1],[24,27],[-8,31],[-46,3],[-11,31],[31,60],[-29,33]],[[1425,2090],[271,-9],[3,123],[3,120],[5,164],[7,324]],[[1714,2812],[151,-5],[76,-29]],[[6841,3012],[-52,13],[-64,-33],[-22,9],[-48,61],[-44,22],[-38,-12],[-29,-34],[-41,-4],[-16,42],[17,43],[36,12],[-35,26],[-51,-8],[-38,25],[-110,91],[-40,8],[-33,1],[2,-141],[0,-163],[-39,-1],[-1,82],[-226,-2],[-224,0],[0,-12],[0,-70]],[[5745,2967],[-140,-1],[-87,-1],[-23,0],[-125,1],[-222,-4],[-6,0]],[[5142,2962],[2,164],[0,160],[0,148],[42,-2],[3,164],[3,103],[2,224],[0,13],[3,231]],[[5197,4167],[138,-4],[246,-6]],[[8733,4826],[27,-48],[36,-34],[36,-7],[76,14],[43,-16],[2,-60],[-29,-40],[-81,-81],[-66,2],[-16,40],[5,38],[29,31],[1,33],[-36,43],[-25,-13],[-46,-62],[11,-83]],[[8700,4583],[-179,1],[-29,0],[-151,2],[-153,1],[-38,1],[-104,1],[-87,1],[-115,2],[-154,3]],[[7690,4595],[4,163],[1,85],[-114,2],[4,205],[0,42],[1,123]],[[7586,5215],[2,124],[114,1],[223,-14],[219,-2],[203,-3],[275,4],[225,-4],[230,-3]],[[9077,5318],[1,-199]],[[9078,5119],[-34,5],[-27,134],[-64,24],[-39,-39],[1,-44],[58,-107],[-38,-84],[50,-127],[-14,-42],[-26,-16],[-69,-8],[-40,21],[-4,62],[45,45],[-33,89],[-43,-9],[-24,-39],[27,-97],[-53,-26],[-18,-35]],[[5564,1960],[-299,3],[-17,0],[-218,0],[-98,7]],[[4919,2955],[223,7]],[[5745,2967],[2,-243],[-51,0],[1,-151],[0,-123],[0,-81],[0,-164]],[[5697,1960],[-133,0]],[[7479,5594],[-6,-216],[0,-38],[76,0],[-1,-125],[38,0]],[[7690,4595],[-1,-124],[-3,-200],[-1,-83],[-1,-82],[117,-5],[-3,-236],[-2,-136],[-116,1]],[[6987,4365],[2,82],[-77,3],[1,41],[-77,2],[2,163],[156,-4],[1,81],[1,119],[7,245],[-6,3],[1,46],[28,11],[-3,40],[30,23],[-60,78],[14,44]],[[816,3327],[294,-4],[11,-1],[7,-122],[5,-40],[26,-21],[-28,-36],[21,-39],[-14,-51],[15,-31],[-9,-98],[45,-99],[-2,-117],[-6,-82],[18,-40],[14,-41],[12,-45],[59,-25],[12,-56],[61,-97],[52,-65],[9,-57],[-18,-16],[21,-53]],[[303,2622],[10,454],[5,244]],[[318,3320],[294,2],[195,4]],[[807,3326],[9,1]],[[9079,5594],[11,0],[5,408],[-222,-12]],[[8873,5990],[-7,97],[7,451],[0,39],[2,239],[0,7]],[[8875,6823],[226,-5],[122,-2],[116,-2]],[[9656,6808],[-62,-41],[-22,-102],[28,-29],[66,5],[-17,31],[0,53],[57,14],[44,-46],[46,-31],[-19,-43],[-57,-73],[14,-29],[-11,-77],[-118,-24],[-11,-40],[22,-54],[39,-29],[52,10],[37,-13],[44,-66],[-38,-92],[-42,10],[17,-66],[33,-49],[50,-10],[7,-50],[-37,-40],[-37,-14],[-83,49],[-36,-9],[-38,-36],[-17,-75],[-30,-82],[-12,-83],[-33,-17],[-87,23],[-19,16],[-63,1],[-27,-62],[-6,-48],[12,-45],[56,-56],[61,-39],[12,-38],[-12,-85],[-137,-99],[21,-34],[-16,-43],[-63,45],[-146,-77]],[[9077,5318],[1,204],[1,72]],[[6547,7071],[-6,-246],[104,-3],[122,-3],[286,-3]],[[6799,5837],[-161,4],[-96,2],[-2,-186],[-38,3],[-23,-14],[-60,19],[-10,35],[-41,38],[-32,-10],[-24,24],[-37,10],[-71,-34],[-54,-1],[-79,-55]],[[7717,6831],[6,-4],[227,-4],[116,5],[116,6],[54,1],[178,-1],[0,11],[227,-2],[0,-20],[234,0]],[[8873,5990],[0,-2],[-234,9],[-55,-4],[-259,7],[-40,0],[-115,3],[-110,-1],[-197,-2],[-153,1]],[[7716,6578],[1,253]],[[5115,4169],[82,-2]],[[3254,1787],[-8,-245],[-1,-41],[-6,-204],[-1,-41]],[[3238,1256],[-226,6],[0,-41],[-76,6],[-152,4],[-83,2]],[[2701,1233],[-256,7],[2,81]],[[2504,2667],[113,-14],[67,14]],[[2684,2667],[75,-110],[80,-58],[-1,-85],[24,-60],[70,-46],[85,0],[59,-35],[27,-45],[86,41],[57,-97],[18,-9]],[[3264,2163],[-10,-376]],[[2868,4952],[-230,-3],[1,-81]],[[1969,5642],[1,75],[-10,1],[3,153],[2,93],[94,-3],[0,41],[135,-3],[153,-5],[1,40],[38,0],[1,40],[37,-1],[21,39],[1,39],[59,40],[152,-5],[228,-4],[4,293]],[[2889,6475],[57,-55],[2,-37],[35,-30],[73,-5],[37,-27],[59,-76],[35,-71],[7,-52],[41,-53],[44,4],[20,22],[26,-23],[-24,-64],[-9,-44],[56,-47],[42,1],[39,41],[-3,69],[16,16],[117,24],[40,-8],[54,20],[60,-16]],[[8350,8293],[117,-1],[37,0],[154,-2],[38,-1],[101,0],[92,0],[77,-1],[95,-1],[62,0],[0,34],[20,53]],[[9143,8374],[192,2]],[[9340,7546],[-227,3],[-122,8],[-39,4],[-73,5],[-225,-8],[-7,0],[-227,3],[-232,0],[-121,2],[-113,1],[-232,6]],[[7722,7570],[4,205],[0,41],[6,248]],[[8121,8296],[229,-3]],[[3812,6964],[-1,-82]],[[2889,6475],[-45,29]],[[2844,6504],[2,154],[3,142],[2,102],[156,-4],[3,244],[-1,0],[3,121],[115,-3],[7,367]],[[3594,7615],[305,-6]],[[3899,7609],[-2,-121],[-2,-78],[-2,-167],[-2,-120],[-77,1],[-2,-160]],[[2072,7734],[-84,4]],[[1731,9244],[191,-7],[149,-3],[-14,-55],[52,0],[10,-45],[37,-24],[-4,-161],[18,-41],[58,-2],[-1,-40],[-1,-44],[75,-2],[-1,-81],[155,-3]],[[2369,7724],[-297,10]],[[2844,6504],[-65,39],[-74,-31],[-44,1],[-73,-12],[-9,30],[55,39],[-39,39],[-22,92],[0,2],[-12,70],[-36,12],[-34,-11],[-39,-54],[-37,-24],[-62,34],[-41,-5],[-84,-56],[-23,-8],[-94,6],[-47,50],[-68,-75],[-38,-5]],[[3725,8705],[116,-1],[0,-122],[424,-12],[126,-1],[367,-8]],[[4758,8561],[-5,-202],[-1,-41]],[[4746,7794],[-115,1],[-40,1],[-236,2],[-68,2],[-3,-203],[-39,2],[-188,6],[-158,4]],[[3264,2163],[41,3],[36,24],[81,-47],[67,26],[73,33],[59,38],[19,49],[72,-44],[6,11]],[[3535,1045],[-76,1],[-227,7],[6,203]],[[8700,4583],[-8,-72],[37,-79],[52,-68],[0,-71],[-51,-36],[-25,-34],[-19,-78],[13,-73],[37,-59],[-30,-76],[-72,-56],[-96,-42],[-18,-55],[21,-80],[-9,-34],[-36,-6],[-33,26],[4,45],[21,40],[7,51],[-72,-20],[-47,4],[-49,6],[-23,-20],[4,-49],[35,-33],[17,-68],[-52,-73],[-81,5],[-47,-17],[-19,-37],[-13,-103],[-18,-55],[-68,25],[-45,39],[-15,42],[-35,6],[-28,-28],[8,-61],[36,-50],[60,-42],[70,14],[84,-11],[19,-60],[-32,-49],[-53,-20],[-37,10],[-65,57],[-33,13],[-96,-76],[-1,-54]],[[7899,3121],[-352,0]],[[1472,3768],[-232,5],[-280,4],[-151,6],[-26,0],[-3,-242],[27,1],[0,-216]],[[318,3320],[11,473],[5,247],[6,244],[5,244],[4,162],[3,138]],[[7722,7570],[-3,-249],[-1,-121],[-1,-251],[0,-118]],[[2356,41],[-184,1],[-419,1]],[[1753,43],[-10,31],[-38,17],[-1,60],[-24,45],[-46,49],[14,47],[-4,47],[12,56],[25,10],[81,44],[27,-11],[5,-45],[26,-1],[2,60],[49,51],[49,-1],[-37,56],[81,53],[-42,-1],[3,45],[49,22],[-7,32],[-45,31],[37,25],[56,10],[1,42],[-31,37],[11,28],[50,7],[8,29],[-43,25],[-49,3],[23,87],[43,1],[14,22],[-74,25],[-18,32],[-42,54],[42,15],[13,39],[-47,-1],[-21,45],[32,40],[3,33]],[[2701,1233],[-24,-34],[-75,-219],[-38,-109],[12,-39],[-28,-34],[8,-35],[-20,-52],[-86,5],[-3,-122],[-16,-554]],[[2431,40],[-75,1]],[[8212,8804],[7,329]],[[9548,8949],[-31,-40],[-34,-6],[-32,-72],[1,-50],[-81,-65],[-45,-10],[-15,-45],[-44,-31],[-1,-45],[-32,-33],[-26,-49],[-8,-46],[-57,-83]],[[1472,3768],[-3,-202],[27,-42],[-4,-214],[38,-2],[189,-6],[-5,-305],[0,-20],[0,-165]],[[1031,5948],[1,40],[41,-1],[192,-6],[3,118],[0,5],[2,81]],[[1029,5866],[2,82]],[[7566,9779],[276,2],[234,-1],[191,1]],[[6924,9777],[370,2],[136,0],[136,0]],[[5224,8757],[-43,2],[3,117],[117,-4],[1,60],[5,185]],[[367,5402],[10,360],[7,282],[4,166],[5,147],[4,125],[6,210]],[[2457,3742],[-4,-245],[-46,1],[-1,-111],[118,-31],[-28,-34],[24,-44],[-14,-47],[14,-34],[-14,-39],[24,-50],[9,-79],[13,-101],[38,-32],[25,-92],[57,-55],[12,-82]],[[1620,9782],[285,1],[118,0],[208,-1],[196,0],[206,0],[24,-1],[199,0]],[[4758,8561],[2,82],[3,120],[-38,0],[-5,87],[7,35],[-33,-40],[-63,52],[-21,47],[37,37],[-29,43],[1,81],[-50,3],[-46,30],[-15,42],[4,51],[-56,32],[-51,-11],[27,68],[60,-12],[0,60],[-93,-24],[-36,32],[92,74],[41,18],[1,81],[7,232]],[[4504,9781],[229,-1],[353,0],[235,1]],[[6599,2181],[2,119],[6,126],[9,204],[3,93],[83,-2],[20,0],[75,-1],[1,81],[93,-18],[1,45]],[[7899,3121],[72,-70],[60,10],[37,-13],[13,-29],[-34,-67],[-6,-81],[-22,-17],[-110,-17],[-81,4],[17,-53],[40,-57],[-5,-34],[-28,-20],[-51,17],[-40,102],[-64,-50],[-49,-2],[-36,-25],[19,-59],[70,-20],[57,-28],[20,-33],[-33,-49],[-96,-115],[7,-74],[45,-70],[100,-44],[26,-43],[-26,-43],[-57,-15],[-58,42],[-69,-6],[-47,-16],[-57,34],[-24,-44],[9,-21],[-8,-92],[58,-60],[60,5],[46,26],[47,-28],[35,-70],[-9,-24],[-107,-44],[-36,9],[-64,40],[-65,91],[-96,-18],[-33,-22],[-16,-60],[19,-28],[104,-38],[69,-62],[16,-74],[-44,-46],[-52,0],[-118,-60]],[[7304,1560],[-30,0],[-2,-124],[-75,2],[-96,2],[-18,42],[-28,0],[-7,84],[-37,0],[-187,0]],[[3513,37],[-878,3],[-204,0]],[[1753,43],[-513,-1],[0,706],[0,203],[-1,583]],[[3804,9780],[176,-1],[524,2]],[[7304,1560],[-3,-24],[36,-66],[61,-52],[9,-34],[-55,-84],[-50,-32],[-4,-38],[58,-27],[43,13],[38,39],[-17,94],[28,32],[84,-69],[15,-53],[-30,-67],[-95,-36],[-50,3],[-21,-41],[39,-39],[53,-28],[55,2],[58,36],[40,68],[-4,40],[23,56],[41,9],[21,-27],[-1,-47],[-37,-63],[-56,-53],[-41,-65],[-47,-42],[1,-138],[35,-54],[-5,-33],[27,-37],[33,-48],[30,99],[41,38],[51,-35],[-15,-65],[-70,-83],[-19,-2],[16,-112],[-7,-100],[-36,-38],[-100,-3],[-21,30],[-50,1],[-39,-46],[0,-44],[65,-61],[47,-17],[54,-49],[-2,-72],[-26,-27],[-53,-25],[-8,-44],[-635,5]]],"transform":{"scale":[0.0004637337747109295,0.00035726071732570516],"translate":[-94.617919,33.004106]},"objects":{"cb_2019_05_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[6,7,8,9,10,11,12]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[13,14,15,16,17,18,19,20]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-10,21,22,23,24]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[25,26,27,28,29,30]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[31,32,33,34,35,36,37]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[38,39,40,41,42,43,44,45]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[46,47,48,49,-15,50,51]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[52,-1,-6,53,54,55]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[56,57,58,59,60]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[61,62,63,64,65,66]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[67,68,69,70,71,72,73]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[74,75,-19,76,77,78,79]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[80,81,82,83,84,85]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[86,-51,-14,-21,87,-57,-61,88,89]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[90,-69,91,92,93,94]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[95,-64,96,-72,97,98,99]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[100,101,102,103]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[104,105,106,-3,107,108]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-77,-18,109,110,111]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[112,113,-55,114,115]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[116,117,118,119,120,121,122]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[123,124,125,-94,126,-24,127]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[128,-33,129,130,-30,131,-111,132]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[133,-99,134,135,136,-39,-46,137,138]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[139,140,141,142,143,144]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[145,146,147,148,149]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[150,-36,151,152,153,154,155,156]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[157,158,159,160,161,-85,162]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[163,-26,-31,-131,164,-66,165,166]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[167,168,169,170,-143,171,172]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-151,-157,173,174,175,176,-37]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[177,178,179,180,181,182]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[183,-92,-68,-74,184,-175,185,-12,186]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-120,187,-180,188,-153,189]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[190,-141,191,192,193]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[194,195,196,-146,-150,197,-182,198]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-133,-110,-17,199,-122,200,-34,-129]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[201,-196,202,-118,203]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-73,-97,-63,204,-176,-185]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[205,206,207,-169,208,209,210]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[-167,211,-138,-45,212,213,-27,-164]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[214,215,-148,216,217,-49,218]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[219,-28,-214,220,221,-159,222,223]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[224,-108,-2,-53,-56,-114,225,-161,226]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-105,-109,-225,-227,-160,-222,227]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-84,228,229,-79,230,-223,-158,-163]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[-206,-211,231,-70,-91,-95,-126,232]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[-203,-195,-199,-181,-188,-119]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[-179,233,234,-154,-189]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-137,235,-193,236,-40]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[237,-204,-117,-123,-200,-16,-50,-218]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[238,239,-170,-208,240,241]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[-190,-152,-35,-201,-121]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-215,-219,-48,242,-101,-104,243]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-191,-194,-236,244,-172,-142]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[245,-106,-228,-221,-213,-44,-43,246]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[247,-102,-243,-47,-52,-87,-90,248]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[-88,-20,-76,249,-58]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-42,250,-4,-107,-246,-247]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-173,-245,-136,251,-209,-168]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-130,-32,-38,-177,-205,-62,-67,-165]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[-252,-135,-98,-71,-232,-210]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-231,-78,-112,-132,-29,-220,-224]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[252,-81,-86,-162,-226,-113,-116]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-238,-217,-147,-197,-202]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-250,-75,-80,-230,253,254,-59]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-8,255,-155,-235,256,257]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-207,-233,-125,258,-241]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-256,-7,-13,-186,-174,-156]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[-240,259,-144,-171]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-93,-184,-187,-11,-25,-127]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-83,260,-254,-229]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-22,-9,-258,261]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-134,-139,-212,-166,-65,-96,-100]],"type":"Polygon","properties":{"COUNTYFP":"051"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/as.topo.json b/app/assets/topojson/states/as.topo.json new file mode 100755 index 00000000..7944d697 --- /dev/null +++ b/app/assets/topojson/states/as.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[2035,1713],[92,-134]],[[2127,1579],[39,-58]],[[2166,1521],[21,-31]],[[2187,1490],[-93,-67],[-115,-175],[-60,33],[-41,-89],[-29,85],[-31,-15],[-86,43],[-15,78],[14,38],[-27,39],[-92,26],[-89,-2],[-58,44],[-7,88],[127,115],[74,38],[21,-9],[66,23],[51,-39],[41,28],[66,-17],[84,0]],[[1988,1755],[47,-42]],[[3009,1808],[21,33],[47,-5],[-9,-65],[-59,37]],[[2981,1897],[-72,-28],[-36,7],[-35,-40],[-64,-30],[-33,97],[-37,12],[-40,-22],[-105,-104],[-66,-23],[-66,14],[-11,116],[-75,22],[-42,-26],[26,-78],[-9,-58],[28,-48],[-96,-61],[-41,-47],[-80,-21]],[[1988,1755],[52,67],[58,-33],[-5,94],[56,56],[43,18],[17,40],[64,16],[98,95],[16,-71],[58,27],[42,-15],[38,-47],[69,54],[34,-75],[67,27],[68,4],[72,-25],[86,77],[69,2],[14,-82],[-23,-87]],[[2166,1521],[21,-31]],[[16750,0],[4,18],[10,-14],[-14,-4]],[[9291,2050],[-91,-51],[-58,-80],[-55,-20],[-29,49],[-38,126],[-42,32],[-37,138],[23,-5],[47,56],[42,-33],[105,15],[69,-4],[80,28],[80,-16],[66,19],[54,-49],[-23,-250],[-89,-1],[-70,45],[-34,1]],[[8009,2644],[219,-41],[-13,-28],[-83,-76],[-53,-19],[-45,49],[-25,115]],[[8295,2595],[63,30],[25,52],[40,-7],[-2,-99],[20,-53],[-33,-75],[-113,152]],[[0,23923],[31,29],[61,10],[43,-60],[-61,-56],[-59,29],[-15,48]]],"transform":{"scale":[0.0001757679551419708,0.00014610516651364656],"translate":[-171.089874,-14.547906]},"objects":{"cb_2019_60_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"COUNTYFP":"050"}},{"arcs":[[[5]],[[6,-1,-5,7]]],"type":"MultiPolygon","properties":{"COUNTYFP":"010"}},{"arcs":[[9]],"type":"Polygon","properties":{"COUNTYFP":"030"}},{"arcs":[[[10]],[[11]],[[12]]],"type":"MultiPolygon","properties":{"COUNTYFP":"020"}},{"arcs":[[13]],"type":"Polygon","properties":{"COUNTYFP":"040"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/az.topo.json b/app/assets/topojson/states/az.topo.json new file mode 100755 index 00000000..142fd813 --- /dev/null +++ b/app/assets/topojson/states/az.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[7346,3],[-304,-1],[-205,1],[-467,-2]],[[6370,1],[-1,370],[0,96],[12,0],[0,195]],[[6381,662],[0,22],[2,266],[-1,290],[5,96],[1,192],[-5,0],[0,289]],[[6383,1817],[149,-2],[323,0],[669,0],[12,0],[338,2],[299,-5],[166,3]],[[8339,1815],[98,0]],[[8437,1815],[-2,-685],[-1,-360],[0,-265],[-1,-260],[0,-245],[-371,3],[-279,0],[-437,0]],[[7042,7483],[0,-300],[254,-1],[0,-241],[-24,1],[-1,-576],[1,0],[-2,-144],[2,-265],[-2,-168],[-10,0],[2,-209],[0,-55],[0,-27],[-21,-133],[1,-26],[23,-129],[-1,-315],[0,-262],[-15,-26],[0,-2],[0,-549],[-48,0],[1,-348]],[[7202,3708],[-13,12],[-34,-13],[-66,15],[-47,1]],[[7042,3723],[0,249],[0,453],[-572,0],[-525,0],[0,436]],[[5945,4861],[0,2],[0,617],[0,532],[0,353],[0,547],[0,489],[0,616],[0,404],[0,324],[0,660]],[[5945,9405],[365,2],[45,-10],[656,1],[31,-1]],[[7042,9397],[0,-364],[0,-530],[0,-6],[0,-330],[0,-388],[0,-296]],[[7042,3723],[0,-184],[-247,-1],[0,-23],[-34,-4],[-33,-22],[-21,14],[-26,-13],[-36,9],[-30,-20],[-30,6],[-41,-11],[-32,-47],[-47,10],[-26,-5],[-9,-25],[-33,-8],[-14,-108],[6,-27],[-12,-30],[68,-150],[-59,5]],[[6386,3089],[-21,-19],[-60,5],[-95,-69],[-35,-18],[-22,14],[-38,0],[-33,-48],[-31,-3],[-8,-39],[-33,-7],[-29,-24],[13,-27],[-18,-43],[-50,-37],[-2,-31],[-27,-2],[-236,435],[-44,157],[-96,206]],[[5521,3539],[-165,350],[-40,-29],[-43,-43],[3,-22],[-24,-29],[-21,25],[-28,5],[-84,100],[-24,12],[-8,52],[-33,35],[-40,15],[-4,44],[14,32],[-6,34],[17,12],[-34,34],[11,32],[-35,35],[10,57],[-31,12],[-37,-9],[3,38],[2,49],[22,18],[-10,21],[-38,15],[-42,-10]],[[4856,4424],[-4,49],[38,22],[10,50],[-25,33],[15,31],[-14,13],[-5,53],[-333,0],[-12,14],[44,67],[-21,20],[12,64],[45,58],[-13,34],[16,19],[-5,51],[15,33],[-4,30],[42,12],[43,43],[36,2],[32,31],[0,54]],[[4768,5207],[39,-2],[28,-26],[38,-2],[-97,-56],[36,-14],[24,18],[60,-14],[11,19],[48,38],[3,-89],[26,-29],[12,75],[40,29],[26,-25],[63,5],[83,41],[70,-71],[66,-10],[31,-31],[32,-3],[45,20],[16,-23],[54,-13],[-15,-44],[24,-10],[32,31],[21,-26],[31,-12],[10,-21],[41,-23],[65,-13],[28,-44],[44,-17],[34,49],[60,8],[27,-13],[21,-48]],[[7042,9397],[441,0],[298,1],[659,0],[0,-381],[0,-401],[-1,-459],[0,-182],[0,-433],[0,-256],[-1,-600],[1,-248],[0,-570],[0,-483],[-1,-318],[0,-366],[-1,-646]],[[8437,4055],[-441,1],[-21,-43],[-9,-49],[-41,-16],[-65,1],[-29,-28],[-29,-10],[2,-44],[-23,-19]],[[7781,3848],[-2,0],[-55,-54],[-36,11],[-31,-21],[-37,-4],[-9,-31],[-35,-14],[-36,-1],[-36,-67],[-33,-11],[-8,-19],[-39,-24],[-10,-42],[-30,-17],[-48,22],[-31,39],[-18,38],[-28,7],[-23,38],[-34,10]],[[5523,653],[140,1],[128,0],[0,8],[590,0]],[[6370,1],[-237,1],[-254,0],[-409,-2],[-426,156]],[[5044,156],[-1,158],[268,-1],[29,1],[0,339],[183,0]],[[4730,3538],[0,-144],[-4,-96],[1,-191],[-151,-2],[-303,0],[-276,0],[-20,43],[-27,-5],[-52,44],[-62,19],[-15,-31],[0,-265],[-2,-241],[0,-428],[0,-293]],[[3819,1948],[-464,0],[-79,-1],[-221,-1],[-442,-1],[-448,0]],[[2165,1945],[0,435],[0,317],[1,408],[-3,287]],[[2163,3392],[0,433],[2,598]],[[2165,4423],[487,1],[376,0],[315,-90],[370,-105],[-2,15],[61,41],[5,64],[53,33],[4,26],[46,48],[-4,48],[145,-18],[1,0],[497,-62],[337,0]],[[5521,3539],[-336,0],[-455,-1]],[[6386,3089],[0,-343],[1,-67],[0,-407],[-1,-312],[-4,0]],[[6382,1960],[-575,0],[-118,-4],[-340,-1],[0,-15],[-159,-1],[-1,0],[-442,0],[0,9],[-327,0],[-3,0],[-598,0]],[[8437,4055],[1,-252],[-1,-357],[0,-502],[0,-547],[0,-582]],[[8339,1815],[-164,170],[1,23],[21,69],[-12,28],[19,57],[-11,74],[-46,102],[-106,167],[-29,12],[-231,379],[0,169],[0,783]],[[73,2175],[72,144],[18,25],[20,-13],[103,-16],[53,11],[26,25],[55,12],[-7,57],[31,41],[23,12],[37,36],[7,113],[-24,37],[19,35],[-2,26],[-31,-4],[-14,56],[-25,40]],[[434,2812],[64,0],[148,4],[151,0],[0,429],[0,291],[455,0],[1,-144],[457,0],[453,0]],[[2165,1945],[0,-773]],[[2165,1172],[-610,216],[-308,109],[-423,148],[-458,157],[-366,125],[0,50],[30,63],[-17,18],[7,34],[-14,39],[27,8],[40,36]],[[988,4927],[35,-13],[24,9],[42,-16],[50,-52],[37,-8],[68,6],[47,-14],[52,-2],[36,10],[28,-6],[20,-45],[64,21],[30,-13],[63,19],[12,-28],[27,-22],[59,3],[55,29],[40,6],[23,41],[43,46],[21,35],[93,-2],[109,-10],[45,-12],[28,12],[27,31]],[[2166,4952],[-1,-529]],[[434,2812],[-80,15],[-43,-19],[-40,9],[-16,24],[-27,-19],[-19,7],[-5,32],[-22,44],[-27,23],[16,56],[26,52],[7,104],[-22,33],[22,17],[-4,24],[-68,30],[-11,24],[44,57],[3,40],[-14,38],[-21,24],[51,32],[43,-8],[42,25],[10,47],[46,71],[45,29],[3,25],[50,34],[-24,65],[28,33],[-3,39],[-14,22],[14,62],[40,19],[0,37],[-23,25],[7,56],[-30,78],[12,17],[-14,37],[38,34],[-30,42],[18,29],[-32,25],[17,49],[32,10],[90,101],[-1,58],[7,49],[27,34],[72,18],[27,26],[35,4],[54,56],[49,6],[35,21],[6,25],[87,79],[51,22],[-10,67]],[[3627,6078],[17,-40],[441,2],[20,3],[291,1],[45,7],[0,-294],[331,-2],[0,-275],[-4,-273]],[[2166,4952],[0,155],[0,625],[1,586],[-2,641]],[[2165,6959],[48,5],[61,-4],[59,-33],[65,-4],[39,-46],[91,-43],[168,-106],[26,-54],[106,-24],[164,-44],[50,-17],[58,11],[58,-33],[36,13],[15,-41],[24,-10],[39,-42],[52,-12],[62,10],[39,-7],[47,37],[-2,-184],[156,-2],[1,-251]],[[5044,156],[-376,136],[-521,186],[-390,139],[-530,185],[-379,132],[-379,128],[-304,110]],[[6382,1960],[1,-143]],[[3329,9401],[-6,-23],[19,-57],[-23,-23],[-5,-43],[-32,-28],[-21,-80],[-11,-11],[-11,-54],[-29,-42],[11,-76],[-39,-105],[24,-78],[2,-51],[-18,-43],[-30,-20],[-7,-48],[32,-57],[16,-14],[-4,-34],[-24,-14],[1,-38],[30,-41],[-8,-30],[-29,-20],[-3,-22],[-45,-41],[-25,23],[-37,-16],[5,-38],[-38,3],[-22,-24],[-36,-14],[-9,-28],[-29,6],[-49,-19],[-44,2],[-39,-41],[-33,5],[-10,-20],[-72,-21],[-37,11],[-43,-17],[-25,-31],[-62,-27],[-61,-45],[-26,14],[-61,-36],[-7,-56],[-35,-46],[-47,-5],[-32,15],[-50,4],[-25,-52],[-35,-47],[29,-101],[26,-30],[-17,-18],[4,-26],[-13,-34],[34,-35],[1,-49],[-24,-38],[-10,-62],[0,-456]],[[988,4927],[-28,25],[-28,52],[-33,20],[-39,7],[-56,59],[-33,7],[-21,35],[-37,18],[-24,23],[-45,-7],[-19,18],[12,82],[-4,37],[-35,66],[-46,45],[18,23],[-22,18],[-17,72],[-31,80],[-18,7],[-47,32],[-53,50],[-27,46],[-23,68],[-64,51],[-9,32],[8,36],[2,62],[-8,24],[8,59],[-10,56],[14,27],[30,24],[3,26],[-56,36],[-2,16],[35,26],[31,-1],[38,29],[2,101],[-12,17],[-11,87],[-15,57],[3,47],[-46,140],[-37,33],[-18,33],[-19,67],[1,40],[29,34],[-19,82],[15,6],[9,39],[-52,67],[9,63],[-33,37],[15,74],[-5,56],[-19,27],[24,43],[-16,28],[63,41],[-54,47],[-18,49],[-41,73],[0,63],[26,22],[-29,31],[9,21],[-27,44],[27,33],[79,7],[26,12],[48,43],[22,-20],[67,35],[92,-2],[14,-39],[44,21],[36,-22],[42,32],[63,-3],[95,-101],[-8,-27],[32,-26],[29,-8],[9,-28],[38,-23],[37,1],[69,20],[20,-6],[21,23],[4,32],[34,63],[-9,31],[31,16],[43,90],[35,26],[-2,133],[3,176],[-2,193],[-7,320],[-2,256],[0,261],[124,-1],[503,0],[509,0],[451,0],[626,1]],[[4978,9402],[195,-1],[211,0],[99,3],[462,1]],[[3329,9401],[264,1],[721,0],[664,0]]],"transform":{"scale":[0.0006834585308056885,0.000602957478473477],"translate":[-114.813613,31.332238999999998]},"objects":{"cb_2019_04_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[6,7,8,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[12,13,14,15,16,-9]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-12,17,18,19,-7]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[20,-2,21,22]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[23,24,25,26,27,-15,28]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-14,29,30,-24,-29]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-19,31,-5,32]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[33,34,-26,35,36]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[37,38,-27,-35,39]],"type":"Polygon","properties":{"COUNTYFP":"012"}},{"arcs":[[40,-16,-28,-39,41,42]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-23,43,-36,-25,-31,44,-3,-21]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[45,-42,-38,46]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[47,-10,-17,-41,-43,-46,48]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-30,-13,-8,-20,-33,-4,-45]],"type":"Polygon","properties":{"COUNTYFP":"009"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ca.topo.json b/app/assets/topojson/states/ca.topo.json new file mode 100755 index 00000000..4adbbae3 --- /dev/null +++ b/app/assets/topojson/states/ca.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[4170,14314],[53,-12],[30,10],[115,68],[20,-5],[41,-3],[76,20],[76,-36],[68,-21],[66,15],[23,40]],[[4738,14390],[39,-36],[17,-55],[26,-23],[55,-10],[69,16],[26,6],[71,48],[34,42],[-1,54],[37,35],[44,-25],[20,32],[42,4],[46,-14]],[[5263,14464],[14,-52],[-18,-16],[-4,-64],[23,-6],[27,-63],[-39,-33],[-2,-74],[27,-42],[16,-95],[-16,-11],[-1,-56],[-26,-66],[17,-37],[35,6],[28,-36],[-38,-78]],[[5306,13741],[-261,-88],[-396,-136],[-94,-31],[-22,26],[-73,49],[26,42],[-30,44],[-59,46],[-173,16],[-35,36],[-38,-4],[-12,45],[-67,80],[-7,36],[-43,18],[-3,15],[-35,34],[-89,-19]],[[3895,13950],[-36,31],[-61,-13],[-43,14],[6,30],[-42,30],[-5,81],[84,39],[10,30],[-13,47],[68,-17],[59,25],[71,87],[-13,41]],[[3980,14375],[45,10],[115,-26],[30,-45]],[[12544,5953],[66,-1],[-1,419],[-2,297],[5,0],[0,390],[-1,273],[-4,214],[6,43],[0,294],[-8,0],[1,226],[33,2],[0,76],[-67,-1],[1,76],[33,0],[2,227]],[[12608,8488],[492,-5],[416,1],[389,0],[1217,-6],[417,2],[599,-1],[0,40],[164,2]],[[16302,8521],[450,-497],[457,-506],[217,-240],[362,-406],[401,-453],[7,-55],[-9,-56],[9,-37],[-2,-98],[-11,-56],[12,-50],[81,-80],[30,-108],[34,-71],[67,-78],[84,-62],[38,-125],[23,-113],[27,-29],[-23,-35],[58,-71],[45,-104],[6,-58],[-16,-129],[24,-28],[58,11],[30,-36],[47,-28],[26,-55],[42,-11],[71,-92],[50,-12],[42,-31],[37,-82],[35,-38],[13,-105],[-57,-15],[-9,-19],[-110,-125],[-7,-39],[-46,-34],[-61,-8],[-70,-88],[-43,-6],[-35,-41],[-45,-22],[-47,-7],[-36,-72]],[[18558,4021],[-733,-1],[-676,0],[-230,-4],[0,-114],[-652,3],[-592,0],[-588,-7],[-292,1],[-294,-1],[-194,3],[-390,1],[0,-76],[-252,-3],[-274,1],[-25,38],[-267,0],[-12,39],[-340,-1],[0,-38],[0,-79],[-97,-44],[-1,-121],[-83,0],[1,-94],[-33,-5],[7,-16],[-8,-25]],[[12533,3478],[-205,196]],[[12328,3674],[-19,19],[-17,57],[33,76],[33,-1],[-1,49],[70,-5],[20,100],[61,203],[17,71],[0,2],[58,320],[-16,281],[-9,142],[-1,276],[-12,1],[-1,458],[0,230]],[[7195,11733],[121,135],[45,6],[97,49],[29,18],[40,-12],[42,12],[66,43],[28,30],[30,-1],[88,29],[106,7],[51,-5],[67,8],[102,41]],[[8107,12093],[540,609],[59,2],[147,0],[0,73],[0,40],[66,1],[1,86],[57,0],[1,171],[511,566]],[[9489,13641],[29,-26],[10,-60],[36,-15]],[[9564,13540],[16,-33],[32,5],[50,-37],[33,58],[58,4],[81,-12],[26,-23],[31,-55],[52,-49],[7,-70],[30,-54],[24,-17],[-4,-70],[23,-46]],[[10023,13141],[-492,-549],[-48,-57],[-6,-70],[-37,-37],[16,-50],[-10,-49],[17,-75],[-16,-13],[2,-89],[-23,-43],[-33,-22],[-48,-81],[-41,30],[-46,1],[-3,-38],[-52,-7],[-13,-84],[-43,34],[5,36],[-31,31],[-31,-56],[-45,38],[-22,0],[-14,-72],[34,2],[21,-33],[-40,-42],[-17,-64],[-68,20],[-27,-110],[-37,38],[-38,-12],[2,-66],[-60,-4],[-27,-31],[-15,-22],[-51,-55],[6,-69],[-28,-50],[-38,-16],[-31,-57],[9,-31],[-46,-57],[-8,-33],[-39,6],[-173,-10],[-29,-38],[-43,-4],[-44,15],[-43,-26],[-28,-35],[-95,28],[-47,-31],[-60,-11],[-35,-27],[-24,12],[-38,-71],[-53,32],[-22,-49],[-81,11],[-32,-11],[-64,43],[-83,-4],[-19,85],[-39,13],[-17,41],[-24,5],[-64,59],[0,55],[-19,22],[30,49],[-46,73],[-16,83],[-29,28],[-3,39],[-24,37],[-26,4],[-26,83]],[[10682,4351],[0,-100],[-66,1],[-159,-1],[-126,-108],[-157,-135],[-7,-77]],[[10167,3931],[-97,54],[-22,2],[-54,42],[-44,7],[-46,35],[-42,-8],[-38,12],[-111,100],[-52,18],[-38,77],[-54,154],[-23,83],[-44,16],[-66,46],[-61,75],[-37,-3],[-76,96],[-23,2],[-33,47],[-28,0]],[[9178,4786],[46,63],[-5,52],[26,62],[-4,127],[2,662],[-2,406]],[[9241,6158],[112,-1],[0,-56],[196,0],[-3,-58],[65,1],[0,-113],[497,-5],[0,-56],[177,0]],[[10285,5870],[112,-325],[154,-434],[126,-360],[63,-179],[8,-133],[-65,0],[-1,-88]],[[8990,1936],[28,-19],[62,37],[74,-51],[53,-24],[48,-65],[-7,-30],[-59,-14],[-141,47],[-54,66],[-4,53]],[[5417,20580],[316,0]],[[5733,20580],[495,3],[0,-495],[37,0],[23,-56],[47,0],[1,-36],[107,-1],[-2,-37],[36,0],[-1,-38],[70,1],[35,19],[0,110],[35,0],[35,37],[1,38],[70,19],[0,61],[42,0],[17,38],[70,0],[1,-20],[138,-2],[18,-37],[37,-20],[85,0],[0,-57],[52,0],[36,-38],[35,0],[0,-37],[35,0],[4,-38],[13,-38],[41,0],[28,-75],[54,-19],[16,-58],[54,-17],[-1,-29],[71,-37],[123,-1],[53,-18],[0,-58],[69,1],[-2,-113],[18,0],[0,-76],[35,0],[0,-39],[52,-78],[85,-75],[2,-378],[-5,-74],[-32,-39],[0,-38],[-35,0],[-1,-74]],[[7930,18661],[-557,2],[-78,-5],[-309,-1],[-2,-33],[-47,-44],[-74,81],[-55,31],[-38,-5],[-37,-19],[-40,39],[-2,44],[-51,12],[-36,61],[-26,14],[-40,-42],[-35,-6],[-38,-48],[0,-97],[-11,-39],[-86,-109],[-43,-14]],[[6325,18483],[-125,-110]],[[6200,18373],[-39,62],[-73,19],[1,74],[-35,0],[-30,37],[0,38],[-35,0],[-1,37],[-34,2],[-4,65],[-34,0],[-1,38],[-34,0],[-6,36],[-63,72],[-59,39],[-45,76],[-36,39],[-1,38],[-36,0],[-59,42],[2,75],[-31,37],[13,39],[1,75],[18,0],[0,75],[-18,1],[1,73],[36,38],[0,57],[33,-1],[29,67],[-18,22],[0,59],[-53,18],[1,94],[-60,0]],[[5530,19816],[-16,67],[11,46],[60,-10],[41,49],[31,5],[13,35],[-10,52],[33,49],[-51,87],[37,-1],[21,39],[-44,34],[-24,39],[-56,6],[-31,19],[-78,0],[-19,43],[-5,92],[7,45],[-34,33],[1,35]],[[4368,16627],[272,-1],[148,-3]],[[4788,16623],[57,-26],[3,-44],[-22,-54],[25,-32],[59,-7],[38,25],[35,-32],[14,-87],[0,-57],[41,-2],[27,-72],[1,-31],[45,-1],[53,15],[24,40],[39,-24],[13,-31],[-19,-70]],[[5221,16133],[-6,-46],[-52,-74],[11,-39],[63,-80],[54,-5],[13,-88],[15,-23],[42,13],[35,-20],[5,-27],[-28,-53],[18,-51],[-36,-46],[10,-26],[-49,-13],[-13,-42],[21,-43],[22,-19],[50,-3],[9,-86],[-54,-23],[37,-88],[-19,-43],[3,-53],[-28,-32],[-42,-13],[-63,-77]],[[5239,15033],[-188,3],[1,283],[-2,270],[-25,22],[-57,6],[-49,-31],[-90,1],[-70,28],[-69,2],[-39,-21],[-58,10],[-13,-16],[-38,-19],[-19,-30],[-62,-50],[-36,11],[-50,62],[-85,-10]],[[4290,15554],[-20,64],[-31,136],[-64,136],[-62,69],[-19,69],[-25,1],[-25,115],[-28,39],[-17,90],[-27,51],[-26,79],[-51,-1],[-20,17],[-42,-26],[-68,43],[-18,31]],[[3747,16467],[-50,95],[33,63],[119,-2]],[[3849,16623],[146,-1],[373,5]],[[5698,8483],[300,-3],[132,-2],[787,-6],[197,0],[622,-5],[69,1]],[[7805,8468],[37,-1]],[[7842,8467],[1,-454],[201,0],[-2,-229],[34,0],[32,-36],[0,-36],[34,0],[-1,-39],[35,0],[-2,-38],[34,-1],[0,-76],[156,-1],[63,0],[-1,-229],[132,-1],[0,-227],[266,-3],[-1,-228],[211,14],[-14,-240],[131,10],[0,-37],[34,-2],[0,-457]],[[9185,6157],[-33,-9],[-85,0],[-79,63],[-70,75],[-53,8],[-54,52],[-50,8],[-32,-13],[-52,5],[-120,74],[-39,9],[-44,69],[-65,22],[-27,-6],[-45,56],[-27,-14],[-61,10],[-72,60],[-99,40],[-53,42],[-62,-48],[-25,-32],[-46,-18],[-33,-70],[-6,-47],[-40,-23],[-57,3],[-22,17],[-107,-52],[-26,22],[-20,-29],[14,-52],[47,-60],[18,-86],[-18,-64],[-31,4],[-18,48],[-62,54],[-139,105],[-112,17],[-33,-10],[-46,-15],[-30,-25],[-38,11],[-19,-29],[-31,15],[-60,-35],[-28,40]],[[6995,6349],[18,73],[18,152],[-2,106],[-9,57],[-28,62],[-45,14],[-59,54],[-15,4],[-3,-2],[-71,0],[-11,-39],[-47,47],[-130,75],[-76,107],[2,30],[-1,30],[31,61],[23,85],[9,88],[-13,111],[-29,70],[-43,49],[-80,-3],[-34,32],[-64,1],[-182,229],[-46,115],[-32,34],[-44,76],[-41,20],[-20,-16],[-45,40],[-30,0],[-39,32],[-48,3],[-6,62],[-47,62],[-5,81],[-13,65],[-40,67]],[[10441,14636],[155,-152],[172,-176],[93,-90],[597,-601],[512,-519],[132,-139],[134,-132]],[[12236,12827],[-156,0],[-28,-1],[-775,-5],[-311,0],[-483,1]],[[10483,12822],[-39,66],[-36,-2],[-66,-31],[-19,67],[-39,23],[-66,104],[-23,-4],[-43,44],[-21,-20],[-71,34],[-37,38]],[[9564,13540],[26,19],[22,59],[40,26],[38,65],[-29,38],[24,29],[-19,108],[26,34],[-50,58],[-72,18],[3,33],[-83,53],[-25,58],[24,99],[8,44],[-14,56],[-70,104],[-56,18],[-32,37],[-50,2],[-56,-30],[-33,52],[5,32],[-115,42],[-27,23],[-57,12],[-19,70],[-22,-8],[-52,60],[3,62],[37,15],[-32,48],[16,22],[-71,66],[17,19],[6,86]],[[8875,15069],[20,82],[39,21],[-27,71],[39,30],[27,-22],[45,36],[-12,60],[23,35],[1,60],[25,27],[-1,48],[-48,101],[-29,36],[-19,93],[-46,41],[4,107],[15,56],[18,11],[37,95],[-11,17]],[[8975,16074],[251,-243],[139,-138],[518,-505],[179,-180],[96,-90],[283,-282]],[[13689,2331],[39,-9],[362,0],[407,1],[185,-1],[597,6],[158,-8],[51,0]],[[15488,2320],[0,-188],[6,-309],[2,-417],[-42,0],[0,-704],[-4,-202],[0,-213],[-1,-67]],[[15449,220],[-528,-59],[-684,-79],[-178,-21],[-506,-61],[-13,68],[-2,96],[-12,78],[-54,116],[-35,32],[-48,10],[-56,-61],[-22,93],[-4,67],[9,70],[-5,89],[-11,42],[-37,49],[-2,45],[48,52],[9,39],[-17,148],[-38,211],[-31,85],[-30,110],[-27,90],[-64,121],[-54,89],[-20,8],[-7,33],[-73,130],[-113,169],[-78,82],[-50,41],[-39,17]],[[12677,2219],[32,174],[75,4],[54,42],[0,32],[-1,55]],[[12837,2526],[271,0],[-12,-38],[239,-108],[2,-44],[187,1],[78,-6],[87,0]],[[8279,10059],[1,-379],[0,-192],[-259,-278],[-126,-135],[-278,-301]],[[7617,8774],[-39,42],[-2,33],[-36,32],[-7,42],[-87,26],[-48,-14],[-31,51],[-36,15],[-18,41],[-115,69],[-9,25],[-40,17],[-48,49],[0,53],[-105,42],[-13,62],[-17,22],[-6,52],[25,19],[31,78],[21,14],[-102,126],[6,41]],[[6941,9711],[9,39],[-17,32],[37,52],[61,6],[62,30],[-1,164],[0,252],[-12,0],[-469,524],[-117,132]],[[6494,10942],[436,493],[53,59],[122,0],[-9,127],[99,112]],[[10483,12822],[22,-17],[7,-55],[-38,-36],[-19,-72],[38,-66],[-32,-66],[87,-73],[45,34],[57,-98],[37,-77],[-36,-47],[6,-98],[27,-40],[-10,-56],[33,-69],[27,-12],[49,15],[39,-13],[18,-40],[27,-19],[70,-11],[16,-33],[36,-8],[31,-47],[35,-27],[37,5],[20,-23],[-9,-39],[36,-54],[-10,-32],[29,-35],[6,-47],[90,-241],[-17,-46],[15,-64],[-52,-28],[-1,-38],[30,-51],[-12,-47],[21,-83],[16,-15]],[[11254,10953],[-363,0],[1,-14],[-364,0],[-431,6],[-4,-220],[-354,5],[-242,4],[0,-226],[-26,1],[-108,2],[-151,1],[-59,-48],[-155,-177]],[[8998,10287],[-174,-181],[-28,27],[-56,-26],[-66,-8],[-11,-38],[-84,1],[-300,-3]],[[12608,8488],[-503,3],[-37,-30],[-158,6]],[[11910,8467],[5,192],[31,44],[12,42],[-14,52],[12,28],[-16,45],[-28,7],[-21,37],[27,59],[-15,38],[-41,28],[-16,103],[-17,29],[3,44],[-27,88],[-13,86],[21,16],[-3,64],[-22,40],[-53,50],[-6,65],[-26,57],[4,40],[-19,24],[11,69],[40,57],[-1,45],[-38,11],[-19,53],[-41,23],[-13,37],[37,26],[4,37],[-35,38],[-68,-16],[-39,27],[-3,52],[-31,25],[-30,52],[18,97],[-49,73],[-47,18],[-6,46],[23,73],[-73,59],[-8,52],[-23,20],[-53,96],[58,36],[-9,61],[-39,41]],[[12236,12827],[224,-235],[59,-56],[185,-193],[151,-153],[399,-417],[76,-77],[332,-349],[122,-126],[541,-573],[413,-438],[209,-225],[519,-557],[380,-412],[456,-495]],[[6119,10025],[148,-166],[1,-138],[89,-3],[13,53],[22,0],[37,-41],[63,95],[51,-48],[51,0],[46,-42],[13,-38],[119,-118],[13,-30],[34,-15],[58,-2],[12,76],[-21,84],[-61,114],[7,17],[127,-112]],[[7617,8774],[73,-3],[61,-73],[-28,-82],[25,-58],[45,-12],[12,-78]],[[5698,8483],[-77,74],[-47,82],[-49,31],[-47,56],[2,41],[-21,41],[-21,131],[-32,78],[-42,27],[-91,37],[-27,59],[-7,45],[-47,52],[-27,84],[-78,111],[-46,44],[-33,47],[-148,102],[-57,21],[-46,93],[-42,29],[-46,48],[12,85],[-26,41],[10,67],[-25,56],[1,59],[-29,71],[-15,73],[-15,25],[14,40],[-28,30],[52,19],[-12,84],[-40,9],[-41,42],[20,24],[10,59],[33,24],[23,49],[47,-38],[28,-53],[33,6],[54,67],[32,70],[34,149],[4,98],[22,102],[3,62],[-36,93]],[[4834,11229],[14,43],[36,48],[21,-5],[51,66],[66,16],[54,-31],[35,28],[33,-53]],[[5144,11341],[3,-52],[23,-44],[15,-28],[45,-23],[172,-204],[42,16],[14,-41],[29,-22],[16,-42],[-62,-30],[28,-58],[47,-46],[39,3],[30,-48],[76,1],[46,-48],[-1,-17],[44,-55],[-12,-30],[3,-54],[-20,-9],[10,-51],[51,-45],[11,-27],[-31,-59],[79,-6],[47,12],[39,-89],[15,2],[41,-72],[136,-150]],[[2546,17318],[-10,-47],[-60,1],[0,-91],[-18,-1],[0,-74],[-12,-38],[2,-61],[52,-33],[0,-16],[17,-8],[0,-75],[52,-38],[0,-26],[77,2],[0,-22],[17,-16],[0,-94],[29,-55],[24,0],[0,-66],[70,4],[33,-16],[28,-38],[72,-39],[34,-41]],[[2953,16430],[-345,3],[-138,3],[0,-37],[-103,3],[1,-79],[-192,-1],[-55,-1],[-185,-4],[0,-77],[-240,4],[-36,-28],[-32,1]],[[1628,16217],[-86,90],[-32,14],[-15,38],[-79,59],[-23,70],[-38,26],[-56,84],[-33,12],[-2,97],[34,54],[38,114],[-1,77],[-37,122],[6,12],[-52,97],[-4,60],[-62,82],[-11,112],[-22,84],[-29,52],[15,31],[-21,71],[-37,51],[11,152],[13,27],[-3,71],[26,110],[34,59],[33,114],[-20,79],[-21,42],[11,56],[-7,100],[-15,79],[-26,54],[-31,19],[-24,89],[-4,112],[-26,101],[-51,29],[-49,46],[-42,121],[-46,33],[-47,104],[-29,28],[-51,73]],[[717,19424],[506,3],[385,-1]],[[1608,19426],[0,-65],[181,1],[214,0],[741,2]],[[2744,19364],[13,-18],[0,-68],[26,-24],[-14,-50],[-55,-23],[-1,-100],[-18,-62],[25,-31],[6,-83],[11,-9]],[[2737,18896],[-1,-130],[48,0],[-1,-103],[38,1],[3,-167],[12,-88],[-2,-80]],[[2834,18329],[-9,-133],[-86,4],[0,-37],[-165,6],[-37,-39],[-33,0],[0,-133],[-19,0],[-4,-117],[35,0],[-1,-75],[36,-39],[0,-72],[33,-37],[1,-114],[28,0],[1,-54],[17,-56],[-34,1],[-21,-76],[-30,-40]],[[7384,15594],[51,6],[68,36],[41,8],[69,-8],[34,29],[46,9],[22,50],[53,25],[3,30],[37,77],[101,10],[33,13],[10,42],[34,66],[-9,42],[20,25],[62,8],[10,-15]],[[8069,16047],[0,-502]],[[8069,15545],[-99,-37],[-72,-4],[-77,18],[-66,-41],[-35,4],[-18,-24],[-65,-14],[-153,-16],[-68,19],[-46,-52],[-106,-37],[-47,-53],[-70,-10],[-11,-32],[-66,-16],[-8,-74],[-28,-33],[-5,-37],[-67,-25],[-47,-35],[-85,-27],[-28,-45],[-84,-13],[-90,-55],[-6,-18],[-14,-26],[-40,-17],[-28,-51],[-35,21],[-45,-22],[-31,14],[-34,-22],[-44,20]],[[6351,14805],[-59,194]],[[6292,14999],[0,254],[0,218],[-1,70]],[[6291,15541],[34,24],[65,-4],[66,31],[17,-27],[76,18],[12,34],[37,-4],[14,34],[60,27],[141,-29],[46,-4],[84,-76],[91,-38],[91,1],[48,22],[80,-1],[48,26],[83,19]],[[2953,16430],[24,-35],[53,-26],[63,-71],[-3,-30],[27,-42],[41,-55],[2,-48],[35,-55],[84,-13],[35,-100]],[[3314,15955],[6,-46],[-18,-34],[11,-36],[-34,-63],[21,-41],[27,-59],[32,-4],[44,-32],[19,-44],[48,-25],[-2,-63],[25,-45],[64,-59],[32,-33],[-33,-49],[47,-49],[12,-39],[33,-29],[-18,-31],[57,-47],[60,-117],[-18,-58],[27,-55],[56,-79],[3,-126],[-21,-16],[-3,-47],[-66,-6]],[[3725,14623],[16,-33]],[[3741,14590],[-76,-67],[-23,-2],[-9,3],[-64,-20]],[[3569,14504],[-32,22],[-21,56],[-46,48],[-27,10],[-19,38],[-60,22],[-5,-11],[-85,0],[-34,23],[-63,16],[-40,29],[-32,0],[-190,180],[-129,117],[-44,-19],[-58,8],[-54,-29],[-14,-26]],[[2616,14988],[-67,46],[-46,-30],[-21,54],[12,97],[-66,144],[-33,38],[-14,53],[-70,64],[-66,50],[-90,42],[-34,51],[-70,50],[-63,60],[-17,64],[-35,17],[-40,83],[-35,51],[-21,51],[-41,66],[-96,95],[-40,15],[-35,68]],[[5733,20580],[9,135],[0,228],[2,182],[1,608],[2,45],[-21,38],[-1,685]],[[5725,22501],[225,1],[611,-1],[187,0],[300,1],[767,-1],[389,0]],[[8204,22501],[1,-809],[3,-395],[3,-576],[0,-253],[0,-364],[-3,-796],[-7,-609]],[[8201,18699],[-27,-36],[-244,-2]],[[5896,13347],[-2,-2],[-429,-475]],[[5465,12870],[-19,52],[-21,2],[-15,59],[-39,-1],[-64,47],[-1,711],[0,1]],[[5263,14464],[9,91],[30,38],[43,20],[21,60],[-8,50],[46,47],[-4,33],[28,8],[21,67],[17,17],[58,-12],[54,-61],[41,3],[84,-13],[90,25],[50,38],[39,-18],[74,9],[113,39],[36,35],[81,23],[36,34],[32,-21],[38,23]],[[6351,14805],[105,-357],[24,-28]],[[6480,14420],[-1,-11],[1,-485],[7,-388],[-59,2],[-77,57],[-41,-13],[-17,-35],[-75,7],[-18,-18],[-48,9],[-34,-49],[-65,-6],[-7,-40],[-35,2],[-1,-37],[-44,13],[-30,-60],[-40,-21]],[[8069,15545],[-1,-164],[36,22],[62,-57]],[[8166,15346],[-18,-23],[-71,-24],[-37,-31],[-88,-18],[-76,-59],[-54,-115],[-33,-26],[-37,-69],[-26,-19],[-95,-160],[-60,-120],[-68,-92],[-21,-72],[-38,-29],[-5,-42],[-37,-38],[-1,-33],[-42,-50],[-25,-72],[-61,-25],[-40,-23],[-11,-63],[23,-46],[-38,-23],[-4,-46],[-47,-37],[-19,-48],[-27,3],[-40,-59],[-46,-31],[-36,-75]],[[6988,13781],[-170,210],[-15,28],[-186,224],[-44,51],[-93,126]],[[3516,22568],[20,92],[-10,26],[1,74],[28,32],[-7,35],[43,28],[-47,38],[-59,18],[-30,52],[-38,17],[-24,-24],[6,-58],[-16,-28],[-69,16],[-34,-20],[1,-51],[-21,-35],[-103,-43],[-25,-71],[-52,-14],[-44,-29],[-8,-33],[-56,-41],[-26,20],[-35,-26],[-49,13],[-45,-6],[-76,-66],[-51,5],[21,-74],[-22,-40],[7,-30],[-25,-31],[17,-84],[41,-25],[35,5],[32,-93],[16,-19],[-31,-80],[-39,-15],[-55,51],[-61,3],[-74,-24],[-34,111],[-75,32],[-25,43],[-44,8],[-112,-3],[-19,-15],[-68,10],[-32,43],[-31,80],[-56,54],[-92,51],[-52,-31],[-23,50],[-28,25]],[[1861,22491],[-16,44],[-34,42],[-4,35],[-33,27],[23,32],[-7,69],[-31,109],[-26,26],[-10,67],[16,33],[-36,29],[-20,14],[-293,-2]],[[1390,23016],[42,66],[-18,35],[50,31],[19,77],[-44,49],[-33,152],[-56,9],[-20,36],[23,39],[0,39],[-70,22],[15,51],[58,58],[-18,84],[42,58],[9,89],[-30,33],[-19,111],[29,38],[-32,19],[-25,67],[38,21],[60,58],[-2,50],[18,29],[53,-23],[40,63],[50,-5],[22,28],[-1,42],[39,65],[-9,71],[37,48]],[[1657,24626],[318,-4],[304,17],[71,8],[189,-15],[322,2],[440,3],[159,6],[337,5],[331,-5],[466,-9],[632,-12],[284,-5]],[[5510,24617],[0,-122],[-18,-1],[0,-452],[15,0],[1,-311],[-1,-479],[5,-114],[0,-638]],[[5512,22500],[-672,-1],[-494,0],[-229,3],[-562,-4]],[[3555,22498],[1,33],[-40,37]],[[1608,21293],[0,-331],[0,-244],[1,-676],[-1,-616]],[[717,19424],[-62,60],[-44,20],[-1,89],[-55,98],[-123,62],[-21,8],[-51,79],[-138,110],[-138,150],[0,40],[29,100],[-27,73],[-6,83],[-15,47],[-54,76],[-11,55],[44,121],[-4,40],[107,290],[32,66],[43,98],[76,144],[28,66],[105,217],[35,84],[39,129],[17,79],[18,86],[12,98],[-25,57],[-37,23],[-26,42],[1,180],[28,5],[68,221],[65,378],[17,168],[-5,65]],[[638,23231],[56,1],[279,2],[38,-5],[176,1],[1,-217],[202,3]],[[1861,22491],[-44,-46],[5,-116],[-31,-75],[-33,-33],[34,-38],[41,-9],[7,-60],[23,-12],[3,-46],[-41,-32],[-18,-73],[-29,-22],[10,-53],[-51,-31],[-12,-44],[-56,14],[-18,25],[-72,53],[-23,-35],[-50,-15],[-31,-44],[48,-121],[56,-99],[5,-130],[25,-121],[-1,-35]],[[10285,5870],[-25,71],[24,0],[9,-38],[43,0],[-1,37],[497,1],[832,7],[217,4],[464,3],[199,-2]],[[12328,3674],[-276,-1],[-83,0],[0,-113],[-17,0],[-48,-57],[-33,-19],[-56,-71],[-8,-69],[-39,-42],[-24,-76],[10,-41],[-44,-40]],[[11710,3145],[-32,26],[-64,26],[-42,-36],[12,-68],[-43,0],[-49,-22],[-69,-28],[-35,4],[-82,43],[-52,39],[-39,15],[-31,-17],[-24,15],[-32,85],[43,66],[20,11],[6,29],[1,52],[-73,212],[-39,101],[-61,103],[-62,79],[-49,33],[-44,8],[-31,-10],[-98,-4],[-60,7],[-27,-21],[-92,5],[-102,-34],[-35,-50],[-76,80],[-23,11],[-159,26]],[[10800,2457],[35,-13],[77,1],[63,-49],[19,-31],[34,13],[67,-50],[42,-5],[77,-45],[57,-93],[77,-102],[9,-64],[-37,-29],[-92,54],[-63,4],[-61,-8],[-45,20],[-41,65],[12,99],[-14,80],[-43,26],[-96,12],[-77,115]],[[10789,1298],[57,3],[21,-24],[35,-93],[114,-171],[33,-20],[26,-39],[155,-161],[36,-47],[-70,14],[-74,-65],[-15,37],[-28,14],[-43,51],[-53,32],[-11,69],[-24,19],[-20,51],[-21,15],[-17,91],[-45,71],[-24,99],[-32,9],[0,45]],[[9241,6158],[-56,-1]],[[7842,8467],[352,0],[253,0],[414,4],[202,-3]],[[9063,8468],[340,2],[562,1],[464,-1],[324,-2],[228,1],[71,7],[174,-6],[604,2],[80,-5]],[[5938,16852],[55,0],[66,37],[24,28],[64,-66],[29,6],[45,-20],[44,19],[24,64],[38,35],[31,65],[10,66],[38,67],[39,45],[68,48],[21,33],[53,11],[26,73],[118,84],[118,122],[91,48],[26,9],[36,14],[572,3],[620,0]],[[8194,17643],[0,-93],[-1,-144],[6,-411]],[[8199,16995],[-263,0],[-17,-56],[-59,-39],[-103,0],[-1,-19],[-163,-3],[-200,15],[-66,-163],[-28,-18],[-11,-36],[-38,-35],[-61,-12],[-21,-30],[-42,4],[-15,38],[-48,31],[-55,3],[-76,60],[-3,57],[-35,-21],[-36,47],[-88,20],[-110,-51],[-34,-27],[-21,-64],[-59,19],[-17,-17],[-65,28],[-7,-74],[-36,9],[-63,-31],[-19,-24],[-66,-6],[-29,-40],[-10,-41],[10,-42],[-8,-44],[-56,-47],[1,-47],[-20,-20],[-10,-57],[-27,-72],[-32,-119],[-13,-1]],[[6079,16070],[-87,7],[-70,6],[-310,31],[-171,15]],[[5441,16129],[27,45],[1,453],[103,1],[-1,183]],[[5571,16811],[56,46],[23,35],[92,40],[13,17],[21,7],[47,-46]],[[5823,16910],[115,-58]],[[3708,16216],[-89,-163],[-305,-98]],[[2834,18329],[210,-2],[69,3],[-2,-187],[8,-37],[0,-114],[-17,-40],[5,-135]],[[3107,17817],[-5,-64],[-43,-62],[-20,-58],[34,-74],[51,-28],[32,-43],[39,-25],[49,-77],[28,-10],[28,24],[105,-32],[10,-17],[108,13],[3,-34],[28,-13],[45,-121],[-42,-29],[-7,-32],[22,-60],[9,-81],[87,-119],[45,-3],[7,-23],[-18,-57],[18,-68],[68,-61],[61,-40]],[[3747,16467],[-17,-23],[41,-57],[16,-43],[-11,-39],[-35,5],[-26,-47],[-7,-47]],[[12837,2526],[-1,75],[98,177],[83,149],[-114,116],[-111,17],[-4,123],[-83,30],[-104,158],[-66,103],[0,2],[-2,2]],[[18558,4021],[-7,-57],[2,-92],[-115,-158],[-41,-16],[-22,-77],[41,-39],[-22,-46],[38,-66],[-49,-52],[18,-59],[-15,-27],[39,-123],[4,-44],[-13,-41],[28,-41],[0,-58],[-51,-29],[-15,-42],[26,-36],[-28,-19],[17,-36],[-13,-28],[17,-33],[-35,-52],[9,-58],[21,-44],[-64,-53],[-4,-39],[-57,-45],[-58,-112],[-8,-59]],[[18201,2340],[-259,0],[-120,-9],[-193,-1],[-239,-5],[-332,2],[-421,-4],[-390,0],[-474,-2],[-285,-1]],[[5512,22500],[213,1]],[[5417,20580],[-126,1],[-46,-38],[-35,18],[-69,-9],[-76,48],[-61,-12],[-28,-34],[-78,6],[-56,19],[-60,-19],[-24,12],[-48,-14],[-46,-42],[-35,7],[-38,-21],[-49,17],[-79,12],[-130,-37],[-34,5],[-58,-41],[-119,-16],[-11,-38],[-56,29],[-148,-46],[-116,3],[-44,-1],[-51,19],[-42,-16],[-48,28],[-58,-2],[-34,27],[-26,-37],[-57,-36],[-26,6],[-58,-56],[-75,-46],[-73,24],[-112,71],[-104,-24],[-91,-34],[-44,10],[-81,-104],[-52,3],[-51,19],[-90,-30],[-30,-33],[-45,-10]],[[2499,20168],[0,12],[6,54],[-6,82],[86,72],[2,30],[40,34],[-3,57],[80,8],[31,20],[20,47],[58,8],[13,48],[80,58],[2,37],[84,16],[34,54],[-5,23],[117,90],[44,-16],[-21,161],[-49,13],[17,37],[-26,39],[-20,64],[55,14],[29,79],[-25,35],[38,52],[54,35],[23,39],[4,58],[-18,42],[19,40],[30,10],[27,89],[18,4],[28,49],[-23,56],[17,50],[-7,44],[16,47],[55,24],[27,49],[29,-4],[21,32],[3,126],[-26,25],[50,41],[37,-6],[67,28],[16,56],[-10,125],[-82,43]],[[5465,12870],[-2,1]],[[5463,12871],[-368,2],[-359,5],[-8,-4],[-23,-30],[-84,-45],[-29,28],[-64,-12],[-40,18],[-82,-12]],[[4406,12821],[-24,27],[-3,57],[-51,17],[-50,-4],[-5,75],[-37,87],[-28,68],[-11,136],[-19,71],[-40,59],[-45,50],[-9,-29],[-64,76],[-25,40],[33,22],[-66,42],[-90,33]],[[3872,13648],[-8,18]],[[3864,13666],[-9,33],[25,26],[14,44],[36,3],[-9,49],[0,22],[-44,48],[18,59]],[[4730,11452],[-74,84],[-44,24],[-40,-17],[-39,-45],[-95,21],[-7,-29],[-73,-7],[-22,11],[-51,9],[-89,54],[-131,127],[-9,33],[-43,55],[-61,110],[-15,14]],[[3937,11896],[6,16],[-41,89],[-11,102],[139,8],[1,66],[48,0],[119,1],[1,183]],[[4199,12361],[15,-41],[42,-30],[59,-92],[20,-1],[65,-58],[33,-88],[44,-22],[33,-39],[138,-78],[120,-43],[52,-34],[17,-38],[96,-51],[34,-58],[6,-31],[32,-20],[2,-31],[42,-28],[-5,-32],[62,-23],[35,-82],[39,21],[33,-37],[48,-18],[0,-52]],[[5261,11355],[-48,1],[-42,31],[-27,-46]],[[4834,11229],[-31,74],[-73,149]],[[5703,17970],[4,-51],[-32,-35],[-25,-108],[-53,-46],[-13,-26],[-66,-22],[-59,5],[-27,-36],[-77,-3],[-62,-35],[-68,14],[-43,-38]],[[5182,17589],[-12,26],[-313,-5],[-204,0]],[[4653,17610],[5,49],[20,48],[3,54],[6,57]],[[4687,17818],[32,181],[2,97],[-11,49],[39,63],[0,8],[-165,-2],[-54,-19],[-37,14],[-17,66],[15,59],[-1,55],[29,41],[-22,26],[9,39],[37,17],[-20,36],[-36,7],[69,28],[35,53],[-18,44],[-31,19],[-51,71],[-55,47],[-14,32],[16,46],[-43,0]],[[4395,18895],[-32,33],[12,48],[-3,54],[26,89],[319,0],[130,1],[50,11],[49,48],[8,82],[40,76],[43,43],[104,-4],[19,37],[-1,75],[51,76],[24,7],[0,93],[17,19],[142,0],[36,19],[19,37],[52,0],[19,19],[11,58]],[[6200,18373],[-5,-31],[-52,0],[1,-47],[-64,-13],[-16,-18],[0,-75],[-18,-18],[-48,19],[-103,0],[1,-36],[-69,0],[-52,17],[-1,-56],[-17,-57],[-44,-29],[-10,-59]],[[8143,16117],[-74,-70]],[[6291,15541],[-79,258],[-17,66],[-73,219],[-28,-31],[-15,17]],[[8199,16995],[3,-176],[180,-173]],[[8382,16646],[31,-40],[13,-138],[-49,-26],[-3,-53],[-63,-81],[-11,-56],[-31,-15],[-126,-120]],[[6325,18483],[-28,-209],[-61,-50],[15,-57],[28,-9],[23,-320]],[[6302,17838],[-19,11],[-99,-6],[-36,-34],[-39,-1],[-60,-106],[-39,-2],[-31,-23],[-19,-44],[-7,-43],[-19,-34],[-38,3],[-50,-33],[14,-39],[-37,-68],[0,-509]],[[5571,16811],[-54,-9],[-23,13],[-59,-20],[-69,-49],[-34,2],[-19,-49],[-33,-38],[-11,-50],[-2,70],[-21,114],[16,33],[-36,23],[-19,117],[19,39],[26,46],[-34,60],[13,42],[-33,104],[-6,35],[10,22],[-30,36],[29,26],[-42,82],[0,39],[23,90]],[[18201,2340],[-30,-44],[-28,-10],[-55,13],[-65,-50],[27,-38],[17,-60],[-3,-63],[-18,-42],[-38,-47],[14,-38],[86,-46],[5,-38],[-28,-27],[28,-52],[-8,-57],[7,-40],[-7,-65],[-33,-83],[-21,-88],[35,-35],[27,-69],[7,-50],[24,-11],[34,30],[21,-37],[51,-15],[54,29],[96,-17],[26,-34],[30,-123],[39,7],[3,-42],[-25,-55],[34,-71],[-5,-64],[-6,-99],[-47,-57],[-30,-18],[-40,-65],[9,-89],[-23,-19],[-47,-1],[-32,-38],[-58,-1],[-11,-16],[-131,24],[-24,21],[-46,-71],[-510,-48],[-615,-61],[-616,-63],[-337,-35],[-489,-52]],[[6988,13781],[153,-156],[23,-23],[218,-231],[100,-105]],[[7482,13266],[0,-1]],[[7482,13265],[-393,-214],[-154,-85],[-263,-143],[-117,-60],[-182,-106],[-17,-38],[32,-45],[4,-77],[-463,-520],[-8,-9]],[[5921,11968],[-20,58],[-46,6],[-38,63],[-30,-46],[-55,0],[-49,46],[-93,-72],[-13,101],[-20,70],[-36,24],[-26,48],[3,72],[19,51],[39,6],[28,37],[-3,45],[-27,74],[21,79],[-44,18],[-25,-10],[-43,80],[20,41],[-4,39],[-37,31],[21,42]],[[5921,11968],[17,-31],[-48,-79],[63,-63],[-31,-42],[3,-33],[-40,-36],[24,-69],[-24,-42],[57,-57]],[[5942,11516],[-378,-1],[-54,58],[-44,-13],[-33,13],[-36,-50],[-10,-49],[-64,-72],[-28,-55],[-34,8]],[[4199,12361],[-35,68],[-40,17],[18,36],[-35,67],[19,68],[-6,64],[7,57],[47,57],[38,14],[32,-14],[24,35]],[[4268,12830],[49,-36],[56,-15],[33,42]],[[6302,17838],[55,60],[38,12],[74,-5],[71,18],[107,42],[48,-11],[101,43],[35,46],[44,33],[22,49],[47,44],[48,13],[100,-8],[37,7],[40,-38],[39,-65],[1,-50],[54,-48],[669,-2],[266,-1]],[[8198,17977],[-4,-334]],[[4395,18895],[-245,-1],[-180,5],[-379,1],[-772,-1],[-82,-3]],[[2744,19364],[-33,53],[-2,159],[-38,46],[23,59],[-24,78],[-25,40],[6,69],[26,38],[-19,74],[9,46],[-25,46],[-55,33],[-61,13],[-27,50]],[[8100,13745],[-45,28],[-17,-43],[-71,-80],[-65,15],[-26,29],[-47,-92],[-71,1],[-47,-71],[-40,-17],[-55,11],[-55,-23],[72,-154],[-36,-44],[-41,58],[-34,25],[-48,7],[-6,-29],[37,-52],[-23,-48]],[[8166,15346],[252,-201],[88,68],[42,13],[25,37],[57,13],[32,27],[76,4],[26,-32],[10,-71],[-12,-36],[113,-99]],[[9489,13641],[-24,42],[-61,46],[5,38],[-59,26],[-39,2],[-5,46],[-82,42],[-47,-30],[-52,26],[-54,87],[-60,-3],[-38,-30],[0,-47],[-21,-29],[-57,-36],[-33,-1],[-22,-33],[13,-35],[-30,-51],[-45,-4],[-102,-43],[-9,-25],[-102,-36],[-41,23],[-46,-27],[-44,15],[-58,-15],[-58,13],[-49,51],[-116,76],[-53,16]],[[9063,8468],[1,378],[3,189],[0,113],[-1,38],[0,188],[14,1],[-1,343],[102,-2],[1,75],[-2,77],[0,164],[1,27],[-101,1],[1,224],[-83,3]],[[8107,12093],[-19,39],[-58,64],[-94,43],[-52,46],[-22,36],[1,54],[-38,57],[-24,63],[-93,164],[-34,81],[18,31],[-17,50],[-28,68],[-23,22],[-19,70],[-123,284]],[[4739,14400],[-1,-10]],[[3980,14375],[-24,59],[-37,53],[-109,78],[-69,25]],[[3725,14623],[393,-1],[2,25],[-38,39],[17,74],[22,14],[-4,44],[-31,74],[1,36],[44,-3],[-28,55],[-4,60],[262,0],[7,36],[-23,81],[-29,62],[-38,52],[-31,63],[5,49],[35,112],[2,56],[1,3]],[[5239,15033],[-22,-44],[8,-44],[-3,-150],[-24,-67],[-31,-4],[-58,-32],[-42,-58],[-12,-69],[-27,-56],[-14,-71],[-54,7],[-99,-68],[-59,14],[-28,27],[-35,-18]],[[4687,17818],[-223,0],[11,34],[-10,44],[-132,1],[-104,1],[0,-75],[-225,-2],[-299,-2],[-245,2],[-353,-4]],[[5942,11516],[-6,-34],[-30,-55],[33,-35],[52,-1],[9,-43],[27,-29],[11,-42],[28,-40],[13,-45],[388,-221],[27,-29]],[[3589,14070],[-43,-37],[33,-20],[15,-40],[53,-32],[19,-32],[-56,-34],[-12,48],[-48,19],[12,-71],[30,-18],[1,-36],[-3,-53],[-38,-14],[-44,13],[-48,29],[-23,41],[-38,14],[-36,47],[-42,15],[-34,43],[-68,23],[-45,-33],[-45,28],[-18,55],[-85,59],[-28,74],[-45,52],[-65,52],[-48,22],[-107,17],[-32,-8],[-46,-51],[-2,-30],[-53,15],[35,100],[59,185],[16,67],[5,66],[-30,60],[-5,40],[-23,34],[22,95],[-63,114]],[[3569,14504],[13,-99],[-18,-63],[-8,-73],[65,-42],[29,-49],[-46,-7],[-34,-44],[19,-57]],[[3700,13863],[1,-9]],[[3701,13854],[-1,9]],[[4653,17610],[-24,-58],[-30,-35],[-21,-71],[37,-109],[-32,-49],[50,-98],[24,-99],[21,-21],[1,-47],[45,-29],[41,10],[18,-20],[-1,-47],[27,-35],[-3,-55],[56,-36],[-44,-22],[-39,-88],[19,-41],[-10,-37]],[[3937,11896],[-39,28],[-47,7],[2,40],[-43,37],[-11,59],[-52,22],[-19,37],[-4,62],[-21,76],[13,45],[19,185],[1,58],[-42,86],[-38,113],[-4,67],[-25,81],[-24,20],[-40,-21],[-43,75],[6,81],[-7,90],[30,33],[14,115],[-6,111],[-10,56]],[[3547,13459],[207,1]],[[3754,13460],[7,-76],[24,-44],[-11,-71],[29,-18],[-9,-66],[18,-27],[50,-11],[51,-33],[80,-4],[34,-41],[60,-47],[23,-35],[70,-69],[48,19],[16,-19],[24,-88]],[[5877,24617],[142,0],[283,-11],[267,2],[488,-2],[237,1],[302,-3],[308,6],[301,1],[0,-312],[2,-667],[-3,-309],[0,-822]],[[5510,24617],[191,-3],[176,3]],[[12677,2219],[-49,91],[-38,44],[-71,59],[-26,-16],[-37,11],[-75,136],[-56,76],[-65,35],[-17,25],[-89,73],[-95,38],[-55,59],[-80,64],[-74,81],[-90,119],[-50,31]],[[8382,16646],[593,-572]],[[8201,18699],[-1,-478],[-2,-244]],[[5441,16129],[-69,5],[-151,-1]],[[9178,4786],[-113,57],[-50,51],[-23,-8],[-67,22],[-111,-12],[-69,-54],[-38,1],[-119,58],[-59,-3],[-53,-24],[-46,-2],[-26,33],[-82,42],[-37,-2],[-97,66],[-57,8],[-92,-9],[-56,26],[-62,8],[-32,-9],[-108,2],[-104,-6],[-97,-15],[-12,-9],[-121,-9],[-36,-14],[-85,-6],[-16,87],[-31,37],[-27,72],[-130,88],[-77,-8],[-32,25],[-9,35],[9,75],[27,75],[46,182],[-27,68],[-21,19],[-16,75],[22,69],[25,128],[-12,63],[-43,35],[-3,30],[-12,24],[-41,1],[13,90],[24,101]],[[8334,3969],[20,45],[115,-15],[72,-48],[110,15],[46,-33],[41,-7],[49,-61],[59,0],[32,-18],[34,9],[45,86],[61,15],[61,-37],[-33,-93],[-25,-25],[-55,-16],[-135,-10],[-81,-46],[-16,-17],[-66,6],[-73,-12],[-53,2],[-24,23],[-32,-3],[-47,33],[-25,73],[20,62],[-75,68],[-25,4]],[[7739,3820],[53,20],[47,-16],[53,11],[59,46],[38,-16],[77,12],[35,34],[22,-5],[-13,-58],[7,-35],[38,-36],[41,-17],[46,4],[10,-100],[-50,-3],[-71,-44],[-20,-26],[-76,-14],[-58,-35],[-107,84],[-80,155],[-51,39]],[[7366,3902],[65,54],[45,-8],[53,55],[29,-69],[29,7],[45,-51],[-19,-28],[-33,5],[-43,-15],[-95,45],[-34,-18],[-42,23]],[[638,23231],[-29,121],[-1,95],[-36,56],[0,87],[-25,37],[-10,61],[-29,44],[-15,135],[-20,51],[-43,45],[-43,-2],[-101,86],[32,67],[34,110],[20,109],[9,126],[-12,37],[10,85],[-12,39],[395,-6],[307,0],[197,2],[132,-5],[62,12],[197,3]],[[3872,13648],[-8,18]],[[3700,13863],[1,-9]],[[3547,13459],[-22,189],[53,26],[14,52],[27,-16],[105,18],[41,-54],[8,-92],[45,-67],[-6,-26],[-58,-29]]],"transform":{"scale":[0.0005374079690441336,0.0003844194911295157],"translate":[-124.408601,32.534155999999996]},"objects":{"cb_2019_06_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[6,7,8,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[12,13,14,15,16]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[[17,18,19,20,21]],[[22]]],"type":"MultiPolygon","properties":{"COUNTYFP":"111"}},{"arcs":[[23,24,25,26,27,28]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[29,30,31,32,33,34,35]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[36,37,38,39,40]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[41,42,43,-16,44,45,46]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[47,48,49,50,51]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[52,53,54,55,-17,-44,56,57,58]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-8,59,60,-57,-43,61]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[62,-54,63,-37,64,65,66]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[67,68,69,70,71,72,73,74]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[75,76,77,78,79,80]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-69,81,82,83,84,85,86]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[-25,87,88,89,90]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[91,92,-3,93,-79,94,95]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-78,96,97,98,-95]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[99,100,101,102,103,104,105]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[106,-71,107,108,-101,109]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[[-18,-22,110,-12,111,112]],[[113]],[[114]]],"type":"MultiPolygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-60,-7,-111,-21,115,-39,116,117]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[118,119,120,121,122,123,124]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[125,-82,-68,-75,126,127,-35,128]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-52,129,-10,130,131,-48]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-105,132,-88,-24,133,134]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-4,-93,135,136,137,138,139]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[140,141,142,143,-66,144]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[145,146,147,148,149,-28,150]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[151,-76,-81,152,-121,153,154]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-151,-27,155,156,-124,157,-146]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[-132,158,-49]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-136,-92,-96,-99,159,160,161,162]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[-137,-163,163,164,-143,165,166]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-157,167,168,-119,-125]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-134,-29,-150,169,-73,170]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[171,-160,-98,172,-45,-15,173]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-61,-118,174,-58]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-110,-100,-106,-135,-171,-72,-107]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-14,175,-161,-172,-174]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[176,-1,-6,177,-84,178,-33,179]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[-170,-149,180,-127,-74]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-165,181,-55,-63,-67,-144]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[182,-86,183]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-181,-148,186,-30,-36,-128]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-166,-142,187,188,189]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[190,-89,-133,-104,191]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[-162,-176,-13,-56,-182,-164]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-112,-11,-130,-51,192]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-152,-155,193,-46,-173,-97,-77]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-26,-91,194,-168,-156]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-31,-187,-147,-158,-123,195]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[-59,-175,-117,-38,-64,-53]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[[-40,-116,-20,196]],[[197]],[[198]],[[199]]],"type":"MultiPolygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-126,-129,-34,-179,-83]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-102,-109,200]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-180,-32,-196,-122,-153,-80,-94,-2,-177]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-189,203]],"type":"Polygon","properties":{"COUNTYFP":"075"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/co.topo.json b/app/assets/topojson/states/co.topo.json new file mode 100755 index 00000000..3ca8ad0e --- /dev/null +++ b/app/assets/topojson/states/co.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[6317,5814],[142,0],[316,-1],[284,-3],[280,2],[359,2],[402,-1]],[[8100,5813],[-1,-367]],[[8099,5446],[-11,0]],[[8088,5446],[-400,0],[-325,-2],[-354,-4],[-353,5]],[[6656,5445],[-28,0],[-169,1],[-123,-1],[-267,1]],[[6069,5446],[-8,2],[1,114]],[[6062,5562],[0,7]],[[6062,5569],[0,8]],[[6062,5577],[0,3]],[[6062,5580],[0,4]],[[6062,5584],[28,4],[1,42],[42,29],[50,2],[27,-31],[36,0],[28,-31],[0,-31],[42,0],[1,32],[42,30],[-13,37],[-57,-6],[14,53],[36,12],[-7,57],[-15,31]],[[1697,5732],[0,261],[229,1],[141,10],[175,-3],[154,-1],[68,1],[0,189],[171,-6],[-1,188],[3,184],[423,1]],[[3060,6557],[0,-187],[8,0],[-3,-178]],[[3065,6192],[-120,1],[0,-624],[0,-284],[0,-263]],[[2945,5022],[-474,1],[-6,0]],[[2465,5023],[-488,0],[-198,0],[-176,0],[-619,-1],[-243,1],[-461,0],[-266,1]],[[14,5024],[-1,277],[1,344]],[[14,5645],[235,0],[0,-21],[516,0],[0,79],[0,13],[157,1],[352,-1],[0,3],[423,-2],[0,15]],[[2636,8486],[480,1],[216,-2]],[[3332,8485],[11,-25],[-30,-20],[1,-52],[32,-64],[55,-21],[9,-39],[38,19],[80,-76],[36,12],[18,24],[22,-43],[31,-31],[-9,-54],[42,-34],[-2,-47],[-48,-56],[9,-38],[-10,-34],[1,-72],[-28,-30],[10,-66],[-39,-70],[18,-52],[-12,-29],[15,-45],[35,-52],[25,-79],[-21,-40],[14,-9],[8,-56]],[[3643,7306],[-1,-119],[0,-100],[31,0],[-1,-344],[-6,-45],[0,-330],[17,-4],[-1,-159]],[[3682,6205],[0,-13],[-142,4],[-176,-3],[-299,-1]],[[3060,6557],[0,282],[-77,3],[-42,-2],[-489,-4]],[[2452,6836],[-5,236],[16,0],[4,224],[1,215],[87,0],[0,123],[87,0],[-4,548],[-2,304]],[[5910,636],[33,17],[25,-10],[27,17],[8,23],[28,4],[75,66],[44,58],[36,1],[22,24],[47,20],[63,-24],[70,28],[70,5],[65,12],[10,27],[40,32],[23,33],[7,74],[15,23],[56,-2],[32,33],[11,41],[109,94],[0,74],[142,278],[-3,14],[127,112],[33,36]],[[7125,1746],[314,-125],[124,-50]],[[7563,1571],[5,-192],[465,-1],[291,0],[233,0]],[[8557,1378],[497,-1]],[[9054,1377],[2,-553],[-12,-1],[-6,-503],[1,-304]],[[9039,16],[-514,-2],[-467,-2],[-414,-4],[-313,-3],[-188,-3],[-432,2],[-123,-2],[-446,0],[-43,-1],[-191,5]],[[5908,6],[2,630]],[[1515,6833],[-239,0],[-478,1],[-784,1]],[[14,6835],[0,469],[1,203],[3,167],[-1,202],[1,236],[-3,369],[251,-1],[580,0],[379,0],[308,4],[538,0],[565,2]],[[2452,6836],[-85,-7],[-240,9],[-167,-3],[-445,-2]],[[14,5645],[0,454],[0,736]],[[2257,2444],[858,-1]],[[3115,2443],[-1,-233],[2,-171]],[[3116,2039],[-54,-14],[-38,22],[-75,-35],[-41,-9],[1,-233],[-4,-152],[-8,-173],[32,-1],[-7,-426],[0,-107]],[[2922,911],[-96,0],[-439,-1]],[[2387,910],[0,459]],[[2387,1369],[0,273],[20,-5],[17,34],[-16,58],[-33,31],[-40,5],[-9,33],[7,31],[-26,38],[3,30],[20,26],[-24,40],[5,50],[-46,26],[-9,19]],[[2256,2058],[-23,23],[-11,35],[38,27],[25,-15],[18,23],[-3,38],[29,40],[6,51],[-25,21],[-31,-1],[-16,37],[5,29],[-17,65],[6,13]],[[4744,5727],[30,63],[32,17],[-13,100],[7,26],[48,-2],[50,-21],[35,38],[51,-18],[45,23],[18,28],[11,35],[31,7],[9,28]],[[5098,6051],[47,-4],[40,-14],[26,-39],[32,-17],[73,-62],[6,-30],[38,-19],[95,-19],[49,-1],[37,-20]],[[5541,5826],[-1,-61],[-1,-319]],[[5539,5446],[-286,4],[-54,-2],[-148,-4],[-163,-1]],[[4888,5443],[4,33],[28,6],[49,49],[-10,48],[-16,15],[-37,-6],[-47,23],[-24,49],[-22,-7],[-48,-4],[-24,23],[3,55]],[[9965,7293],[116,1],[523,1]],[[10604,7295],[-1,-617],[1,-360],[0,-272],[3,-583]],[[10607,5463],[-432,-7],[-137,-1],[-191,0],[-29,-3],[-255,-2],[-96,-1]],[[9467,5449],[2,241],[2,316],[-5,363],[16,0],[-2,245],[1,493],[21,0],[0,185]],[[9502,7292],[174,0]],[[9676,7292],[289,1]],[[4494,7104],[53,17],[28,24],[33,8],[5,-23],[37,5],[37,-35],[24,62],[33,34],[28,13],[13,39],[-9,31],[6,70],[67,44]],[[4849,7393],[50,-20],[27,-27],[-2,-35],[-16,-26],[1,-29],[37,-49],[1,-26],[34,-56],[59,-52],[41,-23],[19,-44],[21,-77],[33,-14]],[[5154,6915],[-18,-49],[-8,-63],[-10,-22],[15,-82],[48,-26],[14,-58],[-15,-34],[2,-57],[-20,-29],[14,-49],[-34,-47],[-43,-3],[10,-47],[-16,-108],[27,-20]],[[5120,6221],[-23,-75],[-13,-12],[14,-83]],[[4744,5727],[-109,-32],[-41,10],[-22,50],[-31,26],[-9,77],[-25,56],[-4,41],[-72,79],[-26,-10],[-29,13],[-50,39],[-47,78],[-30,29],[-58,9],[-7,-10],[-152,0],[0,22],[-60,1]],[[3972,6205],[-290,0]],[[3643,7306],[39,-39],[21,-100],[41,6],[44,-11],[38,-22],[7,36],[56,59],[17,-15],[6,-35],[47,-88],[30,13],[30,-16],[51,26],[25,0],[25,-37],[57,-20],[1,41],[49,23],[41,-69],[64,-5],[53,36],[19,-23],[22,8],[54,40],[14,-10]],[[1814,1657],[31,-3],[28,46],[-10,34],[37,28],[29,45],[4,45],[40,33],[27,47]],[[2000,1932],[64,-28],[12,20],[37,4],[39,36],[-6,93],[110,1]],[[2387,1369],[-166,0],[-240,2],[-332,-2]],[[1649,1369],[20,20],[-19,64],[1,37],[25,22],[23,-9],[46,32],[51,10],[-4,34],[14,17],[8,61]],[[1562,2455],[94,-1]],[[1656,2454],[21,-15],[0,-61],[91,-1],[-3,-123],[3,-30],[-13,-37],[25,-39],[52,2],[20,-35],[61,-7],[21,-54],[50,-21],[24,-50],[-8,-51]],[[1814,1657],[-38,21],[-9,36],[-44,45],[-25,-2],[-19,27],[-32,-7],[-27,52],[-63,-3],[-38,-24],[-16,15],[-36,-24],[-35,32],[-36,-36],[-57,-11],[-36,-18],[-35,31],[-24,79],[-28,39],[-121,-2],[-436,3],[-291,1],[-6,-31],[-334,0]],[[28,1880],[-2,197],[2,379]],[[28,2456],[276,1],[313,-1],[494,-1],[451,0]],[[4614,3077],[110,120],[44,5],[8,91],[27,27],[-10,25],[20,72],[-12,30],[-44,18],[5,50],[-20,56],[-29,21],[-37,7]],[[4676,3599],[405,3],[258,2],[50,3],[256,0]],[[5645,3607],[138,0],[-4,-105],[76,0],[122,0],[112,8],[141,-3]],[[6230,3507],[1,-174],[0,-102]],[[6231,3231],[2,-384],[0,-169],[-165,0]],[[6068,2678],[-43,-1],[-305,2],[-135,2],[-338,11],[-310,1]],[[4937,2693],[-33,18],[-36,41],[-37,27],[-46,94],[-34,36],[-37,24],[-5,25],[-55,62],[-19,1],[-21,56]],[[6092,4523],[6,0],[251,-1],[142,0],[162,0]],[[6653,4522],[297,0],[268,-2],[360,-1],[-3,-396],[-3,-153]],[[7572,3970],[1,-183],[4,-186],[-2,-27],[-1,-337]],[[7574,3237],[-486,-3],[-359,-1],[-159,-2],[-339,0]],[[6230,3507],[0,98],[5,30],[0,173],[0,10],[-138,1],[-63,4],[-1,12],[9,137],[57,-2],[2,319],[-9,234]],[[22,524],[-1,184],[4,334]],[[25,1042],[191,311],[328,-1],[9,0],[43,4],[390,-3],[374,7],[80,8],[209,1]],[[1649,1369],[-3,-19],[-42,-34],[-30,-62],[2,-38],[-11,-58],[-14,-15],[-5,-62],[8,-81],[-9,-18],[-21,-40],[-38,3],[-41,-71],[-1,-50],[-53,-19],[-18,-22],[-31,8],[-30,-15],[-18,-32],[-23,-120],[-26,-36],[-15,-43],[-22,-32],[-30,-13],[-21,-29],[-3,-93],[11,-36],[-31,-52],[-9,-57],[-25,-74],[-2,-25],[-57,-73],[-11,-46]],[[1030,15],[-404,-1],[-466,0],[-138,0],[0,510]],[[4256,3026],[241,-1],[18,4],[49,71],[37,-6],[13,-17]],[[4937,2693],[20,-54],[37,-23],[4,-21],[30,-20],[55,-85],[21,-5],[36,-101],[11,-57],[43,-53],[45,-113],[-10,-11],[40,-91],[26,-29],[41,7],[34,-34],[12,-32],[45,-59]],[[5427,1912],[-7,-33],[41,-5],[33,-56],[-10,-49],[0,-50],[-29,-19],[8,-35],[-12,-59]],[[5451,1606],[-255,1],[-278,-3],[-346,-5]],[[4572,1599],[-279,0],[-468,1],[-82,-2],[-1,184],[-162,1]],[[3580,1783],[0,28],[1,53],[-45,3],[-21,28],[-29,-16],[-26,11],[-42,59],[-70,12],[-37,48],[-11,41],[-29,14],[-34,-3],[-39,-26],[-33,44],[-29,-12],[-20,-28]],[[3115,2443],[1,502],[0,88],[363,-2],[777,-5]],[[8566,2220],[0,-2],[-2,-461],[-6,0],[-1,-379]],[[7563,1571],[2,186],[2,573],[1,112]],[[7568,2442],[54,-12],[42,12],[31,-30],[39,-9],[22,-8],[32,21],[18,-19],[49,7],[34,-11],[16,-21],[49,-2],[84,1],[112,0],[82,1],[0,123],[166,2],[-1,194],[13,2]],[[8410,2693],[154,1]],[[8564,2694],[2,-474]],[[9467,5449],[-94,2],[-255,-2],[-183,-4]],[[8935,5445],[-95,1],[-414,-1],[-327,1]],[[8100,5813],[1,554]],[[8101,6367],[354,0],[-1,502],[2,235],[10,0],[-1,183]],[[8465,7287],[137,-2],[224,2],[217,1],[459,4]],[[3332,8485],[611,-1],[201,-6],[198,-3]],[[4342,8475],[-8,-17],[17,-73],[-1,-45],[56,-62],[17,-6],[15,-68],[28,-14],[31,-63],[46,-34],[18,-54],[24,-21],[11,-57],[48,-59],[3,-37],[25,-31],[0,-27],[36,-84],[10,-70],[17,-7],[14,-71],[16,-13],[8,-65],[-4,-42],[55,13],[29,-32],[-4,-43]],[[6227,7365],[0,228],[2,428],[0,455]],[[6229,8476],[404,6],[315,1],[691,0],[662,0]],[[8301,8483],[0,-234],[-1,-400],[-9,0],[-2,-193],[0,-185]],[[8289,7471],[-202,-2],[-410,4],[-245,0],[2,-183],[-1,-183],[-4,-96],[0,-1],[-1,-644]],[[7428,6366],[-342,-1],[-344,0],[-232,0],[-195,0],[-114,0]],[[6201,6365],[1,92],[-27,0],[-2,-31],[-29,-8],[15,-38],[-28,-15],[-68,-1]],[[6063,6364],[-4,147],[0,174],[1,233]],[[6060,6918],[-3,185],[168,-1],[2,123],[0,140]],[[3859,5014],[-308,0],[-394,8],[-212,0]],[[3972,6205],[10,-91],[-7,-34],[11,-43],[20,-34],[17,-63],[19,-28],[5,-41],[30,-30],[45,-7],[16,-35],[40,-26],[12,-35],[43,-14],[6,-38],[30,1],[6,-38],[26,-16],[51,-5],[11,-35],[-2,-56],[-34,-6],[-22,-66],[9,-29],[-6,-65],[-34,29],[-19,0],[-12,-52],[14,-15],[-8,-101],[43,-67],[-8,-40],[40,-37],[-7,-37]],[[4317,5051],[-28,0],[-21,-29],[-61,-29],[-37,19],[-53,-4],[-19,-12],[-29,15],[-15,33],[-30,10],[-39,-40]],[[3985,5014],[-126,0]],[[8289,7471],[173,0],[3,-184]],[[8101,6367],[-130,0],[-113,-1],[-430,0]],[[2387,910],[1,-439],[0,-455]],[[2388,16],[-349,0],[-436,0],[-376,-2],[-197,1]],[[1255,3989],[137,66],[80,125],[-12,25],[38,36],[25,37],[100,82],[8,15],[47,-1],[114,24],[25,19],[29,-6],[72,-35],[25,-27],[16,-7],[42,45],[24,-1],[14,33],[35,13],[13,28],[65,88],[106,84],[38,1],[21,36],[42,40]],[[2359,4709],[0,-630],[0,-256],[0,-237],[0,-39]],[[2359,3547],[-526,-1],[-401,1],[-401,-1]],[[1031,3546],[0,341],[224,102]],[[25,1042],[3,97],[-1,286],[1,455]],[[5705,6920],[-71,-3],[-83,-8],[-258,8],[-139,-2]],[[4342,8475],[195,-2],[509,0],[472,2],[711,1]],[[6060,6918],[-115,-2],[-161,2],[-79,2]],[[2156,2771],[36,-87],[31,-19],[16,-45],[-1,-39],[28,-113],[-9,-24]],[[1656,2454],[28,1],[13,45],[1,95],[-42,32],[-28,0],[0,31],[-42,14],[-113,0],[0,43],[-27,18],[-1,63],[-28,0],[-13,38],[388,2],[363,-1],[1,-64]],[[2465,5023],[1,-38],[-54,-56],[14,-32],[66,-31],[50,-35],[-22,-41]],[[2520,4790],[-54,1],[2,-31],[-34,-24],[-35,-3],[-40,-24]],[[1031,3546],[-1,-356],[-309,0],[-721,0]],[[0,3190],[1,465],[8,328],[4,511],[1,530]],[[3420,4205],[73,97],[16,43],[46,4],[83,-7],[26,-53],[41,-51],[18,6]],[[3723,4244],[6,-15],[65,5],[36,-27],[0,-44],[37,-49],[59,-56],[35,11],[31,27],[29,-37],[39,25],[48,-33],[29,9],[7,-32],[-10,-29],[-56,-62],[-8,-30],[-42,-33],[-28,1],[-10,-33],[13,-19],[-7,-70],[2,-86],[-12,-32],[-27,-2],[-13,-23],[18,-25],[15,-70],[20,-18],[55,-17],[-7,-26],[30,-19],[6,-42],[25,-58],[-13,-39],[8,-80],[18,-33],[38,-4],[10,-35],[58,-77],[31,-6],[-2,-35]],[[2156,2771],[204,0],[-1,304],[0,472]],[[2520,4790],[28,-22],[-7,-75],[8,-26],[33,-53],[53,-16],[35,-25],[15,-61],[17,-13],[315,0],[45,-50],[25,-12],[50,-57],[-23,-43],[9,-17],[48,-12],[-1,-23],[31,-7],[44,-31],[34,-21],[48,42],[22,-48],[29,-19],[42,4]],[[3985,5014],[-11,-52],[10,-30],[-70,-32],[-18,9],[-27,-30],[-2,-29],[32,-25],[0,-37],[-22,-27],[12,-31],[-6,-62],[-23,-67],[-19,-20],[-46,9],[-16,-21],[-3,-41],[9,-26],[-8,-30],[-25,-8],[-9,-30],[12,-64]],[[3755,4370],[-29,-27],[4,-86],[-7,-13]],[[5039,398],[-24,80],[10,96],[23,23],[5,35],[-27,33],[-1,30],[-22,49],[15,27]],[[5018,771],[374,438],[16,30]],[[5408,1239],[47,26],[19,46],[77,13],[31,43],[34,-2],[59,34],[21,2],[90,-71],[36,5],[31,-9],[-2,-57],[-38,-21],[51,-56],[2,-37],[17,-43],[-7,-90],[1,-40],[36,-11],[34,-89],[-40,-21],[-16,-23],[-4,-57],[9,-69],[-3,-81],[17,5]],[[5908,6],[-442,2],[-410,-1]],[[5056,7],[-15,41],[-16,-4],[-33,27],[-15,33],[0,48],[45,80],[-13,21],[1,49],[26,45],[-10,19],[13,32]],[[8301,8483],[267,2],[48,-1],[697,0],[380,1]],[[9693,8485],[2,-249],[1,-287]],[[9696,7949],[1,-93],[-21,0],[-1,-195],[1,-369]],[[9604,1378],[261,0],[520,1],[234,0]],[[10619,1379],[-1,-617],[0,-761],[-345,3],[-647,2],[-67,5],[-151,4],[-219,-2],[-150,3]],[[9054,1377],[497,1]],[[9551,1378],[53,0]],[[6062,5922],[98,0],[73,7],[20,-23],[36,0],[0,31],[28,0],[1,31],[28,0],[0,-31],[113,0],[0,92],[89,7],[1,113],[40,17],[108,-1],[41,-14],[10,-36],[-30,-18],[0,-109],[-9,0],[-207,1],[0,-52],[43,0],[-1,-62],[-71,9],[-70,0],[-7,-15],[-71,-24],[-8,-31]],[[6062,5584],[0,-4]],[[6062,5577],[0,-8]],[[6062,5562],[-40,18],[-42,-11],[-3,23],[50,7],[20,23],[-13,39],[28,0],[0,261]],[[6648,1919],[-526,-38],[-32,28],[5,20],[-28,24]],[[6067,1953],[0,149],[-1,271],[4,29],[-2,276]],[[7574,3237],[-1,-551],[-5,-2],[0,-242]],[[7125,1746],[-447,175],[-30,-2]],[[4724,3730],[-13,-82],[-35,-49]],[[3755,4370],[586,-3]],[[4341,4367],[13,-38],[-16,-44],[35,-48],[37,6],[54,-25],[8,-25],[-14,-40],[12,-31],[60,-18],[12,21],[45,2],[51,-59],[30,-10],[15,-51],[36,-1],[22,-24],[-25,-46],[10,-34],[45,-63],[-11,-30],[-39,-44],[3,-35]],[[6092,4523],[-447,-1]],[[5645,4522],[29,72],[34,34],[7,43],[35,23],[-6,38],[39,46],[31,22],[-3,20],[47,99],[17,69],[16,28],[-10,48],[3,45],[72,57],[-1,45],[-16,33],[26,31],[29,0],[30,55],[7,69],[38,47]],[[6656,5445],[-4,-431],[1,-492]],[[5645,4522],[-2,0]],[[5643,4522],[-102,0],[0,62],[-1,357],[0,417],[-1,88]],[[5541,5826],[0,353]],[[5541,6179],[126,3],[114,1],[109,-1],[30,0]],[[5920,6182],[59,0],[12,-25],[43,-5],[29,30]],[[6063,6182],[-1,-260]],[[9130,3433],[627,-3],[97,0],[140,3],[619,1]],[[10613,3434],[0,-342],[1,-391]],[[10614,2701],[-251,-2],[-407,0],[-210,-1],[-187,-1]],[[9559,2697],[-425,-1],[-212,-1],[-358,-1]],[[8410,2693],[0,163],[-8,0],[3,369]],[[8405,3225],[0,15],[385,0],[117,3],[0,185]],[[8907,3428],[223,5]],[[4348,4842],[7,-33],[-2,-54],[19,-35],[-22,-29],[9,-34],[8,-119],[-55,-70],[48,-2],[14,-34],[-34,-40],[1,-25]],[[4317,5051],[108,0]],[[4425,5051],[-20,-24],[13,-61],[-20,-40],[-25,4],[-21,-28],[-4,-60]],[[4425,5051],[58,-4],[62,-41],[58,15],[-1,34],[63,57],[38,13],[-23,50],[34,6],[9,37],[42,0],[33,53],[49,46],[-10,46],[28,-2],[41,26],[3,29],[-21,27]],[[5643,4522],[3,-539],[-1,-37],[0,-339]],[[6063,6364],[0,-47],[-23,-15],[-23,-28],[17,0],[-7,-30],[-22,-15],[-56,7],[-29,-23],[0,-31]],[[5541,6179],[0,47],[-32,-13],[-32,20],[-26,-13],[-331,1]],[[6022,6275],[15,22],[17,13],[9,-35],[-41,0]],[[8935,5445],[-1,-590],[0,-336],[-12,0],[0,-192]],[[8922,4327],[0,-284],[-1,-451],[-13,0],[-1,-164]],[[8405,3225],[-164,3],[0,10],[-139,-1],[-253,0],[-136,2],[-139,-2]],[[7572,3970],[291,-3],[217,-1],[-1,77],[-2,383],[1,93],[9,0],[0,286],[0,236],[1,405]],[[6067,1953],[-20,3],[-4,58],[-33,9],[-31,-11],[-27,17],[-7,45],[-33,41],[7,30],[-31,27],[-40,-24],[-29,-58],[-2,-20],[-36,-17],[-16,-26],[-36,-90],[-36,2],[-14,50],[-16,14],[-45,-30],[-46,-19],[-55,-54],[-40,15],[-50,-3]],[[9560,2336],[0,-191],[2,-385],[-12,-2],[1,-380]],[[9559,2697],[1,-361]],[[28,2456],[0,24],[-28,235],[0,475]],[[5408,1239],[-11,13],[-8,63],[10,23],[7,61],[15,27],[-6,58],[6,29],[35,35],[-5,58]],[[3604,870],[288,-4],[0,-5],[207,4],[142,-1],[164,1],[165,-1]],[[4570,864],[1,-93],[82,-1],[365,1]],[[5056,7],[-577,-2],[-293,-2],[-277,0]],[[3909,3],[-19,45],[-152,265],[-12,116],[-122,71],[0,370]],[[10614,2701],[1,-505],[3,-572],[1,-245]],[[4570,1222],[0,15],[2,362]],[[4570,864],[0,358]],[[10366,8485],[238,0],[0,-535]],[[10604,7950],[-500,-1],[-408,0]],[[9693,8485],[548,-1],[125,1]],[[3580,1783],[-3,-361],[-24,0],[1,-551]],[[3554,871],[0,-17],[-242,-5],[-270,-3],[-120,0],[0,65]],[[6201,6365],[-29,-1],[-25,-40],[-28,0],[0,-50],[0,-77],[-56,-15]],[[10607,5463],[2,-574],[2,-542]],[[10611,4347],[-485,-3],[-64,-3],[-253,-7],[-210,-4],[-41,3],[-355,-2],[-112,1],[-169,-5]],[[3604,870],[-50,1]],[[10604,7950],[0,-655]],[[10611,4347],[2,-494],[0,-419]],[[3909,3],[-415,-3],[-180,0],[-11,16],[-572,0],[-343,0]]],"transform":{"scale":[0.0006609357754967515,0.0004726072817249903],"translate":[-109.060062,36.992426]},"objects":{"cb_2019_08_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6,7,8,9,10]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[11,12,13,14,15,16,17]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[18,19,20,21,-13,22,23]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[24,25,26,27,28,29,30]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[31,32,-24,33]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-32,-34,-23,-12,-18,34]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[35,36,37,38,39,40,41]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[42,43,44,45,46]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[47,48,49,50,51,52]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[53,54,55,56,-43,57,58,-21,59]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[60,61,-41,62,63]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[64,65,-61,66,67,68]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[69,70,71,72,73,74,75]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[76,77,78,79,-73,80]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[81,82,83,84]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[85,-76,86,87,88,89,90,-37,91]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[92,-27,93,94,95,96]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-51,97,98,-2,99,100,101]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[102,103,-54,-60,-20]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[104,105,106,107,108,109,110,111]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[112,-14,-22,-59,113,114,115]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-108,116,-101,117]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-63,-40,118,119,-84]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[120,121,122,123]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-67,-64,-83,124]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[125,-55,-104,126,-105,-112,127]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[128,-42,-62,-66,129]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-16,130,131,-121,-124,132,133]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[134,135,-92,-36,-129,136,-122,-132,137]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-15,-113,-116,138,139,-135,-138,-131]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[140,141,142,-31,143,144]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-107,145,146,147,-52,-102,-117]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[148,149,-29,150,151]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[152,-11,153,-9,154,-7,155]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[156,157,-74,-80,158,-94,-26,159]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[160,-70,-86,-136,-140,161,162]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-77,163,164,-5,165]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-6,-165,166,167,-45,168,169,170,171,-156]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[172,173,174,175,-96,176,177,178]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[179,-162,-139,-115,180,181]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-182,182,-46,-168,183,-71,-161,-163,-180]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-47,-183,-181,-114,-58]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[[-126,-128,-111,184,-170,185,-56]],[[186]]],"type":"MultiPolygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-99,187,188,-178,189,-79,190,-3]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[-75,-158,191,-87]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[192,-151,-28,-93,-97,-176,193]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-137,-130,-65,-69,194,-133,-123]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-88,-192,-157,-160,-25,-143,195]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[196,197,-141,-145,198,199]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-175,200,-149,-152,-193,-194]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[-4,-191,-78,-166]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-190,-177,-95,-159]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[201,-89,-196,-142,-198,202]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[203,204,-147,205]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[-167,-164,-81,-72,-184]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[-91,206,207,-38]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[-185,-110,208,-171],[-187]],"type":"Polygon","properties":{"COUNTYFP":"014"}},{"arcs":[[-188,-98,-50,209,210]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-203,-197,211,-207,-90,-202]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-205,212,-48,-53,-148]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[-189,-211,213,-173,-179]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-109,-118,-100,-1,-153,-172,-209]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-39,-208,-212,-200,214,-119]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-186,-169,-44,-57]],"type":"Polygon","properties":{"COUNTYFP":"047"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ct.topo.json b/app/assets/topojson/states/ct.topo.json new file mode 100755 index 00000000..261e807d --- /dev/null +++ b/app/assets/topojson/states/ct.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[2717,1880],[9,-45],[40,-25],[43,-84],[-3,-75]],[[2806,1651],[-14,-31],[-106,-18]],[[2686,1602],[-82,167],[-83,-11],[-184,-25],[6,18],[-183,-33],[-2,-62],[-36,-23],[-46,-8],[2,-37]],[[2078,1588],[-104,-15],[-39,-50],[-18,44],[-26,-5],[-18,-4],[-9,-56],[-32,7],[-34,39],[-134,-18],[28,135],[-11,97],[-95,-12]],[[1586,1750],[-33,193],[-1,5],[-38,223],[145,22],[26,89],[-31,7],[-5,30],[28,109],[54,5],[20,66],[40,136],[-304,-17],[45,192]],[[1532,2810],[309,-3],[106,-3],[-6,-104],[89,12],[49,75],[-9,16],[128,1],[187,-16],[2,-15],[53,-1],[19,15],[137,11]],[[2596,2798],[35,-231],[-44,-5],[-9,-201],[-2,-34],[46,10],[-18,-108],[-5,-28],[67,9],[6,-39],[20,-140],[8,-48],[17,-103]],[[825,2835],[229,-9],[225,-8],[253,-8]],[[1586,1750],[-42,-28],[-40,-6],[6,-34],[-67,-12],[-16,-8],[0,-48],[-53,-8],[-24,-41],[-109,-33],[-42,-1],[19,-111],[-103,-18],[-102,9],[-142,-18],[-16,-57],[34,-40]],[[889,1296],[-45,11],[-93,43],[-25,68],[-116,-62],[-3,60],[-17,56],[-100,274],[28,24],[-48,49],[-24,3]],[[446,1822],[22,331],[24,346],[15,208],[5,131],[116,3],[197,-6]],[[4125,2108],[9,-315],[-1,-43]],[[4133,1750],[-150,12],[-57,-8],[-150,-17],[-43,9],[-119,24],[-66,13],[-123,26],[0,4],[-68,11],[-12,-26],[-175,150]],[[3170,1948],[-15,23],[-13,14],[116,0],[19,58],[70,9],[-17,216],[-113,1],[1,327],[139,3],[112,-1],[-6,185]],[[3463,2783],[82,-4],[214,-3],[154,-5],[192,-2],[6,-242],[2,-74],[12,-345]],[[3243,2789],[220,-6]],[[3170,1948],[-64,-76],[-19,-36],[-53,-48],[-66,-28],[21,-66],[-8,-35],[-32,-16],[-60,0],[-33,-24],[-50,32]],[[2596,2798],[238,-3],[409,-6]],[[4133,1750],[-13,-356],[-9,-236],[-48,7],[-48,-28],[2,-36],[20,-22],[-11,-57],[18,-62],[-60,-57],[-43,41],[-93,-22],[-52,26],[-36,-43],[-38,22],[-65,-60],[-81,32],[-70,-5],[-41,-35],[-71,-13],[-47,37],[-35,-10],[-10,34],[-29,2],[-25,-26],[3,-66],[-101,29],[-27,-43],[-120,-14],[-34,13],[-32,77]],[[2937,879],[0,34],[-43,47],[-22,20],[10,63],[-17,24],[-83,21],[-8,28],[-18,61],[13,-2],[260,35],[-14,112],[-23,105],[-1,43],[-228,-26],[-77,158]],[[2094,1373],[23,-33],[-11,-125],[-15,-40],[54,11],[90,17],[53,12],[24,-24],[-17,-27],[38,-18],[7,-29],[36,-40],[-4,-150],[39,-5],[22,-48],[65,-78],[20,-54],[20,-14]],[[2538,728],[-16,-16],[-58,51],[-98,11],[-80,-17],[-24,12],[-41,-33],[-21,-34],[-33,-2],[9,41],[-65,4],[-44,15],[-61,-6],[-69,-43],[-18,40],[-70,-47],[-46,-9],[-41,10],[13,27],[-23,38],[-5,68],[-47,-41],[-18,0],[19,-38],[-15,-18],[-55,-21],[-21,-39],[-31,-5],[-34,-33],[-26,-48],[-74,16],[-84,-62],[-41,-50]],[[1320,499],[-31,38],[28,56],[-1,67],[49,67],[0,59],[39,33],[2,32],[-49,48],[-53,34],[-19,35],[-25,16],[-24,44],[-20,24],[-56,39],[-4,39],[-48,38],[-23,23],[-37,-8],[-20,36],[-30,-17],[-40,51],[-34,-14],[-35,57]],[[2078,1588],[7,-91],[9,-124]],[[2793,790],[-20,-11],[-55,13],[-35,-26],[-38,4],[-52,-37],[-23,24],[-32,-29]],[[2937,879],[-15,-32],[28,-82],[-93,-19],[-26,44],[-38,0]],[[369,529],[148,85],[-37,67],[-103,155],[15,211],[14,172],[14,214],[20,264],[6,125]],[[1320,499],[11,-46],[-58,-12],[-74,27],[-12,21],[-68,-18],[-54,-40],[-15,3],[-16,-42],[-43,-27],[-52,26],[-25,-8],[-110,-49],[-71,-44],[-40,-10],[-22,-40],[-44,-41],[-28,5],[-46,-16],[-46,-31],[-13,18],[-121,-62],[-67,-59],[-25,40],[-67,-38],[-59,27],[-155,236],[200,115],[169,95]],[[733,236],[0,8],[0,-8]]],"transform":{"scale":[0.0004694680696661832,0.0003765857092573055],"translate":[-73.727775,40.980706999999995]},"objects":{"cb_2019_09_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[7,-5,8,9,10]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[11,12,13,14]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[15,-14,16,-1,-7,17]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-13,18,19,-2,-17]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[20,21,22,-9,-4,23]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[24,-21,-24,-3,-20,25]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[26,-10,-23,27]],"type":"Polygon","properties":{"COUNTYFP":"001"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/dc.topo.json b/app/assets/topojson/states/dc.topo.json new file mode 100755 index 00000000..2d274565 --- /dev/null +++ b/app/assets/topojson/states/dc.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[0,403],[72,62],[130,109],[271,-231],[66,-58],[-180,-155],[-56,-46],[-96,-84],[4,64],[-5,50],[-12,23],[24,1],[8,28],[-20,39],[-3,19],[-22,-1],[-37,51],[-10,29],[-38,8],[-29,11],[-25,20],[-8,18],[-18,17],[-16,26]]],"transform":{"scale":[0.0003902857142857114,0.0003544686411149849],"translate":[-77.119759,38.791644999999995]},"objects":{"cb_2019_11_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0]],"type":"Polygon","properties":{"COUNTYFP":"001"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/de.topo.json b/app/assets/topojson/states/de.topo.json new file mode 100755 index 00000000..6e11866a --- /dev/null +++ b/app/assets/topojson/states/de.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[777,2031],[3,-57],[18,-20],[2,-62],[-26,-44],[-10,-54],[28,-139],[-3,-84],[123,-118],[45,-81],[14,-52],[0,-56]],[[971,1264],[-84,5],[-16,25],[-44,-4],[-37,-21],[3,-53],[-39,-33],[-96,-7],[-39,-20],[-25,-53],[-40,-48],[-78,-73],[-342,-14]],[[134,968],[-21,325],[-11,185],[-8,128],[-21,306],[-15,248]],[[58,2160],[92,7],[61,-6],[39,-17],[94,50],[92,9],[11,39],[26,17],[-2,35],[44,4],[47,38]],[[562,2336],[38,-49],[112,-84],[10,-61],[52,-64],[3,-47]],[[2,3034],[-2,213],[30,0],[16,40],[26,50],[53,68],[53,47],[78,48],[93,32],[77,12],[81,-1],[83,-12],[92,-34],[62,-35],[-92,-51],[-57,-110],[-59,-110],[-75,-111],[-51,-15],[-50,-74],[-3,-39],[3,-24],[97,-94],[-17,-111],[-31,-53],[-11,-44],[7,-47],[36,-56],[68,-57],[46,-97],[7,-33]],[[58,2160],[-40,610],[-16,264]],[[971,1264],[-11,-32],[27,-52],[83,-91],[73,-94],[75,-86],[64,-43],[51,-20],[75,17],[30,-43],[6,-86],[28,-198],[9,-134],[23,-312],[2,-89],[-278,-1],[-297,2],[-127,1],[-338,9],[-273,11],[-16,257],[-23,370],[-20,318]]],"transform":{"scale":[0.0004911401062417054,0.00039151702029588235],"translate":[-75.788596,38.451012999999996]},"objects":{"cb_2019_10_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[5,-4,6]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-2,7]],"type":"Polygon","properties":{"COUNTYFP":"005"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/fl.topo.json b/app/assets/topojson/states/fl.topo.json new file mode 100755 index 00000000..6eaa818b --- /dev/null +++ b/app/assets/topojson/states/fl.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[10312,12930],[-24,-12],[-9,-47],[14,-38],[73,-39],[8,-41]],[[10374,12753],[-25,-36],[-26,7],[-43,-36],[0,-43],[-34,-18],[-1,-60],[-74,-29],[-11,-38],[-48,-8]],[[10112,12492],[-72,10],[-94,72],[-26,36],[-2,32],[-31,9],[-4,58],[-40,30],[-20,-7]],[[9823,12732],[26,45],[52,31],[4,52],[-68,0],[-1,167],[-1,39],[0,580],[0,40]],[[9835,13686],[6,-25],[63,-5],[29,-16],[20,25],[41,-16],[71,50],[-11,25],[50,40],[9,50],[25,35],[-27,81],[-73,78],[-44,79],[4,58],[-25,65],[41,34],[0,24],[35,32]],[[10049,14300],[467,-32]],[[10516,14268],[3,-333],[1,-437],[-2,-284]],[[10518,13214],[12,-30],[-7,-43],[-24,-20],[-63,-20],[-41,-30],[-33,-49],[2,-58],[-52,-34]],[[10031,8002],[27,-16],[84,-16],[11,-39],[44,-29],[37,-54],[20,-64],[-38,-89],[-31,-12],[-3,-64],[-13,-15],[9,-64],[-28,-54],[-65,5],[-35,-16],[-46,14],[-15,-31],[-5,-66],[33,-91],[-65,-32],[-18,99],[10,54],[6,71],[-17,55],[-29,35],[-20,50],[-27,37],[-74,74],[-44,72],[-18,65],[-3,34],[19,112],[23,72],[7,131],[39,-32],[-18,-23],[26,-72],[25,95],[8,99],[-15,0],[0,10],[20,30],[12,75],[-2,71],[-19,59],[-29,46]],[[9814,8588],[313,3]],[[10127,8591],[5,-317],[0,-50]],[[10132,8224],[-34,25],[-47,2],[26,-55],[-35,-51],[-15,-55],[-44,-14],[4,-43],[44,-31]],[[9738,8587],[-15,0]],[[9723,8587],[15,0]],[[12036,14649],[34,6],[45,-23],[42,8],[58,-41],[36,-12],[19,18],[46,-12],[26,-25],[61,30],[84,4],[49,-35],[43,-4],[37,-21],[-6,-70],[-26,-164],[-3,-72],[15,-105],[-8,-41]],[[12588,14090],[-39,37],[-42,21],[-40,72],[-30,8],[-20,-26],[5,-41],[-44,-35],[-24,48],[-45,-15],[-30,64],[-66,50],[-35,-15],[-39,-43],[-125,22],[-26,-28],[-7,-58],[-51,1],[-3,-38],[-33,-37],[-27,5],[-30,-49],[-44,-40],[-212,-220],[-231,-237]],[[11350,13536],[-2,210]],[[11348,13746],[29,54],[-11,27],[8,88],[40,96],[6,89],[-8,26],[27,93],[-14,71],[-30,30],[-3,36],[-43,80],[-2,49],[29,71],[-15,54],[8,43],[57,36],[-25,47],[33,23],[58,-39],[34,48],[6,58],[20,15],[79,-28],[19,33],[41,-68],[26,-19],[59,-13],[67,6],[46,-40],[42,7],[60,-57],[45,-13]],[[5936,13599],[425,4],[321,4],[201,0],[13,-69],[336,-1]],[[7232,13537],[-1,-420]],[[7231,13117],[-99,-11],[-66,-42],[-44,1],[11,42],[-40,16],[-20,-31],[-69,2],[-21,36],[-30,7],[-21,-27],[4,-57],[-111,-61],[-55,-69],[-28,-10],[8,-50],[28,-44],[-94,32],[-49,2],[-28,-17]],[[6507,12836],[-53,30],[-18,31],[-49,-35],[-46,5],[-22,38],[-39,13]],[[6280,12918],[-95,44],[-38,71],[-41,12],[-50,83],[12,19],[-42,40],[-7,59],[9,76],[-28,83],[-22,10],[-26,70],[-42,12],[-6,72],[32,30]],[[7234,13865],[-2,-328]],[[5936,13599],[26,45],[-29,26],[60,46],[12,43],[68,48]],[[6073,13807],[41,47],[39,18],[33,-10],[90,66],[32,0],[21,27],[137,26],[61,3],[51,50],[-15,54],[34,43],[8,65],[12,47],[72,58],[21,-5],[20,58],[47,51],[-7,76],[42,25]],[[6812,14506],[426,-23],[133,-8]],[[7371,14475],[-1,-148],[13,-60],[46,-144],[-127,-2],[0,-89],[0,-49],[-68,-68],[0,-50]],[[6015,12389],[26,-11],[36,19],[40,1],[44,51],[46,36],[-5,-50],[-83,-41],[-73,-21],[-31,16]],[[5840,12919],[440,-1]],[[6507,12836],[57,-38],[48,2],[90,-43],[6,-44],[-22,-58],[-74,-13],[-86,23],[-36,22],[-22,38],[-38,-10],[-44,-35],[-37,15],[-52,-14],[-65,-44],[-72,-36],[-119,-92],[-81,-30],[-122,-84],[-127,-72],[-26,-5],[-91,-52],[-41,3],[32,71],[31,37],[-89,5],[-26,-52],[-37,-37],[-37,-13],[-26,-44],[-75,-28],[-119,23],[-100,-8],[-135,-38],[-67,-33]],[[4905,12152],[30,60],[197,155],[61,-20],[21,38],[59,-12],[8,30],[31,36],[-2,38],[-22,15],[-18,108],[-26,61],[25,67],[31,53],[2,44]],[[5302,12825],[37,100],[58,0],[443,-6]],[[5157,12012],[57,-39],[85,-30],[25,15],[68,13],[67,33],[46,52],[44,9],[87,57],[17,-2],[101,28],[17,44],[36,11],[24,-18],[-69,-42],[-111,-40],[-63,-30],[-145,-90],[-181,-63],[-102,80],[-3,12]],[[4902,12138],[42,7],[92,-7],[86,21],[41,-9],[28,-23],[-34,-99],[-48,-7],[-41,10],[-94,74],[-72,33]],[[10144,6746],[52,0],[342,-3],[3,-5],[396,0],[-1,-203],[-1,-215],[400,-2]],[[11335,6318],[-2,-309],[0,-105]],[[11333,5904],[-402,2],[0,-4],[0,-73],[0,-129],[-166,1],[-78,0]],[[10687,5701],[-51,92],[-18,46],[-74,132],[-63,190],[-46,91],[-27,66],[-19,48],[-47,77],[-38,21],[-11,67],[-42,68],[-69,82],[-38,65]],[[298,15242],[474,1],[35,-5],[151,7]],[[958,15245],[-84,-69],[-46,-21],[-57,-69],[-25,7],[-29,-23],[-5,-87],[-28,-16],[-32,-76],[32,-51],[11,-35],[-39,-61],[16,-49],[-17,-73],[8,-18],[56,-18],[26,-31],[3,-84],[21,-140],[40,-34],[55,-97],[29,-15],[11,0],[76,-42],[51,-61],[6,-47],[-27,-79],[7,-64],[-23,-32],[-14,-12],[-157,-53],[-7,-80],[44,-22],[67,-13],[51,32],[80,13],[106,24],[36,16],[43,-2],[145,30],[64,10],[2,-37]],[[1454,13766],[-262,-54],[-218,-48],[-102,-15],[-132,-11],[-60,27],[-29,-16],[-229,-59],[-185,-37],[0,8],[134,38],[-15,19],[-87,-2],[-4,39],[26,16],[55,6],[28,31],[-1,49],[26,32],[-4,25],[22,35],[53,9],[66,48],[-14,44],[-54,9],[-51,41],[-3,60],[-27,27],[-4,46],[22,52],[34,30],[40,103],[11,60],[-7,55],[-20,49],[-67,37],[-70,37],[-14,23],[-43,12],[-19,28],[-42,24],[-9,45],[-31,56],[-60,61],[-38,20],[-55,64],[-15,42],[26,46],[29,92],[38,94],[-20,78],[225,1]],[[11235,11564],[20,-13],[30,24],[52,3],[-1,69]],[[11336,11647],[60,56],[45,16],[82,5],[65,30],[41,-30],[10,25],[93,1],[37,14],[0,-81],[136,2],[0,-27],[2,-110],[67,2],[1,-139],[148,2],[16,-67],[-30,-11],[-11,-33]],[[12098,11302],[27,-54],[24,-4],[28,-55]],[[12177,11189],[3,-341],[4,-198],[-42,0],[1,-206],[-209,2],[-163,0],[-228,-2]],[[11543,10444],[-445,-1],[-282,1]],[[10816,10444],[-3,22],[-74,45],[-34,33],[-101,25],[-52,52],[-46,23],[-48,15],[-41,-33],[-55,17]],[[10362,10643],[1,400],[193,1],[74,1],[-2,149],[-4,486]],[[10624,11680],[389,-2],[7,-32],[3,-99],[33,-18],[52,11],[47,-5],[20,26],[52,2],[8,1]],[[13064,7107],[61,41],[41,73],[30,23],[-8,37],[5,62]],[[13193,7343],[234,-3],[313,1]],[[13740,7341],[193,2],[2,-199],[197,-1]],[[14132,7143],[5,-603],[-1,-227]],[[14136,6313],[1,-198],[-423,-383]],[[13714,5732],[22,321],[8,140],[-20,27],[-35,-1],[-40,57],[-47,37]],[[13602,6313],[-11,27],[-51,1],[-23,50],[-35,75],[5,54],[-64,28],[-2,42],[-32,41],[25,38],[-71,60],[-93,6],[-33,50],[-24,15],[6,51],[-31,47],[-29,12],[-27,55],[-47,17],[11,59],[-23,23],[11,43]],[[8586,12111],[18,12],[55,-17],[46,69],[11,113],[44,74],[9,8],[1,105]],[[8770,12475],[731,6],[78,-3]],[[9579,12478],[-30,-34],[31,-35],[-30,-20],[-26,-47],[19,-51],[-23,-43],[14,-14],[-30,-52],[-3,-64],[4,-76],[-32,-34],[2,-37],[28,-47],[42,6]],[[9545,11930],[-26,-83],[-52,-35],[13,-44],[-25,-13],[-5,-108],[-58,-59],[-7,-55],[-40,-81],[-26,-22],[-32,-12],[-8,-70],[-104,-64],[-41,17],[-17,-39],[-37,-45]],[[9080,11217],[-20,57],[5,45],[-62,121],[4,26],[-32,62],[-46,30],[-64,-3],[-39,12],[-34,75],[-47,16],[-52,57],[-46,8],[-33,54],[-23,104],[15,100],[-20,130]],[[9583,12478],[30,1]],[[9613,12479],[-30,-1]],[[7371,14475],[804,-49]],[[8175,14426],[15,-31],[0,-133],[-33,1],[-1,-35],[-33,0],[0,-34],[-69,0],[0,-35],[-67,0],[0,-35],[-44,0],[-22,-35],[18,-43],[7,-105],[5,-26],[-59,-63],[-13,-52],[-94,-19],[-9,-29],[29,-70],[3,-38],[-38,-2],[-19,-35]],[[7751,13607],[-37,-54],[-88,-31],[-31,-36],[-37,-17],[-2,-51],[-22,-76],[-49,-11],[-18,-80],[-65,-132],[1,-24]],[[7403,13095],[-66,40],[-79,-4],[-27,-14]],[[5797,14109],[2,-134],[80,1],[56,0],[0,-101],[68,0],[0,-69],[70,1]],[[5302,12825],[-9,38],[-42,8],[-7,24],[-121,52],[-44,47],[-4,102],[-24,56],[32,83],[-13,42],[13,43],[36,43]],[[5119,13363],[33,32],[46,88],[34,24],[-8,23],[23,39],[-9,33],[25,41],[-10,42],[23,68],[47,48],[-25,29],[-11,52],[36,33],[58,74],[-27,16],[18,75],[-2,35],[37,79],[24,25],[-8,37],[44,6],[-1,32],[25,26]],[[5491,14320],[100,-2],[0,-53],[2,-117],[135,0],[1,-35],[68,-4]],[[958,15245],[188,0],[335,-4],[245,-1]],[[1726,15240],[-4,-228],[-9,-414],[-3,-207],[-5,-45],[-6,-439],[-1,-34],[0,-24],[-2,-45]],[[1696,13804],[-242,-38]],[[14407,8283],[73,-169],[125,-259]],[[14605,7855],[-16,-14],[-48,0],[-25,0],[-37,-77],[-199,1],[-331,3],[-201,-3]],[[13748,7765],[-2,377],[1,241],[13,0],[3,381],[-3,237]],[[13760,9001],[-54,107],[9,42],[-27,50],[3,49],[5,33],[48,11],[-30,91],[-41,3],[-37,51],[-31,6],[19,65],[-35,51],[-10,47],[-71,19]],[[13508,9626],[46,0],[-7,418],[139,1],[115,1],[223,0]],[[14024,10046],[48,-81],[126,-186],[62,-102],[87,-116],[27,-128],[73,-168],[-8,-23],[-71,-33],[-47,-61],[-21,-57],[-18,-110],[3,-158],[21,-179],[45,-198],[56,-163]],[[14750,1839],[-7,-41]],[[14743,1798],[7,41]],[[14633,1676],[30,0],[16,40],[26,0]],[[14705,1716],[-4,-35],[-28,-7],[-14,-56],[8,-31],[31,-16],[60,34],[39,3],[37,77],[5,54],[-25,31],[10,34],[29,-5],[70,63],[48,86],[29,-27],[-34,-48],[-36,-85],[-42,-66],[-16,-40],[-38,-54],[-18,-49],[-35,-43],[5,-56],[-23,-8],[-16,-46],[-45,-51],[-50,-10],[-39,-66],[-37,-15],[-65,-73],[8,-21],[-55,-62],[-31,-13],[-40,-63],[-36,-39],[-59,-18],[-29,14],[37,35],[49,-13],[24,21],[30,100],[56,2],[39,76],[21,14],[108,129],[-27,36],[-30,22],[-1,65],[38,59],[-45,63],[-44,-11]],[[14524,1607],[-13,47],[51,7],[42,25],[29,-10]],[[13790,659],[31,14],[49,54],[29,-50],[-60,0],[-49,-18]],[[13228,430],[70,22],[27,0],[54,49],[28,13],[22,-22],[64,24],[62,47],[52,9],[-110,-81],[-64,-38],[-21,24],[-67,-29],[-31,-54],[-52,-8],[-34,44]],[[12526,3011],[428,2],[786,3]],[[13740,3016],[0,-429],[-1,-611],[23,1],[0,-286],[8,-75],[1,-81]],[[13771,1535],[-36,-5],[-50,-29],[-1,-53],[-31,4],[-56,-16],[-58,-1],[-56,-23],[-48,12],[-56,-3],[-68,-28],[-57,69],[-59,27],[-2,61],[-27,59],[-34,34],[10,112],[31,129],[24,38],[38,-5],[-3,95],[-56,19],[7,40],[-21,71],[-20,39],[-2,44],[-42,26],[-42,61],[13,65],[-13,34],[-49,48],[-19,55],[3,33],[-61,19],[-4,57],[-33,37],[-1,78],[-81,54],[-51,43],[-10,31],[-44,17],[1,62],[-69,21],[-18,22],[-94,23]],[[12191,128],[-61,-14],[-41,-34],[-101,-4],[-103,-24],[-54,-3],[37,71],[56,24],[28,-13],[63,62],[-13,26],[-75,35],[22,51],[108,55],[37,30],[22,22],[178,87],[27,46],[72,23],[77,63],[46,15],[65,34],[145,-81],[13,-23],[-2,-63],[50,-83],[45,-11],[22,-89],[25,-22],[-101,-46],[-98,-35],[-24,50],[-82,26],[-71,-13],[-49,16],[-10,-68],[-98,-38],[-10,-14],[-82,-41],[-63,-17]],[[11154,154],[42,16],[47,-28],[5,-25],[-38,-11],[-8,28],[-48,20]],[[11818,9035],[57,0],[0,-36],[271,1]],[[12146,9000],[0,-207],[203,1],[68,-138],[0,-137],[138,1],[1,-137],[222,-1],[-2,-19],[-40,-35],[7,-56],[-62,-23],[-69,27],[-31,46],[-29,-9],[-2,-31],[37,-19],[32,-51],[9,-25],[67,5],[22,-60],[54,-34],[27,-34],[-11,-38],[68,-28],[-13,-47],[36,-99],[74,-29],[29,4],[65,-48],[26,-55],[35,-76],[12,-49],[27,-23],[-7,-38],[33,-18],[17,-116],[27,-23],[-23,-38]],[[13193,7343],[-446,8],[-410,0]],[[12337,7351],[-201,0],[-161,-1],[-636,0]],[[11339,7350],[1,491],[-2,55],[-1,141],[-1,550],[-101,0]],[[11235,8587],[-1,206],[103,0],[-1,127]],[[11336,8920],[62,23],[61,-9],[15,-28],[62,4],[0,86]],[[11536,8996],[203,2],[0,37],[79,0]],[[3638,14548],[10,33],[27,19],[-11,75],[21,79],[141,-2],[0,-33],[34,-1],[-2,-68],[238,-6],[-2,65],[34,58],[7,81]],[[4135,14848],[239,-3],[-1,-102],[103,-1],[-1,-134],[-1,-58],[-4,-187],[1,-134]],[[4471,14229],[-104,0],[-4,-309],[-124,2],[-619,8],[-62,-72],[-48,-10],[-28,23],[-38,-17],[-51,5],[-34,-43],[-22,-7]],[[3337,13809],[-2,37],[24,58],[59,34],[74,-13],[31,12],[20,45],[27,10],[36,71],[-38,35],[-3,54],[-30,121],[-29,1],[2,64],[-14,54],[94,64],[-4,26],[26,53],[28,13]],[[10915,9755],[30,80],[-2,37],[88,94],[34,4],[11,57],[29,32],[-19,16],[-7,43],[-46,31],[-54,51],[-22,48],[-63,48],[-8,31],[-70,117]],[[11543,10444],[1,-228],[0,-170],[0,-84],[-2,-235],[1,-177],[-7,-554]],[[11336,8920],[3,389]],[[11339,9309],[0,102],[-27,23],[-49,-19],[-35,49],[-44,6],[-15,45],[-36,18],[-19,-22],[-106,38],[-9,31],[-79,102],[-27,57],[22,16]],[[8327,14417],[463,-31]],[[8790,14386],[68,-13],[39,-100],[-13,-13],[48,-148],[-9,-106],[36,-12],[15,-94],[29,-31],[49,-10],[19,-60]],[[9071,13799],[-10,-1],[-34,-22],[-12,-64],[-29,-9],[5,-76],[-47,-47],[3,-19],[-31,-55]],[[8916,13506],[-244,0]],[[8672,13506],[-208,-1],[1,104],[-239,-2],[-475,0]],[[8175,14426],[152,-9]],[[9304,14350],[745,-50]],[[9835,13686],[-102,12],[-25,38],[-58,22],[-15,16],[-78,38],[-49,54],[-106,21],[-54,20],[-85,-12],[-5,29],[-36,-5],[-52,-8],[-25,-26],[-41,-10],[-33,-76]],[[8790,14386],[514,-36]],[[9823,12732],[-16,3],[-47,-48],[-64,-4],[-34,-57]],[[9662,12626],[-31,31],[-34,11],[-38,124],[-41,2],[-25,82],[-33,34],[-49,8],[-20,50],[-57,53],[-48,23],[-14,42],[-32,2],[-148,63],[-23,-25],[-27,-11],[-28,26],[-27,-6],[-29,27],[4,49],[-29,39],[12,40],[-33,35],[-2,40],[20,63],[-26,25],[12,53]],[[8672,13506],[1,-140],[-4,-171],[-4,-289],[-1,-278],[37,0],[0,-154],[69,1]],[[8586,12111],[-55,22],[-24,-5],[-72,30],[-19,58],[-100,36],[-36,35],[-12,44],[-47,51],[15,21],[-11,63],[-64,55],[-39,103],[-32,20],[-55,64],[-96,45],[-111,82],[-21,1],[-73,17],[-34,35],[-162,86],[-70,71],[-48,19],[-17,31]],[[12177,11189],[17,-75],[29,-38],[19,-61],[35,-9],[65,3],[18,-37],[40,-16],[57,-127],[3,-41],[28,-31],[61,3],[-3,-38],[58,-80],[59,-28],[45,-59],[41,-72],[-15,-50],[31,-22],[-3,-112],[-26,-46]],[[12736,10253],[-18,-30],[-14,-34],[-50,-40],[-25,-47],[11,-71]],[[12640,10031],[-209,3],[-263,-1],[-24,-44],[1,-254],[1,-157],[19,-19],[-18,-50],[-1,-24],[0,-485]],[[14988,1966],[19,83],[67,26],[-51,-119],[-35,10]],[[14834,2210],[17,-60],[-4,-96],[31,-21],[5,-35],[-32,-38],[-33,-60],[-57,-20],[-11,-41]],[[14743,1798],[-38,-27],[0,-55]],[[14524,1607],[-32,-9],[-25,39],[-30,-13],[-106,-9],[-3,-22],[-40,-26],[-12,31],[-60,-30],[-28,5],[-23,-38],[-36,-5],[-59,-53],[-24,18],[-65,-3],[-92,11],[-21,14],[-33,-20],[-14,29],[-50,9]],[[13740,3016],[0,409]],[[13740,3425],[392,-1],[0,-52],[486,0],[3,0],[293,0],[0,33],[181,4],[31,2],[137,4],[11,0]],[[15274,3415],[-8,-181],[6,-124],[-4,-76],[-20,-115],[-20,-24],[-31,-131],[6,-63],[-52,35],[23,35],[-18,20],[43,30],[-49,55],[-60,-1],[-60,-43],[-19,-43],[5,-25],[-45,-93],[-10,-47],[-29,-45],[-39,-10],[-6,-38],[12,-65],[-24,-84],[-35,-19],[-17,-66],[0,-71],[11,-16]],[[13602,6313],[-43,12],[-421,-3],[2,-207],[-202,-1],[1,-127],[0,-82],[-153,0],[-447,3]],[[12339,5908],[-3,723]],[[12336,6631],[0,174],[0,187],[1,359]],[[11235,8587],[-216,1],[-97,-1],[-410,1],[-26,0],[-359,3]],[[9814,8588],[71,84],[26,49],[28,91],[22,58],[3,78],[31,49],[24,82],[-4,49],[24,51],[32,25]],[[10071,9204],[78,1],[362,-1],[6,0],[418,3],[0,52],[0,51],[404,-1]],[[9723,8587],[15,0]],[[5913,14554],[404,-23],[105,-7],[202,-7],[188,-11]],[[5491,14320],[50,31],[8,40],[29,55],[30,29],[35,62],[-14,31]],[[5629,14568],[284,-14]],[[1726,15240],[161,-6],[333,-1],[46,-2],[266,2]],[[2532,15233],[-1,-275],[-3,-152],[-2,-214],[0,-35],[-3,-494],[-2,-78],[-1,-24],[0,-9],[-1,-39],[-4,-129]],[[2515,13784],[-95,11],[-126,-3],[-29,11],[-213,23],[-231,-8],[-125,-14]],[[12588,14090],[13,-49],[35,7],[9,-42],[17,-171],[20,-8],[-6,-98],[12,-119],[22,-122]],[[12710,13488],[-102,-2],[-14,0],[6,-323],[-1,-23],[-142,-2],[-70,-1],[0,38],[-59,-5],[-27,19],[-87,18],[-54,-29],[-60,0]],[[12100,13178],[-24,49],[3,70],[22,44],[-241,-4],[-142,-2],[-178,-4],[-191,1]],[[11349,13332],[1,204]],[[5119,13363],[-154,2],[-403,1]],[[4562,13366],[0,113],[2,39],[2,367],[8,342]],[[4574,14227],[431,-6],[8,103],[314,-5],[164,1]],[[10915,9755],[-314,-4],[-1,68],[-67,0],[-114,0],[-92,0],[-248,-1]],[[10079,9818],[-33,17],[-49,60],[35,48],[12,98],[-43,25],[-52,59],[22,34],[-12,31],[12,45],[77,33],[2,47],[-26,33],[-49,101],[-68,71]],[[9907,10520],[8,22],[88,68],[45,8],[157,-58],[39,48],[33,-4],[85,39]],[[9911,10068],[31,6],[37,-30],[-26,-39],[-42,63]],[[4564,12714],[-5,243],[3,409]],[[4905,12152],[-41,-21],[-72,16],[-85,-4],[-67,-36],[-28,25],[-45,90],[-23,65],[-31,134],[-8,68],[12,73],[24,-22],[-21,-46],[2,-67],[41,-142],[1,-28],[37,-66],[16,-49],[19,-4],[83,30],[15,92],[-2,65],[11,94],[-22,36],[-6,43],[-58,60],[-42,96],[-51,60]],[[12812,11155],[365,9],[-5,202],[-6,124],[14,29],[83,24],[12,0]],[[13275,11543],[112,-280],[104,-240],[60,-137],[44,-87],[61,-84],[74,-150],[185,-321],[109,-198]],[[13508,9626],[-41,55],[12,11],[-20,64],[-20,15],[9,44],[-34,35],[-8,41],[-48,58],[16,55],[-12,51],[-17,42],[-36,7],[-42,30],[-35,-34],[-30,-54],[-38,1],[-46,-23],[-70,53],[-25,66],[-191,5],[-44,30],[-52,75]],[[12098,11302],[331,88],[137,39],[34,47]],[[12600,11476],[27,3],[7,-326],[178,2]],[[11348,12209],[-11,20]],[[11337,12229],[13,1]],[[11350,12230],[41,0],[44,49],[63,18],[75,1],[17,20],[15,58],[29,30],[95,16],[83,61],[50,25]],[[11862,12508],[439,8]],[[12301,12516],[30,-88],[50,-75],[34,-27],[3,-323]],[[12418,12003],[6,-296],[11,-23],[50,-77],[9,-71],[20,-66],[50,-14],[36,20]],[[11336,11647],[0,410],[12,152]],[[13161,9625],[347,1]],[[13760,9001],[-278,3],[-47,-2],[-307,1],[-118,0],[-306,-1],[-214,-2],[-344,0]],[[12640,10031],[-4,-69],[-14,-43],[-38,-52],[-36,-3],[3,-173],[263,-2],[2,-69],[92,2],[10,0],[243,3]],[[10374,12753],[38,10],[53,-13],[26,-31],[22,12],[56,-5],[30,-15]],[[10599,12711],[25,-21],[11,-57],[55,-25],[79,-1],[61,-60],[72,-22],[58,19],[15,-16],[88,7],[35,-27],[81,-2],[19,-29],[0,-43],[30,-52],[61,-17],[5,-35],[38,-31],[5,-70]],[[10624,11680],[-13,0],[-169,1],[-1,-17],[-122,4],[-1,135],[-202,-4],[0,69]],[[10116,11868],[-1,381],[-3,243]],[[9545,11930],[164,0],[0,-17],[130,1],[40,1],[33,-17],[1,-36],[203,6]],[[9907,10520],[-10,17],[22,63],[-21,66],[-40,35],[-65,9],[0,68],[28,34],[-14,21],[8,50],[-19,37],[-41,-18],[-49,18],[-37,-7],[-94,24],[-46,-4],[-108,15],[-10,-40],[-36,-42],[-72,-22],[-24,54],[1,61],[-37,72],[-1,36],[24,55],[-29,43],[-37,6],[-86,49],[-34,-3]],[[11339,7350],[-671,0],[-284,-2],[-61,0]],[[10323,7348],[82,142],[39,31],[38,13],[-4,52],[89,42],[-3,26],[42,42],[45,104],[-17,55],[-2,52],[-26,41],[-42,8],[-53,11],[2,70],[-58,-43],[4,-58],[17,-19],[-18,-55],[39,-48],[-7,-49],[-79,13],[-87,47],[2,35],[29,5],[-6,46],[21,46],[-5,68],[-41,80],[-60,29],[-35,2],[-44,33],[-53,55]],[[13748,7765],[-26,0],[3,-209],[13,0],[2,-215]],[[11763,4252],[10,0],[44,0],[1,-34],[131,2],[196,2],[-3,243],[197,4],[-1,68],[-2,145]],[[12336,4682],[190,1],[170,7],[234,1],[0,-222],[6,-399],[329,7],[217,2],[244,6]],[[13726,4085],[1,-204],[13,-406],[0,-50]],[[12526,3011],[13,18],[-59,47],[-61,23],[-23,37],[-78,21],[-65,63],[-72,0],[-12,12],[-53,-36],[5,-37],[-16,-38],[-24,6],[-58,130],[-23,3],[-5,53],[-48,60],[33,39],[-47,76],[-22,64],[-58,137],[-15,143],[-11,50],[-13,149],[-25,136],[-26,85]],[[10867,13226],[-349,-12]],[[10516,14268],[409,-30],[49,-35],[-13,-44],[21,-49],[59,-75],[-13,-58],[7,-38],[-12,-47],[12,-55],[69,-100],[133,23],[9,-10],[65,-12],[37,8]],[[11349,13332],[0,-103]],[[11349,13229],[-189,0]],[[11160,13229],[-293,-3]],[[10995,4893],[19,1],[54,-187],[21,-50],[57,-59],[35,4],[89,-56],[53,35],[61,-41],[-62,-64],[-72,-2],[-58,27],[-44,45],[-50,29],[-27,51],[-38,185],[-32,38],[-6,44]],[[10916,5084],[14,47],[44,-64],[-9,-33],[21,-43],[-16,-15],[-54,108]],[[11589,5287],[256,-1],[487,0]],[[12332,5286],[-1,-174],[5,-430]],[[11763,4252],[-47,113],[-58,58],[-29,57],[-106,72],[-11,28],[0,16],[-90,26],[9,41],[-7,47],[-106,37],[-14,-35],[30,-76],[-59,-10],[-42,5],[12,45],[-23,40],[-21,65],[-4,64],[-15,66],[-32,57],[10,22],[-79,89],[-4,31],[20,25],[32,4],[65,-18],[29,-42],[26,-84],[33,17],[-18,32],[13,84],[38,94],[9,66]],[[11324,5288],[265,-1]],[[10897,5333],[101,-18],[43,-26]],[[11041,5289],[-60,0],[-39,-19],[-20,-82],[-25,145]],[[13723,4260],[694,2],[493,-1],[0,49],[189,-64],[69,0],[128,0],[66,-16]],[[15362,4230],[-14,-148],[-23,-126],[-20,-164],[-8,-98],[-22,-251],[-1,-28]],[[13726,4085],[-3,175]],[[13714,5732],[-25,-93],[-96,-354],[-463,-2],[-151,1],[-381,0],[0,35],[-50,0],[0,-35],[-216,2]],[[12332,5286],[7,622]],[[11797,6629],[539,2]],[[12339,5908],[-425,0],[-430,3],[-17,-7],[-134,0]],[[11335,6318],[2,307]],[[11337,6625],[399,-4],[61,8]],[[9579,12478],[4,0]],[[9613,12479],[23,9],[14,62],[21,29],[-9,47]],[[11324,5288],[14,75],[-7,86],[1,78],[-76,46],[-6,51],[23,34],[39,0],[23,39],[-46,33],[-26,-10],[-50,22],[-46,-95],[-32,-3],[-26,39],[-22,2],[-5,-42],[56,-158],[17,-154],[-55,-44],[-59,2]],[[10897,5333],[-21,62],[-88,145],[-34,40],[-67,121]],[[15059,6448],[-124,1],[-1,-135],[-95,-1],[-303,1],[-400,-1]],[[14132,7143],[472,-1],[67,-1],[190,0]],[[14861,7141],[19,-75],[44,-127],[-1,-12],[59,-170],[57,-125],[69,-184]],[[15108,6448],[-49,0]],[[13714,5732],[-1,-447],[1,-377],[5,-346],[7,-273],[-3,-29]],[[14534,5729],[218,1],[422,-4],[51,0],[1,34],[125,-1]],[[15351,5759],[55,-208],[44,-202],[-9,-55],[5,-137],[-7,-162],[1,-72],[-3,-74],[-9,-91],[-17,-84],[-17,-130],[-24,-278],[-8,-36]],[[13714,5732],[621,-3],[199,0]],[[4574,14227],[-103,2]],[[4135,14848],[8,55],[42,105],[40,52],[48,50],[3,70],[66,60]],[[4342,15240],[236,4],[108,2],[173,3],[491,0],[-8,-55],[48,-28],[-3,-67],[95,-124],[4,-71],[14,-28],[-16,-51],[15,-59],[22,-42],[7,-57],[37,-7],[64,-92]],[[3333,13626],[4,183]],[[4564,12714],[-64,54],[-71,22],[-53,3],[-55,33],[-58,75],[-34,19],[-85,91],[-74,44],[-138,70],[-59,46],[-95,89],[-72,52],[-136,88],[-142,79],[-98,47]],[[3330,13526],[1,29],[2,71]],[[11337,6625],[0,317],[2,288],[0,120]],[[10071,9204],[15,36],[-26,38],[27,11],[5,138],[31,22],[4,45],[-13,43],[16,18],[-30,47],[4,37],[-25,37],[-6,49],[46,47],[-40,46]],[[12079,12993],[2,48],[18,46],[1,91]],[[12710,13488],[49,-213],[62,-306],[33,-149],[41,-127],[23,-27],[22,-102],[12,-128],[17,-80],[80,-239]],[[13049,12117],[-70,-27],[-31,16],[-29,-32],[-51,-6],[-45,8],[0,-65],[-405,-8]],[[12301,12516],[-5,10],[-31,73],[-19,96],[18,52],[-22,75],[-47,38],[-101,72],[-15,61]],[[2532,15233],[306,1],[247,-4],[166,1]],[[3251,15231],[-5,-441],[0,-219],[0,-20],[392,-3]],[[3330,13526],[-191,81],[-200,72],[-153,49],[-102,27],[-169,29]],[[10144,6746],[-37,54],[-59,51],[-2,24],[-40,135],[49,-11],[24,53],[63,21],[24,55],[40,45],[1,34],[70,33],[23,38],[6,53],[17,17]],[[15108,6448],[78,-166],[10,-66],[29,-106],[51,-111],[47,-127],[28,-113]],[[11352,12681],[1,196],[-3,147],[-1,205]],[[11350,12230],[6,67],[-4,384]],[[11160,13229],[10,-33],[-20,-45],[-45,-25],[-29,-76],[-48,-34],[-37,-43],[-69,-15],[-29,-70],[-68,-99],[-71,12],[-19,-56],[-22,-8],[-56,-20],[-58,-6]],[[13049,12117],[100,-272],[126,-302]],[[3665,15233],[166,3],[511,4]],[[3251,15231],[414,2]],[[14605,7855],[130,-284],[38,-131],[42,-160],[26,-45],[20,-94]]],"transform":{"scale":[0.0004921408414239475,0.000424696504688832],"translate":[-87.63493799999999,24.524687]},"objects":{"cb_2019_12_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6,7]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[8,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[14,15,16,17]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[18,19,20,21,22]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[23,-19,24,25,26,27]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[[28]],[[29,-22,30,31,32]],[[33]],[[34]]],"type":"MultiPolygon","properties":{"COUNTYFP":"037"}},{"arcs":[[35,36,37,38]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[39,40,41]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[42,43,44,45,46,47,48,49]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[50,51,52,53,54,55,56]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[57,58,59,60,61]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-24,-28,64,65,66,67,-20]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[68,-25,-23,-30,-33,69,70,71]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-41,72,73,74]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[75,76,77,78,79,80]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[[83,84,85]],[[86]],[[87]],[[88,89,90]],[[91]],[[92]]],"type":"MultiPolygon","properties":{"COUNTYFP":"087"}},{"arcs":[[93,94,95,96,97,98,99,100]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[101,102,103,104]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[105,-47,106,-100,107,108]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[109,110,111,112,113,-66,114]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[115,-5,116,-111,117]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-117,-4,118,119,-112]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[-114,120,-58,121,-67]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[-46,122,123,124,-94,-101,-107]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[[125]],[[126,-83,127,-84,-86,128,-90,129,130,131]]],"type":"MultiPolygon","properties":{"COUNTYFP":"086"}},{"arcs":[[-57,132,133,134,-96,-51]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-99,135,-10,136,137,-108]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[139,-26,-69,-72,140,141]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-74,142,143,144]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-16,145,146,147,148]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-71,149,150,151]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[[-48,-106,152,153,154]],[[155]]],"type":"MultiPolygon","properties":{"COUNTYFP":"017"}},{"arcs":[[156,-150,-70,-32,157]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[158,159,-80,160,-123,-45,161,162]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[163,164,165,166,167,168,-162,-44,169]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[170,-79,171,-125,172]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[-2,173,174,-164,-170,-43,-50,175,176]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-61,177,-176,-49,-155,178]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[-136,-98,179,180,-11]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-172,-78,181,-52,-95]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[182,183,184,-130,-89,185]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[186,-7,187,-17,-149,188,189,190]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[[191]],[[192]],[[193,194,-183,195,196]],[[197,198]]],"type":"MultiPolygon","properties":{"COUNTYFP":"071"}},{"arcs":[[199,200,-131,-185,201]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-133,-56,202,203]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[204,-134,205,-37,206,207]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-3,-177,-178,-60,208,-64,209,-119]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-38,-206,-204,-194,-197,210,-198,211]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[212,-54,213,214,215]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-203,216,-202,-184,-195]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[217,218,-200,-217,219]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[-152,220,-103,221,222,-141]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[223,-104,-221,-151,-157,224,225]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-173,-124,-161,-171]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-97,-135,-205,-208,226]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[-153,-109,-138,227]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[228,-147,229,230,-168,231]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-144,232,233,-105,-224,-226,234]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-227,-207,-36,235,-180]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-213,-216,236,-218,-220,-55]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-113,-120,-210,-63,-209,-59,-121]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[237,-189,-148,-229,-232,-167,-166,238]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-191,239,-174,-1,-8,-187]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[-240,-190,-238,-239,-165,-175]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-231,240,-159,-163,-169]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[241,-222,-102,-234,242]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-77,243,-214,-53,-182]],"type":"Polygon","properties":{"COUNTYFP":"061"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ga.topo.json b/app/assets/topojson/states/ga.topo.json new file mode 100755 index 00000000..e1d5b7e7 --- /dev/null +++ b/app/assets/topojson/states/ga.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[5492,2441],[40,-55],[29,-16],[3,-55],[-41,-83],[2,-65],[40,-18],[18,-59],[41,-25],[-37,-105]],[[5587,1960],[-1,0],[-436,13]],[[5150,1973],[-32,10],[-26,46],[-102,0],[-29,15],[-51,65]],[[4910,2109],[18,66],[25,29],[3,99],[30,10],[0,66],[81,104],[0,61],[-8,5],[14,69],[3,82],[-20,55],[5,84]],[[5061,2839],[1,0],[124,-3],[64,71]],[[5250,2907],[4,-52],[-15,-48],[9,-40],[62,-47],[52,-77],[53,-33],[52,6],[28,-45],[-3,-130]],[[3600,1807],[20,-71],[76,-104],[10,-146],[-23,-33],[4,-64],[-8,-460]],[[3679,929],[-480,28],[-238,14]],[[2961,971],[4,293],[0,79],[7,404],[0,96],[-1,268]],[[2971,2111],[74,0],[205,0],[350,-3]],[[3600,2108],[-6,-208],[6,-93]],[[5587,1960],[235,-6]],[[5822,1954],[42,0],[2,-221],[112,-3],[219,-5],[16,-92],[38,-43],[-12,-144],[15,-8]],[[6254,1438],[-167,-2],[0,-51],[-36,0],[-3,-81],[-50,0],[-16,-28],[-11,-71],[3,-102],[-4,-326]],[[5970,777],[-87,7],[-330,24]],[[5553,808],[-28,22],[-49,-17]],[[5476,813],[-41,3]],[[5435,816],[-8,43],[-56,37],[-29,37],[-39,-10],[-20,45],[-46,-2],[-35,64],[-35,24],[2,38],[-41,62],[63,35],[2,63],[49,83],[29,4],[26,38],[46,-9],[61,36],[28,-3],[27,30],[-26,77],[-30,34],[-67,-3],[-45,16],[-55,45],[7,100],[19,29],[-112,244]],[[3350,5497],[93,-12]],[[3443,5485],[-5,-209],[-72,2],[-161,1],[0,13],[-363,7]],[[2842,5299],[23,24],[1,50],[-24,8],[1,111],[46,-1],[1,77],[0,92],[49,23],[0,47],[-6,295]],[[2933,6025],[26,41],[47,0],[-2,-89]],[[3004,5977],[96,1],[-1,-75],[167,-1]],[[3266,5902],[-3,-222],[89,-14],[-2,-169]],[[9875,5923],[33,-25],[2,-37],[42,-27],[6,-44],[57,-27],[-4,-32],[31,-25],[14,-78],[29,-55],[-2,-54]],[[10083,5519],[-457,-151],[-377,-108]],[[9249,5260],[0,66],[-28,52],[-35,35],[5,44],[-28,51],[-61,10],[-18,22],[-106,77],[-61,-1],[-85,-22],[-38,5]],[[8794,5599],[29,52],[47,208],[46,170],[-51,31],[0,27],[-40,42],[-43,60],[-2,53],[9,74],[-143,75]],[[8646,6391],[8,48],[62,152]],[[8716,6591],[387,123]],[[9103,6714],[18,13],[80,-35],[-4,-15],[83,-87],[84,-61],[2,-27],[57,-31],[47,-58],[29,6],[92,-46],[96,-73],[51,14],[74,-68]],[[9812,6246],[29,-23],[25,-94],[-14,-31],[-9,-48],[1,-85],[31,-42]],[[4805,13347],[47,4],[-7,74],[133,25],[-6,135]],[[4972,13585],[160,3],[451,9],[455,12],[14,-35],[-43,-60],[-15,-57],[36,-38],[-76,-33],[-38,11],[-123,-141],[-81,-8],[-9,-66],[-91,-94],[-37,-23],[-3,-33],[-55,-42],[8,-91],[-79,-88],[2,-36]],[[5448,12775],[-84,62],[-40,-25],[-45,20],[-8,32],[-129,-66],[-82,22],[-87,52],[-32,93],[-46,70],[-16,46],[-43,21],[-113,-14]],[[4723,13088],[-23,74],[17,51],[-5,38],[28,38],[35,9],[30,49]],[[8917,8723],[28,-29],[130,-41],[40,-128],[-38,-56]],[[9077,8469],[-62,33],[-58,7],[-83,-26],[-40,-40],[-64,-34],[-79,20],[-36,-6],[-81,31],[-76,-35],[-82,56],[-20,77],[-45,19],[-53,42],[-226,-86]],[[8072,8527],[-71,29],[-36,59],[-55,35],[-46,9]],[[7864,8659],[143,124]],[[8007,8783],[177,156],[269,234],[198,168]],[[8651,9341],[44,-43],[47,-87],[11,-41],[144,-69],[31,-64],[-43,-51],[13,-36],[-23,-40],[11,-52],[-33,-47],[24,-24],[-12,-32],[62,6],[-10,-38]],[[2798,9640],[-12,-14],[-13,-76],[0,-64],[0,-127]],[[2773,9359],[-238,-66],[-92,-30],[-35,-46]],[[2408,9217],[-28,24],[-119,3],[-193,-3],[-243,2]],[[1825,9243],[55,5],[31,34],[-42,60],[21,55],[36,29]],[[1926,9426],[8,37],[54,50],[49,31],[34,52],[32,-21],[13,34],[48,30],[80,26],[50,12],[9,71],[54,19],[-4,30],[59,36],[15,34],[36,14],[21,42]],[[2484,9923],[97,81],[21,36],[45,28],[52,58],[70,77],[15,84],[24,27],[6,65],[-14,26],[28,45],[43,25],[85,94],[19,69],[-20,16],[-42,45],[-4,78],[-41,60],[1,53]],[[2869,10890],[1,105],[73,27],[64,17],[3,112],[20,42],[37,7],[21,21],[168,-1]],[[3256,11220],[0,-91],[0,-133],[72,-38],[25,11],[68,-40],[33,-50],[81,-41],[111,-14]],[[3646,10824],[-63,-51],[-81,-3],[-44,-34],[-12,-60],[-28,-26],[-50,36],[-87,-16],[-34,-73],[-35,-46]],[[3212,10551],[-62,7],[-84,32],[-25,-34],[-2,-393],[-4,-520]],[[3035,9643],[-115,1],[-116,2],[-6,-6]],[[8768,5050],[219,-91],[308,-7]],[[9295,4952],[-116,-83],[-35,-14]],[[9144,4855],[-73,-78],[-21,-45],[-31,-13],[-32,-63],[15,-17],[2,-67],[-31,-45],[6,-23],[-49,-25],[-23,-103],[-56,-47],[-27,-78],[-56,-13],[26,-44]],[[8794,4194],[-31,-15],[-41,29],[-33,48],[-88,48]],[[8601,4304],[-141,108],[-4,64],[-15,45],[-1,-36],[-44,5],[-78,39],[-62,-9],[-37,28],[-44,9]],[[8175,4557],[40,373],[10,107],[31,198],[21,47],[-4,57],[-25,63],[-31,37],[-15,44],[4,53],[-24,43],[-17,66],[-9,101]],[[8156,5746],[502,-117]],[[8658,5629],[51,-276],[1,-3],[58,-300]],[[2607,7657],[52,6],[38,61],[180,-2],[34,-1],[249,-3],[0,24]],[[3160,7742],[23,-24],[46,-1]],[[3229,7717],[357,-4],[-2,-169]],[[3584,7544],[-3,-242]],[[3581,7302],[1,-51],[-1,-91],[-60,0],[-129,-326]],[[3392,6834],[-64,125],[-29,15],[-38,-24],[-14,29],[-57,24]],[[3190,7003],[-40,41],[-33,-17],[-47,11],[-35,67],[-46,-18],[-53,32],[-28,75],[-29,64],[-45,12],[-23,-39],[-35,14],[-24,67],[-33,-2],[-20,30],[32,42],[-75,15]],[[2656,7397],[-11,89],[-29,3],[-11,43],[22,60],[-32,36],[12,29]],[[1056,12787],[285,-1],[1,-286]],[[1342,12500],[-24,0],[-1,-103],[-21,0]],[[1296,12397],[-93,1]],[[1203,12398],[-323,4],[-4,0],[-258,1],[-146,0],[-284,-2]],[[188,12401],[-16,103]],[[172,12504],[105,134],[0,87],[69,96],[7,58],[21,22],[0,111],[0,102],[41,127],[143,255],[25,62]],[[583,13558],[52,1],[116,3],[72,1]],[[823,13563],[1,-291],[0,-14],[16,-78],[135,0],[1,-98],[-1,-134],[49,0],[53,0],[36,-22]],[[1113,12926],[-54,-117],[-3,-22]],[[1841,13177],[-22,-33],[10,-30],[-34,-52],[12,-23],[48,-16],[-98,-64],[50,-69],[1,-55],[4,-37],[-22,-49],[-44,22],[-19,-29],[-79,33],[-24,-28],[110,-83],[-33,-37],[-21,46],[-40,-46],[33,-93]],[[1673,12534],[-35,-25],[4,-29],[-92,1],[-208,0],[0,19]],[[1113,12926],[32,152],[22,-22],[42,21],[105,1],[0,129],[70,6],[23,29],[0,74],[62,117],[1,93],[43,1],[-1,44]],[[1512,13571],[410,0]],[[1922,13571],[-17,-65],[-43,-67],[-18,-72],[35,-94],[23,-27],[-1,-28],[-60,-41]],[[9533,3459],[100,37],[136,74],[179,361]],[[9948,3931],[63,-16],[-5,-40],[29,-61],[52,-55],[40,32],[52,-25],[98,33],[38,-22],[62,36],[29,-26],[98,-1],[96,-58],[14,-33],[46,-32],[18,-30],[-6,-57],[-4,-29]],[[10668,3547],[-53,-30],[-60,-18],[-32,10],[-21,-52],[9,-26],[110,-3],[37,26],[52,-63],[-31,-35],[-37,-89],[-102,-148],[-52,-117],[-62,-42],[20,-55],[7,-68],[-11,-47],[10,-50]],[[10452,2740],[-36,-3],[-50,49],[-121,28],[-34,-5],[-45,-64],[-87,61],[-79,70],[-21,-14],[-64,60],[-24,2],[-73,84],[-77,43],[-23,45],[-44,35],[-18,58],[-28,19]],[[9628,3208],[29,45],[-26,48],[-59,30],[-27,46],[10,26],[-22,56]],[[4843,6920],[16,40],[-15,25],[57,-10],[60,61],[124,124],[32,67],[-58,61]],[[5059,7288],[257,157]],[[5316,7445],[175,-374],[84,-179],[117,-251],[61,-117]],[[5753,6524],[-173,-101],[-484,-286]],[[5096,6137],[20,20],[-18,40],[12,42],[-62,35],[-44,73],[-5,83],[-24,61],[31,40],[-30,79],[11,36],[-48,99],[-44,-7],[-40,21]],[[4855,6759],[-22,27],[-4,56],[20,33],[-6,45]],[[5280,10725],[-151,-71],[-128,-79]],[[5001,10575],[-63,193],[-51,27],[-39,-16],[-33,34],[-50,-2],[-93,20],[-94,4],[-52,38],[-76,-6],[-61,62],[-4,39],[-48,38],[-14,43]],[[4323,11049],[50,52],[274,282],[59,60],[95,98]],[[4801,11541],[53,-39],[15,-30],[73,-56],[105,11],[69,2],[23,14],[55,-57],[133,-132]],[[5327,11254],[56,-77],[38,-21],[6,-46],[10,-94],[-40,-74],[-2,-26],[-30,-94],[65,-28]],[[5430,10794],[-36,-22],[-111,-46],[-3,-1]],[[8031,2538],[43,-21],[100,9],[103,-43],[88,65],[2,71],[56,24],[18,29],[93,15],[47,-2],[102,7],[43,34],[12,56],[-25,7],[-71,105],[-23,81]],[[8619,2975],[25,-22],[192,-44],[100,-11],[157,22],[107,26],[89,-46],[79,-53]],[[9368,2847],[-2,-81],[-36,-61],[-41,-171],[-6,-64],[-22,-73],[23,-20]],[[9284,2377],[-53,-51],[-32,-3],[-42,-43],[-53,-114],[-118,9],[-57,-14],[-26,-23],[-9,-81],[-20,-37]],[[8874,2020],[-118,29],[-184,53],[-47,-182],[-7,-10],[-118,1]],[[8400,1911],[-77,111],[-108,106],[-1,253],[-61,-2],[-40,35],[-82,29],[0,95]],[[8353,3257],[45,4]],[[8398,3261],[49,27],[53,-1],[66,-40],[20,-32],[-1,-142],[25,-44],[9,-54]],[[8031,2538],[-46,1],[-34,19],[-98,96],[-22,62],[-49,35],[-7,40],[2,158],[-32,1],[0,116],[-35,36]],[[7710,3102],[37,1],[1,38],[108,0],[29,34],[35,1],[1,44],[36,0],[34,31],[1,74],[75,-1],[0,38],[33,35],[41,0],[30,38]],[[8171,3435],[18,-35],[51,-39],[83,-86],[30,-18]],[[5001,10575],[-183,-120],[-82,-55]],[[4736,10400],[-70,33],[-111,-51],[-102,-10],[-2,31],[-83,66]],[[4368,10469],[-34,69],[-46,39],[-17,53],[-72,58],[124,361]],[[10699,5927],[30,-38],[18,-50],[50,-3],[29,-36],[-2,-70],[24,-75],[-39,-46],[-48,-76],[27,-58]],[[10788,5475],[-123,33],[-216,-189],[-259,-226]],[[10190,5093],[-32,57],[7,85],[-21,50],[-19,102],[12,34],[-40,42],[-14,56]],[[9812,6246],[23,58],[361,253]],[[10196,6557],[87,-50],[-4,-21],[83,-34],[55,-11],[55,-31],[-11,-25],[41,-34],[68,-26],[2,-52],[82,-89],[-16,-61],[3,-69],[68,-94],[-10,-33]],[[346,11515],[181,-1],[11,50],[47,103],[40,53],[29,39],[88,45],[44,13],[94,56],[0,20],[46,0],[17,42],[84,18],[43,107],[36,125],[56,105],[41,108]],[[1296,12397],[12,-36],[2,-95],[-64,-2],[0,-230],[-52,0],[41,-69],[14,-44],[-45,-29],[7,-32],[41,-8],[135,0],[11,-22],[52,-4]],[[1450,11826],[1,-133],[-43,0],[-1,-89],[0,-34],[-2,-173],[1,-96],[-50,1],[-6,-344]],[[1350,10958],[-181,1],[-2,-40],[-67,1],[-17,40],[-127,1],[-56,9],[-59,0],[-2,-63],[-396,5]],[[443,10912],[-55,349],[-42,254]],[[7598,5076],[24,170],[31,228],[4,197],[72,178]],[[7729,5849],[1,0]],[[7730,5849],[42,-55],[30,5],[55,-68],[4,-63],[181,6],[114,72]],[[8175,4557],[-58,25],[-26,31],[-77,30],[-77,-24],[-119,21],[-26,53],[-60,-11],[-57,30]],[[7675,4712],[-63,-7],[-61,15]],[[7551,4720],[47,356]],[[7118,8114],[156,-9],[45,-10],[-2,60],[13,23],[-24,60],[-2,8],[268,223],[102,80]],[[7674,8549],[117,109]],[[7791,8658],[73,1]],[[8072,8527],[43,-41],[40,-75],[-28,-65],[-67,-200],[-21,-79],[-24,-139],[27,-209],[18,-158],[-46,-145],[-61,-154]],[[7953,7262],[-9,12],[-69,-39],[-31,-30],[-114,-4],[-25,-39],[50,-73],[-86,-43]],[[7669,7046],[-44,11],[-51,34],[-70,69],[-45,62]],[[7459,7222],[-12,33],[7,92],[12,9],[17,142],[-68,92],[-27,210],[-14,-15],[-89,58],[-47,48],[-1,31],[-70,69],[-11,49],[-38,74]],[[1922,13571],[457,2]],[[2379,13573],[-3,-385],[10,-5]],[[2386,13183],[32,-44],[24,-4],[32,-42],[-62,-83],[-5,-16],[-76,-40],[4,-69],[-42,-73],[5,-185],[1,-242]],[[2299,12385],[-66,0],[-57,22],[-22,42],[1,41],[-63,15],[-15,-40],[-49,15],[-31,-21],[-204,1],[-10,20],[-98,1],[-12,53]],[[5061,2839],[-342,10]],[[4719,2849],[3,173],[2,130],[-36,0],[2,150],[37,-1],[3,205],[0,39]],[[4730,3545],[1,83],[106,5],[253,-12]],[[5090,3621],[-1,-70],[73,-2],[0,-39],[81,-5],[40,-3],[53,-60],[30,-65],[10,-69],[105,-33]],[[5481,3275],[-1,-32],[-73,0],[-3,-187],[-35,-37],[-35,2],[-1,-38],[-37,-1],[-28,-36],[-18,-39]],[[10390,4760],[45,-11],[8,-82],[58,-69],[-6,-49],[22,-15],[42,18],[14,-22],[54,45],[49,-13],[-43,-77],[68,35],[47,-38],[20,-75],[32,-28],[-44,-53],[-9,-39],[-38,-15],[-2,-74],[39,-34],[-27,-45],[33,-52],[11,-58]],[[10763,4009],[-92,20],[-13,-21]],[[10658,4008],[-50,49],[-102,34],[-23,30],[5,59],[-22,29],[-81,-14],[-52,130],[-44,-25],[-36,61],[-30,7],[-12,80],[-32,21],[11,30],[-31,77],[-1,50],[0,1],[-53,5],[-89,33],[-19,65],[-76,-28],[-82,0],[-38,-16],[-93,59],[-62,128],[-8,29],[-77,81],[-51,16],[-8,31],[-40,40],[-63,3]],[[9399,5073],[-54,45],[-38,2],[-16,36],[-30,41],[-12,63]],[[10190,5093],[17,-48],[32,-25],[3,-49],[86,-78],[37,-61],[26,-9],[-1,-63]],[[4605,6839],[0,2]],[[4605,6841],[67,-45],[68,-8],[63,-30],[52,1]],[[5096,6137],[36,-98],[-6,-43],[-30,-7]],[[5096,5989],[-21,-37],[-41,39],[-135,-194],[-87,-140]],[[4812,5657],[-205,5],[-358,3]],[[4249,5665],[3,195],[-23,0],[0,73],[47,-1],[0,34],[1,85],[-23,49],[-1,85]],[[4253,6185],[71,-64],[47,1],[0,145],[48,27],[70,-1],[1,85],[62,-39],[7,75],[4,259],[-23,48],[45,0],[1,69],[19,49]],[[1616,6593],[-347,1]],[[1269,6594],[-60,108],[41,38],[-13,35],[-46,40],[-21,109],[20,36],[-46,34],[-25,48],[49,37],[-72,61],[-39,51],[0,52],[34,53],[-73,41],[0,27]],[[1018,7364],[361,-3],[419,-3],[0,11]],[[1798,7369],[34,-12],[193,-2],[75,-28],[88,-39]],[[2188,7288],[19,-45],[0,-217],[-2,-96],[0,-42],[-24,-22],[23,-44],[-1,-112],[-1,-187]],[[2202,6523],[-516,-1],[1,71],[-71,0]],[[5923,6625],[279,161],[179,90],[23,12]],[[6404,6888],[228,22],[187,-85],[-22,-78],[261,-120],[44,-21],[-10,-178],[-4,-81],[64,-33]],[[7152,6314],[-22,-16],[58,-47],[-38,-70],[-35,-21],[-55,1],[-11,-48],[-28,-36],[12,-42],[-14,-57],[-24,-19],[-28,-82],[-23,-63],[-7,-57],[36,-39]],[[6973,5718],[-113,-116],[-217,-221],[-64,5]],[[6579,5386],[-36,-12],[-221,-131],[-61,140],[-230,519],[-67,150]],[[5964,6052],[-36,82],[-175,390]],[[5753,6524],[170,101]],[[2291,11093],[5,209],[6,109],[-2,306],[2,168]],[[2302,11885],[170,-1],[1,-78],[0,-12],[289,-3],[175,0],[322,1]],[[3259,11792],[-1,-134]],[[3258,11658],[-1,-105],[0,-33],[-1,-300]],[[2869,10890],[-370,9],[-211,6]],[[2288,10905],[3,188]],[[3774,9285],[124,166],[150,201],[20,66],[14,102],[6,105]],[[4088,9925],[320,-242],[11,-8],[48,-37],[57,-2],[104,-84],[-19,-22],[45,-37]],[[4654,9493],[-15,-42],[23,-33],[-11,-132]],[[4651,9286],[-15,-46],[6,-81],[-46,17],[-90,-36],[-71,-70],[-126,-42],[-18,-56],[-35,-13],[33,-64],[-39,-54],[-37,-18]],[[4213,8823],[-36,59],[-41,24],[0,32],[-42,30],[4,25],[-32,53]],[[4066,9046],[-55,110],[-27,8],[-56,7],[-40,21],[-80,20],[-29,25],[-5,48]],[[6804,4363],[-10,-35],[-47,-49],[-51,-7]],[[6696,4272],[-5,-23],[-68,-67],[-73,-5],[-116,11],[-25,-13],[-57,30],[-41,-36]],[[6311,4169],[-25,-18],[-53,10],[-27,36],[-33,-4],[-118,67],[-68,-5],[-12,41],[-90,52],[-14,17]],[[5871,4365],[0,56],[-36,24],[-32,74]],[[5803,4519],[267,275],[190,192],[181,189],[-33,33],[51,53],[16,-53]],[[6475,5208],[63,-73],[1,-37],[34,-53],[42,-16],[42,-40],[37,1],[86,-47],[36,-65],[91,-45],[50,-3],[44,-89],[23,-14],[9,-21],[67,-88],[40,-15],[17,-29]],[[7157,4574],[-58,7],[-58,-68],[-89,-46],[-148,-104]],[[6159,2783],[27,-65],[34,-32],[-15,-62],[-27,-64],[9,-142]],[[6187,2418],[21,-108],[-307,1],[0,-58],[-5,-191],[-74,0],[0,-108]],[[5481,3275],[132,-1],[335,-10]],[[5948,3264],[-13,-31],[30,-59],[-4,-62]],[[5961,3112],[8,-64],[53,-37],[10,-53],[55,-61],[34,-4],[39,-60],[-1,-50]],[[6273,1432],[10,35],[87,30]],[[6370,1497],[302,-101],[38,-77],[-10,-26],[12,-56],[34,-14],[26,-77],[23,-23],[70,-28],[55,3],[82,-12],[44,13],[41,-25],[91,-24],[80,-10],[60,-63],[-17,-50],[9,-51],[-3,-193]],[[7307,683],[-278,19],[-863,61],[-196,14]],[[6254,1438],[19,-6]],[[6475,5208],[136,139],[-32,39]],[[6973,5718],[57,-39],[104,5]],[[7134,5684],[17,-61],[28,-22],[-30,-71],[40,-56],[18,-59],[-17,-30],[15,-79],[32,-21],[-2,-34],[-30,-50],[6,-56],[25,-24],[6,-89],[-8,-43],[29,-40],[10,-95],[78,-72],[44,-25],[20,-44],[-11,-22]],[[7404,4691],[-51,-5],[-53,-62],[-40,5],[-27,-33],[-76,-22]],[[4229,12793],[63,23],[2,28],[-3,77],[12,37],[37,22],[73,20]],[[4413,13000],[91,25],[73,-31],[75,29]],[[4652,13023],[86,-85],[32,-52],[23,-63],[-38,-62],[-4,-92],[-37,-52],[-12,-38],[27,-23],[28,-56],[-18,-51],[17,-36],[8,-64],[46,-69],[-73,-80],[-39,-19],[-9,-29]],[[4689,12152],[-219,2],[-209,3]],[[4261,12157],[-1,79],[-50,53],[0,191],[-27,62],[11,93],[35,158]],[[6659,9044],[25,-35],[41,-11],[2,-51],[-5,-59],[32,-78],[36,-26],[10,-132],[29,-16],[-2,-101],[21,-30],[43,-19]],[[6891,8486],[18,-44]],[[6909,8442],[-72,0],[-49,-47],[-49,-19],[-32,-40],[-56,-17],[-31,-53],[-51,-116],[-31,-30],[-60,-36],[-79,-27],[-27,6],[-50,-54],[-45,-29],[-103,0]],[[6174,7980],[-47,-46],[-29,-3],[-41,-42],[-19,63],[-24,27],[13,48],[6,89],[28,17],[3,52],[-236,75],[-158,36],[-32,-4]],[[5638,8292],[0,37],[28,25],[24,87],[-3,63],[70,19],[-13,30],[125,47],[19,27],[60,27],[-12,32],[16,54],[-49,44]],[[5903,8784],[366,335]],[[6269,9119],[71,-63],[78,12],[28,-27],[92,-11],[71,22],[50,-8]],[[7559,9618],[41,1],[77,45],[13,-13]],[[7690,9651],[-39,-36],[21,-89],[47,-59],[-47,-56],[-9,-56],[125,-58],[-42,-39],[4,-30],[3,-28],[39,-56],[-4,-31],[50,-48],[71,-101],[29,-103],[69,-78]],[[7791,8658],[-59,18],[-40,35],[-61,31],[-118,-9],[-90,58],[-33,1],[13,50],[-23,120],[-29,39],[-46,61],[-157,466]],[[7148,9528],[64,13],[12,52],[127,44],[52,-21],[46,17],[32,43],[78,-58]],[[7158,10900],[12,-27],[44,-26],[31,-55],[32,-27],[17,-89],[31,-21],[-8,-39],[37,-71]],[[7354,10545],[-112,76],[-55,-20],[-29,28]],[[7158,10629],[-55,4],[-81,-13],[-41,11],[-86,-38],[-61,-2]],[[6834,10591],[-109,38],[-95,-3],[-42,50],[-148,43],[-3,38],[-79,45]],[[6358,10802],[-37,64],[-49,34],[-51,60],[4,47],[-109,118],[-51,31],[-12,27],[25,51],[-8,35],[42,62]],[[6112,11331],[143,30],[37,-8],[17,-35],[38,-23],[53,21],[59,48],[46,37],[222,68],[121,53]],[[6848,11522],[65,-66],[15,-137],[-3,-28],[24,-50],[-1,-36],[36,-89],[32,-27],[65,-28],[44,-82],[45,-51],[-12,-28]],[[7795,6103],[-56,38],[-108,62],[-58,40],[-63,30],[-84,-4],[-68,24],[-135,-1],[-71,22]],[[7152,6314],[25,17],[84,9],[93,33],[-61,69],[-12,67],[148,100],[52,35],[-14,25],[45,27],[15,-26],[70,39],[-64,43],[-22,72],[69,71],[44,25],[1,31],[44,95]],[[7953,7262],[38,-27],[96,-10],[145,-55],[65,26],[71,-2]],[[8368,7194],[103,-297],[49,-142],[196,-164]],[[8646,6391],[-120,62],[-166,-116],[-79,-136],[-6,-43],[-11,-75],[-29,-51],[-132,-190],[24,-9],[29,-87]],[[7730,5849],[-6,33],[36,64],[5,72],[30,85]],[[3190,7003],[-6,-33],[-38,-7],[-43,-37],[-38,-2],[-3,-122],[-61,1],[-23,-95],[-2,-27],[-40,-54],[-42,-26],[0,-84],[-1,-58],[-86,0]],[[2807,6459],[-115,0],[1,-40],[-32,-19],[-90,2],[-58,-7],[11,-35],[-80,-14],[-25,34],[-40,-15],[-38,15]],[[2341,6380],[-29,0],[-71,-47],[-39,-1]],[[2202,6332],[37,50],[12,61],[-49,21],[0,59]],[[2188,7288],[56,0],[258,1],[154,95],[0,13]],[[5870,8858],[-48,44],[-55,-6],[-12,33],[-45,-12],[11,53],[-56,74],[12,38],[-41,22],[-13,57]],[[5623,9161],[-9,67],[15,62],[-2,50],[-20,-6],[-58,60],[-90,134],[-28,47],[-27,91],[-21,14],[-23,54],[-42,57]],[[5318,9791],[277,105],[-13,11],[40,70]],[[5622,9977],[391,-185],[171,45],[97,-71],[30,11]],[[6311,9777],[44,-42],[33,-8],[31,-54],[-47,-48],[-8,-59],[-34,21],[-33,-25],[28,-50],[-51,-52],[-7,-15],[67,-176],[-2,-7],[3,-83],[-66,-60]],[[5903,8784],[-33,74]],[[5186,10460],[50,-11],[44,12],[66,-56],[9,-23],[60,-36],[12,-33],[81,-22],[2,-39],[123,-23]],[[5633,10229],[-53,-101],[9,-45],[32,-43],[1,-63]],[[5318,9791],[-7,10],[-39,42],[-49,21],[-30,132],[-31,35],[-25,63],[-60,47]],[[5077,10141],[-56,10],[-71,57],[-70,79],[12,42],[-74,0],[-42,14],[-21,63],[-19,-6]],[[5001,10575],[70,-102],[40,4],[75,-17]],[[6157,10731],[105,41],[35,-6],[61,36]],[[6834,10591],[-22,-49],[-53,-27],[-88,-14],[-19,-35],[-48,-20],[-38,-74],[-53,-57],[-24,-60],[-60,-41],[-36,-93],[-36,-26],[-26,-63],[66,-84],[27,-55]],[[6424,9893],[-97,-79],[-16,-37]],[[5633,10229],[85,166],[-84,112],[23,81],[-7,89],[26,-4]],[[5676,10673],[51,42],[37,-38],[69,29],[68,69],[94,36],[53,-58],[34,17],[75,-39]],[[9284,2377],[9,-47],[98,-14],[21,-30],[66,-48],[58,10],[74,-51],[177,36],[-16,-84],[25,-35],[36,11],[32,-60],[81,-25],[16,-59],[71,8],[26,-18],[8,-43]],[[10066,1928],[-36,-18],[-7,-33],[-72,-42],[-7,-21],[43,-34],[21,14],[74,-41],[23,-1],[16,52],[28,10],[13,-58],[-2,-159],[-20,-52],[-39,-145],[-44,-76],[-32,-119],[1,-82],[37,-95],[-76,15],[-34,34],[-64,-12],[-36,6],[-72,-37],[-31,31],[-55,15],[-23,-22],[-118,70],[-44,-14],[-53,28],[-61,-11],[-33,20],[-72,71],[-49,-8],[-23,38],[-32,11],[-80,-7],[-32,21],[-38,-5],[-32,24],[-23,63],[-33,17]],[[8949,1376],[31,239],[-56,18],[39,87],[0,50],[-41,49],[20,45],[4,132],[-72,24]],[[5575,9150],[48,11]],[[5638,8292],[-40,9],[-54,-24],[-43,-43],[-76,9],[-107,43],[-55,1]],[[5263,8287],[-24,1],[-259,-41]],[[4980,8247],[10,333],[1,7],[4,72],[5,239],[10,119]],[[5010,9017],[345,85],[220,48]],[[9118,7033],[75,205],[88,240]],[[9281,7478],[232,171],[314,228]],[[9827,7877],[76,-58],[45,-56],[-19,-126],[-28,9],[21,-82],[47,-50],[17,-129],[54,-11],[-7,-74],[85,-40],[4,-63],[-27,-89],[40,-13],[-9,-141],[-23,-85],[40,-24],[24,-39],[-13,-52],[29,-38],[-25,-20],[-17,-71],[55,-68]],[[9103,6714],[-63,50],[-2,44],[80,225]],[[10788,5475],[52,-73],[10,-71],[-8,-45],[9,-89],[18,-57],[47,-4],[60,-60],[82,-14],[31,21],[49,19],[51,-64],[58,-25],[51,-62],[38,-29],[78,-9],[23,-52],[51,25],[34,-6],[3,-35],[-18,-70],[-27,-10],[-11,-43],[-46,-38],[-95,-52],[-27,68],[-39,-14],[-74,-49],[-11,-26],[37,-46],[92,-23],[-100,-88],[-51,-60],[-118,54],[-57,3],[9,-34],[6,-45],[-41,-62],[97,-55],[-84,-114],[-60,-65],[-86,-78],[-58,11]],[[4122,13383],[85,-26],[22,-46],[57,2],[32,41],[35,-50],[-15,-74],[5,-32],[44,-49],[-12,-45],[37,-29],[1,-75]],[[4229,12793],[-32,15],[-56,-5],[-17,19],[-62,8],[-32,17],[-106,-73],[-29,-111],[-71,-21],[-21,-55],[-9,-29],[-45,2],[-36,30],[-70,0],[-63,33],[-32,-13],[-20,-39],[-28,5]],[[3500,12576],[131,233],[26,0],[0,216],[-75,-16],[-39,32],[-18,109],[12,29],[75,62],[10,34],[-28,25],[-35,62],[-66,31],[-28,43],[0,52],[104,82]],[[3569,13570],[467,0]],[[4036,13570],[-24,-48],[24,-16],[46,-69],[-2,-38],[42,-16]],[[7281,10172],[51,-124],[71,-133],[156,-297]],[[7148,9528],[-74,-26]],[[7074,9502],[-21,47],[-47,-12],[-117,20],[-117,85],[-17,23],[-50,-13],[-43,-34],[-46,9],[-26,-47],[-25,18],[-141,295]],[[7158,10629],[41,-166],[55,-198],[63,42],[15,-55],[-51,-80]],[[4652,13023],[37,18],[34,47]],[[5448,12775],[34,-85]],[[5482,12690],[-64,-35],[-120,-297],[-18,-44],[-91,-228]],[[5189,12086],[-25,8],[-164,23],[-36,-17],[-79,-97],[-50,-23],[-22,-39]],[[4813,11941],[-124,211]],[[3188,4102],[-16,-24],[-4,-152],[-24,-20]],[[3144,3906],[23,-1],[-5,-202]],[[3162,3703],[-369,0]],[[2793,3703],[-234,-2]],[[2559,3701],[26,73],[-9,52],[11,53],[-28,89],[-34,60],[-22,82],[17,29],[-97,4],[7,307],[1,127]],[[2431,4577],[355,-2],[19,20],[4,121]],[[2809,4716],[28,-47],[55,-41],[63,-60],[20,-42],[38,-40],[51,-45]],[[3064,4441],[99,-22],[50,-46],[31,-54],[6,-120],[-61,0],[-1,-97]],[[8629,7506],[195,14],[238,88],[104,-48],[47,-12],[45,-29],[23,-41]],[[8368,7194],[-7,21],[59,187],[102,97],[107,7]],[[6174,7980],[18,-59],[-25,-67],[-30,-30],[39,-69],[6,-54],[-47,-33],[-13,-81]],[[6122,7587],[-52,38],[-52,64],[-40,75],[-63,-12],[-74,-80],[-39,23],[-72,-34],[-79,-39],[-18,-49],[-28,29],[-170,-75]],[[5435,7527],[-84,330],[-26,99],[-28,118],[-34,213]],[[9295,4952],[104,121]],[[10658,4008],[-13,-19],[42,-53],[61,-29],[22,20],[50,-8],[-11,-36],[4,-124],[13,-28],[-76,-179],[-28,-34],[-54,29]],[[9948,3931],[-19,1],[-270,152],[-74,50],[-3,49],[-42,44],[-65,25],[-66,76],[-34,20],[-17,35],[-40,22],[-32,39],[-2,34],[51,147],[5,51],[-18,58],[-69,22],[-36,-10],[-73,109]],[[5435,816],[-343,25],[-345,21],[-245,16]],[[4502,878],[3,245],[8,0],[-3,314],[10,553]],[[4520,1990],[160,-3],[169,-6],[63,-2],[-2,130]],[[5553,808],[-77,5]],[[4261,12157],[0,-25],[-83,-62],[-24,-46],[-54,-1],[0,28],[-53,0],[1,-53],[-61,-41],[-45,-13],[-13,-42]],[[3929,11902],[-266,122],[-26,33],[-34,6],[-127,139],[-56,54],[6,186]],[[3426,12442],[74,134]],[[9077,8469],[58,-55],[44,-18],[11,-33],[36,-9],[55,22],[26,-53],[-23,-30],[8,-82],[46,-53],[56,-43],[151,-69],[39,-30],[59,7],[19,-37],[52,-35],[64,-73],[49,-1]],[[6187,2418],[183,1]],[[6370,2419],[3,-495],[-1,-192],[-2,-235]],[[2842,3160],[528,-3],[1,14],[170,-1]],[[3541,3170],[-42,-68],[-49,-24],[-38,-47],[-39,-98],[-38,-23],[-20,-32],[-55,-3],[-75,-39],[-55,-6],[-6,-29],[-66,-27],[13,-40],[-13,-37],[-45,-56],[-18,-58],[-66,-31],[-29,-31],[6,-47],[-21,-37],[-22,12],[-114,-74],[-34,-36],[9,-24],[-68,-74],[9,-100],[-12,-32]],[[2653,2109],[-2,0],[-81,2]],[[2570,2111],[13,519],[-253,9]],[[2330,2639],[0,157],[9,57],[1,299]],[[2340,3152],[177,-5],[178,-13],[0,22],[54,10],[-1,28],[51,19],[-1,-53],[44,0]],[[3884,2867],[-1,-5]],[[3883,2862],[-3,-219],[-5,-435],[-22,-1],[21,-27],[-1,-74]],[[3873,2106],[-273,2]],[[2971,2111],[-318,-2]],[[3541,3170],[8,7],[338,4]],[[3887,3181],[-3,-314]],[[3873,2009],[0,-8],[176,-2],[30,-1],[284,-5],[12,-37],[36,-1],[1,37],[108,-2]],[[4502,878],[-329,22],[-494,29]],[[3873,2106],[0,-97]],[[5516,5092],[56,-39],[1,-80],[14,-54],[2,-101],[38,-23],[-14,-56],[55,-68],[44,-17],[58,-57],[9,-48],[24,-30]],[[5871,4365],[-78,-9],[-355,5],[-299,3]],[[5139,4364],[-148,17],[-171,3]],[[4820,4384],[0,16],[6,493]],[[4826,4893],[0,24],[3,242]],[[4829,5159],[418,-4],[0,24],[46,23],[47,-27],[87,0],[29,-61],[29,8]],[[5485,5122],[31,-30]],[[4213,8750],[15,31],[-15,42]],[[4651,9286],[69,-53],[290,-216]],[[4980,8247],[-229,-39],[-424,-78]],[[4327,8130],[5,49],[-22,27],[2,66]],[[4312,8272],[34,33],[-44,55],[30,109],[-26,47],[-18,26],[11,57],[-37,78],[6,31],[-55,42]],[[4249,5665],[-84,1],[-36,-32],[-163,-95],[-12,-33],[-79,-90],[-24,-14],[-36,-89]],[[3815,5313],[-38,30],[-74,8],[-26,21],[-104,-5],[-15,113],[-115,5]],[[3266,5902],[1,69],[28,16],[109,0],[122,206],[60,102],[27,24],[94,0],[46,23]],[[3753,6342],[46,-25],[1,-47],[32,-1],[6,27]],[[3838,6296],[228,-5],[113,-46],[12,-29],[62,-31]],[[3874,6365],[-13,-24]],[[3861,6341],[-108,1]],[[3753,6342],[1,25],[120,-2]],[[1904,3697],[331,0],[59,0],[18,70],[65,-17],[87,-49],[-1,47],[96,-47]],[[2793,3703],[7,-53],[-25,-58],[14,-31],[-7,-74],[18,-12],[19,-66],[38,-83],[27,-107],[-42,-59]],[[2340,3152],[-66,1],[-300,6],[-5,55],[-27,20],[12,34],[-23,53],[-32,28]],[[1899,3349],[24,56],[-23,31],[4,261]],[[2933,6025],[1,63],[-40,41],[2,105],[-40,0],[-23,24],[1,74],[-23,0],[-4,127]],[[3392,6834],[69,-36],[69,22],[42,-31],[56,-3],[65,-77],[30,-21],[-15,-68],[10,-14],[-7,-53],[24,-49],[30,-9],[9,-37],[45,-33],[55,-60]],[[3861,6341],[-23,-45]],[[8400,1911],[-509,8],[-177,0],[-12,-640],[586,-12],[48,-14],[20,-6],[-157,-633]],[[8199,614],[-493,39]],[[7706,653],[0,92],[-29,-1],[5,228],[-15,77],[36,0],[0,37],[-37,-1],[-1,267],[-144,-2],[8,39],[4,383],[-72,-1],[-34,52],[-39,58],[-101,53],[-180,454],[-12,30]],[[7095,2418],[-47,116],[-25,0],[5,161],[86,29],[60,-40],[22,1],[2,262]],[[7198,2947],[2,309],[74,-1]],[[7274,3255],[248,-1],[3,-76],[30,1],[0,-75],[155,-2]],[[6909,8442],[36,-89],[-20,-45],[6,-53],[44,-10],[30,-56],[38,-17],[33,-37],[42,-21]],[[7459,7222],[-96,-6],[-33,-13],[-86,-52],[-114,-29],[-24,-15],[-33,40],[-74,-37],[-52,-8],[-87,-36],[-12,70],[-60,29],[-10,21],[-349,-148]],[[6429,7038],[-34,45],[16,79],[-18,19],[-30,91],[-32,22],[-27,26],[-33,-5],[-42,19],[-38,65],[-7,81],[-30,30],[-1,42],[-31,35]],[[9537,3064],[91,144]],[[10452,2740],[9,-64],[20,-17],[-28,-63],[-18,-78],[-31,-3],[-67,-58],[-58,-87],[-26,-57],[-53,-39],[-36,-12],[-4,-7],[7,-162],[-47,-164],[-54,-1]],[[9368,2847],[16,-8],[44,65],[21,54],[-16,21],[31,75],[73,10]],[[220,13559],[360,-1],[3,0]],[[172,12504],[-20,113],[-77,450],[-51,318],[-24,177],[220,-3]],[[9040,3906],[70,-71],[35,-44],[42,10],[53,-75],[32,-5],[83,-58],[87,-83],[10,-76],[61,-18],[20,-27]],[[8398,3261],[-2,468],[1,418],[106,-1],[0,38],[-43,0],[1,34],[47,6],[0,63],[93,17]],[[8794,4194],[42,-10],[0,-42],[95,-51],[-2,-43],[20,-45],[69,-33],[22,-64]],[[4323,11049],[-121,-85],[-199,85],[-273,118]],[[3730,11167],[9,41],[43,35],[67,-7],[57,11],[45,98],[38,24],[14,9],[-1,64],[-9,17],[65,35],[4,21],[-66,87],[18,37],[-28,15]],[[3986,11654],[-47,67],[-19,77],[30,66],[-21,38]],[[4813,11941],[-20,-36],[-32,-11],[-42,-41],[-15,-67],[-23,-37],[44,-51],[4,-75],[58,-49],[14,-33]],[[1531,5919],[35,-11],[30,6],[82,56],[52,19],[18,26],[65,12],[79,-2],[42,16],[31,-16],[49,21],[40,90],[31,40],[43,115],[74,41]],[[2341,6380],[-2,-118],[-47,1],[-2,-359],[0,-184],[-2,-226]],[[2288,5494],[-215,-4],[-423,-2]],[[1650,5488],[52,78],[30,7],[-82,75],[-26,38],[-165,70],[-7,67],[44,41],[6,43],[29,12]],[[4143,7214],[85,-75],[1,-17],[96,-153],[43,-32],[89,-32],[60,-58],[88,-6]],[[4605,6839],[-159,3],[-170,-142],[-402,-335]],[[3581,7302],[562,-3]],[[4143,7299],[0,-85]],[[8171,3435],[-34,74],[-54,22],[-17,26],[-116,65],[-76,79],[-99,49],[-42,4],[-73,65],[-84,55],[-56,89],[-62,1]],[[7458,3964],[2,74],[-73,0],[0,38],[74,0],[0,262],[149,-1],[65,18],[3,277],[-3,80]],[[1699,9681],[-8,-257],[11,1],[224,1]],[[1825,9243],[-16,-50],[-49,-8],[-72,-60],[-34,-76],[-53,-26],[-27,8],[-67,53],[-31,-62],[-50,-31]],[[1426,8991],[-440,5],[-233,2]],[[753,8998],[-107,660]],[[646,9658],[117,-3],[51,20],[80,32],[233,89],[23,-26],[55,10],[135,59],[4,191],[1,95],[27,-1]],[[1372,10124],[159,-36],[170,-56]],[[1701,10032],[-1,-311],[-1,-40]],[[6429,7038],[1,-53],[-26,-97]],[[5316,7445],[119,82]],[[1798,7369],[0,259],[-6,56],[0,46],[2,254],[0,44],[2,276]],[[1796,8304],[25,-1],[0,96],[95,-1],[334,-2],[21,21],[74,-22],[322,-4]],[[2667,8391],[23,-61],[-9,-48]],[[2681,8282],[-45,-105],[9,-65],[-17,-56],[-24,-24],[41,-37],[-38,-46],[11,-26],[-29,-102],[-8,-44],[27,-33],[-1,-87]],[[7425,3851],[33,0],[0,113]],[[7274,3255],[3,260],[-78,1],[1,23],[2,313]],[[7202,3852],[164,0],[59,-1]],[[2130,10329],[1,64],[2,128],[-40,1],[1,88],[4,298]],[[2098,10908],[190,-3]],[[2484,9923],[-105,173],[-3,7],[-180,3],[-65,1]],[[2131,10107],[-1,222]],[[4066,9046],[-47,-7],[0,-49],[-48,-18],[-24,-34],[0,-65],[23,-20],[-49,-30],[-57,0],[-62,-75],[-23,-5],[-27,-68],[-47,0],[0,-47],[-71,-10]],[[3634,8618],[-77,17],[-40,26],[1,66],[-64,1],[-170,0],[-9,49],[-250,0]],[[3025,8777],[2,245],[73,0],[46,-26],[23,25],[1,120],[25,22],[4,143],[-23,47],[68,0],[1,60],[47,85],[-46,25],[1,70],[-45,48]],[[3202,9641],[86,-1],[0,-47],[52,-1],[0,47],[89,-1],[8,0]],[[3437,9638],[11,-40],[79,-135],[38,-64],[55,6],[67,-36],[71,-54],[16,-30]],[[2961,971],[-226,8],[-185,13],[-691,39],[-65,3]],[[1794,1034],[-19,65],[28,56],[2,31],[57,46],[56,11],[27,54],[29,-1],[9,66],[35,35],[9,146],[27,0],[7,457],[52,26],[1,56]],[[2114,2082],[159,-2],[47,-1],[3,34],[247,-2]],[[2384,12286],[237,3],[3,18],[42,-18],[84,38],[1,-39],[74,-2],[159,-3],[0,43],[62,-1]],[[3046,12325],[0,-42],[63,-236],[152,-2],[-1,-150],[-1,-103]],[[2302,11885],[-1,173],[-2,227]],[[2299,12285],[85,1]],[[2026,10050],[105,5],[0,52]],[[1701,10032],[11,-3],[44,-14],[112,11],[158,24]],[[5059,7288],[-24,-10],[-101,105],[-35,-33],[-45,64],[-146,0],[-5,25],[-86,61],[-11,78],[-24,27]],[[4582,7605],[10,23],[-40,49],[-9,115],[13,20],[-59,110],[-68,54],[-50,72],[-11,37],[-41,45]],[[2098,10908],[0,9],[-246,0],[-99,0],[-72,-11],[-31,11]],[[1650,10917],[-300,1],[0,40]],[[1450,11826],[41,-23],[84,-1],[16,43],[204,-7],[62,3],[250,-3],[0,48],[195,-1]],[[5375,11905],[0,-78],[-27,-195],[41,-60],[94,-131],[-42,-110]],[[5441,11331],[-43,-52],[-71,-25]],[[5189,12086],[111,-38],[37,-22]],[[5337,12026],[38,-93],[0,-28]],[[2084,4581],[-396,9]],[[1688,4590],[-69,51],[-47,1],[-46,23],[1,27],[49,45],[-214,3],[-63,48]],[[1299,4788],[31,55],[1,76],[-10,29],[12,69],[20,49],[-40,134],[40,33],[90,112],[106,39],[-18,67],[102,3],[17,34]],[[2288,5494],[24,0]],[[2312,5494],[21,-22],[-7,-383],[-2,-193],[-24,-1],[-2,-129],[25,-1],[-2,-66],[-23,0],[-2,-121]],[[2296,4578],[-212,3]],[[1604,3693],[300,4]],[[1899,3349],[-296,3],[-42,-28],[-28,14],[-36,-25],[-104,-8],[-1,95],[-38,-4]],[[1354,3396],[10,70],[-41,87],[5,98],[-3,42],[-40,32],[-45,89],[-80,103],[-2,64],[18,47],[-25,76],[7,30],[-35,34]],[[1123,4168],[162,-4],[0,-23],[114,-1],[0,23],[165,-3]],[[1564,4160],[-2,-189],[24,0],[-1,-98],[45,-22],[0,-50],[-27,1],[1,-109]],[[1796,8304],[1,96],[-186,2]],[[1611,8402],[-24,78],[0,91],[-23,-15],[-138,435]],[[2408,9217],[-37,-70],[-5,-79],[18,-100],[24,-60],[42,-56],[14,-40],[63,-70],[20,3],[72,-66],[18,-47],[-6,-30],[48,-104]],[[2679,8498],[-28,-36],[16,-71]],[[1372,10124],[3,271],[-33,0]],[[1342,10395],[1,141],[172,-3],[23,64],[15,47],[83,241],[14,32]],[[3018,13097],[64,-26],[7,-32],[41,-14],[142,-244],[0,-157],[23,18],[32,-39],[86,-55],[-7,-61]],[[3406,12487],[-42,-24],[-23,-38],[-75,2],[-1,-86],[-79,2],[-35,28],[-58,15],[-47,-61]],[[2299,12285],[0,100]],[[2386,13183],[474,-2],[0,8],[77,-68],[81,-24]],[[3202,9641],[-167,2]],[[3212,10551],[42,-114],[52,-40],[1,-1],[83,-93],[96,-53],[65,-54],[57,-85],[39,-27],[51,-61],[43,-14],[44,-44],[40,-15]],[[3825,9950],[-75,-71],[-120,-271],[-28,-49],[-56,34],[-109,45]],[[3406,12487],[20,-45]],[[3986,11654],[-211,1],[-517,3]],[[3957,4924],[19,-23]],[[3976,4901],[26,-44],[-3,-39],[65,-160],[14,-72],[-9,-39]],[[4069,4547],[-31,6],[-361,6],[-284,3],[-152,3],[-177,1],[0,-125]],[[2809,4716],[5,219],[21,-1],[4,270]],[[2839,5204],[3,95]],[[3815,5313],[-9,-49],[24,-54],[31,-19],[26,-85],[55,-23],[-28,-64],[24,-25],[-7,-54],[26,-16]],[[1663,2630],[250,-7],[71,-1],[246,-5],[46,23],[54,-1]],[[2114,2082],[-420,10],[-43,0]],[[1651,2092],[12,538]],[[4873,9829],[129,196],[25,52],[50,64]],[[4654,9493],[195,299],[24,37]],[[2681,8282],[37,14],[14,36],[58,24],[140,-2],[50,-23],[22,-32],[93,-1],[138,0],[49,-1]],[[3282,8297],[-1,-323],[1,-38],[-1,-77],[-50,-24],[-2,-118]],[[3646,10824],[-49,45],[11,36],[7,55],[31,76],[54,118],[30,13]],[[4368,10469],[-107,-102],[-141,-137],[-195,-182]],[[3925,10048],[-100,-98]],[[6026,11477],[18,16],[24,174],[-26,19],[12,85],[19,124],[103,228]],[[6176,12123],[127,-63],[15,20],[118,19],[44,-11],[59,14],[34,-17],[16,-34],[37,-26],[23,-48],[34,-131],[17,-98],[99,-77],[17,-86],[32,-63]],[[6112,11331],[-92,113],[6,33]],[[8949,1376],[-15,-36],[-94,34],[-24,-19],[-6,-72],[-40,-59],[-70,48],[-21,-3],[-18,-25],[30,-59],[-15,-23],[-53,-22],[-10,-53],[18,-68],[-34,-89],[2,-60],[51,-99],[4,-46],[36,-36],[16,-89],[-19,-40],[-14,-77],[10,-31],[-7,-111],[-25,-82],[-22,-37],[-10,-111],[13,-34],[-29,-64],[-50,-12],[-63,4],[-25,23],[-157,-28],[-83,124],[-15,69],[16,58],[-9,47],[15,72],[-70,94],[-24,60],[14,56],[47,34]],[[4397,3706],[165,-3],[30,-8],[12,-38],[76,-33],[-3,-68],[53,-11]],[[4719,2849],[-145,3],[0,-17],[-1,-22],[-108,2],[0,39],[-132,1],[-450,7]],[[3887,3181],[1,55],[36,2],[1,37],[-37,0],[3,437],[7,73],[-60,1]],[[3838,3786],[14,37],[-23,67],[-9,71],[42,73],[12,58],[41,32],[-13,53],[-39,26],[4,33],[64,17],[30,73],[67,40]],[[4028,4366],[67,-4],[78,-28],[59,0],[0,-51],[48,4],[22,-33],[57,-18]],[[4359,4236],[10,-8],[3,-118],[0,-398],[25,-6]],[[3282,8297],[50,0],[8,-28],[242,-2],[1,71]],[[3583,8338],[199,-1]],[[3782,8337],[0,-214],[-4,-310],[-3,-223],[-24,-48],[-167,2]],[[5139,4364],[-10,-37],[28,-81],[33,-38],[13,-106]],[[5203,4102],[-31,-55],[33,-90],[-25,-38],[-66,1],[-3,-224],[-19,0],[-2,-75]],[[4359,4236],[130,2],[328,-1],[3,147]],[[1564,4160],[116,-3],[2,128],[1,68],[5,237]],[[2296,4578],[135,-1]],[[5757,12069],[113,5],[141,137],[38,36]],[[6049,12247],[46,-15],[18,-64],[48,-16],[15,-29]],[[6026,11477],[-128,-91],[-70,14],[-133,-11],[-87,29],[-27,33],[-113,-83],[-27,-37]],[[5337,12026],[60,27],[360,16]],[[1651,2092],[-256,9]],[[1395,2101],[6,25],[-24,71],[-46,37],[-22,63],[-31,43],[-57,25],[4,43],[-21,18],[1,48],[25,67],[-40,114],[7,51],[25,6],[24,33],[14,97],[-4,64],[-15,42],[23,59],[17,118],[23,17],[-14,111],[15,46],[49,97]],[[823,13563],[167,3],[167,1],[104,1],[251,3]],[[3590,8489],[-7,-151]],[[2679,8498],[156,-3],[6,57],[25,47],[28,7],[38,43],[21,32],[-10,96]],[[2943,8777],[82,0]],[[3634,8618],[33,-37],[-49,-58],[-28,-34]],[[5485,5122],[68,58],[11,22],[-49,50],[81,84],[-200,208],[66,66]],[[5462,5610],[146,146],[-45,58],[142,144],[176,180],[83,-86]],[[5462,5610],[-51,49],[-248,257],[-67,73]],[[3976,4901],[199,0],[651,-8]],[[4028,4366],[29,40],[-16,58],[5,51],[23,32]],[[529,10387],[349,-6],[71,-1],[0,20],[126,-1],[267,-4]],[[646,9658],[-117,729]],[[5430,10794],[92,-40],[100,-68],[54,-13]],[[1794,1034],[-79,114],[-44,9],[-9,72],[-21,35],[-23,90],[19,64],[-17,34],[-4,89],[-113,154],[3,84],[-52,23],[11,118],[-24,54],[-5,63],[-41,64]],[[346,11515],[-54,312],[-104,574]],[[5482,12690],[82,-52],[28,-45],[91,-48],[39,-66],[67,-13],[37,-21],[41,13],[49,-85],[45,-49],[53,-28],[35,-49]],[[3250,13572],[319,-2]],[[2379,13573],[577,-1],[294,0]],[[8794,5599],[-1,2],[-135,28]],[[7074,9502],[-22,-28],[-38,-8],[-16,-62],[-26,-21],[-2,-59],[-44,-38],[-24,-47],[-39,13],[-49,-11],[-78,24],[-11,-49],[-102,-105],[36,-67]],[[6311,4169],[-7,-316]],[[6304,3853],[-430,15],[-2,-78],[-26,1],[-190,7],[2,75],[-116,1],[-29,1],[2,194],[-36,29],[0,38],[-72,0],[-2,-37],[-202,3]],[[5961,3112],[440,-9],[0,-22],[1,-20],[77,-1],[199,2],[35,-76],[30,-38],[361,-2],[94,1]],[[7095,2418],[-273,-1],[-149,2],[-292,0],[-11,0]],[[529,10387],[-86,525]],[[892,8123],[288,100],[23,44],[-1,48],[49,-25],[0,-43],[56,20],[58,28],[122,53],[124,54]],[[1018,7364],[-44,259],[-20,122],[-62,378]],[[7404,4691],[26,7],[93,-37],[28,59]],[[7202,3852],[-460,-4],[-46,0],[0,424]],[[7729,5849],[-578,-124],[-17,-41]],[[4312,8272],[-58,49],[-75,16],[-250,-1],[-147,1]],[[4365,13570],[23,0],[413,-2],[0,16],[171,1]],[[4036,13570],[329,0]],[[3925,10048],[161,-121],[2,-2]],[[4812,5657],[22,0],[0,-61],[-3,-242],[-2,-195]],[[4582,7605],[-259,-180],[-180,-126]],[[7354,10545],[51,-43],[45,7],[28,-19],[49,-79],[91,-83],[78,-52],[35,7],[122,-81],[81,-54],[59,-57],[1,-42],[108,-78],[36,-73],[14,-102],[38,-41]],[[8190,9755],[-66,10],[-73,-15],[-63,43],[-65,-4],[-73,-60],[-125,-30],[-35,-48]],[[3838,3786],[-26,-6],[-34,-72],[-244,-2],[-71,-1],[-301,-2]],[[2939,8874],[-12,-74],[16,-23]],[[2773,9359],[46,-1],[14,-77],[32,-44],[0,-45],[59,-27],[35,-64],[-50,-78],[37,-105],[-7,-44]],[[8190,9755],[46,-71],[8,-92],[53,-51],[25,-6],[74,-60],[66,15],[29,-38],[51,-16],[65,-40],[44,-55]],[[7260,8656],[-62,-9],[-40,-20],[-80,-80],[-17,-6],[-41,2],[-75,-48],[-54,-9]],[[7674,8549],[-157,83],[-152,71],[-77,-19],[-28,-28]],[[1531,5919],[-34,8],[16,93],[39,30],[-20,60],[-53,23],[-11,32],[8,71],[-19,91],[-48,76],[-109,108],[-31,83]],[[6304,3853],[-1,-37],[-35,-22],[-2,-51],[-37,2],[-36,-35],[-1,-40],[-34,2],[-3,-134],[-60,-152],[-28,-22],[-37,-82],[-82,-18]],[[892,8123],[-109,685],[-30,190]],[[7706,653],[-399,30]],[[2839,5204],[-232,2],[-1,49],[-45,23],[1,47],[-46,0],[1,43],[-87,3],[-1,57],[-48,67],[-69,-1]],[[1123,4168],[19,35],[0,106],[-21,31],[4,57],[28,55],[-11,46],[46,1],[38,96],[47,41],[-19,52],[50,39],[-5,61]]],"transform":{"scale":[0.0004134868546637751,0.00034107796311264596],"translate":[-85.605165,30.358929]},"objects":{"cb_2019_13_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[6,7,8,9,10]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-2,11,12,13,14,15,16,17]],"type":"Polygon","properties":{"COUNTYFP":"185"}},{"arcs":[[18,19,20,21,22,23]],"type":"Polygon","properties":{"COUNTYFP":"249"}},{"arcs":[[24,25,26,27,28,29,30,31]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[32,33,34,35]],"type":"Polygon","properties":{"COUNTYFP":"241"}},{"arcs":[[36,37,38,39,40,41]],"type":"Polygon","properties":{"COUNTYFP":"245"}},{"arcs":[[42,43,44,45,46,47,48,49,50,51,52]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[53,54,55,56,57,58,59,60]],"type":"Polygon","properties":{"COUNTYFP":"267"}},{"arcs":[[61,62,63,64,65,66,67,68]],"type":"Polygon","properties":{"COUNTYFP":"293"}},{"arcs":[[69,70,71,72,73,74,75,76,77]],"type":"Polygon","properties":{"COUNTYFP":"295"}},{"arcs":[[78,79,-70,-78,80,81,82]],"type":"Polygon","properties":{"COUNTYFP":"313"}},{"arcs":[[83,84,85,86,87]],"type":"Polygon","properties":{"COUNTYFP":"191"}},{"arcs":[[88,89,90,91,92,93]],"type":"Polygon","properties":{"COUNTYFP":"289"}},{"arcs":[[94,95,96,97,98,99]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[100,101,102,103,104,105]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[106,107,-101,108,109,110]],"type":"Polygon","properties":{"COUNTYFP":"229"}},{"arcs":[[-96,111,112,113]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[114,115,116,-25,-32,117,118]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[119,-72,120,121,122,123]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[124,125,126,-59,127,128,129]],"type":"Polygon","properties":{"COUNTYFP":"279"}},{"arcs":[[130,131,132,-39,133,134,135,136]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[-83,137,138,139,140,-79]],"type":"Polygon","properties":{"COUNTYFP":"213"}},{"arcs":[[-5,141,142,143,144,145]],"type":"Polygon","properties":{"COUNTYFP":"277"}},{"arcs":[[146,147,148,149,-26,-117,150]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[151,152,-93,153,154,155,156,157]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[158,159,160,161,162,163]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[164,165,166,167,168,169,170]],"type":"Polygon","properties":{"COUNTYFP":"175"}},{"arcs":[[171,172,173,174,-49,175,176]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[177,178,179,180,181,182]],"type":"Polygon","properties":{"COUNTYFP":"217"}},{"arcs":[[183,184,185,186,187,188,189]],"type":"Polygon","properties":{"COUNTYFP":"271"}},{"arcs":[[190,191,-12,-1,-6,-146,192,193,194]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[195,196,197,-14,198]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[199,-168,200,201,202,-189]],"type":"Polygon","properties":{"COUNTYFP":"309"}},{"arcs":[[203,204,205,206,207]],"type":"Polygon","properties":{"COUNTYFP":"311"}},{"arcs":[[208,209,210,211,212,213,214]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[215,216,-40,-133,217,218]],"type":"Polygon","properties":{"COUNTYFP":"189"}},{"arcs":[[219,220,221,222,223,224,225]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[226,227,-135,228,229,-29,230,-127,231]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-68,232,233,234,235,-163,236]],"type":"Polygon","properties":{"COUNTYFP":"263"}},{"arcs":[[237,238,239,240,241,-214,242]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[243,244,-240,245,246,-112,247]],"type":"Polygon","properties":{"COUNTYFP":"219"}},{"arcs":[[248,-223,249,250,-241,-245,251,252]],"type":"Polygon","properties":{"COUNTYFP":"221"}},{"arcs":[[-104,253,254,255]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[256,-238,-243,-213,257,258,259,260]],"type":"Polygon","properties":{"COUNTYFP":"237"}},{"arcs":[[261,262,263,-118,-31,264]],"type":"Polygon","properties":{"COUNTYFP":"251"}},{"arcs":[[-116,265,-147,-151]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[266,-204,267,268,269,270]],"type":"Polygon","properties":{"COUNTYFP":"291"}},{"arcs":[[271,-219,272,273,-250,-222,274]],"type":"Polygon","properties":{"COUNTYFP":"317"}},{"arcs":[[275,-35,276,277,278,279,-206]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[280,281,282,283,284,285,286,287]],"type":"Polygon","properties":{"COUNTYFP":"273"}},{"arcs":[[288,-262,-265,-30,-230,289]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[-212,290,291,292,-258]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-55,293,-149,294,-85,295]],"type":"Polygon","properties":{"COUNTYFP":"179"}},{"arcs":[[[-18,296,297,298,-3]],[[299,-16]]],"type":"MultiPolygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-268,-208,300,301,302]],"type":"Polygon","properties":{"COUNTYFP":"187"}},{"arcs":[[-38,303,-263,-289,-290,-229,-134]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-192,304,305,-196,-199,-13]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[306,307,308,309,310,311]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[312,313,314,-10,315,-308,316,317]],"type":"Polygon","properties":{"COUNTYFP":"205"}},{"arcs":[[318,-298,319,-7,-11,-315,320]],"type":"Polygon","properties":{"COUNTYFP":"275"}},{"arcs":[[321,-187,322,323,324,325,326,327]],"type":"Polygon","properties":{"COUNTYFP":"315"}},{"arcs":[[328,-181,329,-260,330,331,332]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[[-157,333,334,-19,-24,335,336,337]],[[338,339,340]]],"type":"MultiPolygon","properties":{"COUNTYFP":"193"}},{"arcs":[[341,-284,342,-312,343,344]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[[-336,-23,-22,345,-233,-67,346,-341]],[[-340,347,-337]]],"type":"MultiPolygon","properties":{"COUNTYFP":"269"}},{"arcs":[[-109,-106,348,349,350,351,352,353]],"type":"Polygon","properties":{"COUNTYFP":"299"}},{"arcs":[[-291,-211,354,-137,355,356]],"type":"Polygon","properties":{"COUNTYFP":"303"}},{"arcs":[[357,-87,358,-254,-103,359]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[360,-75,361]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[362,-88,-358,-360,-102,-108,363,-57,364]],"type":"Polygon","properties":{"COUNTYFP":"305"}},{"arcs":[[-97,365,366,367,-301,-207,-280,368]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[369,-235,370,371,372]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[373,-152,374,-347,-66,375,376]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[-128,-58,-364,-107,-111,377,378]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[379,-46,380,381,382,383,384,385]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-296,-84,-363,-365,-56]],"type":"Polygon","properties":{"COUNTYFP":"183"}},{"arcs":[[-292,-357,386,-165,-171,-91,387]],"type":"Polygon","properties":{"COUNTYFP":"319"}},{"arcs":[[-237,-162,388,389,390,391,-69]],"type":"Polygon","properties":{"COUNTYFP":"199"}},{"arcs":[[392,-378,-110,-354,393,394]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[395,396,-176,-48,397,398]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-183,399,400,401,402,403]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[-9,404,405,406,-309,-316]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[407,408,-173,409,410]],"type":"Polygon","properties":{"COUNTYFP":"227"}},{"arcs":[[411,-398,-47,-380,-386,412]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[-293,-388,-90,413,414,-331,-259]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[-177,-397,415,416,-122,417,-172]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[418,419,-98,-369,-279,420,421]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[422,423,424,-372,425,426,427]],"type":"Polygon","properties":{"COUNTYFP":"259"}},{"arcs":[[428,-345,429,430,431,432]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[-390,433,434,-381,-45,435,436]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-413,-385,437,438,-416,-396,-399,-412]],"type":"Polygon","properties":{"COUNTYFP":"223"}},{"arcs":[[439,440,-408,-411,441,-140,442]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[-403,443,-52,444,445]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-441,446,-302,-368,447,-174,-409]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[448,449,450,-287,451,452,-20,-335,453]],"type":"Polygon","properties":{"COUNTYFP":"261"}},{"arcs":[[454,-310,-407,455,456]],"type":"Polygon","properties":{"COUNTYFP":"201"}},{"arcs":[[457,-246,-239,-257,-261,-330,-180,458]],"type":"Polygon","properties":{"COUNTYFP":"211"}},{"arcs":[[-392,459,460,-63,-62]],"type":"Polygon","properties":{"COUNTYFP":"231"}},{"arcs":[[-51,461,-366,-114,462,463,-445]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[464,465,-225,466]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[-349,-105,-256,467]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[468,-143,469,-313,-318,470,471,472,473]],"type":"Polygon","properties":{"COUNTYFP":"321"}},{"arcs":[[474,475,476,-64,-461]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[-324,477,478,-144,-469,-474,479]],"type":"Polygon","properties":{"COUNTYFP":"287"}},{"arcs":[[-285,-342,-429,-433,480,-423,-428,481]],"type":"Polygon","properties":{"COUNTYFP":"243"}},{"arcs":[[482,483,-465,484,-419,-422,485]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[-470,-142,-4,-299,-319,-321,-314]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-356,-136,-228,-166,-387]],"type":"Polygon","properties":{"COUNTYFP":"167"}},{"arcs":[[-457,486,487,-430,-344,-311,-455]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[-77,488,-81]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[489,-475,-460,-391,-437,490,491,-401,492]],"type":"Polygon","properties":{"COUNTYFP":"255"}},{"arcs":[[-169,-200,-188,-322,-328,493,494]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-92,-170,-495,495,-154]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[496,-325,-480,-473,497,-450]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[498,-438,-384,499]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[-95,-100,500,-252,-244,-248]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-456,-406,501,-487]],"type":"Polygon","properties":{"COUNTYFP":"253"}},{"arcs":[[-224,-249,-253,-501,-99,-420,-485,-467]],"type":"Polygon","properties":{"COUNTYFP":"195"}},{"arcs":[[-141,-442,-410,-418,-121,-71,-80]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[-120,502,-73]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-278,503,-483,-486,-421]],"type":"Polygon","properties":{"COUNTYFP":"257"}},{"arcs":[[504,-269,-303,-447,-440,-443,-139,505]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-28,506,-60,-231]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-242,-251,-274,507,-215]],"type":"Polygon","properties":{"COUNTYFP":"265"}},{"arcs":[[-323,-186,508,509,-478]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[510,-352,511,-305,-191,-195]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-439,-499,512,-123,-417]],"type":"Polygon","properties":{"COUNTYFP":"233"}},{"arcs":[[513,-434,-389,-161,514]],"type":"Polygon","properties":{"COUNTYFP":"285"}},{"arcs":[[-190,-203,515,-129,-379,-393,-395,516,-184]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[-167,-227,-232,-126,517,-201]],"type":"Polygon","properties":{"COUNTYFP":"283"}},{"arcs":[[-493,-400,-182,-329,-333,518,-476,-490]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[519,-33,-36,-276,-205,-267,-271,520]],"type":"Polygon","properties":{"COUNTYFP":"281"}},{"arcs":[[-446,-464,521,-178,-404]],"type":"Polygon","properties":{"COUNTYFP":"247"}},{"arcs":[[-334,-156,522,-326,-497,-449,-454]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-477,-519,-332,-415,523,-376,-65]],"type":"Polygon","properties":{"COUNTYFP":"207"}},{"arcs":[[-221,524,525,-216,-272,-275]],"type":"Polygon","properties":{"COUNTYFP":"181"}},{"arcs":[[-339,-375,-158,-338,-348]],"type":"Polygon","properties":{"COUNTYFP":"225"}},{"arcs":[[-451,-498,-472,526,-282,-281,-288]],"type":"Polygon","properties":{"COUNTYFP":"177"}},{"arcs":[[527,-491,-436,-44,528]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[-89,-94,-153,-374,-377,-524,-414]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-526,529,-41,-217]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[530,-209,-508,-273,-218,-132,531]],"type":"Polygon","properties":{"COUNTYFP":"301"}},{"arcs":[[-236,-370,532,-159,-164]],"type":"Polygon","properties":{"COUNTYFP":"215"}},{"arcs":[[-448,-367,-462,-50,-175]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-402,-492,-528,-529,-43,-53,-444]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-510,533,-193,-145,-479]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[-514,534,-382,-435]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[-531,-532,-131,-355,-210]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[-463,-113,-247,-458,-459,-179,-522]],"type":"Polygon","properties":{"COUNTYFP":"297"}},{"arcs":[[-125,-130,-516,-202,-518]],"type":"Polygon","properties":{"COUNTYFP":"209"}},{"arcs":[[-507,-27,-150,-294,-54,-61]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-512,-351,535,-197,-306]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-234,-346,-21,-453,536,-426,-371]],"type":"Polygon","properties":{"COUNTYFP":"197"}},{"arcs":[[-534,-509,-185,-517,-394,-353,-511,-194]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-527,-471,-317,-307,-343,-283]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[-327,-523,-155,-496,-494]],"type":"Polygon","properties":{"COUNTYFP":"235"}},{"arcs":[[-424,-481,-432,537]],"type":"Polygon","properties":{"COUNTYFP":"239"}},{"arcs":[[-286,-482,-427,-537,-452]],"type":"Polygon","properties":{"COUNTYFP":"307"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/gu.topo.json b/app/assets/topojson/states/gu.topo.json new file mode 100755 index 00000000..80203578 --- /dev/null +++ b/app/assets/topojson/states/gu.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[218,223],[-23,31],[-4,57],[-32,93],[11,22],[-39,50],[-45,18],[38,34],[46,114],[-2,25],[37,52],[17,59],[-22,49],[-80,32],[-19,48],[-70,40],[-31,47],[30,33],[70,47],[247,-2],[90,36],[110,33],[129,-6],[64,11],[34,66],[-26,26],[25,31],[66,-7],[54,10],[32,40],[-14,96],[31,39],[19,54],[117,167],[4,155],[39,46],[35,67],[40,29],[42,-8],[66,-46],[88,-98],[31,-71],[100,-30],[150,-6],[-28,-95],[-50,-52],[-1,-72],[-39,-65],[-28,-79],[-124,-46],[-48,-28],[-25,-66],[-79,-29],[-100,-107],[-23,-2],[-99,-95],[-39,-5],[-64,-71],[-61,0],[-44,-23],[6,-50],[-46,-103],[-27,-110],[10,-104],[-6,-33],[4,-160],[-72,-117],[-60,-32],[-64,-84],[-39,-25],[-27,17],[-64,-23],[-143,39],[-19,37],[-44,25],[-12,75]]],"transform":{"scale":[0.0002020526001195417,0.00021277964376590367],"translate":[144.618068,13.236270999999999]},"objects":{"cb_2019_66_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0]],"type":"Polygon","properties":{"COUNTYFP":"010"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/hi.topo.json b/app/assets/topojson/states/hi.topo.json new file mode 100755 index 00000000..416797e8 --- /dev/null +++ b/app/assets/topojson/states/hi.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[44813,6639],[8,-67],[-35,-6],[3,-48],[25,-78],[47,-5],[25,-49],[59,-59],[33,65],[1,56],[38,-16],[20,-55],[-17,-23],[22,-56],[61,-51],[-7,-51],[33,-69],[76,-57],[20,1],[-2,-30],[-128,-99],[-22,62],[-98,-23],[-69,-46],[-42,-2],[-18,39],[-138,89],[-133,-8],[-2,32],[-37,28],[-29,-29],[-157,-37],[-115,-14],[-22,16],[-50,166],[-58,71],[-23,7],[-15,76],[-53,74],[-60,63],[0,138],[-42,51],[-47,32],[81,30],[176,-3],[69,7],[35,49],[94,95],[4,38],[116,113],[56,27],[35,-1],[65,-85],[21,-58],[25,-16],[-6,-54],[41,-52],[55,-116],[43,-4],[38,-58]],[[47782,5032],[44,-6],[77,31],[70,13],[52,36],[62,24],[42,21],[33,-18],[54,14],[92,-24],[29,-52],[73,-56],[58,-70],[80,-15],[6,-47],[41,-42],[46,11],[73,-53],[101,-28],[50,-59],[4,-131],[-9,-34],[-55,-66],[-34,-7],[-40,-68],[-70,-3],[-70,-29],[-62,-55],[-34,21],[-49,-10],[-31,15],[-237,-114],[-33,3],[-129,-24],[-85,20],[-62,54],[3,43],[-31,40],[24,26],[-7,139],[-23,85],[-11,108],[-27,30],[-71,12],[-43,-49],[-39,11],[-87,38],[-54,37],[-22,-6],[-121,136],[-26,66],[1,38],[-27,36],[11,77],[64,145],[28,2],[20,46],[124,-6],[53,-18],[54,-73],[23,-52],[36,-43],[37,-74],[24,-46]],[[47302,4091],[50,69],[69,21],[81,67],[88,33],[64,-68],[-19,-28],[-14,-71],[49,-22],[-29,-41],[-49,10],[-43,-19],[-51,20],[-65,-29],[-86,-4],[-45,62]],[[46614,5749],[89,-20],[50,-56],[31,0],[26,-44],[51,-7],[6,36],[-42,53]],[[46825,5711],[115,-18],[135,35],[17,-16],[57,19],[68,-7],[7,-35],[58,-3],[-7,-37],[-51,-75],[-145,-119],[-74,-34],[-48,5],[-36,-26],[-57,23],[-105,22],[-177,62],[-10,17],[-126,19],[-144,-23],[-208,-13],[-101,14],[-5,54],[22,72],[87,88],[27,101],[93,-9],[21,-28],[206,-21],[71,-23],[99,-6]],[[46515,5037],[54,52],[106,16],[40,-14],[117,-9],[71,-39],[118,-122],[50,-87],[-1,-38],[-52,-100],[-80,-39],[-52,-42],[-104,4],[-55,-12],[-41,55],[-23,85],[10,76],[-40,82],[-95,52],[-23,80]],[[41607,8047],[-32,-83],[-35,-36],[-7,-54],[8,-77],[11,-83],[-16,-21],[-93,-78],[-18,-46],[-20,0],[-105,-87],[-66,34],[-60,8],[-53,-3],[-104,22],[-34,26],[-40,-8],[-56,34],[-72,94],[-202,73],[-60,100],[6,116],[85,83],[32,107],[18,26],[69,34],[71,24],[114,78],[55,49],[48,8],[89,-39],[66,47],[74,-8],[55,-22],[49,20],[54,-22],[70,-5],[31,-27],[44,-44],[49,-108],[-7,-99],[-18,-33]],[[39545,7385],[49,151],[84,88],[110,53],[24,20],[30,101],[91,25],[38,-28],[-51,-96],[-15,-67],[18,-84],[-184,-74],[-72,-129],[-25,-89],[-60,28],[-36,62],[-1,39]],[[50398,2808],[79,-65],[95,-64],[132,-124],[39,-47],[41,-75],[34,-19],[22,-73],[-23,-67],[14,-66],[-9,-68],[1,-55],[17,-27],[47,6],[43,31],[82,-6],[28,-49],[27,-71],[-10,-40],[7,-89],[43,-36],[28,-47],[38,-28],[59,-65],[115,-55],[85,-50],[10,-27],[-30,-94],[-32,-44],[-118,-116],[-44,-23],[-123,-122],[-14,-21],[-98,-54],[-70,-36],[-49,-7],[-38,-36],[-21,-6],[-69,-53],[-60,-22],[-60,-5],[-16,-19],[-155,39],[-67,-19],[-49,-53],[-40,-20],[-26,-51],[-116,-67],[-34,-9],[-78,-90],[-112,-36],[-117,-145],[7,-65],[-29,-59],[-24,-12],[-39,-72],[-12,-68],[-44,-2],[-17,-50],[-60,-64],[-61,-31],[-3,60],[-87,82],[-78,27],[-91,83],[-108,24],[-64,36],[-8,46],[-52,77],[-24,82],[17,92],[21,244],[26,105],[5,143],[-27,82],[-26,47],[13,34],[-36,65],[-14,58],[8,57],[-53,36],[-26,62],[8,24],[-47,199],[-50,73],[-69,48],[12,51],[-46,57],[-11,96],[15,118],[39,22],[107,129],[39,23],[53,-7],[67,112],[35,88],[60,60],[9,27],[58,28],[21,136],[-23,36],[-10,13],[-6,8],[-57,72],[-38,71],[-37,146],[-8,83],[12,83],[24,55],[45,36],[65,6],[139,-65],[38,-10],[57,-48],[13,-46],[58,-38],[103,-54],[38,-53],[57,-16],[41,-48],[73,26],[129,-43],[135,-53],[299,-170],[31,-9]],[[46614,5749],[64,6],[7,56],[43,11],[41,-100],[56,-11]]],"transform":{"scale":[0.000457335659577777,0.0003953851252761913],"translate":[-178.333034,18.910360999999998]},"objects":{"cb_2019_15_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[[1]],[[2]],[[3,4]],[[5]]],"type":"MultiPolygon","properties":{"COUNTYFP":"009"}},{"arcs":[[[6]],[[7]]],"type":"MultiPolygon","properties":{"COUNTYFP":"007"}},{"arcs":[[8]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[9,-4]],"type":"Polygon","properties":{"COUNTYFP":"005"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ia.topo.json b/app/assets/topojson/states/ia.topo.json new file mode 100755 index 00000000..f7803dde --- /dev/null +++ b/app/assets/topojson/states/ia.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[5511,2289],[-141,-1],[-27,1],[-168,0],[-113,-1],[-220,0]],[[4842,2288],[0,188],[-29,0],[0,177],[0,58],[0,120],[1,174]],[[4814,3005],[169,0]],[[4983,3005],[170,0],[170,-1],[170,0],[172,0]],[[5665,3004],[0,-175],[-1,-177],[0,-175],[14,0],[1,-187]],[[5679,2290],[-168,-1]],[[3172,1233],[0,173],[0,174]],[[3172,1580],[166,0],[169,-1]],[[3507,1579],[166,0],[166,-1]],[[3839,1578],[0,-174],[-1,-175],[1,-175]],[[3839,1054],[-167,1]],[[3672,1055],[-166,0],[-168,3],[-166,1]],[[3172,1059],[0,174]],[[7545,3880],[-171,1]],[[7374,3881],[-1,177],[1,172],[-17,0],[0,176],[3,177]],[[7360,4583],[174,0],[173,2],[174,1],[172,1]],[[8053,4587],[-2,-176],[0,-177],[5,0],[0,-179],[1,-175]],[[8057,3880],[-171,0],[-28,0],[-142,1]],[[7716,3881],[-171,-1]],[[4677,413],[-169,1]],[[4508,414],[0,117],[1,175],[0,87],[-1,89],[0,1],[1,173]],[[4509,1056],[167,-1],[168,0],[168,2],[168,0]],[[5180,1057],[0,-175],[0,-176],[0,-117],[0,-59],[0,-109]],[[5180,421],[-168,-5],[-169,-2],[-166,-1]],[[1829,5295],[1,177],[1,174],[-1,172]],[[1830,5818],[174,0],[174,1],[172,-1],[174,0]],[[2524,5818],[0,-175],[0,-173],[0,-176],[0,-174]],[[2524,5120],[-175,0],[-172,0],[-173,1],[-174,-1]],[[1830,5120],[-1,175]],[[1415,3358],[1,176],[1,175]],[[1417,3709],[169,-1],[169,0],[170,0]],[[1925,3708],[170,0],[170,-1]],[[2265,3707],[-1,-175],[-1,-177],[0,-172],[-1,-177]],[[2262,3006],[-170,1],[-169,0],[0,1],[-169,-2],[-171,0]],[[1583,3006],[-169,0]],[[1414,3006],[1,176],[0,176]],[[4842,1763],[0,175],[1,176],[-1,140]],[[4842,2254],[0,3],[0,31]],[[5511,2289],[0,-175],[1,-175],[-1,-73],[0,-73],[1,-29],[1,-177]],[[5513,1587],[-168,0],[-168,0]],[[5177,1587],[-166,0],[-168,-1]],[[4843,1586],[-1,177]],[[1314,5120],[-173,-1]],[[1141,5119],[-1,177],[0,176],[-2,177],[-1,174]],[[1137,5823],[174,1],[173,1],[1,0],[173,-6],[172,-1]],[[1830,5120],[-170,1],[-1,0],[-172,0],[-173,-1]],[[3450,3005],[170,1]],[[3620,3006],[170,0],[171,0],[100,0],[69,0]],[[4130,3006],[1,-114],[0,-17],[0,-44],[1,-178],[0,-135],[0,-43],[34,0],[1,-132],[-1,-47]],[[4166,2296],[-155,-18],[-169,0],[-168,0],[-167,1]],[[3507,2279],[0,147],[0,50],[-56,1],[0,43],[-1,132],[0,179],[0,174]],[[4677,1586],[166,0]],[[5177,1587],[2,-175]],[[5179,1412],[0,-178],[1,-177]],[[4509,1056],[0,177],[0,1],[-1,177],[-1,177]],[[4507,1588],[170,-2]],[[1243,3006],[171,0]],[[1583,3006],[0,-176],[-1,-176],[0,-175],[88,0],[0,-195]],[[1670,2284],[-168,0],[-167,1],[-141,0],[-26,0],[-168,0],[-59,1]],[[941,2286],[3,33],[-8,33],[-29,11],[-11,-10],[-14,-63],[-25,0],[-30,30],[-26,20],[-7,24],[5,26],[18,32],[-4,18],[-26,17],[-19,24],[-5,28],[25,37],[8,24],[-7,27],[-30,34],[0,24],[23,21],[21,-5],[21,8],[5,15],[-10,18],[-34,21],[-3,32],[30,19],[9,17],[1,32],[16,23],[-4,29],[-17,13],[-19,6],[-20,16],[-5,20],[5,19],[-12,30],[-34,23]],[[732,3012],[172,-5],[56,-1],[114,0],[169,0]],[[5974,5993],[1,176],[1,144]],[[5976,6313],[172,1],[174,-1],[174,1],[172,0]],[[6668,6314],[0,-145],[-1,-176],[0,-13],[0,-161],[-1,-86]],[[6666,5733],[-172,0],[-116,1],[-58,-1],[-172,0],[-174,-1]],[[5974,5732],[0,86],[0,162],[0,13]],[[3839,1578],[169,0],[160,11]],[[4168,1589],[170,0],[169,-1]],[[4509,1056],[-168,2],[-1,0],[-168,0],[-166,-5],[-167,1]],[[5850,1236],[0,-179]],[[5850,1057],[-168,0],[-167,-1],[-10,1],[-158,0],[-167,0]],[[5513,1587],[168,1],[143,0],[24,0]],[[5848,1588],[1,-175],[1,-177]],[[3838,531],[0,174],[0,174],[0,1],[1,174]],[[4508,414],[-167,-4],[-169,-2],[-167,-3],[-167,-4]],[[3838,401],[0,130]],[[3902,4938],[0,-178],[0,-175]],[[3902,4585],[-174,0],[-149,-1],[-22,0],[-172,1],[-173,1]],[[3212,4586],[0,176],[0,176]],[[3212,4938],[0,179]],[[3212,5117],[173,0],[172,0],[172,0],[173,-1]],[[3902,5116],[0,-178]],[[3507,1579],[0,175],[0,175],[0,175],[0,175]],[[4166,2296],[0,-175],[1,-178],[1,-177],[0,-177]],[[1140,4592],[0,175],[2,177],[-1,175]],[[1830,5120],[1,-177],[0,-177],[-1,-175],[0,-174]],[[1830,4417],[-172,0],[-171,0],[-174,-1]],[[1313,4416],[-173,-1]],[[1140,4415],[0,177]],[[1137,5823],[3,177],[-1,177],[0,136]],[[1139,6313],[175,-1],[172,0],[173,1],[74,1],[98,-1]],[[1831,6313],[0,-141],[0,-178],[-1,-176]],[[8053,4587],[172,1],[172,-1],[1,59]],[[8398,4646],[65,-21],[107,-24],[86,-24],[26,-21],[13,-32],[10,-46],[11,-21],[26,-27],[4,-21],[18,-26],[15,-53],[-18,-42],[-11,-13],[3,-26],[16,-18],[28,-22],[26,-15],[52,-20],[15,-17],[8,-34],[55,-27],[25,-15],[19,-21],[20,-7]],[[9017,4053],[-110,1],[-170,0],[-1,-177],[-170,1],[-170,1]],[[8396,3879],[-169,1],[-170,0]],[[3004,395],[-150,2],[-166,3],[-166,3]],[[2522,403],[1,151],[0,2],[2,155],[-23,0],[0,174],[0,176]],[[2502,1061],[167,0]],[[2669,1061],[167,-1],[0,-1],[168,0],[168,0]],[[3172,1059],[-2,-176],[1,-175],[0,-175]],[[3171,533],[0,-138]],[[3171,395],[-167,0]],[[2523,6172],[1,-180],[0,-174]],[[1831,6313],[173,0],[36,2],[137,-1],[173,0],[173,-1]],[[2523,6313],[0,-141]],[[1137,5823],[-173,0],[-86,2],[-86,-3],[-173,1],[-172,0],[-170,2],[-153,3]],[[124,5828],[-14,0],[-18,16],[-6,42],[-11,15],[22,6],[6,-8],[41,1],[16,9],[7,25],[-14,48],[15,21],[-4,43],[9,13],[-4,41],[-19,1],[-30,23],[-23,25],[5,19],[-29,8],[-7,4],[-12,31],[4,15],[26,20],[-6,23],[0,26],[-18,19],[222,-1],[171,0],[170,0],[172,0],[172,0],[172,0]],[[2262,3006],[171,-1],[170,0],[168,-1]],[[2771,3004],[1,-173],[0,-178],[0,-175],[63,0],[1,-198]],[[2836,2280],[-169,1],[-162,0],[-167,0]],[[2338,2281],[0,197],[-75,0],[-1,174],[-1,179],[1,175]],[[1670,2284],[167,0],[167,-1],[168,-1]],[[2172,2282],[-1,-10],[1,-165],[-1,-175],[0,-175],[-1,-174]],[[2170,1583],[-167,1],[-167,1]],[[1836,1585],[-168,0],[-84,0],[-83,0],[-78,0],[-89,0],[-134,0],[-90,1]],[[1110,1586],[13,15],[28,-5],[17,19],[-13,20],[-22,7],[-65,-8],[-13,5],[-11,18],[1,31],[21,42],[-9,36],[-5,38],[9,6],[-21,20],[2,35],[31,5],[2,-15],[-12,-29],[15,-12],[29,16],[14,17],[2,12],[-9,34],[-16,13],[-54,7],[-26,19],[-14,16],[-5,19],[37,32],[3,20],[-9,19],[-2,25],[9,19],[-1,26],[-3,21],[19,30],[0,15],[-18,25],[-20,5],[-28,-6],[-26,13],[-31,5],[-22,29],[5,12],[29,29]],[[3172,1580],[-168,1],[-168,0]],[[2836,1581],[0,174],[0,176],[0,174],[0,175]],[[2836,2280],[167,0],[168,0],[167,-1],[1,0],[112,0],[56,0]],[[4249,6312],[171,0],[175,-1]],[[4595,6311],[0,-140],[0,-176],[0,-176]],[[4595,5819],[-175,0],[-170,0],[-174,-1],[-173,0]],[[3903,5818],[0,176],[0,177],[0,141]],[[3903,6312],[173,0],[173,0]],[[4593,4234],[53,-1],[0,-176],[0,-177],[-1,-175]],[[4645,3705],[-173,0],[-171,0]],[[4301,3705],[-171,1],[-170,0]],[[3960,3706],[0,175],[0,7],[0,6],[0,163],[0,179],[-58,0],[0,174]],[[3902,4410],[172,-2],[174,1],[172,-1],[172,1]],[[4592,4409],[1,-175]],[[2605,3881],[0,-175]],[[2605,3706],[-171,0],[-169,1]],[[1925,3708],[1,175],[0,178],[0,180],[-95,0],[-1,176]],[[1830,4417],[173,-2],[174,0],[173,1],[173,-2]],[[2523,4414],[0,-174],[84,0],[0,-180],[-2,-179]],[[5320,3880],[0,-175]],[[5320,3705],[-170,-1],[-166,0]],[[4984,3704],[-168,1],[-171,0]],[[4592,4409],[174,0],[87,-1],[86,0],[172,-1],[172,0]],[[5283,4407],[0,-174],[35,0],[1,-176],[1,-177]],[[8225,3174],[-171,1],[-171,0],[-171,1]],[[7712,3176],[2,176],[0,176],[1,177],[1,176]],[[8396,3879],[0,-176],[0,-4],[0,-173],[0,-176]],[[8396,3350],[0,-177]],[[8396,3173],[-171,1]],[[2169,1062],[-166,1],[-168,0]],[[1835,1063],[0,173],[0,174]],[[1835,1410],[1,175]],[[2170,1583],[167,-1],[167,0]],[[2504,1582],[0,-174],[-1,-174],[-1,-173]],[[2502,1061],[-166,0],[-167,1]],[[5662,3881],[1,-174]],[[5663,3707],[-172,-1],[-171,-1]],[[5283,4407],[174,-1],[172,-1],[172,0],[173,0]],[[5974,4405],[0,-174],[30,0],[0,-173],[1,-176]],[[6005,3882],[-172,0],[-171,-1]],[[1247,3710],[170,-1]],[[732,3012],[-8,11],[-4,26],[-21,35],[4,16],[24,11],[9,24],[-10,21],[9,27],[12,29],[-1,13],[-17,13],[-22,4],[-31,-8],[-14,4],[-8,13],[13,31],[-7,13],[-26,6],[-13,-5],[-10,-19],[-11,-6],[-17,10],[3,26],[22,21],[-3,25],[-18,12],[-26,-6],[-22,14],[-11,31],[-1,28],[17,44],[1,29],[-18,27],[-29,8],[-21,18],[-9,20],[-27,22],[-14,19],[-4,22],[3,35],[-16,26],[4,15]],[[414,3717],[154,-1],[84,-1],[85,-1],[169,-4],[170,-1],[171,1]],[[2338,2281],[-166,1]],[[4984,3529],[0,-178],[0,-170],[-1,-176]],[[4814,3005],[-169,1],[-172,0],[-171,0]],[[4302,3006],[0,176],[-1,170],[0,179],[0,174]],[[4984,3704],[0,-175]],[[3960,3706],[-70,0],[-100,0],[-171,0]],[[3619,3706],[-170,0],[-170,-1]],[[3279,3705],[0,175],[0,177],[0,181],[-67,0],[0,173]],[[3212,4411],[0,175]],[[3902,4585],[0,-175]],[[622,4417],[-28,-1],[-141,1],[-3,0],[-171,0],[-73,-1]],[[206,4416],[19,25],[-13,24],[-22,55],[-11,5],[1,31],[-32,37],[1,13],[-27,18],[-28,37],[-31,12],[-50,35],[9,17],[-22,46],[6,8],[10,34],[-6,21],[20,32],[21,-2],[14,20],[7,31],[18,39],[-6,12],[47,15],[7,18],[-7,27],[5,23],[13,8],[-3,23],[18,1],[-2,15],[-20,12],[8,10]],[[150,5118],[127,1],[173,0],[173,0],[172,2],[174,-1],[172,-1]],[[1140,4415],[-173,1],[-172,0],[-173,1]],[[2186,409],[-167,2],[-168,3]],[[1851,414],[0,151],[5,148],[-22,0],[1,115],[0,59],[0,176]],[[2522,403],[-169,3],[-167,3]],[[7712,2823],[0,-176],[-1,-176]],[[7711,2471],[-1,-178],[-2,-176]],[[7708,2117],[-138,2],[-31,-1]],[[7539,2118],[-9,34],[-15,12],[3,25],[-23,16],[2,18],[16,3],[-2,32],[-22,8],[-2,28],[-115,0],[-57,0],[-112,1],[-84,1],[-84,-1]],[[7035,2295],[3,180],[-9,0],[-2,174],[4,177],[0,21],[1,39],[-1,117]],[[7031,3003],[171,0],[56,0],[10,-1],[105,-1],[170,-2],[169,0]],[[7712,2999],[0,-88],[0,-88]],[[7178,6314],[176,0]],[[7354,6314],[0,-146],[0,-174],[10,-1],[-1,-174],[0,-2],[0,-175],[-1,-175]],[[7362,5467],[-172,1],[-3,0],[-174,0],[-174,1],[-173,1]],[[6666,5470],[0,174],[0,89]],[[6668,6314],[160,0],[175,0],[175,0]],[[3213,5470],[0,174],[-1,174]],[[3212,5818],[1,175],[0,179],[0,142]],[[3213,6314],[172,-1],[173,0],[173,0],[172,-1]],[[3903,5818],[1,-174],[-1,-175],[0,-178],[-1,-175]],[[3212,5117],[1,175]],[[3213,5292],[0,178]],[[4130,3006],[172,0]],[[4842,2254],[-16,-17],[-30,10],[-16,-3],[-16,19],[-22,-18],[-2,31],[-36,19],[-7,-13],[-20,5],[-2,0],[-169,8],[-169,1],[-171,0]],[[5664,3531],[0,-178],[1,-173],[0,-176]],[[5663,3707],[1,-176]],[[2504,1582],[164,0],[168,-1]],[[1313,4416],[0,-175],[106,0],[-1,-182],[-1,-120],[0,-55],[1,-48],[-1,-127]],[[414,3717],[30,7],[18,23],[-9,20],[3,20],[-5,19],[-15,20],[-22,15],[-13,19],[-4,30],[-10,35],[-13,15],[-35,24],[-14,28],[-1,15],[14,35],[-4,20],[-6,29],[5,21],[36,44],[10,28],[-1,31],[-7,26],[-15,19],[-19,7],[-69,10],[-28,-6],[3,28],[-9,16],[-15,2],[-1,16],[16,8],[4,65],[-27,0],[-5,10]],[[8396,3173],[0,-176],[0,-177]],[[8396,2820],[-1,-176]],[[8395,2644],[-1,-176]],[[8394,2468],[-171,1],[-30,0],[-84,0],[-46,0],[-12,0],[-141,1],[-28,0],[-171,1]],[[7712,2999],[0,177]],[[5283,4407],[1,175],[1,176],[0,178],[1,180]],[[5286,5116],[173,-1],[170,0],[172,0],[173,0]],[[5974,5115],[0,-180],[0,-149],[0,-29],[0,-89],[0,-88]],[[5974,4580],[0,-175]],[[4969,5116],[87,0],[57,0],[173,0]],[[4592,4409],[1,175],[0,176],[0,178],[0,180]],[[4593,5118],[174,-1],[173,-1],[29,0]],[[3619,3352],[0,178],[0,176]],[[3620,3006],[0,175],[0,59],[-1,112]],[[7354,6314],[175,0],[178,0],[157,1],[65,-1],[3,-32],[-7,-27],[-17,-23],[5,-29],[29,-38],[8,-14],[8,-50],[-12,-41],[-13,-18],[19,-34],[30,-7],[14,-9],[62,-30],[32,-26],[32,-44],[20,-41],[-1,-19],[22,-16],[-7,-22],[-25,-30],[-42,-44],[-16,-13],[-8,-25],[-20,-36],[-11,-35],[-15,-20],[-28,-17],[-4,-11],[4,-51],[-3,-47]],[[7988,5465],[-108,0],[-58,2],[-116,0],[-174,0],[-170,0]],[[5974,5732],[-202,0],[-87,0],[-71,1],[-14,-1],[-139,0],[-174,0]],[[5287,5732],[0,87]],[[5287,5819],[0,175],[0,176],[0,142]],[[5287,6312],[174,0],[168,0],[172,1],[175,0]],[[5974,5732],[0,-88],[1,-174],[0,-121],[-1,-58],[0,-176]],[[5286,5116],[1,146],[1,29],[0,30],[0,149],[0,58],[-1,116],[0,88]],[[2524,5120],[0,-178],[0,-176],[-3,-177],[2,-175]],[[6185,1589],[167,1],[170,0]],[[6522,1590],[0,-174],[1,-178],[0,-179]],[[6523,1059],[-169,-1],[-168,0],[-168,0],[-168,-1]],[[5848,1588],[168,0],[169,1]],[[3280,3006],[-170,0],[-169,-1]],[[2941,3005],[-1,177]],[[2940,3182],[0,169],[0,179],[1,175]],[[2941,3705],[169,0],[169,0]],[[3450,3005],[-170,1]],[[4421,5118],[-158,0],[-14,-1],[-29,1],[-144,0],[-174,-2]],[[4595,5819],[0,-174],[0,-175],[0,-177],[-2,-175]],[[4593,5118],[-172,0]],[[7026,3357],[3,-177],[2,-177]],[[7031,3003],[-170,0],[-170,2],[-171,-1],[-171,1]],[[6349,3005],[0,44],[0,28],[1,103],[0,59],[-2,116],[-1,176],[1,177],[0,175]],[[6348,3883],[172,0],[170,0]],[[6690,3883],[4,0],[167,0],[171,3]],[[7032,3886],[-2,-176],[-2,-72],[-1,-104],[-1,-177]],[[6690,3883],[0,3],[0,173],[1,169],[-25,0],[-2,175],[1,176]],[[6665,4579],[173,0],[59,0],[115,3],[174,-1],[174,2]],[[7374,3881],[-171,0],[-171,5]],[[5116,5818],[171,1]],[[4595,5819],[174,-1],[173,0],[174,0]],[[5850,1057],[1,-129],[0,-44],[0,-89],[0,-52],[1,-124],[0,-7],[0,-177]],[[5852,435],[-169,-4],[-166,-1],[-169,-3],[-168,-6]],[[3212,5818],[-171,0],[-173,0],[-173,0],[-171,0]],[[2523,6313],[170,1],[175,0],[172,-1],[173,1]],[[5846,2290],[112,0],[57,1],[167,0]],[[6182,2291],[1,-174],[1,-176],[0,-139],[1,-35],[0,-178]],[[5679,2290],[167,0]],[[1333,1063],[62,0],[35,0],[70,0],[168,0],[167,0]],[[1851,414],[-167,3],[-219,5],[-187,2],[18,15],[7,21],[-4,12],[-19,16],[-8,15],[-6,40],[-23,31],[-21,11],[-28,4],[-29,21],[-7,34],[-17,28],[-35,19],[-8,29],[8,32],[20,24],[25,12],[23,22],[2,29],[-12,26],[-2,22],[12,42],[-15,38],[-1,21],[13,15],[20,6],[19,19],[4,22],[-6,13]],[[1208,1063],[125,0]],[[2771,3004],[170,1]],[[2605,3706],[166,-1],[170,0]],[[3041,4412],[-86,1],[-86,-1],[-173,1],[-173,1]],[[2524,5120],[171,-1],[173,-1],[173,0],[171,-1]],[[3212,4411],[-171,1]],[[6494,5114],[-87,0],[-87,1],[-1,0],[-172,0],[-173,0]],[[6666,5470],[0,-179],[0,-1],[0,-175]],[[6666,5115],[-172,-1]],[[7539,2118],[0,-176],[-1,-58],[-1,-118],[0,-58],[0,-118]],[[7537,1590],[-168,2],[-169,-1]],[[7200,1591],[-42,-1],[-125,-2],[-168,4]],[[6865,1592],[1,147],[-1,31],[-2,174],[0,176],[1,174]],[[6864,2294],[171,1]],[[8566,2813],[-6,7],[-164,0]],[[8396,3350],[170,-2],[171,0],[170,0],[170,2],[171,0],[142,-1],[94,0]],[[9484,3349],[15,-37],[5,-38],[-8,-30],[-23,-40],[-3,-33],[13,-19],[5,-9],[-3,-44],[-5,-23],[-19,-44],[-4,-38],[-13,-26],[-3,-23],[4,-43],[-10,-18],[-32,-11],[-18,-9],[-60,-42],[-23,-10],[-35,-35],[-12,-16],[-8,-27]],[[9247,2734],[-26,22],[-12,-1],[-18,-14],[-15,-9],[-14,13],[-22,-7],[-29,-2],[-4,23],[-16,-1],[-4,24],[-11,7],[-27,16],[-11,-12],[-13,10],[-3,21],[-23,-14],[-43,6],[-33,13],[-16,-13],[-23,-7],[-22,-13],[-12,8],[-2,13],[-35,-23],[-26,14],[-30,-20],[-9,17],[-12,1],[-6,-1],[-17,-19],[-37,-29],[-19,-7],[-9,11],[-15,-3],[-19,8],[-19,37],[-29,10]],[[4941,6311],[175,1],[171,0]],[[4595,6311],[172,1],[174,-1]],[[3838,401],[-168,-3],[-165,-1],[-169,-1],[-165,-1]],[[6864,2294],[-174,-1],[-171,-1],[-169,0]],[[6350,2292],[-1,185],[-2,0],[-1,177],[1,176],[2,175]],[[7340,335],[-50,16],[-40,8],[-13,14],[7,34],[-4,13],[-41,31]],[[7199,451],[-2,81],[0,58],[0,118],[-1,177]],[[7196,885],[170,1],[168,-2],[115,0]],[[7649,884],[23,-9],[30,-24],[13,-12],[17,6],[8,-15],[41,-13],[14,-16],[20,2],[13,-13],[5,-24],[37,-5],[20,-8],[16,-22],[24,-10],[15,-24],[18,-5],[17,-20],[8,25],[24,-7],[15,-22],[10,-3],[19,-13],[27,-4]],[[8083,648],[-17,-55],[-21,-16],[-71,-48],[-16,-2],[-30,4],[-55,-2],[-13,-7],[-61,-15],[-62,-34],[-9,-8],[-7,-8],[-29,-55],[-32,-30],[-7,-16],[8,-30],[19,-8],[28,-41],[7,-25],[-1,-32],[-13,-40],[-12,-37],[1,-16],[11,-41],[1,-34],[-4,-19],[-19,-14],[-36,-5],[-9,-8],[-26,14],[-22,-20],[-17,0],[-2,20],[-22,-7],[-26,40],[-39,18],[-3,19],[11,23],[-21,19],[15,22],[-8,15],[-22,-2],[-29,6],[-24,20],[-10,33],[-11,15],[-33,20],[-8,25],[6,34],[-3,15]],[[6666,4994],[0,4],[0,26],[0,91]],[[7362,5467],[-1,-178],[-1,-177],[-1,-173],[1,-3],[-2,-15],[2,-161],[0,-177]],[[6665,4579],[0,177],[1,180],[-1,44],[1,14]],[[150,5118],[-6,32],[46,42],[14,28],[-9,25],[-20,12],[19,38],[12,3],[10,24],[-11,19],[-17,11],[3,26],[-14,9],[12,16],[29,2],[20,23],[24,4],[9,40],[-12,11],[34,50],[-6,40],[-10,17],[-24,16],[0,41],[3,23],[-11,7],[2,40],[-9,34],[-12,4],[-50,-13],[-11,13],[-41,6],[-20,9],[-4,15],[27,17],[-3,26]],[[8394,2468],[169,-1],[-2,-176],[-1,-114]],[[8560,2177],[-75,5],[-29,-6],[-21,-13],[-42,-30],[-43,-20],[-29,6],[-37,20],[-15,-1],[-30,-15],[-23,-4],[-33,-17],[-6,-10],[-4,-36],[-1,-16],[-20,-33],[-10,-71]],[[8142,1936],[-117,1],[-149,3],[-123,0],[-46,1],[1,176]],[[1208,1063],[-33,40],[-6,37],[3,22],[15,44],[-18,30],[-34,20],[-9,25],[14,32],[-2,28],[-26,28],[-3,24],[12,16],[15,31],[-4,60],[-24,53],[2,33]],[[9247,2734],[-2,-21],[6,-18],[-2,-29],[-29,-31],[-8,-49],[-5,-17],[6,-98],[-5,-22],[-31,-16],[-25,-6],[-36,-16],[-14,-12],[-10,-18],[-15,-9],[-18,-27],[-24,-26],[-19,-7],[-38,-4],[-48,14],[-34,-1],[-16,-14],[-41,-13],[-10,-10],[-5,-24],[-39,-31],[-34,-34],[-20,-3],[-47,-12],[-71,-10],[-53,7]],[[7199,1415],[1,176]],[[7537,1590],[169,-3],[0,-58],[-1,-118]],[[7705,1411],[-1,-176],[0,-176],[-1,-176],[-54,1]],[[7196,885],[1,177]],[[7197,1062],[0,177],[2,176]],[[6005,3882],[170,1],[173,0]],[[6349,3005],[-172,-1],[-172,0],[-170,0],[-170,0]],[[6865,1592],[-173,-1],[-170,-1]],[[6182,2291],[168,1]],[[8225,4735],[29,-11],[22,-30],[41,-24],[22,-7],[24,4],[35,-21]],[[7988,5465],[-3,-26],[7,-58],[25,-96],[1,-27],[14,-27],[2,-16],[-6,-33],[8,-28],[-2,-34],[11,-12],[31,-16],[24,-26],[3,-38],[10,-31],[-5,-28],[7,-12],[17,-3],[1,-42],[10,-48],[3,-27],[13,-16],[-8,-9],[21,-41],[23,1],[7,-10],[6,-17],[17,-10]],[[7199,451],[-18,30],[-152,-8],[-169,-8],[-169,-6],[-169,-4]],[[6522,455],[1,121],[1,133],[0,176],[-1,174]],[[6523,1059],[168,1],[169,1],[169,1],[118,-1],[50,1]],[[6665,4579],[-171,1],[-174,0],[-115,0],[-58,0],[-85,0],[-88,0]],[[6019,441],[-167,-6]],[[6522,455],[-166,-4],[-169,-5],[-168,-5]],[[9017,4053],[13,-25],[31,-28],[19,-37],[21,-29],[-7,-13],[-4,-44],[-10,-33],[16,-48],[28,-30],[14,-28],[45,-37],[47,-13],[15,-14],[32,-15],[39,-24],[28,-7],[59,-37],[12,-44],[20,-12],[25,0],[11,-17],[3,-21],[-3,-38],[-8,-24],[6,-68],[15,-18]],[[7705,1411],[169,1],[98,-2],[98,-1],[27,0],[224,0]],[[8321,1409],[6,-23],[5,-54],[-6,-57],[-14,-41],[-3,-19],[9,-38],[-17,-67],[-8,-12],[-44,-22],[-19,-20],[-14,-29],[-34,-31],[-17,-41],[-32,-31],[-17,-17],[-10,-26],[6,-38],[-2,-37],[-6,-23],[-15,-24],[-11,-53],[7,-34],[-2,-24]],[[8142,1936],[-2,-41],[-6,-23],[-21,-31],[-14,-40],[-19,-34],[1,-18],[30,-37],[30,-32],[22,-36],[24,-47],[20,-5],[26,5],[17,-7],[12,-14],[28,-51],[7,-22],[28,-46],[-4,-48]]],"transform":{"scale":[0.0006838269149831642,0.000494963578780681],"translate":[-96.639704,40.375501]},"objects":{"cb_2019_19_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[6,7,8,9,10,11,12]],"type":"Polygon","properties":{"COUNTYFP":"175"}},{"arcs":[[13,14,15,16,17,18]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[19,20,21,22,23]],"type":"Polygon","properties":{"COUNTYFP":"185"}},{"arcs":[[24,25,26,27,28]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[29,30,31,32,33,34,35]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[36,37,-1,38,39,40,41]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[42,43,44,-25,-29,45]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[46,47,48,49,50]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[51,-41,52,53,-22,54,55]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[56,-35,57,58,59,60]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[61,62,63,64,65]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[66,67,-55,68,-10]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[69,70,-54,-53,-40,71,72]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[73,-69,-21,74,75]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[76,77,78,79,80,81]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-67,-9,82,-50,83]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[84,-43,-46,85,86,87,88]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-45,89,90,91]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[92,93,94,95,-17]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[96,97,98,99,100,101,102]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[103,-26,-92,104,105]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-90,106,107]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[108,109,110,111]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-59,112,113,114,115,116]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[-83,-8,117,118,119]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[120,121,122,123,124]],"type":"Polygon","properties":{"COUNTYFP":"189"}},{"arcs":[[125,126,127,128,129,130]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[131,132,-32,133,134,135]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[136,137,138,-126,-131,139,140]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[141,142,-18,-96,143,144,145]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[146,147,148,-115,149,150,151]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[152,153,-137,-141,154,155,156]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[157,-30,-36,-57,-61,158,159]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[-34,-112,160,-113,-58]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[161,-3,162,163,-127,-139,164]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[-129,165,166,167,168,-78,169]],"type":"Polygon","properties":{"COUNTYFP":"187"}},{"arcs":[[170,171,172,-85,-89,173]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[174,175,-147,-152,-98,176]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[177,178,179,180,181,182,183]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[184,185,186,187,-64,188]],"type":"Polygon","properties":{"COUNTYFP":"191"}},{"arcs":[[189,190,191,-124,192,-81,193,194]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-49,195,-163,-2,-38,196]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[197,-4,-162,-165,-138,-154,198]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[-100,-99,-151,199,-118,-7,-13]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-174,-88,200,-158,-160,201,-171]],"type":"Polygon","properties":{"COUNTYFP":"193"}},{"arcs":[[-142,-146,202,203,204,205,-178,-184,206]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-155,207,208,209,210]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[211,-208,-140,212,213]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[214,-166,-128,-164,-196,-48,215]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-186,216,217]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-111,-119,-200,-150,-114,-161]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-62,-66,218,219,220,221]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-219,222,-209,223]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-135,-86,-28,224]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[225,226,227,-70,-73,228]],"type":"Polygon","properties":{"COUNTYFP":"179"}},{"arcs":[[229,230,231,232,-167,-215,-216,-47,233]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[234,-193,-123,235,236]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[237,238,239,240,241,242]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-242,243,244,-15,245]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[246,-220,-224,-212,-214,-236,247]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-23,-71,248,249]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-191,250,-104,-106,251]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[252,253,-229,-72,-39,-6,254]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[255,-176,256,257]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-230,-234,-51,-120,-110,258]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-232,-231,-259,-109,-33,-133,259]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[260,-225,261,-80,-79,-169,262]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[263,-223,-65,-188,264,265]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[266,267,268,269,270,-181]],"type":"Polygon","properties":{"COUNTYFP":"183"}},{"arcs":[[271,-203,-145,272,273,274]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[275,-221,-247,-248,-122,276]],"type":"Polygon","properties":{"COUNTYFP":"195"}},{"arcs":[[-194,-262,-27,-251,-190,-195]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[-74,-76,277,-102,-101,-12,-11]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[-182,-271,278,279,-239]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[280,281,282,283,284]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[285,-265,-187,286,-245,287]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-173,288,-107,-44]],"type":"Polygon","properties":{"COUNTYFP":"167"}},{"arcs":[[-37,-42,-52,-56,-68,-84,-197]],"type":"Polygon","properties":{"COUNTYFP":"181"}},{"arcs":[[-206,289,290,291,-179]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[-148,-256,-258,292,-116,-149]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[-31,-201,-87,-134]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-272,-275,293,-290,-205,-204]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[294,-268,295,296,-283,297,298]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[299,-240,300,-198,-199,-153,-157]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[-279,-270,301,-226,-254,302]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[303,-93,-16,-287,-218,304]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-282,305,306,307,-298]],"type":"Polygon","properties":{"COUNTYFP":"177"}},{"arcs":[[-235,-237,-213,-130,-170,-77,-82]],"type":"Polygon","properties":{"COUNTYFP":"197"}},{"arcs":[[-308,-227,-302,-269,-295,-299]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[-136,-261,-263,-168,-233,-260,-132]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-19,-143,-207,-183,-238,-243,-246,-14]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[-264,-266,-286,-288,308,-210]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[309,-249,-228,-307,310]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-244,-241,-300,-156,-211,-309]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-273,-144,-95,311]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[-301,-280,-303,-253,-255,-5]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[-297,312,313,-284]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-296,-267,-180,-292,314,-313]],"type":"Polygon","properties":{"COUNTYFP":"115"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/id.topo.json b/app/assets/topojson/states/id.topo.json new file mode 100755 index 00000000..d07db760 --- /dev/null +++ b/app/assets/topojson/states/id.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[6157,5177],[-39,-54],[-86,9],[-58,36],[-106,13],[-86,52],[-63,13],[-57,25],[-59,3],[-46,62],[-90,74],[-33,15],[-40,43],[-37,60],[-29,10],[-35,37],[-48,72],[-27,55],[1,30],[-41,72],[-29,19],[-76,-48],[-22,28],[-26,-8],[-78,14],[19,48],[-1,35],[25,81],[-49,112],[-6,-31],[-61,-30],[-26,-57],[-36,-7],[-64,-55],[-23,-73],[-44,-32],[-21,8],[-22,-59],[51,-22],[-18,-76],[-37,-35],[-43,-11],[-22,-41],[-4,-40],[-56,-39],[-49,21],[-62,-54],[-34,0],[-45,34],[9,57],[-54,66],[-55,19],[-82,-24],[-38,7],[-1,34],[-34,52],[-44,40],[-28,11],[-29,54],[8,46],[27,59],[-24,29]],[[3974,5936],[29,55],[44,15],[10,36],[-12,29],[61,18],[8,40],[-14,51],[20,21],[-20,42],[0,38],[20,70],[1,76],[-17,111],[19,56],[-18,64],[27,77],[36,20]],[[4168,6755],[15,44],[41,64],[58,55],[27,14],[6,30],[-60,49],[-48,51],[-8,41],[-41,32],[-29,39],[-28,-2],[-41,35],[-18,47],[-37,4],[5,63],[-13,21],[17,76],[34,-2],[54,-45],[47,5],[41,-17],[23,-27],[26,31],[30,70],[60,31],[50,50]],[[4379,7514],[61,27],[48,-32],[54,11],[2,-32],[54,-34],[21,-41],[85,-40],[36,-66],[16,-1],[90,44],[30,35],[23,60],[-3,43],[35,1],[38,-22],[38,32],[47,10],[26,3],[24,58],[39,5],[25,21],[1,30],[24,36],[84,74],[-19,26],[13,36],[41,22],[37,-1],[23,-27],[30,12],[32,-80],[40,-30],[-14,-46],[29,-9],[40,13],[30,-23],[58,-20],[17,-44],[-33,-45],[-27,-85],[51,6],[49,-19],[21,-70],[-39,-53],[16,-104],[41,-7],[24,-22],[8,-78],[-14,-57],[46,-58],[47,-45],[-19,-34],[57,-46],[34,-60],[74,-61],[-4,-36],[29,-75],[43,-38],[60,8],[12,-17],[-27,-34],[58,-38],[3,-24],[55,-9],[10,-178],[3,-30],[-35,-26],[-54,-13],[11,-36],[32,-32],[-10,-30],[28,-18],[10,-45],[43,-23],[11,-35],[61,-1],[47,-37],[26,-73],[64,31],[34,26],[55,22],[14,-18],[47,-10],[48,-46],[78,-30],[-9,-27],[59,-65],[0,-49],[33,-48],[22,-10],[4,-62],[23,-26],[-10,-38],[-49,-41],[33,-43],[48,-29],[-16,-35],[36,-22],[16,-46],[-18,-42],[33,-52],[2,-37],[89,-77],[79,-38],[35,-41],[59,-46],[51,38]],[[7242,5026],[0,-307],[-197,0],[-99,8]],[[6946,4727],[-533,-2]],[[6413,4725],[-23,56],[15,27],[-25,96],[-19,16],[-17,46],[-68,74],[-10,37],[-67,115],[-42,-15]],[[5591,3403],[17,-11],[10,-57],[14,-7]],[[5632,3328],[35,-5],[40,17],[7,25],[34,7],[43,-12],[23,-66],[3,-44],[52,-81],[31,8],[-1,-274],[447,-1],[0,-173],[580,0]],[[6926,2729],[-1,-366]],[[6925,2363],[-385,0],[-1,-553],[11,0],[0,-181],[95,0],[1,-183],[-96,0],[0,-106]],[[6550,1340],[-110,8],[-92,91],[-24,33],[-59,-28],[-99,-11]],[[6166,1433],[0,75],[0,304],[96,0],[-1,738],[-492,0]],[[5769,2550],[-484,1],[-525,-1],[-71,0]],[[4689,2550],[1,121],[-33,0],[0,145],[-58,17],[-52,-20],[-30,16],[-37,-7],[-51,9],[0,74],[13,63],[-33,0],[-1,79],[54,46],[9,50],[-74,32],[-46,60],[-23,13],[15,58],[-25,18],[-54,12],[-27,42],[-52,0],[7,49],[27,59],[1,34],[-28,20],[-15,34],[20,25],[-7,55],[23,31],[-39,24],[-4,71],[-15,45],[-63,3],[-33,-32],[-43,23],[-73,-23],[-40,8],[13,44],[-86,25],[-50,25],[-34,30],[-28,-12],[-33,21]],[[3685,3937],[27,27],[-26,30],[-13,60],[41,51]],[[3714,4105],[48,26],[34,50],[78,39],[98,0],[0,-138],[217,0],[38,-20],[53,-42],[31,-10],[37,-39],[3,-49],[32,-15],[55,3],[21,19],[-6,35],[19,58],[37,11],[18,-16],[77,-11],[28,9],[83,-45],[29,32],[80,-5],[23,-18],[-8,-37],[13,-63],[131,-88],[24,1],[34,-32],[29,-1],[7,-38],[34,-33],[35,-6],[42,-6],[28,25],[-1,30],[33,13],[48,-4],[30,-59],[19,-62],[20,-8],[46,-52],[36,-16],[11,-46],[48,2],[85,-96]],[[1898,9206],[71,-31],[65,-86],[68,-36],[84,4],[103,-27],[49,-24],[55,1],[5,23],[45,39],[-9,27],[38,66],[-4,48],[32,38],[54,27],[10,27],[40,29],[22,53],[13,58],[1283,257],[408,80]],[[4330,9779],[78,23],[131,-27],[29,37],[41,24],[108,16],[41,-16],[19,-28],[-2,-76],[-35,-46],[21,-36],[-26,-42],[-8,-94],[-78,-12],[-3,-49],[35,-38],[13,-38],[-21,-32],[0,-35],[-61,-50],[19,-47],[-6,-62],[-30,-62],[9,-47],[-71,-37],[7,-40],[24,-14],[14,-79],[-5,-61],[-49,-28],[-65,11],[-18,-41],[10,-45],[75,-25],[24,-32],[-15,-76],[-39,-20],[-23,-43],[44,-3],[10,-81],[102,-30],[15,-42],[-47,-46],[30,-52],[29,-22],[11,-39],[-25,-22],[-9,-41],[-47,21],[-52,-23],[-64,-12],[-9,-39],[-85,-113],[37,-32],[-4,-32],[32,-33],[37,-12],[14,-39],[-6,-71],[-39,-42],[-28,2],[-38,-38],[41,-52],[-32,-49],[-11,-56]],[[4168,6755],[-1419,-2],[-554,-1],[-123,-1],[17,17],[-15,34],[-86,-85],[-80,-52],[-64,11],[-35,-48],[-13,-62]],[[1796,6566],[-262,3],[30,42],[-29,90],[5,27],[-69,175],[-135,0],[-428,0]],[[908,6903],[21,18],[1,95],[90,162],[35,31],[15,63],[55,42],[-3,91],[21,17],[33,68],[66,64],[32,55],[0,27],[-31,44],[-9,27],[-66,67],[-11,22],[-1,89],[-13,27],[-81,67],[-63,13],[-55,-6],[-24,24],[-29,58],[-63,11],[-44,-20],[-32,18],[-19,65]],[[733,8142],[72,28],[33,53],[-44,96],[14,45],[47,55],[29,18]],[[884,8437],[73,-9],[23,30],[-8,51],[38,15],[72,-19],[43,-47],[41,-12],[24,79],[1,191],[60,-12],[-5,41],[38,67],[5,37],[56,20],[44,-29],[66,-4],[35,-3],[45,-37],[36,14],[55,-9],[20,-20],[77,-9],[4,48],[32,20],[30,48],[42,4],[56,-10],[55,5],[69,33],[-58,58],[-71,28],[-58,73],[-70,148]],[[1754,9227],[36,-5],[28,-32],[29,21],[51,-5]],[[3974,5936],[-165,-107],[-23,-50],[-47,-27],[-38,19],[-53,-33],[-11,36],[-33,41],[-87,34],[-73,-50],[-25,-31],[20,-32],[-46,-138],[-48,-36],[-41,0],[-21,-18],[-74,-22],[-41,-67],[41,-129],[69,-16],[19,-75],[-14,-11],[11,-98],[-32,-56],[2,-19],[-78,-102]],[[3186,4949],[-60,26],[-30,-5],[-7,-96],[-53,-30],[-25,-63],[-25,16],[-67,-51],[-79,1],[-23,-17],[-266,0],[-579,0],[-108,2],[-6,-56],[-23,-84],[13,-46],[-71,7],[-95,0]],[[1682,4553],[2,364],[99,1],[0,367],[-8,0]],[[1775,5285],[-13,86],[-31,96],[23,82],[-12,45],[12,24],[21,96],[-43,49],[11,40],[-19,11],[-36,62],[13,34],[9,144],[17,49],[40,30],[11,85],[40,-1],[29,72],[-36,52],[12,30],[38,33],[5,45],[20,25],[-38,22],[-45,8],[-7,62]],[[6413,4725],[-156,1],[0,-367],[-68,1],[2,-73],[1,-3],[2,-69],[14,-15],[1,-145],[-22,-64],[8,-22],[71,-29],[32,-43],[22,-63],[-57,15],[-49,-17],[-9,-71],[-54,-52],[-8,-19],[-46,-15],[-23,-32],[-38,-8],[-34,-30],[-43,-12],[-71,-48],[-63,-27],[-45,-48],[-87,-33],[-38,-86],[-23,-23]],[[3714,4105],[-32,24]],[[3682,4129],[39,68],[-29,14],[-2,45],[-76,19],[-25,39],[0,27],[40,58],[21,-2],[23,42],[-39,3],[-43,45],[48,45],[-11,30],[-68,18],[-27,25],[-44,-1],[-35,35],[-22,-4],[-39,26],[8,23],[-20,46],[30,20],[-18,27],[-2,53],[-16,29],[-31,-29],[-24,44],[-46,3],[-77,41],[-11,31]],[[7536,2176],[-37,-1],[-39,-20],[-29,-34],[-71,-15],[10,-33],[-24,-46]],[[7346,2027],[-47,-79],[-7,-56],[-39,-10],[-15,-41],[-129,0],[-184,0],[0,522]],[[6926,2729],[98,0],[0,174],[17,0],[0,172],[197,0],[0,37],[0,146],[95,8],[97,0],[3,175]],[[7433,3441],[95,7],[195,0]],[[7723,3448],[0,-424],[582,0],[2,0],[97,0],[0,-31],[98,0],[-1,-92],[13,0],[303,-1],[46,0],[0,-176],[384,-1],[-3,-184],[0,-368]],[[9244,2171],[-187,2],[-398,0],[0,3],[-189,0]],[[8470,2176],[-190,-1],[-744,1]],[[4689,2550],[-359,-3]],[[4330,2547],[-242,0],[-562,-1]],[[3526,2546],[0,213],[5,150],[0,493],[26,-6],[57,43],[-7,52],[4,65],[42,40],[-11,63],[-24,4],[-20,36],[20,108],[17,55],[25,12],[6,47],[19,16]],[[1952,13960],[0,-248]],[[1952,13712],[-245,0],[-288,-2],[-519,-2],[-151,1],[-1,391],[0,339],[-404,-2]],[[344,14437],[0,322],[864,1],[238,1],[506,1],[0,-802]],[[5685,1633],[4,118],[0,62],[81,0],[-1,737]],[[6166,1433],[-14,-2],[-22,11],[-103,-35],[-30,-24],[-15,-43],[-37,-61],[-23,-20],[-38,-87],[-16,-19],[-63,-31],[-39,-4],[-37,7],[-31,23],[-9,28],[-42,19],[-77,-45],[-68,31],[-37,-9],[-51,-21]],[[5414,1151],[0,87],[0,83],[0,314]],[[5414,1635],[271,-2]],[[1223,12424],[270,0]],[[1493,12424],[0,-705],[0,-298]],[[1493,11421],[-255,-2],[-165,4],[0,-30],[-70,0],[0,-61],[-173,0],[-35,30],[-19,-11],[-70,0],[0,-30],[-375,-1]],[[331,11320],[0,332],[-1,116],[-3,647],[1,193]],[[328,12608],[667,-1],[2,30],[210,0],[0,-52],[-1,-161],[17,0]],[[2832,1990],[17,-14],[96,8],[0,-168],[-20,0],[0,-175],[681,1]],[[3606,1642],[0,-399],[0,-585],[-1,-642]],[[3605,16],[-451,0],[-650,2],[-260,-1],[-190,4],[-85,-2],[-481,-1],[-74,-2],[-407,3],[-560,3],[-93,2],[0,752],[-1,411],[1,537],[-1,458],[0,611],[0,544],[0,225]],[[353,3562],[76,-18],[27,-23],[14,-54],[52,-34],[25,-40],[21,-4],[14,-4],[68,-4],[54,-43],[20,-54],[30,-41],[0,-106],[36,-32],[52,-58],[84,-75],[15,-29],[73,-35],[71,-134],[94,-18],[16,-15]],[[1195,2741],[45,-3],[84,15],[37,-25],[12,-45],[24,-21],[20,-46],[-16,-79],[49,-55],[33,-13],[59,-89],[55,-14]],[[1597,2366],[-3,-9],[50,-29],[51,-2],[24,-23],[-24,-25],[7,-46],[99,-31],[-7,-43],[49,-6],[41,-48],[66,-6],[29,-49],[32,-25],[56,-5],[29,9],[-18,39],[17,39],[58,26],[32,-40],[46,14],[22,-30],[115,-3],[-4,-46],[42,-27],[126,2],[76,29],[41,5],[30,-38],[72,-6],[49,17],[32,-19]],[[4176,1419],[61,-3],[57,-25]],[[4294,1391],[19,-13],[74,-17],[64,-8],[15,-21],[75,-45],[103,-9],[45,5],[31,-17],[38,-37],[75,-22],[81,-10],[15,-12],[80,-40],[11,-33],[37,-40],[41,-3],[95,56],[40,12],[69,-5]],[[5302,1132],[-24,-16],[-85,-9],[-4,-205],[-353,1],[-2,-183],[9,1],[-1,-709]],[[4842,12],[-304,3],[-214,-2],[-201,7],[-139,8],[-114,-1],[-265,-11]],[[3606,1642],[0,302]],[[3606,1944],[19,12],[107,-6],[9,-20],[81,-90],[4,-40],[-19,-36],[-34,-24],[-9,-50],[12,-51],[41,7],[52,-29],[36,-6],[16,-30],[-6,-47],[39,-28],[8,-72],[69,-11],[52,19],[93,-23]],[[1156,9130],[75,0],[-4,28],[38,26],[75,-18],[35,9],[54,-8],[13,38],[-12,116],[-57,53],[-12,57],[67,-3]],[[1428,9428],[81,-62],[18,-52],[183,0],[23,-23],[21,-64]],[[884,8437],[-1,390],[0,118],[32,11],[-32,103],[-18,35],[0,36],[291,0]],[[1775,5285],[-46,-9],[-53,29],[-26,-57],[-4,-35],[-34,3],[-70,-46]],[[1542,5170],[-177,0],[-198,99],[0,8],[0,252],[-121,0],[6,46],[-41,62],[-1,364],[-449,3]],[[561,6004],[6,32],[50,31],[21,36],[27,112],[-24,36],[-10,56],[20,36],[-6,44],[83,79],[23,36],[2,39],[45,39],[15,40],[23,14],[12,67],[24,66],[10,77],[26,59]],[[9171,1225],[51,42],[384,0],[49,-17],[-6,-24],[74,-24],[28,-14],[42,73],[31,-15],[21,-16],[-24,-134],[-20,-29],[21,-33],[56,2],[63,-10],[7,31],[46,-19],[35,21],[30,-3],[46,22],[27,28]],[[10132,1106],[-1,-491],[1,-587],[-414,-1],[-340,-4]],[[9378,23],[-12,145],[-132,54],[14,101],[-34,26],[-23,70],[-7,42],[21,43],[-2,37],[38,37],[41,22],[-33,30],[7,47],[-11,31],[33,20],[14,64],[-63,55],[-1,52]],[[9228,899],[27,65],[-34,84],[-11,49],[-19,18],[-20,110]],[[9199,5393],[0,-314],[-285,1],[0,-178],[-99,0],[-1,-180],[-9,-92],[-91,0],[0,-92],[-196,0],[-1,-183],[-199,1]],[[8318,4356],[-132,0],[-749,1],[-1,-182]],[[7436,4175],[-489,1],[-1,551]],[[7242,5026],[-13,66],[-29,35],[18,34],[51,46],[29,48],[66,13],[33,28],[50,-13],[41,-25],[101,9],[28,-20],[58,7],[105,-28],[18,17],[94,-54],[49,-12],[27,38],[22,58],[4,89],[57,7],[16,36],[38,26],[48,6],[45,-15],[12,-43],[62,-22],[32,17],[45,-3],[58,-40],[52,34],[61,-18],[0,38],[90,-23],[47,44],[80,2],[48,13],[46,-79],[34,-36],[27,31],[32,0],[64,36],[50,5],[19,35],[142,-20]],[[1952,13712],[0,-507],[0,-598]],[[1952,12607],[-22,39],[-41,14],[-27,44],[-44,7],[-51,-11],[-82,64],[-34,36],[-80,-20],[-78,-88],[0,-268]],[[328,12608],[2,310],[3,141],[6,377],[0,271],[5,730]],[[1493,11380],[0,41]],[[1952,12607],[30,-10],[78,-118],[29,-12],[75,-112],[29,-30],[32,13],[60,-73],[-4,-62],[37,-69],[35,12],[37,-33],[-5,-26],[86,-53],[14,-22],[-22,-84],[10,-26],[59,-39],[10,-59],[-104,-89],[0,-24],[92,-30],[-25,-24],[34,-33],[6,-33],[43,-15],[42,7],[-9,-45],[-60,-14],[-25,8],[-92,-32],[-17,-38],[61,4],[104,-54],[24,-48],[39,11],[68,-32],[4,-24],[42,-18],[34,-101],[101,-26],[16,-18],[51,4],[22,-33],[45,6],[42,-17],[58,-7],[12,-48],[29,-16],[11,-33],[-15,-35],[23,-21],[40,-4],[32,-65],[34,-3],[59,-42],[23,-47],[45,-10],[22,-70],[46,-45],[25,-4],[26,-42],[7,-65],[28,-29],[80,-19],[30,-48],[39,-34]],[[3734,10409],[-662,0],[-567,2],[-1012,1]],[[1493,10412],[0,151],[0,33]],[[1493,10596],[0,784]],[[1542,5170],[-33,-50],[-3,-69],[-23,-46],[7,-37],[-27,-55],[10,-24],[-11,-42],[11,-29],[-16,-83],[5,-57],[-14,-7],[5,-84],[-7,-34],[-153,0]],[[1293,4553],[-170,1],[-353,0],[-206,2]],[[564,4556],[3,39],[-48,43],[-76,12],[-7,96],[-91,12],[-41,-38],[-54,58],[-24,46],[-27,-5],[-29,-39],[-52,-1],[-76,62],[-1,40],[23,12],[23,50],[-11,21],[-64,57],[-12,48],[26,19],[19,46],[1,44],[-19,66],[52,43],[21,48],[34,5],[27,43],[-3,48],[35,32],[7,65],[36,55],[4,51],[26,37],[30,51],[-1,43],[30,38],[74,24],[52,39],[53,19],[1,31],[56,88]],[[9378,23],[-696,-2],[-288,-2]],[[8394,19],[0,363],[64,-1],[-1,145],[-20,16],[-25,50],[-24,-1],[-21,34]],[[8367,625],[232,0],[0,-61],[64,0],[79,0],[2,336],[32,0]],[[8776,900],[225,0],[7,31],[29,0],[9,-31],[182,-1]],[[10051,5258],[77,-26],[-1,-253],[1,-466],[0,-236],[3,-77]],[[10131,4200],[-109,-32],[-104,-61],[-41,-10],[-57,29],[-55,-20],[-15,-26],[-36,-15],[-42,12],[-9,30],[-35,18],[-72,-53]],[[9556,4072],[-63,-21],[-68,32],[-36,2],[-87,-54],[-8,-42],[-97,0],[-130,0],[0,23],[0,7],[-228,2],[0,60],[-85,0],[-143,1]],[[8611,4082],[0,91],[-294,1],[1,182]],[[9199,5393],[50,26],[103,-31],[14,-23],[58,11],[-3,29],[-42,13],[-30,90],[38,46],[11,37],[38,47],[-29,71],[39,27],[56,16],[29,-21],[27,28],[8,59],[43,-21],[18,-32],[30,13],[67,-66],[47,-78],[77,-90],[-32,-15],[20,-80],[76,-16],[1,-30],[49,-42],[33,-74],[56,-29]],[[3734,10409],[55,-30],[-18,-45],[8,-43],[-27,-34],[32,-12],[13,-59],[55,-37],[35,10],[59,-66],[35,-2],[70,-50],[-8,-49],[-29,-48],[58,-32],[21,31],[47,12],[18,34],[58,12],[65,-58],[3,-42],[-31,-26],[10,-42],[24,-3],[11,-40],[32,-11]],[[1428,9428],[0,70],[-127,-4],[-7,118],[-7,5],[-1,152]],[[1286,9769],[207,-2],[0,172],[0,473]],[[3682,4129],[-66,9],[-70,-21],[-30,34],[-71,49],[-19,40],[-3,81],[-25,73],[-28,31],[-42,-15],[17,-31],[-21,-26],[-10,-50],[-30,-54],[-29,-24],[-39,-73],[-17,-53],[-114,-34],[-28,10],[-160,-64],[-48,-8],[-60,-79],[12,-76],[-29,-50],[-51,9],[-34,-7],[-26,-27],[-20,-55],[-1,-44],[-29,-71],[-13,3],[-60,-62],[-51,-17],[-37,-37],[-61,4],[-30,-43],[-48,-47],[-45,-8],[-31,-22],[-35,16],[-53,-7],[-9,27],[-66,-36]],[[2072,3374],[-8,-11],[-204,194],[-259,243],[-30,29]],[[1571,3829],[13,0],[2,724],[96,0]],[[8708,1324],[-15,38],[-32,0],[0,82],[-36,47],[-2,45],[-144,0],[-45,-42],[-34,2],[-14,55],[-38,55],[-3,49],[-9,34],[30,41],[10,44],[-21,25],[-5,77],[-22,33],[22,22],[-9,30],[24,51],[74,13],[-11,48],[41,14],[18,23],[-17,66]],[[9244,2171],[579,2],[313,-3]],[[10136,2170],[1,-625],[-5,-439]],[[8776,900],[-15,61],[-1,92],[-15,0],[-3,74],[-32,1],[-2,196]],[[1286,9769],[-206,-1],[-48,6],[-77,-41],[-77,-80],[-22,-65],[-57,-2],[-467,-1]],[[332,9585],[0,167],[0,432],[0,634]],[[332,10818],[63,7],[55,-33],[-16,-54],[38,-43],[47,27],[48,-8],[78,-65],[21,-4],[0,-27],[105,11],[512,-2],[0,-31],[210,0]],[[1192,3079],[1,17],[65,1],[0,183],[0,184],[-65,0],[1,100],[0,1],[0,263]],[[1194,3828],[47,1],[330,0]],[[2072,3374],[1,-95],[0,-548],[-6,-180],[0,-183],[-470,-2]],[[1195,2741],[-3,338]],[[8610,3870],[1,212]],[[9556,4072],[-3,-144],[2,-489]],[[9555,3439],[-272,0],[-98,10]],[[9185,3449],[0,60],[-144,-1],[-40,25],[-40,2],[-37,35],[-30,37],[-88,34],[-26,40],[-82,48],[-33,-3],[-38,-22],[-26,11],[-1,93],[10,62]],[[1194,3828],[-327,0]],[[867,3828],[0,306],[0,17],[0,44],[229,-2],[0,61],[66,-1],[0,120],[130,-1],[1,181]],[[8367,625],[-57,48],[-41,61],[-8,29],[-112,-1],[-7,-34],[-27,-37],[-79,27],[-1,37],[62,105],[1,63],[-11,57],[-75,-13],[-5,40],[-32,0],[-31,46],[0,30],[-58,0]],[[7886,1083],[0,114],[7,23],[41,0],[2,119],[16,46],[-63,0],[0,60],[-31,0],[-1,46],[-32,0],[-1,76],[-64,0],[0,122],[-32,0],[2,245],[-33,51],[-23,49],[-70,39],[-84,-66],[-88,-9],[-7,-25],[-58,-43],[-17,17],[26,52],[-30,28]],[[733,8142],[-32,45],[-48,31],[-38,52],[-15,79],[-25,12],[-3,34],[-30,26],[-51,152],[-66,64],[38,16],[15,52],[24,25],[21,53],[-31,51],[-35,31],[12,55],[-24,75],[-34,31],[11,35],[-59,46],[-5,45],[-53,20],[-11,42],[26,30],[20,81],[-8,15],[0,245]],[[353,3562],[0,28],[0,240],[-10,47],[19,61],[61,16],[0,28]],[[423,3982],[48,0],[0,-92],[67,0],[0,-31],[33,-30],[35,0],[31,-31],[98,0],[25,15],[41,16],[66,-1]],[[3526,2546],[-1,-596],[81,-6]],[[7886,1083],[-128,0],[1,-183],[-20,0],[-235,0],[0,-184],[-83,0],[-483,-3]],[[6938,713],[-3,0],[0,367],[-2,182],[-283,3],[1,80],[-33,14],[-68,-19]],[[7723,3448],[487,0],[254,0],[136,0],[293,1],[96,0],[196,0]],[[9555,3439],[221,-1],[34,0],[29,-32],[-1,-34],[19,-72],[26,-35],[93,14],[26,-30],[66,-22],[29,10],[37,-53]],[[10134,3184],[2,-633],[0,-381]],[[423,3982],[13,31],[-6,43],[20,41],[13,61],[-27,23],[62,21],[-9,39],[15,38],[-35,45],[-27,13],[-8,77],[56,18],[47,70],[27,54]],[[332,10818],[0,238],[-1,264]],[[5302,1132],[23,16],[89,3]],[[6938,713],[0,-693]],[[6938,20],[-861,-11],[-390,-7],[-224,-2],[-144,10],[-477,2]],[[7436,4175],[1,-366],[-4,0],[0,-368]],[[8394,19],[-73,-1],[-31,9],[-314,-1],[-462,-1],[-576,-5]],[[4330,2547],[1,-364],[0,-368]],[[4331,1815],[-38,-25],[1,-399]],[[5414,1635],[-193,0],[0,91],[-484,1],[-32,31],[0,57],[-111,0],[-263,0]],[[10132,3778],[1,-219],[1,-375]],[[10131,4200],[1,-422]]],"transform":{"scale":[0.0006115330965768953,0.00047502330307546385],"translate":[-117.24267499999999,41.988552]},"objects":{"cb_2019_16_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[7,8,9,10,11,12,13,14,15,16]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[17,18,-3,19,20,21,22,23,24]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[-20,-2,25,26,27,28]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-1,-7,29,-8,-17,30,31,-26]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[32,33,-10,34,35,36,37,38]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-15,39,40,41]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[42,43,44]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[45,-13,46,47,48]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[49,50,51,52,53]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[54,55,56,57,58,59]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[60,61,62,63,-56,64,65]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[66,67,-24,68]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[-21,-29,69,70,71]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[72,73,74,75]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[76,77,78,-5,79]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-44,80,81,-50,-54,82]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[83,-51,-82,84,85,86,87]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[-71,88,89,90]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-75,91,92,93,94]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[95,96,97,98,-77,99]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-86,100,-18,-25,-68,101,102]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-27,-32,103,104,105]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[106,-38,107,108,-73,-76,-95,109]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-87,-103,110,111,112]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[113,114,-105,115,-59,116]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[117,-98,118,119,120]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-89,-70,-28,-106,-115,121,122]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-39,-107,-110,-94,123,124,-33]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-111,-102,-67,-69,-23,125]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-114,-117,-58,126,127,-122]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-60,-116,-104,-31,-16,-42,128,-65,-55]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-125,129,130,-11,-34]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-37,131,-120,132,133,-108]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-90,-123,-128,134]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[-52,-84,-88,-113,135]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-63,136,-47,-12,-131,137,138]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-35,-9,-30,-6,-79,139]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-121,-132,-36,-140,-78,-99,-118]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-130,-124,-93,140,-138]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-41,141,142,-61,-66,-129]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-14,-46,-49,143,-142,-40]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[144,-133,-119,-97,145]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-144,-48,-137,-62,-143]],"type":"Polygon","properties":{"COUNTYFP":"053"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/il.topo.json b/app/assets/topojson/states/il.topo.json new file mode 100755 index 00000000..441021f7 --- /dev/null +++ b/app/assets/topojson/states/il.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[3823,3250],[226,-8],[74,-2],[141,-3],[76,-2],[110,1],[38,0],[91,0],[130,-3]],[[4709,3233],[-4,-228],[40,-1]],[[4745,3004],[1,-40],[-11,-20],[34,-14],[4,-28],[-14,-9],[-1,-31],[9,-29],[-27,-17],[-13,-39],[-16,-16],[17,-23],[4,-12],[-18,-24],[9,-36],[-26,-50],[-2,-21],[-20,-33],[-25,-12]],[[4650,2550],[-120,0],[-49,0],[-191,4],[-33,1],[-110,2],[-108,2],[-220,4]],[[3819,2563],[2,151],[2,155],[1,154],[-1,227]],[[6874,5731],[105,3]],[[6979,5734],[114,2]],[[7093,5736],[5,-237],[2,-40],[1,-113],[2,-186]],[[7103,5160],[1,-116],[-1,-110],[-1,-43]],[[7102,4891],[-154,-1],[-58,-1],[-195,-6],[-215,1]],[[6480,4884],[-206,12],[0,153]],[[6274,5049],[-1,108],[-1,127],[5,231],[-1,211]],[[6276,5726],[78,1],[195,0],[29,0],[221,3],[75,1]],[[5840,5061],[-226,-2]],[[5614,5059],[-226,-8],[1,227],[1,227],[0,1],[1,224],[0,114]],[[5391,5844],[222,-1],[223,-2],[221,0]],[[6057,5841],[0,-114],[7,0],[212,-1]],[[6274,5049],[-215,6],[-1,0],[-218,6]],[[4893,13480],[94,1],[136,2]],[[5123,13483],[2,-227],[-6,0],[0,-224]],[[5119,13032],[1,-227]],[[5120,12805],[-223,-3],[-1,0],[-228,-3],[-228,-3],[-1,-1],[-115,1],[-39,0],[1,38],[-76,-1],[-7,0],[-20,-23],[-6,-21],[-33,22],[19,16],[-1,14],[-84,16],[-23,-6],[-7,-18],[-68,0]],[[3980,12833],[-41,1],[-189,-3]],[[3750,12831],[1,74],[-112,1]],[[3639,12906],[-2,17],[2,228],[0,1],[-1,226],[-5,227]],[[3633,13605],[116,4],[117,1],[117,-1],[115,1],[117,2]],[[4215,13612],[117,2],[114,1],[213,3],[1,-63],[-1,-77],[234,2]],[[6080,9148],[0,114],[0,113],[0,114]],[[6080,9489],[223,0],[73,1],[151,2],[-3,147],[-2,0],[-5,227],[-4,172],[-1,55],[-6,227],[-4,151]],[[6502,10471],[230,8]],[[6732,10479],[2,-152],[2,-76],[3,-153],[4,-153],[1,-76],[2,-57],[5,-168],[3,-57],[5,-207],[1,-228],[153,2],[76,1],[19,-8],[115,0]],[[7123,9147],[6,-225]],[[7129,8922],[-115,0],[-24,3],[-77,0],[-152,0],[-232,-2],[-226,-3],[-224,1]],[[6079,8921],[1,227]],[[3159,14403],[349,-1],[166,-1],[186,-6],[103,-2],[241,-4]],[[4204,14389],[4,-138]],[[4208,14251],[3,-188],[1,-112],[0,-113],[3,-226]],[[3633,13605],[-116,-3],[-227,0],[-1,-3],[-117,0]],[[3172,13599],[-2,227],[1,0],[-7,227],[1,0],[-5,229],[-1,121]],[[1889,8607],[-226,1],[-170,6],[-59,0],[-233,9]],[[1201,8623],[3,225]],[[1204,8848],[2,239],[2,229],[4,230]],[[1212,9546],[228,-9]],[[1440,9537],[232,-11],[225,-3],[228,-7]],[[2125,9516],[-1,-113],[-1,-115],[-2,-229],[-1,-228],[-4,-229]],[[2116,8602],[-226,5],[-1,0]],[[5120,12805],[0,-227],[0,-227],[2,0],[3,-231]],[[5125,12120],[-225,-4],[-229,5],[1,-113]],[[4672,12008],[-220,-1],[-17,0],[-218,0],[-12,0],[-222,0],[-7,0],[-224,0],[-6,0]],[[3746,12007],[-2,225],[2,226],[1,55],[1,167],[2,151]],[[5123,13483],[234,3],[233,0]],[[5590,13486],[232,1]],[[5822,13487],[1,-227],[-27,0],[1,-221],[0,-228],[-2,-227]],[[5795,12584],[1,-227]],[[5796,12357],[-3,0],[2,-229]],[[5795,12128],[-96,-1],[-123,-1],[-211,2],[-240,-8]],[[6975,7569],[-75,1],[-150,1],[-188,-2],[-38,0],[-225,0]],[[6299,7569],[-225,-1]],[[6074,7568],[-1,229],[-1,229],[0,227],[0,75],[-1,136],[6,0],[1,153]],[[6078,8617],[0,75],[1,229]],[[7129,8922],[1,-74],[4,-150],[1,-113],[1,-115],[-26,0],[1,-142],[4,-227],[0,-19],[1,-228],[1,-56],[1,-228]],[[7118,7570],[-143,-1]],[[5831,9854],[-229,-3],[-229,-3],[-229,-5]],[[5144,9843],[-3,227],[-1,227]],[[5140,10297],[1,228],[0,236],[164,0],[64,1],[8,0],[221,2],[5,0],[224,3]],[[5827,10767],[3,0],[227,1]],[[6057,10768],[214,7],[15,1],[114,4],[94,2]],[[6494,10782],[6,-236],[2,-75]],[[6080,9489],[-229,-2],[-2,141],[-14,0],[-4,226]],[[3580,8714],[223,2]],[[3803,8716],[3,-227],[1,-38],[-5,0],[3,-215],[0,-34]],[[3805,8202],[-37,42],[-17,28],[-18,14],[-17,-3],[-45,18],[-22,-13],[-13,-23],[-21,-12],[-39,-1],[-21,2],[-28,-33],[-25,-8],[-33,9],[-47,-17],[-25,3],[-36,-5],[-8,7],[-10,-3],[-36,14],[-25,-5],[-12,23],[-30,-6],[-28,-15],[-8,14],[-25,-1],[-25,16],[-19,-7],[-19,-16],[-30,24],[-23,-12],[-27,-36],[5,-26],[-19,-8]],[[3022,8166],[-14,-13],[-31,-4],[-50,18],[-15,-15],[-25,-7],[-33,-35],[-3,-19],[-27,-7],[-37,10],[-27,-12],[-16,-37],[-31,14],[-24,-17],[-41,6],[-18,-9],[-5,-16],[-37,14],[-13,-13],[-32,11],[-36,-3],[-31,10],[-8,-17],[-31,11],[-3,26],[-29,24],[3,39],[-19,29],[-3,30],[-45,18],[-26,-10],[-9,14]],[[2306,8206],[15,6],[18,24],[30,11],[25,-1],[33,17],[29,10],[22,12],[22,1],[44,-11],[38,0],[27,26],[0,35],[6,25]],[[2615,8361],[9,19],[28,13],[20,39],[26,23],[40,7],[21,12],[15,19],[10,29],[15,40],[21,15],[21,27],[34,50],[1,27],[7,33],[23,22],[7,32],[-6,19],[14,45],[26,34],[22,6],[53,28],[23,5],[16,31],[54,53],[47,28]],[[3162,9017],[117,0],[75,-4],[222,4],[1,-114],[3,-189]],[[528,9544],[58,0],[41,-6],[25,5]],[[652,9543],[97,-1],[228,-7],[216,7],[19,4]],[[1201,8623],[-4,-238]],[[1197,8385],[-230,4],[-235,3],[-226,4]],[[506,8396],[-236,5],[-254,2]],[[16,8403],[-5,25],[6,39],[-4,31],[32,60],[-5,49],[14,40],[28,62],[10,41],[9,24],[35,54],[45,33],[18,17],[49,7],[25,18],[7,24],[-3,43],[-14,46],[2,43],[12,31],[11,28],[9,51],[-6,35],[-30,54],[-38,22],[-10,15],[9,44],[43,39],[30,54],[32,37],[84,44],[83,19],[34,12]],[[2353,3709],[18,16],[50,60],[23,48],[12,76],[31,125]],[[2487,4034],[89,-92],[37,-38]],[[2613,3904],[8,-8],[4,-4],[98,-103],[0,-1],[0,-37],[33,-38],[4,-1],[144,-152],[36,-39],[0,-38],[74,-1],[29,0],[117,-1],[26,-1],[17,-29],[6,-26],[-5,-19],[-30,17],[-13,-33],[22,-37],[-4,-22],[31,-40],[3,-37]],[[3213,3254],[-3,0],[-131,2],[-139,4]],[[2940,3260],[0,-184],[1,-44],[-219,-80],[-118,-46]],[[2604,2906],[-27,19],[-49,47],[-25,51],[-38,66],[-32,34],[-19,12],[-43,17],[-24,21],[-39,63],[-20,58],[-20,119],[4,58],[-1,50],[8,44],[24,52],[13,45],[37,47]],[[6470,2441],[217,-2],[37,0],[0,22],[44,-26],[41,-37]],[[6809,2398],[29,-33],[20,-55],[18,-24],[52,-18],[15,-24],[-14,-22],[-22,-7],[-28,2],[-37,21],[-18,-3],[-13,-19],[4,-14],[27,-31],[34,-9],[43,22],[19,-15],[-15,-31],[-9,-42],[-19,-57],[-28,-40],[-63,-40],[-12,-13],[-32,-15],[-15,-14],[-25,-47],[-15,-17],[-26,-47],[-4,-18],[4,-46],[11,-44],[21,-50],[5,-45],[13,-32]],[[6729,1571],[-39,-1],[-10,10],[-20,39],[-24,17],[-167,0],[-222,1]],[[6247,1637],[3,231],[1,87],[-1,142],[-1,228],[0,114]],[[6249,2439],[0,2]],[[6249,2441],[45,1],[176,-1]],[[3167,5278],[-9,0],[-214,0],[-15,0],[-64,-1],[-143,2]],[[2722,5279],[0,228],[-1,228],[-4,228]],[[2717,5963],[1,0],[-3,219],[-3,0],[-3,228],[-3,225]],[[2706,6635],[90,1],[56,1],[83,1],[225,2]],[[3160,6640],[224,2],[222,1]],[[3606,6643],[2,-114],[1,-114],[2,-228],[-9,0],[3,-215],[4,-234],[2,-229],[0,-1],[1,-115],[1,-115]],[[3613,5278],[-19,0],[-199,-1],[-10,0],[-218,1]],[[4279,6189],[1,0],[223,-1],[222,1]],[[4725,6189],[1,-341]],[[4726,5848],[-221,-1],[-1,-114],[0,-56],[0,-171],[1,-152]],[[4505,5354],[-222,-1],[-222,0],[-225,2],[0,-75],[-105,-1]],[[3731,5279],[-118,-1]],[[3606,6643],[168,2],[167,1]],[[3941,6646],[3,-229],[2,-228],[113,0],[220,0]],[[7932,8743],[-1,-151],[-4,-323],[-1,-233],[-1,-267],[-1,-190]],[[7924,7579],[-89,-2],[40,-35],[-119,-1],[5,34],[-78,-2],[-76,0],[-147,0],[-75,0],[-267,-3]],[[7123,9147],[113,2],[229,4],[221,0],[251,8]],[[7937,9161],[-3,-267],[-2,-151]],[[7052,3012],[-8,-46],[-16,-8],[-30,3],[-30,-12],[-7,-17],[11,-32],[13,-2],[88,39],[8,-33],[-21,-50],[-23,-19],[-45,-22],[-63,1],[-19,-14],[1,-21],[15,-16],[33,7],[18,-19],[-16,-9],[-18,-44],[26,-78],[0,-28],[-16,-19],[-32,-6],[1,-37],[12,-33],[-22,-15],[-27,24],[-25,-8],[-1,-20],[32,-18],[63,-7],[14,-47],[-14,-18],[-18,12],[-52,-4],[-32,12],[-29,26],[-24,-11],[10,-25]],[[6249,2441],[1,339],[3,225],[3,225],[1,114]],[[6257,3344],[218,3],[0,1],[219,-2]],[[6694,3346],[184,-1],[61,-1],[0,11],[74,0]],[[7013,3355],[6,-7]],[[7019,3348],[16,-43],[-11,-31],[0,-34],[2,-17],[28,-45],[22,-20],[37,-24],[13,-27],[19,-6],[3,29],[14,0],[10,-17],[-9,-23],[-26,-18],[3,-22],[-17,-8],[-20,-33],[-21,16],[-19,-1],[-11,-12]],[[7653,11257],[-224,-2],[-6,0],[-224,-4],[-6,0],[-226,-5],[4,-219],[0,-7],[-233,-4],[-115,-4],[-115,-3]],[[6508,11009],[-5,227],[-2,113],[-3,114],[-6,226],[0,1]],[[6492,11690],[-6,226],[-8,224],[-4,231]],[[6474,12371],[225,3],[235,8],[3,-114]],[[6937,12268],[2,-114],[231,7],[5,-227],[232,4],[5,-51],[0,-179],[6,0],[225,-1],[6,0],[290,2]],[[7939,11709],[-1,-221],[-1,-227]],[[7937,11261],[-275,-4],[-9,0]],[[3373,4386],[223,-2]],[[3596,4384],[2,-227],[2,-228],[1,-168]],[[3601,3761],[0,-60],[1,-227]],[[3602,3474],[1,-224]],[[3603,3250],[-113,1],[-111,0],[-166,3]],[[2487,4034],[30,63],[48,77],[44,37],[21,27],[11,23],[15,55],[3,35],[-8,46]],[[2651,4397],[68,0],[2,0],[216,-5],[1,0],[216,-1],[1,0],[218,-5]],[[6058,6407],[0,37]],[[6058,6444],[-1,191],[-2,228],[-1,114]],[[6054,6977],[227,0]],[[6281,6977],[222,1],[66,0],[147,0],[78,0],[72,1],[3,75],[73,1],[0,8],[119,3]],[[7061,7066],[3,-191],[2,-75],[3,-153],[5,-114]],[[7074,6533],[-107,-1],[1,-113],[2,-152]],[[6970,6267],[-28,-3],[-303,-7],[-1,0],[-139,0],[-148,-2],[-73,0],[-221,1]],[[6057,6256],[1,151]],[[7623,5729],[-111,1],[-12,17],[-73,-1],[-126,-4],[-98,-3],[-110,-3]],[[6979,5734],[-4,228],[-1,39],[-3,190],[-1,76]],[[7074,6533],[112,2],[53,2],[168,7],[56,2],[154,3],[6,-27],[73,0],[231,1]],[[7927,6523],[0,-336],[-29,10],[-7,-14],[-22,-20],[-27,7],[-30,-20],[-33,-59],[-29,-11],[11,-16],[19,6],[11,-25],[-18,-18],[3,-27],[12,-10],[-5,-34],[21,-31],[25,20],[15,-22],[-12,-8],[9,-66],[-5,-19],[-19,-29],[-32,-22],[-16,-19],[-15,6],[-2,-37],[-34,-9],[-10,-22],[24,-7]],[[7732,5691],[-55,1],[0,37],[-54,0]],[[2413,6862],[1,75],[-75,1],[1,75],[-70,0],[1,76],[1,57],[1,95],[-223,1],[1,93],[-8,0],[-62,0],[-161,2]],[[1820,7337],[44,75],[22,31],[-11,21]],[[1875,7464],[-22,41],[-8,44],[6,13]],[[1851,7562],[307,-2],[75,-2],[153,-2],[76,-1],[111,-2],[112,0],[76,-1],[150,0],[112,0]],[[3023,7552],[2,-227],[16,0],[1,-119],[1,-56],[16,-57],[11,-38],[12,-38],[44,-151],[16,-56],[22,-75],[-4,-95]],[[2706,6635],[-74,0],[-146,-1],[-75,1]],[[2411,6635],[2,227]],[[4226,10282],[228,7],[230,6],[224,-3]],[[4908,10292],[232,5]],[[5144,9843],[-115,-2],[5,-228],[-121,-2],[2,-95],[-75,-2],[-39,-5],[1,-33],[-66,-2],[1,-38],[-43,0],[0,-1],[-227,-6]],[[4467,9429],[-1,57],[-114,-1],[-3,117],[-2,0],[-1,228],[-115,0],[-229,-2],[-104,0]],[[3898,9828],[-2,34],[1,11],[-16,50],[6,35],[16,34],[15,12],[34,53],[6,34],[0,2],[50,66],[23,64],[26,35],[6,22]],[[4063,10280],[163,2]],[[5589,14167],[0,-227],[1,-227],[0,-227]],[[5123,13483],[-2,225]],[[5121,13708],[1,229],[-1,227],[1,211]],[[5122,14375],[240,-6],[109,-2],[115,4]],[[5586,14371],[3,-204]],[[5604,4370],[3,229],[3,230]],[[5610,4829],[4,230]],[[6480,4884],[1,-228],[0,-75],[-51,2],[-5,-29],[7,-11],[-8,-37],[3,-35],[10,-42],[15,-23],[-15,-27],[-35,-48],[29,-25],[-6,-15],[66,-36],[-2,-16]],[[6489,4239],[-7,-1],[-213,8],[0,1],[-111,1],[-100,4],[-227,7]],[[5831,4259],[-227,-3]],[[5604,4256],[0,113],[0,1]],[[5822,13487],[231,0],[1,0],[235,1]],[[6289,13488],[212,-1],[19,1]],[[6520,13488],[0,-227],[-51,-1],[2,-208]],[[6471,13052],[1,-227],[0,-95],[-1,-131],[0,-1],[2,-227]],[[6473,12371],[-218,-6],[-8,0],[-227,-4],[-1,0],[-223,-4]],[[7102,4891],[75,0]],[[7177,4891],[-1,-230],[0,-39],[-1,-230],[-2,-217],[-4,-12]],[[7169,4163],[-84,0]],[[7085,4163],[-98,0],[-40,1],[-66,-2],[-181,-2]],[[6700,4160],[-1,75],[-148,2],[-62,2]],[[4728,4824],[214,-4],[219,4],[225,0]],[[5386,4824],[224,5]],[[5604,4256],[-1,-114]],[[5603,4142],[0,-227]],[[5603,3915],[-222,2],[-1,0],[-222,3],[-221,-8],[-221,0]],[[4716,3912],[1,76]],[[4717,3988],[3,151],[0,1],[5,226],[0,1],[3,228]],[[4728,4595],[0,229]],[[3823,3250],[-128,0],[-92,0]],[[3601,3761],[24,10],[-9,13],[37,6],[20,21],[8,27],[41,-2],[32,16],[1,18],[40,45],[27,3],[28,11],[22,-12],[35,5],[23,-5],[21,14],[17,-17],[82,-9],[1,1],[45,29],[21,19],[38,17],[14,-4],[14,-17],[22,14],[31,1],[29,13],[23,25],[1,23],[15,3],[15,-21],[41,6],[24,-2],[29,-14],[17,6],[27,-11],[21,14],[18,-3],[0,-2],[221,-14]],[[4716,3912],[-2,-225]],[[4714,3687],[0,-76],[-2,-150]],[[4712,3461],[-3,-228]],[[4672,12008],[0,-114],[0,-119],[1,-108],[1,-119],[1,-108],[2,-148]],[[4677,11292],[-33,-3],[-45,8],[-43,3],[-69,24],[-18,-1],[-18,-14],[-8,-8],[-46,-17],[-61,-16],[-14,-21],[10,-24],[-5,-24],[-17,-40],[-17,-68],[-74,1],[-144,2],[0,-223]],[[4075,10871],[-116,1],[-227,0]],[[3732,10872],[0,222],[-205,0],[-24,0],[-207,1]],[[3296,11095],[2,225]],[[3298,11320],[-1,229],[0,1],[0,228],[-4,56],[-7,171]],[[3286,12005],[230,1],[4,0],[226,1]],[[6054,7090],[0,-113]],[[6058,6444],[-227,2],[0,76],[-38,0],[0,38],[-38,1],[0,38],[-37,1],[-1,37],[-112,0],[-38,0],[-1,152],[-182,2],[-1,38],[-3,152]],[[5380,6981],[-1,74],[-3,153],[109,-2],[-1,136],[26,0]],[[5510,7342],[88,1],[175,-1],[52,0],[227,-1]],[[6052,7341],[1,-98],[1,-153]],[[4029,8721],[223,5],[226,4]],[[4478,8730],[2,-116],[227,4],[0,-1]],[[4707,8617],[2,-151],[4,-228],[2,-228]],[[4715,8010],[2,-227],[1,-114],[-148,-2]],[[4570,7667],[-74,0],[-93,0],[-131,2],[-75,1],[0,38],[-156,1],[-1,114],[-188,-2]],[[3852,7821],[-2,170],[1,19],[-1,114],[-43,-1],[-2,79]],[[3803,8716],[226,5]],[[4075,10871],[115,0],[158,-1],[-8,-39],[-5,-41],[-13,-15],[-32,-20],[158,0],[232,1]],[[4680,10756],[229,2],[0,-238],[-1,-228]],[[4063,10280],[16,13],[20,35],[-2,18],[14,33],[1,36],[-153,0],[-227,2]],[[3732,10417],[0,228],[0,227]],[[7924,7579],[0,-226],[0,-228],[2,-189],[0,-150],[1,-263]],[[7061,7066],[-1,114],[-2,115],[-1,48],[63,0],[-2,227]],[[6078,8617],[-41,-2],[-187,1]],[[5850,8616],[-227,1]],[[5623,8617],[-230,2]],[[5393,8619],[-230,-1],[1,1],[-116,1],[-114,-1]],[[4934,8619],[-227,-2]],[[4478,8730],[-2,190],[-3,226],[-5,227],[-1,56]],[[5941,569],[77,-77],[0,-238]],[[6018,254],[-28,-7],[-34,1],[-41,11],[-62,26],[-4,21],[-19,21],[-53,44],[-39,21],[-28,5],[-62,31],[-52,20],[-23,-3],[-26,2],[-14,7],[-8,4],[-9,8],[-11,8],[-56,42],[-21,26],[-38,26],[-32,10],[-95,45],[-116,44]],[[5147,667],[-1,56],[0,34],[-1,108]],[[5145,865],[39,28],[23,10],[3,33],[-18,15],[60,0],[73,0],[37,-1],[182,0],[35,4]],[[5579,954],[73,-74],[62,-69],[26,-29],[55,-60],[146,-153]],[[2109,7912],[-56,-19],[-58,-26],[-6,-15]],[[1989,7852],[-26,-1],[-29,-18],[-17,7],[-35,1],[-35,-13],[-43,7],[10,57],[-34,31],[15,6],[11,19],[-20,6],[-29,-9],[-9,15],[-36,9],[0,20],[-17,15],[-27,-1],[-6,17],[3,32],[10,32],[-20,5],[-25,1],[-23,14],[-7,18],[19,7],[8,24],[-200,6],[-84,-3],[-149,-1]],[[1194,8155],[3,230]],[[2116,8602],[-3,-228]],[[2113,8374],[227,-2],[234,-9],[41,-2]],[[2306,8206],[-20,2],[-19,-10],[-22,-52],[-7,-10],[-9,-14],[4,-20],[-9,-19],[-65,-43],[0,-37],[-10,-56],[-7,-13],[-33,-22]],[[6028,2437],[221,2]],[[6247,1637],[-74,0]],[[6173,1637],[-147,1],[-224,-1],[-218,-1]],[[5584,1636],[0,1]],[[5584,1637],[1,131],[1,97],[0,114],[1,120],[0,111],[0,114]],[[5587,2324],[0,113]],[[5587,2437],[220,1],[1,-2],[123,0],[97,1]],[[1989,7852],[7,-42],[-7,-20],[-36,-47],[-9,-51],[-3,-22],[-32,-44],[-35,-18],[-23,-46]],[[1875,7464],[-223,3],[-231,2],[-189,1],[-45,10]],[[1187,7480],[0,149],[4,72]],[[1191,7701],[0,229],[3,225]],[[963,7251],[-1,0],[-235,0],[-235,1],[-198,3]],[[294,7255],[1,54],[6,15],[-12,40],[-20,28],[-103,69],[-15,26],[-21,79],[8,40],[45,56],[3,33],[-9,21],[-26,28],[-20,34],[-25,53],[-8,5],[-11,35],[-38,76],[-13,31],[11,55],[-12,35],[-21,96],[-8,50],[-4,52],[7,27],[-9,61],[16,49]],[[1187,7480],[2,-228],[0,-1],[-226,0]],[[5160,6979],[220,2]],[[6057,6256],[-1,-76],[0,-189],[1,-150]],[[5391,5844],[-106,0],[-117,1],[-216,-3],[-226,4],[0,2]],[[4725,6189],[228,-8],[1,232],[-1,77],[3,152],[-1,114],[-1,114],[-2,113]],[[4952,6983],[208,-4]],[[4680,10756],[0,229],[-2,229],[-1,78]],[[5795,12128],[5,-168],[2,-59],[6,-227]],[[5808,11674],[5,-227],[7,-172],[2,-55],[4,-227],[1,-226]],[[1454,11342],[62,-1],[166,-1],[235,-4],[232,0]],[[2149,11336],[-5,-230],[-3,-227]],[[2141,10879],[-4,-227]],[[2137,10652],[-221,0],[-233,9],[-234,3]],[[1449,10664],[-230,3],[-96,1]],[[1123,10668],[5,68],[-39,60],[-10,28],[-43,73],[-30,20],[-39,-7],[-28,7],[-49,87],[-31,39],[-56,58],[-8,23],[-1,12],[26,44],[18,52],[29,38],[9,31],[2,51]],[[878,11352],[345,-3],[231,-7]],[[2651,4397],[-10,38],[-17,33],[-28,40],[-6,23],[4,37],[10,16],[43,38],[34,68],[39,27],[47,39],[11,20],[15,72],[2,26],[-8,15],[-55,33],[-51,37],[-41,23],[-21,7],[-23,24],[-28,27],[-54,31],[-51,11]],[[2463,5082],[4,197],[31,0],[203,0],[21,0]],[[3731,5279],[2,-172],[2,-38],[-2,0],[2,-115],[75,1],[0,-115],[4,-227]],[[3814,4613],[4,-227],[-222,-2]],[[6699,3834],[1,60],[0,78],[0,188]],[[7085,4163],[-9,-24],[17,-36],[24,-37],[-33,-47],[13,-26],[-17,-20],[8,-40],[21,-55],[-4,-39],[-26,-65],[-26,-31],[0,-17],[-13,-60],[7,-35],[12,-32],[19,-14],[6,-33],[-4,-11],[5,-59],[-3,-43],[-43,-40],[-27,-17],[1,-27]],[[6694,3346],[2,98],[2,240],[1,112],[0,38]],[[3022,8004],[1,-93],[0,-132],[0,-151]],[[3023,7628],[0,-76]],[[3022,8166],[1,-96],[-1,-66]],[[3520,12907],[119,-1]],[[3286,12005],[-226,-1],[-5,0],[-215,1],[-197,1]],[[2643,12006],[8,17],[31,8],[2,23],[-2,18],[10,21],[-2,69],[-24,27],[-31,22],[-38,16],[-15,5],[-5,0],[-35,21],[19,10],[0,24],[-21,18],[-4,38],[10,28],[-9,6],[4,35],[-22,16],[2,21],[20,20],[-16,13],[5,40]],[[2530,12522],[40,27],[27,11],[41,15],[15,23],[-7,55],[4,27],[18,36],[6,49],[33,79],[3,58]],[[2710,12902],[115,2],[230,4],[1,0],[233,-2],[231,1]],[[5601,3686],[2,229]],[[6257,3344],[-222,0],[-220,2],[-36,0],[-183,1]],[[5596,3347],[2,109],[2,191],[1,39]],[[4505,5354],[0,-75],[-14,0],[1,-213]],[[4492,5066],[3,-228],[2,-210],[0,-18]],[[4497,4610],[-234,-2],[-219,-2],[-230,7]],[[1820,7337],[-16,-36],[-1,-32],[-16,-33],[-30,-63],[-21,-25],[-9,-34],[0,-22],[24,-60],[16,-22],[35,-70],[1,-23],[14,-51],[16,-32],[19,-58],[12,-39],[9,-53],[-17,-31],[-1,-14]],[[1855,6639],[-2,-30],[-22,-67],[-34,-71],[-8,-58],[-5,-29],[6,-74]],[[1790,6310],[-146,2],[-150,8],[-76,1],[-214,2],[-16,-2],[-41,0]],[[1147,6321],[-23,20],[-48,18],[-10,11],[-52,24],[-52,40],[-17,14],[-42,53],[-6,14],[-4,53],[-22,22],[-49,93],[-98,19],[-9,6],[-29,43],[-12,74],[-23,31],[-61,26],[-25,15],[-24,24],[-15,28],[-34,39],[-20,25],[-53,37],[-6,11],[-52,43],[-42,38],[-34,45],[0,33],[9,35]],[[2125,9516],[3,227]],[[2128,9743],[228,-2],[3,0],[74,0],[151,-1],[228,-1],[228,-2]],[[3040,9737],[-6,-226],[230,-2],[0,-1],[-2,-114],[5,0],[0,-111],[-1,-65]],[[3266,9218],[-19,-20],[-14,-84],[-30,-40],[-3,-16],[-17,-29],[-21,-12]],[[3732,10417],[-231,0],[-229,3],[-231,-1]],[[3041,10419],[1,227],[1,228]],[[3043,10874],[231,0],[1,0],[1,221],[20,0]],[[1456,11661],[63,-6],[25,1],[72,12],[50,16],[20,0],[32,11],[35,36],[28,16],[25,25],[7,30],[14,13],[56,17],[22,17],[38,4],[73,-20],[52,4],[26,10],[35,38],[22,30],[21,12],[18,29],[30,18],[67,19],[25,13],[17,9],[7,28],[-7,125],[15,62],[2,23],[40,40],[3,38],[-9,23],[5,42],[24,41],[49,45],[30,12],[42,28]],[[2643,12006],[13,-29],[-12,-45],[-15,-34],[-22,-10]],[[2607,11888],[-36,-8],[-8,-16],[-31,-13],[-126,-19],[-27,-23],[-3,2],[-26,11],[-39,-13],[-24,-16],[-10,-16],[-8,-33],[-14,-19],[-14,0],[-40,-35],[-27,-14],[-22,-2],[-1,-111],[-2,-227]],[[878,11352],[14,93],[27,43],[7,66],[8,13],[32,20],[44,7],[41,20],[20,0],[50,-25],[40,-8],[60,27],[84,55],[40,8],[60,-3],[51,-7]],[[2710,12902],[-24,42],[4,42],[31,52],[12,57],[-17,48],[-5,24],[-26,30],[-2,53],[-6,34],[10,31],[4,57],[-3,19],[-16,22],[-33,0],[-28,15],[-16,56],[-81,49],[-37,8],[-26,11],[-33,23],[-37,16]],[[2381,13591],[204,5],[236,4],[235,-1],[116,0]],[[6732,10479],[229,6],[225,8],[180,5],[83,2],[193,5],[38,1],[78,1],[179,5]],[[7937,10512],[1,-189],[0,-189],[0,-227],[0,-228],[0,-291],[-1,-227]],[[4570,7667],[0,-269]],[[4570,7398],[-33,-1],[-3,15],[-21,18],[-18,-29],[-56,-54],[-27,-12],[-5,-13],[-2,-15],[-24,-19],[-19,1],[-14,-21],[-33,10],[-17,12],[-11,-12],[-6,-30],[-11,3],[-32,-8],[-25,-31],[-25,4],[-19,20],[2,21],[-14,7],[0,-165],[0,-39],[-107,1],[0,-37],[1,-75],[-113,0],[0,-75],[3,-228]],[[3023,7628],[223,-1],[113,2],[113,0],[0,31],[0,7],[134,0],[-1,56],[9,0],[0,58],[-1,38],[83,1],[114,1],[42,0]],[[4715,8010],[230,3],[1,0],[220,8],[78,2],[151,4],[116,0]],[[5511,8027],[-1,-228],[1,-76],[-1,-57],[-1,-152],[1,-172]],[[4952,6983],[0,1],[-226,2],[-1,114],[-1,76],[-3,190],[-38,9],[-38,28],[-65,0],[-10,-5]],[[3722,2364],[97,199]],[[4650,2550],[53,0],[-1,-230]],[[4702,2320],[-1,-229],[-2,-227],[-2,-225]],[[4697,1639],[-128,-4],[-100,1],[-4,0],[-113,2],[-176,0],[-75,0],[8,-22],[-8,-29],[-24,-41],[-18,-6],[-18,14],[-33,6],[-5,21],[-14,2],[-24,-17]],[[3965,1566],[10,32],[45,-11],[33,15],[-2,34],[-15,21],[-41,47],[-22,42],[3,11],[0,58],[8,46],[-9,19],[-18,15],[-82,22],[-33,16],[-26,51],[-9,7],[-29,18],[-4,19],[-32,-10],[-32,-1],[-32,17],[-5,19],[14,43],[2,27],[-28,44]],[[3661,2167],[-13,49],[16,9],[25,34],[4,44],[17,35],[12,26]],[[3042,9965],[-1,228],[0,226]],[[3898,9828],[9,-23],[8,-48],[-17,-45],[-74,-47],[-46,-53],[-1,-10],[11,-22],[-23,-45],[-28,-30],[-45,-57],[0,-32],[9,-24],[-8,-32],[-41,-39],[-26,21],[-18,2],[-37,-15],[-49,-13],[-23,2],[-30,4],[-83,-31],[-41,-27],[-79,-46]],[[3040,9737],[2,228]],[[5808,11674],[227,2],[232,7],[85,2],[140,5]],[[6508,11009],[7,-226],[-21,-1]],[[2137,10652],[-2,-228],[0,-75],[0,-1],[-1,-19],[0,-45],[-1,-88],[-2,-227],[-3,-226]],[[1440,9537],[1,217],[1,0],[1,228],[2,228],[2,226]],[[1447,10436],[2,228]],[[2381,13591],[-22,19],[-57,12],[-37,24],[-31,28],[-19,36],[-38,39],[-23,62],[1,16],[13,23],[7,32],[-1,27],[10,18],[-29,36],[-26,48],[-18,11],[-30,38],[-19,26],[-20,3],[-38,35],[-83,38],[-20,20],[-4,31],[-21,23],[-29,10],[-42,16],[-36,19],[-44,34],[-15,17],[-4,34],[26,44],[115,-2],[198,0],[168,-2],[197,1],[218,2],[214,0],[133,-2],[105,-4],[79,0]],[[4728,4595],[-231,15]],[[5589,2778],[-1,-226]],[[5588,2552],[-1,-115]],[[5587,2324],[-219,-1],[-221,-2],[-1,0],[-222,-1],[-222,0]],[[4745,3004],[178,0],[0,1],[218,1]],[[5141,3006],[156,3],[73,-1],[221,-3]],[[5591,3005],[-2,-227]],[[2118,6637],[149,-1],[144,-1]],[[2717,5963],[-91,0],[-17,-10],[2,-85],[-112,-1],[-75,0],[-37,0],[2,-132],[-115,0],[-226,2],[-7,0],[0,-29],[-29,-1],[-10,56],[-26,7],[-24,-1],[-8,14],[-47,-14],[-12,-19],[-29,12],[11,-46],[-20,-14],[-4,-18],[9,-27],[-32,-26],[2,-23],[-11,-21]],[[1811,5587],[-22,64],[5,65],[24,33],[17,49],[-3,57],[-10,59],[-14,18],[-9,36],[6,41],[8,20],[-2,22],[-13,30],[-8,60],[-16,82],[2,50],[14,37]],[[1855,6639],[189,-2],[74,0]],[[3043,10874],[-222,1],[-224,6],[-228,-3],[-228,1]],[[5596,3347],[-2,-115],[-3,-227]],[[6052,7341],[22,0],[0,227]],[[5850,8616],[-3,-6],[-176,-282],[-46,-75],[-1,-113],[-114,0],[1,-113]],[[7659,13147],[17,-42],[7,-47],[17,-45],[13,-14],[-3,-32],[14,-30],[21,-105],[17,-22],[-4,-64],[21,-5],[-7,-57],[18,-48],[36,-58],[19,-65],[37,-49],[27,-9],[-5,-13],[24,-11],[4,-39],[9,-24],[-9,-22],[10,-18],[-2,-166],[-1,-226],[0,-227]],[[6937,12268],[124,4],[37,22],[12,20],[41,35],[14,1],[-8,265],[-3,57],[-1,173],[0,133],[0,93],[-37,-1],[-2,0],[-182,-2],[-227,-12],[-234,-4]],[[6520,13488],[77,0]],[[6597,13488],[155,0],[233,-1],[234,-2],[117,-1],[77,0],[61,-1]],[[7474,13483],[46,-82],[50,-66],[33,-28],[26,-16],[3,-17],[16,-35],[-3,-27],[14,-65]],[[6474,12371],[-1,0]],[[2463,5082],[-67,2],[-48,24],[-25,19],[-79,41],[-41,16],[-36,3],[-52,10]],[[2115,5197],[-34,4],[-48,-7],[-36,-25],[-19,-8],[-30,12],[-17,16],[-34,46],[-25,43],[-7,28],[5,36],[-6,33],[-23,25],[-2,23],[16,22],[-6,19],[-16,43],[-22,62],[0,18]],[[6037,1035],[-3,-18],[-1,-17],[0,-3],[-8,-36],[-49,-107],[-9,-38],[18,-45],[-5,-12],[49,-55],[10,-29],[16,-25],[26,-17],[22,-26],[32,-113],[14,-20],[-20,-68],[-18,-45],[-2,-27],[-28,-65],[-35,-14],[-28,-1]],[[5579,954],[1,114],[-1,116],[2,225],[2,114],[1,113]],[[6173,1637],[-3,-229],[-2,-229]],[[6168,1179],[-48,-18],[-34,-21],[-28,-32],[-13,-24],[-8,-49]],[[7177,4891],[226,0],[70,-1],[178,6],[76,0],[112,-1],[87,2]],[[7926,4897],[12,-9],[-1,-27],[10,-31],[-12,-22],[38,-58],[25,-27],[-3,-21],[-14,-9],[13,-30],[-12,-33],[16,-20],[-19,-18],[-6,-24],[-22,-40],[1,-29],[-24,-40],[-29,-17],[-67,-13],[-36,-19],[-17,-49],[-11,-6],[-19,-21],[10,-23],[-12,-20],[3,-19],[-14,-17],[7,-23],[25,-8],[-6,-16],[-17,-4],[-24,17],[-10,-7],[1,-41],[-24,-15]],[[7688,4158],[-216,1],[-18,1],[-116,2],[-169,1]],[[652,9543],[94,60],[29,21],[23,73],[2,29],[-7,32],[-2,12],[15,67],[24,42],[9,33],[-1,34],[-10,42],[14,41],[46,45],[21,17],[23,51],[46,41],[16,30],[30,33],[59,29],[12,15],[5,29],[17,57],[-12,56],[24,70],[5,60],[2,23],[-6,61],[-7,22]],[[5584,1637],[-109,2],[-111,1],[-36,-8],[-148,-1],[-20,0],[-14,0],[-97,-2],[-128,1]],[[4921,1630],[-73,2],[-151,7]],[[4915,1089],[-1,-154]],[[4914,935],[-109,10],[-36,1],[-103,1],[-86,2],[-72,1]],[[4508,950],[-117,-3],[-35,2],[-69,-2],[-252,1]],[[4035,948],[23,9],[40,3],[37,13],[16,31],[12,63],[-1,44],[-23,77],[-11,27],[-23,33],[-40,43],[-41,72],[-17,49],[-32,59],[-9,47],[-1,48]],[[4921,1630],[-3,-232],[-2,-106],[-1,-123],[0,-80]],[[3661,2167],[-57,36],[-53,47],[-21,31],[-20,0],[-64,21],[-8,-9],[-20,21],[-8,23],[4,29],[-91,67],[-38,-22],[-37,-45],[-40,-25],[-43,2],[-28,10],[-30,22],[-43,94],[-2,20],[25,19],[6,16],[24,0],[30,19],[14,17],[-17,13],[-16,28],[-74,-19],[-36,2],[-22,18],[-48,65],[-38,22],[-12,28],[-15,6],[-32,-4],[-27,8],[-32,21],[-31,37],[0,37],[-9,19],[-55,33],[-28,-14],[-65,46]],[[7937,11261],[0,-232],[0,-228],[0,-289]],[[6205,1173],[-25,11],[-12,-5]],[[6729,1571],[23,-15],[32,-32],[35,-54],[20,-8],[18,-18],[11,-25],[2,-51],[-11,-27],[-11,-1],[-16,-32],[-36,1],[-57,-7],[-14,2],[-34,-9],[-46,-11],[-92,-15],[-67,-3],[-52,-11],[-62,-31],[-12,-13],[-29,-22],[-30,-43],[-27,-20],[-19,-1],[-12,19],[-38,29]],[[5145,865],[-26,3],[-28,-17],[-25,15],[-46,17],[-21,4],[-39,-12],[-26,-26],[-20,-6],[0,92]],[[4834,511],[-16,-27],[-12,-40],[-24,-57],[-20,-16],[-27,-25],[-24,-33],[-15,-4],[-35,-54]],[[4661,255],[-15,2],[-16,29],[-3,3],[-21,20]],[[4606,309],[-2,-1],[-62,3],[-24,28],[-20,-3],[-24,29],[1,18],[-15,17],[1,14],[12,29],[15,8],[-6,68],[-11,28],[23,20],[7,20],[-20,12],[5,16],[-3,29],[-8,15],[21,22],[13,50],[0,22],[20,29],[21,7],[13,15],[21,3],[16,23],[-1,29],[-7,55],[-32,27],[-44,0],[-8,9]],[[5147,667],[-45,-5],[-48,13],[-53,-14],[-26,-21],[-31,-13],[-28,-27],[-64,-67],[-18,-22]],[[1587,5779],[-2,59],[-10,26],[1,23],[-11,48],[-24,28],[-25,9],[-32,38],[-16,33],[-30,26],[-2,11],[-15,16],[-35,19],[-46,52],[-38,28],[-69,42],[-28,35],[-26,7],[-26,22],[-6,20]],[[2115,5197],[-43,-23],[-20,-37],[-9,-48],[-41,-61],[-19,-10],[-54,-62],[-45,-16],[-33,0],[-83,51],[-30,51],[-16,10],[-27,34],[-29,110],[-4,64],[-21,40],[-7,24],[-38,79],[-2,27],[20,22],[2,12],[37,47],[3,32],[-10,45],[-28,46],[-18,51],[-2,55],[-11,39]],[[5586,14371],[137,4],[97,0],[235,-1],[232,0],[166,0],[68,3],[76,1]],[[6597,14378],[2,-210],[-1,0],[1,-225],[0,-1],[1,-226],[-1,-1],[-1,-14],[-1,-213]],[[4204,14389],[276,-6],[210,-2],[172,-3],[89,0],[171,-3]],[[6597,14378],[168,0],[223,-3],[209,-3],[30,-1],[19,0],[6,0],[136,-2],[8,-55],[-1,-19],[-2,-29],[-4,-29],[-6,-28],[2,-45],[1,-61],[-23,-55],[-4,-20],[-18,-16],[-3,-47],[-9,-27],[3,-39],[-9,-27],[13,-83],[26,-78],[8,-30],[31,-70],[73,-128]],[[7732,5691],[-25,-1],[-19,-17],[-14,-38],[31,-19],[14,-27],[-30,-5],[-3,-25],[68,-7],[6,-22],[-11,-20],[10,-14],[30,-3],[21,-24],[35,-39],[0,-19],[-15,-21],[21,-49],[-8,-37],[-10,-17],[7,-15],[30,-11],[-33,-14],[94,-39],[24,-36],[9,-21],[-18,-26],[11,-18],[-5,-26],[-14,-4],[-4,-32],[-32,-53],[18,-26],[-20,-6],[5,-26],[-19,-16],[40,-21]],[[4661,255],[-19,-57],[2,-53],[14,-38],[14,-21],[67,-55],[-74,-31],[-31,8],[-13,17],[-13,83],[-13,21],[-23,17],[-35,28],[-41,91],[-10,-21],[-41,3],[-54,12],[-7,-31],[19,-34],[47,-23],[36,-33],[4,-20],[-17,-50],[-24,-20],[-27,9],[-50,54],[-28,18],[-62,27],[-32,24],[-13,23],[-1,25],[13,33],[6,40],[-17,45],[-61,59],[-40,68],[-6,24],[-36,70],[-11,29],[-11,59],[18,48],[-1,20],[-23,14],[-39,-6],[-48,67],[-9,22],[13,66],[33,36],[18,26]],[[7484,3891],[-4,-26],[31,-3],[17,-10],[3,-20],[-19,-13],[-10,-76],[-49,-73],[-27,-31],[-47,-17],[-33,-43],[-17,-49],[-3,-27],[5,-45],[-6,-23],[-19,-32],[-32,-4],[-13,35],[11,34],[-20,24],[-19,-18],[-15,-52],[-9,-7],[-29,-34],[-22,1],[1,26],[19,32],[-17,18],[-34,-9],[-12,-34],[-22,-16],[0,-26],[17,-16],[-24,-19],[-12,-42],[-18,1],[-6,25],[-20,24],[-11,2]],[[7688,4158],[2,-31],[-30,-17],[-7,-21],[16,-25],[12,-30],[19,-27],[-22,-22],[-31,14],[-27,-40],[-56,-31],[-41,0],[-20,-7],[-19,-30]]],"transform":{"scale":[0.0005022591897974501,0.00038432914642609275],"translate":[-91.512974,36.970298]},"objects":{"cb_2019_17_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[5,6,7,8,9,10,11,12]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[13,14,15,16,-12,17]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[18,19,20,21,22,23,24,25,26]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[27,28,29,30,31,32,33]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[34,35,36,-26,37,38]],"type":"Polygon","properties":{"COUNTYFP":"177"}},{"arcs":[[39,40,41,42,43,44,45]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-22,46,47,48,49,-23]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[-47,-21,-20,50,51,52,53,54,55]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[56,57,58,59,-33,60,61]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[62,63,64,65,66,67,-29,68]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[69,70,71,72,73,74,75]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[76,77,-42,-41,78,79,80,81]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[82,83,84,85,86,87]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[88,89,90,91,92,93]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[94,95,96,97,98,99,100]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[101,102,103,104,105,-100,106,107]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[108,109,-61,-32,110,111]],"type":"Polygon","properties":{"COUNTYFP":"183"}},{"arcs":[[112,-89,-94,113,114,115,116,117]],"type":"Polygon","properties":{"COUNTYFP":"193"}},{"arcs":[[118,119,120,121,122,123,124]],"type":"Polygon","properties":{"COUNTYFP":"197"}},{"arcs":[[125,126,127,128,129,-85,-84,130,131]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[132,133,134,135,136,137,138,139]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[140,-7,141,-138,142,143,144]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[145,146,147,148,149,-98,150,151]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[152,153,-64,154,155,156,157]],"type":"Polygon","properties":{"COUNTYFP":"203"}},{"arcs":[[158,-51,159,160,161,162]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[163,164,-14,-18,-11,165,166,167,168]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-53,169,170,171,172,173,-54]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-10,174,175,176,177,178,-166]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[179,180,-164,-169,181,182,183,184,185,186]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[-1,187,-129,-128,188,-185,189,190,191]],"type":"Polygon","properties":{"COUNTYFP":"189"}},{"arcs":[[-49,192,193,194,195,196,197,198]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[199,-134,200,201,202,203]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[204,205,206,207,208,209,-71,210]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-195,211,212,-153,-158,213,214]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[-110,215,-143,-137,216]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-63,-69,-28,-34,-60,217,218,219,220,221,-206,222,-155]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[223,224,225,226,227]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[228,229,230,-79,-40,-46,231,232,-74,233]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[234,-92,235,236,237,238,239,240]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[-230,241,-148,242,243,244]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[245,246,-81,-80,-231,-245,-244,247]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[248,-201,-133,-140,249,-16,250,-103,251,252]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[-65,-154,-213,253,-193,-48,-56,254,255]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[256,257,258,259,260,261,262]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-132,263,264,-95,-101,-106,265,266,-126]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[267,-178,268,-116,269]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[270,271,-149,-242,-229,-234,-73,272]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[273,-24,-50,-199,274,275,276,277]],"type":"Polygon","properties":{"COUNTYFP":"195"}},{"arcs":[[278,-183,-182,-168,-167,-179,-268,-270,-115,279,280]],"type":"Polygon","properties":{"COUNTYFP":"191"}},{"arcs":[[-266,-105,281,282,283]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-243,-147,284,285,286,287,-246,-248]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[288,289,290,291,-75,-233,-232,-45]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-215,292,293,294,-196]],"type":"Polygon","properties":{"COUNTYFP":"175"}},{"arcs":[[295,-276,296,297,-257,-263,298]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[-278,299,300,-38,-25,-274]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-31,301,302,-111]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[-209,303,304,-107,-99,-150,-272,305]],"type":"Polygon","properties":{"COUNTYFP":"167"}},{"arcs":[[-208,306,307,-202,-249,-253,308,-304]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[-252,-102,-108,-305,-309]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[309,-4,310,311,312,313,314]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[315,-293,-214,-157,316,-291,317]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[-256,318,-120,319,-67,-66]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-260,320,-289,-44,321,322]],"type":"Polygon","properties":{"COUNTYFP":"187"}},{"arcs":[[-301,323,-39]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-282,-104,-251,-15,-165,-181,-180,-187,324,-283]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[325,326,-240,327,-311,-3,328,329,330]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[331,-151,-97,332,333,-286,334]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[-298,-297,-275,-198,-197,-295,335,-258]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[-329,-2,-192,-191,-190,-184,-279,-281,336,-330]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-114,-93,-235,-241,-327,-326,-331,-337,-280]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-57,-62,-217,-136,-135,-200,-204,337,-58]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-186,-189,-127,-267,-284,-325]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-221,-220,-219,338,-307,-207,-222]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[339,-123,340,-172,341,342,343]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-341,-122,344,-173]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-121,-319,-255,-55,-174,-345]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-333,-96,-265,345,346]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-59,-338,-203,-308,-339,-218]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[347,-224,-228,348,-237,349,350]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[-176,351,352,353]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[-322,-43,-78,354,-261,-323]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-328,-239,355,356,-312]],"type":"Polygon","properties":{"COUNTYFP":"199"}},{"arcs":[[-332,-335,-285,-146,-152]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[357,358,359,360,-313,-357,361]],"type":"Polygon","properties":{"COUNTYFP":"181"}},{"arcs":[[-290,-321,-259,-336,-294,-316,-318]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[-188,-5,-310,-315,362,-87,-86,-130]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[-119,-125,363,-302,-30,-68,-320]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-273,-72,-210,-306,-271]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[364,-350,-236,-91,365]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-356,-238,-349,-227,366,-358,-362]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[367,368,369,-359,-367,-226,370]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[-76,-292,-317,-156,-223,-205,-211,-70]],"type":"Polygon","properties":{"COUNTYFP":"179"}},{"arcs":[[371,-287,-334,-347,372]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-52,-159,-163,373,374,-342,-171,-170]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-13,-17,-250,-139,-142,-6]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-37,-36,375,-161,-160,-19,-27]],"type":"Polygon","properties":{"COUNTYFP":"201"}},{"arcs":[[-343,-375,376]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[-141,-145,377,-352,-175,-9,-8]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-369,378,-360,-370]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[379,-117,-269,-177,-354,380]],"type":"Polygon","properties":{"COUNTYFP":"185"}},{"arcs":[[-194,-254,-212]],"type":"Polygon","properties":{"COUNTYFP":"155"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/in.topo.json b/app/assets/topojson/states/in.topo.json new file mode 100755 index 00000000..205d095e --- /dev/null +++ b/app/assets/topojson/states/in.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[2660,8122],[101,1]],[[2761,8123],[102,0]],[[2863,8123],[0,-129],[0,-65],[0,-160],[0,-33],[-1,-194]],[[2862,7542],[-203,2],[-204,0],[-149,-2],[-55,2],[-203,0]],[[2048,7544],[0,144]],[[2048,7688],[17,18],[88,43],[38,5],[17,12],[43,3],[55,27],[39,49],[37,31],[20,54],[9,32],[21,33],[21,61],[50,24],[51,42],[106,0]],[[4261,5785],[-33,-3],[-169,1],[-134,-1]],[[3925,5782],[1,64]],[[3926,5846],[-2,159],[-1,193]],[[3923,6198],[-2,191]],[[3921,6389],[134,1],[199,1],[65,1]],[[4319,6392],[134,0],[199,1]],[[4652,6393],[4,-192]],[[4656,6201],[2,-195],[2,-222]],[[4660,5784],[-202,0],[-34,1]],[[4424,5785],[-163,-1],[0,1]],[[1895,2507],[101,1],[97,2]],[[2093,2510],[1,-192],[-33,-1],[-1,-192],[-1,-261],[-1,-239]],[[2058,1625],[-21,-2],[-11,-26],[-24,1],[0,23],[-33,-4],[-33,25],[-56,-12],[-17,11],[-52,-22],[-13,27]],[[1798,1646],[-34,16],[-28,35],[-37,-22],[-12,-19],[-28,-8],[-11,31],[-24,7],[-8,25],[-49,18],[-30,-30],[-38,14]],[[1499,1713],[9,16],[-1,52],[-20,32],[15,34],[-26,16],[24,16],[-20,26],[21,36],[-23,15],[-17,45],[0,21],[-27,17],[22,20],[17,46],[-9,16],[27,0],[-14,9],[18,35],[-23,44],[26,24],[4,47],[-10,16],[11,26],[32,-20],[6,19],[71,25],[14,37],[27,-8],[23,10],[1,38],[17,-5],[20,24],[4,30],[33,38]],[[1751,2510],[144,-3]],[[1904,4258],[2,195]],[[1906,4453],[2,194]],[[1908,4647],[155,-2],[40,0],[158,-2],[28,0],[172,-1]],[[2461,4642],[15,0],[0,-100],[0,-97],[-1,-130],[0,-65],[0,-31],[0,-97],[80,-1],[-2,-25],[-24,-38]],[[2529,4058],[8,-13],[-13,-37],[14,-60],[-19,-26],[-45,-41],[0,-18],[4,-97]],[[2478,3766],[-36,1],[-132,2],[-123,2],[-93,1],[-63,1]],[[2031,3773],[-131,1],[0,97],[2,194]],[[1902,4065],[2,193]],[[2760,6534],[0,-55],[101,-1],[134,1],[32,0],[-1,-97],[0,-97],[-1,-97]],[[3025,6188],[-1,-96],[-1,-56],[0,-135]],[[3023,5901],[-163,-2],[-167,1],[-31,0],[-200,2]],[[2462,5902],[0,95],[0,15],[-1,113],[-4,65],[-130,0]],[[2327,6190],[-2,193],[-2,0],[-1,33],[28,1],[-5,75],[4,27],[20,17],[-17,20],[17,23],[89,-1],[67,-1],[51,0],[84,-2]],[[2660,6575],[100,0],[0,-41]],[[4234,7558],[1,-134],[4,-158]],[[4239,7266],[-197,-7],[-196,-2],[-67,0]],[[3779,7257],[-68,-1],[-61,-1],[1,98],[-101,-3],[-3,196]],[[3547,7546],[41,0],[-2,115],[-2,110],[-3,160],[-1,65],[-1,133]],[[3579,8129],[102,-1],[203,1],[60,-2],[146,2],[202,3]],[[4292,8132],[1,-191],[2,-125]],[[4295,7816],[2,-64],[-2,-129],[-1,-65],[-60,0]],[[5053,6201],[-198,1],[-199,-1]],[[4652,6393],[201,2],[-1,194],[0,197],[-1,192]],[[4851,6978],[198,0],[200,0],[63,2]],[[5312,6980],[3,-193],[2,-195],[1,0],[1,-195],[-1,0],[3,-193]],[[5321,6204],[-68,-1],[-165,-2]],[[5088,6201],[-35,0]],[[5788,6018],[-3,-194],[1,-193]],[[5786,5631],[-170,-2],[-205,-1],[-134,-2],[-64,-1],[-156,-2]],[[5057,5623],[-2,161]],[[5055,5784],[23,0],[0,30],[0,192],[10,1],[0,194]],[[5321,6204],[134,3],[201,4],[133,1]],[[5789,6212],[-1,-194]],[[999,6001],[161,0],[101,0],[99,-1],[101,-1],[100,-1],[50,0],[149,0]],[[1760,5998],[2,-194],[1,-48]],[[1763,5756],[-25,-26],[-44,-32],[-62,-12],[-70,-28],[-73,-46],[-59,-52],[-22,-45],[-31,-18],[-43,-55],[-5,-4],[-34,-28],[-50,-14],[-18,-10],[-40,-17],[-14,-31],[-19,-28],[17,-33],[38,-19],[1,-33]],[[1210,5225],[-147,0],[0,47],[-72,-1]],[[991,5271],[0,65],[1,83],[3,197],[2,190],[2,195]],[[2863,8123],[-1,96],[73,1],[135,3],[33,0],[170,2],[85,0],[221,0]],[[3579,8225],[0,-96]],[[3547,7546],[-132,-2],[-62,0],[-110,1],[-169,-1],[-18,0],[-194,-2]],[[2048,7448],[0,96]],[[2862,7542],[0,-193]],[[2862,7349],[-1,-194],[-1,-193]],[[2860,6962],[-199,2]],[[2661,6964],[-4,0],[-199,3],[-5,0],[-134,1],[-69,0],[-203,0]],[[2047,6968],[0,144],[0,45],[0,195],[1,96]],[[4846,7560],[51,0],[0,150],[3,38]],[[4900,7748],[204,0]],[[5104,7748],[201,3],[202,5],[203,5],[77,3]],[[5787,7764],[0,-191],[0,-196],[0,-194],[1,-193]],[[5788,6990],[-137,-4],[-205,-4],[-134,-2]],[[4851,6978],[1,188],[-1,8]],[[4851,7174],[-2,187],[-3,199]],[[4533,3728],[-198,0]],[[4335,3728],[-2,161],[-1,33],[-2,157],[-1,33],[0,161],[-1,0]],[[4328,4273],[0,195],[64,1]],[[4392,4469],[131,0],[50,1],[148,0],[1,0],[158,0],[31,1]],[[4911,4471],[1,-161],[0,-32],[2,-163],[0,-32],[3,-194]],[[4917,3889],[-1,0],[2,-160]],[[4918,3729],[-188,0],[-16,0],[-164,-1],[-17,0]],[[5497,8334],[-198,-2],[-199,-2]],[[5100,8330],[0,192],[-3,194],[-1,132]],[[5096,8848],[198,0],[198,0],[195,1],[96,0],[0,-127],[0,-192],[2,-191]],[[5785,8339],[-88,-2],[-200,-3]],[[2222,2511],[-129,-1]],[[1751,2510],[-4,0],[-50,7],[-196,1]],[[1501,2518],[1,193],[0,97],[0,102],[0,129],[0,65]],[[1502,3104],[196,-6],[116,-2],[15,0]],[[1829,3096],[33,0],[230,-1],[21,1],[107,-2],[65,-1],[197,-2]],[[2482,3091],[2,-191],[0,-194]],[[2484,2706],[-1,-195]],[[2483,2511],[-196,0],[-65,0]],[[2461,5516],[0,95],[1,194],[0,97]],[[3023,5901],[33,0],[84,0],[-1,-97],[51,0],[0,-32],[66,0]],[[3256,5772],[0,-81],[0,-63],[1,-78],[0,-129]],[[3257,5421],[0,-77]],[[3257,5344],[-134,-4],[-66,-2],[-133,-3],[-63,0],[-200,2],[-201,2]],[[2460,5339],[0,79]],[[2460,5418],[1,98]],[[4899,8330],[201,0]],[[5100,8330],[2,-197]],[[5102,8133],[0,-128],[0,-64],[-1,-64],[3,-129]],[[4900,7748],[-204,2],[-199,3],[2,64],[-204,-1]],[[4292,8132],[-2,192]],[[4290,8324],[204,3],[203,2],[202,1]],[[1754,6384],[3,-192]],[[1757,6192],[3,-194]],[[999,6001],[1,194],[0,190],[0,193]],[[1000,6578],[153,0],[101,-1],[100,0],[101,0]],[[1455,6577],[99,1],[198,-1]],[[1752,6577],[3,0],[-1,-193]],[[3138,2131],[32,4],[9,44],[20,20]],[[3199,2199],[38,14],[29,-5],[23,25],[68,8],[33,-21],[56,-24],[12,3],[51,11],[5,30],[51,-10],[21,-11],[26,-27],[42,-6],[33,6],[37,-19],[28,26],[19,-22],[24,4],[35,-23],[14,24],[36,-49]],[[3880,2133],[0,-190],[4,-163],[66,2],[0,-32],[1,-1]],[[3951,1749],[0,-31],[-33,0],[0,-64],[-32,-1],[0,-32],[-127,-4],[1,-28],[-65,-1],[-1,-36],[-1,-120]],[[3693,1432],[-67,-1]],[[3626,1431],[-159,4],[-33,0],[-199,7]],[[3235,1442],[-94,0]],[[3141,1442],[0,105],[0,32],[0,177],[1,49],[0,129],[-1,97]],[[3141,2031],[-3,100]],[[3380,2831],[162,3]],[[3542,2834],[1,-31],[32,0],[137,4],[131,5],[86,2],[23,34],[43,30],[42,-3]],[[4037,2875],[1,-91],[2,-128],[1,-131],[0,-19],[2,-210]],[[4043,2296],[-21,-41],[-40,-59],[-20,-48],[-49,-33],[-23,-2],[-10,20]],[[3199,2199],[-3,212],[0,33],[-4,193],[-2,66],[-65,0]],[[3125,2703],[-1,128]],[[3124,2831],[32,0],[224,0]],[[3387,7153],[68,0],[94,3],[228,4]],[[3777,7160],[3,-125],[2,-64],[1,-104],[2,-97],[1,-113],[1,-78],[3,-192],[131,2]],[[3923,6198],[-132,-2],[-131,-1],[-134,-2],[-67,-1],[-66,-1]],[[3393,6191],[-1,193],[0,207],[-6,2],[1,94],[1,67],[1,111],[-3,97]],[[3386,6962],[0,48],[1,143]],[[4569,1818],[31,-14],[88,1]],[[4688,1805],[22,-51],[1,-37],[-12,-31],[-28,-24],[-51,-25],[-25,-50],[-31,-44],[-45,-24],[-30,-6],[-58,-5],[-52,-26],[-25,-32],[-27,-74],[-8,-65],[-30,-89],[-36,-51],[-13,-12],[-101,-61],[-35,9],[-20,30],[-33,5]],[[4051,1142],[-8,39],[-3,60],[25,0],[7,23],[26,13],[6,4],[-83,112],[0,8],[-35,0],[-97,-1],[-66,0],[-81,-1],[-1,16],[-48,0],[0,17]],[[3951,1749],[47,0],[-1,31],[16,17],[33,17],[0,32],[123,1],[7,0],[135,1],[128,1]],[[4439,1849],[129,1],[1,-32]],[[4919,3504],[1,-186]],[[4920,3318],[-33,-21],[-33,-21],[-186,-119]],[[4668,3157],[-137,-86],[-67,-42],[-18,-11],[-64,-2],[-83,-1],[-65,-2]],[[4234,3013],[-1,129],[1,161],[4,197]],[[4238,3500],[95,0],[0,65],[1,131],[1,32]],[[4918,3729],[1,-33],[1,-126],[-1,-66]],[[5064,5178],[-2,96],[-1,65],[-2,125],[0,16],[-2,143]],[[5786,5631],[-3,-192],[-5,-259],[-4,-226]],[[5774,4954],[-133,2],[-77,-2],[-50,0],[-133,-1],[-34,0],[-128,-1],[-132,0]],[[5087,4952],[-21,0],[0,33],[-1,128]],[[5065,5113],[-1,65]],[[5566,3402],[33,0],[160,-2]],[[5759,3400],[-1,-192],[0,-127],[0,-124],[-22,-11],[-63,-58],[-36,-18],[-14,-29],[34,-48]],[[5657,2793],[-36,-40],[-25,12],[-32,-23],[-41,-30],[-28,-6],[-43,11],[-22,-43],[-32,-8],[-33,-3],[-26,-33],[0,-20],[-46,4],[-23,-34],[-28,1],[-34,27]],[[5208,2608],[19,120],[4,33],[12,74],[21,153],[9,60],[19,133],[6,35],[28,189]],[[5326,3405],[111,-1],[129,-2]],[[2482,3091],[-2,193],[-2,185],[31,-15],[22,24],[-5,22],[15,12],[33,-19]],[[2574,3493],[0,-14],[100,-2],[143,-2],[49,-1],[147,3]],[[3013,3477],[2,-197],[14,0],[0,-61],[3,-129],[2,-197],[-1,-63],[91,1]],[[3125,2703],[-253,1],[-197,1],[-191,1]],[[1115,3298],[192,0],[195,0]],[[1502,3298],[0,-194]],[[1501,2518],[0,-14],[-65,1],[-103,0],[-156,0],[-171,1]],[[1006,2506],[-9,15],[16,31],[-1,45],[11,28],[-29,36],[-83,32],[12,81],[-18,42],[13,34],[-50,54],[-30,8],[0,42],[-61,6],[17,48],[-27,17],[12,32],[27,41],[30,7],[29,42],[29,19],[21,42],[-11,81],[-22,-17],[-19,27]],[[863,3299],[252,-1]],[[2874,962],[-196,2],[3,130],[-126,-6],[-66,-1]],[[2489,1087],[-2,131],[-1,64],[-1,98]],[[2485,1380],[197,2],[98,1],[100,0],[63,-1],[197,-4],[1,64]],[[3235,1442],[-10,-20],[16,-17],[-3,-26],[14,-16],[-28,-15],[14,-63],[-31,20],[-7,-56],[-2,-61],[18,0],[1,-28],[-17,-39],[-3,-98],[-32,-68],[-21,-2],[-19,-54],[-21,8]],[[3104,907],[-32,30],[-35,4],[-13,-14],[-4,-43],[20,-22],[67,-15],[12,-17],[-14,-34],[-20,-9],[-62,6],[-22,-14],[-14,-38],[-16,-3],[-21,24],[-22,19],[-36,5],[-19,-14]],[[2873,772],[-2,25],[2,154],[1,11]],[[1704,1020],[93,0]],[[1797,1020],[0,-64],[97,-1]],[[1894,955],[0,-189],[-1,0],[-95,0],[-5,-49],[-29,-40],[-11,-42],[12,-24],[-58,-10],[-16,25],[-26,8],[-14,-38],[5,-40],[-29,-23],[-44,-53],[-55,-40],[-6,-25],[-20,-18],[-48,-60],[-2,-105]],[[1452,232],[-51,40],[-38,22],[-44,12],[-50,47],[-71,28],[-66,-8]],[[1132,373],[3,140],[-1,67],[-36,1],[-5,16],[1,80],[1,97],[7,32],[2,64]],[[1104,870],[1,80],[196,1],[67,0],[0,99]],[[1368,1050],[33,-1],[0,-31],[97,-2],[76,0],[130,4]],[[5381,4309],[0,33],[115,-1],[73,-5],[199,0]],[[5768,4336],[0,-162],[-1,-129],[-1,-164]],[[5766,3881],[-200,6],[-165,0],[-23,4]],[[5378,3891],[0,95],[0,33],[2,162],[1,128]],[[3955,1014],[-12,-18],[-49,-41],[-34,-51]],[[3860,904],[-2,12],[-100,2],[5,60],[-1,104],[-33,0],[1,32],[-33,1],[-6,58],[-33,0],[0,64],[-32,0],[0,194]],[[4051,1142],[-47,-12],[-20,-13],[-13,-25],[-5,-57],[-11,-21]],[[4899,5113],[166,0]],[[5087,4952],[1,-97],[1,-30],[-1,-163],[-35,0],[0,-189]],[[5053,4473],[-142,-2]],[[4392,4469],[0,191],[35,0],[1,97],[0,65]],[[4428,4822],[0,98],[0,129],[0,65]],[[4428,5114],[169,-1],[66,0],[69,-1],[133,0],[34,1]],[[2485,1380],[0,98],[-1,129],[0,65]],[[2484,1672],[-1,161],[0,1],[-1,193]],[[2482,2027],[163,1],[65,1],[65,1],[99,2],[103,-2],[32,0],[132,1]],[[3541,3097],[1,-36],[2,-128],[-2,-99]],[[3013,3477],[33,1],[195,3]],[[3241,3481],[30,1],[167,2],[95,3]],[[3533,3487],[6,-262],[1,-15],[1,-113]],[[2661,4771],[66,0],[67,0],[98,1],[34,1],[71,0],[53,1],[15,0],[20,0],[25,0]],[[3110,4774],[0,-111],[-3,-33],[1,-81],[1,-49],[0,-179],[0,-1],[1,-194]],[[3110,4126],[-17,0],[-144,-4],[-34,0],[-51,-1],[1,-65],[-166,1],[-170,1]],[[2461,4642],[0,129]],[[2461,4771],[200,0]],[[5762,3593],[-3,-193]],[[5326,3405],[-19,6],[-165,0],[-67,-3],[-17,0],[-138,-90]],[[4917,3889],[99,1],[129,1],[69,1],[164,-1]],[[5766,3881],[-1,-94],[-3,-194]],[[5266,2508],[98,0],[165,-5],[34,0],[106,0]],[[5669,2503],[17,-7],[54,-1],[53,-14],[24,-20],[-3,-39],[-27,-30],[-35,-26],[-12,-19],[5,-27],[28,-57],[-6,-18],[-40,0],[-69,17],[-30,3],[-69,-36],[-26,-4],[-56,9],[-23,-4],[-32,-24],[-107,-57],[-52,-33],[-62,-58],[-64,-28],[-50,7]],[[5087,2037],[-3,235],[0,64],[0,196]],[[5084,2532],[1,32],[118,3]],[[5203,2567],[-8,-59],[71,0]],[[2484,1672],[-195,-1],[-67,1],[-43,-39],[-24,-5],[-17,-26],[-38,14],[-22,-12],[-20,21]],[[2483,2511],[-1,-128],[0,-259],[0,-97]],[[4238,3500],[-101,0],[-100,0],[-103,-2],[-166,-4]],[[3768,3494],[-1,196],[3,1],[-1,193],[-1,33],[-1,158],[1,65]],[[3768,4140],[0,130]],[[3768,4270],[199,3],[1,0],[180,1],[18,0],[162,-1]],[[3256,5772],[0,65],[36,0],[168,3],[233,4],[33,0],[200,2]],[[3925,5782],[2,-97],[2,-96],[-3,-161]],[[3926,5428],[-184,-1],[-52,0],[-232,-2]],[[3458,5425],[-201,-4]],[[1499,1713],[-19,-15],[-5,-26],[-53,-31],[-28,-5],[-22,25],[-40,22],[-24,22],[-34,-7],[16,-34],[-11,-22],[-25,16],[4,26],[-17,15],[-25,6],[-14,-33],[-20,29],[-39,-16],[-32,3]],[[1111,1688],[-16,-45],[-32,-16],[-15,-24],[-43,15],[-13,29],[-33,-8],[16,-42],[-59,-3],[-26,-46],[-19,-44],[-67,-10],[-10,21],[-31,0],[-35,-53],[-34,-22],[-76,-17]],[[618,1423],[6,52],[14,29],[-42,11],[20,48],[54,5],[49,27],[24,35],[27,-13],[20,19],[-8,16],[-34,54],[7,18],[26,14],[1,31],[19,9],[-1,34],[30,-8],[-8,43],[21,49],[-10,19],[23,20],[19,45],[31,16],[60,11],[25,15],[22,34],[-1,24],[24,51],[17,19],[-14,17],[11,40],[3,40],[-55,72],[10,19],[-7,49],[-46,26],[16,14],[-3,49],[19,27],[19,3]],[[2761,8123],[-1,192],[38,0],[9,26],[6,72],[15,15],[0,81],[-2,94],[-69,3],[3,98],[2,144]],[[2762,8848],[192,0],[113,1],[137,0],[165,0],[204,1]],[[3573,8850],[1,-112],[1,-66],[2,-160],[0,-48],[2,-145],[0,-94]],[[4234,3013],[-199,-4],[2,-134]],[[3533,3487],[102,3],[78,2],[55,2]],[[2489,1087],[1,-33],[-163,1],[-36,1],[1,-97]],[[2292,959],[-198,-3],[-35,-2],[-165,1]],[[1797,1020],[0,129],[0,97],[-1,195],[1,32],[1,173]],[[2031,3773],[-5,-97],[1,-65],[-1,-129],[-195,1],[-2,-192],[0,-195]],[[1502,3298],[1,97],[0,97],[1,193],[1,193],[68,-1],[2,193]],[[1575,4070],[132,-3],[195,-2]],[[1750,6802],[0,-33],[2,-192]],[[1455,6577],[-1,191],[-1,160],[-14,37],[1,194],[0,32],[0,163],[0,96],[0,197]],[[1440,7647],[87,38],[13,14]],[[1540,7699],[47,52],[56,23],[51,23],[51,-11],[75,-26],[26,-19],[60,-44],[75,-47],[54,23],[13,15]],[[2047,6968],[-100,-1],[0,-35],[2,-130],[-199,0]],[[4668,3157],[-2,-75],[-1,-163],[-3,-33],[-1,-64],[-1,-98],[-1,-194]],[[4659,2530],[-32,0],[-132,-2],[2,-65],[-64,-1],[0,-64],[-66,0],[1,-65],[-129,-1],[0,-19]],[[4239,2313],[-38,8],[-12,21],[-48,-20],[-14,6],[-44,-28],[-40,-4]],[[4081,8847],[201,0]],[[4282,8847],[2,-138],[3,-192],[3,-193]],[[3573,8850],[102,-1],[204,-1],[202,-1]],[[2047,7932],[1,-244]],[[1540,7699],[-2,203],[1,31],[0,194],[-1,160],[-1,33],[-2,160],[-1,67]],[[1534,8547],[106,25],[0,22],[31,1],[80,14],[157,66],[82,40],[53,22]],[[2043,8737],[1,-33],[1,-195],[0,-34],[4,-161],[-1,-188],[-1,-194]],[[2460,5031],[0,-65],[1,-129],[0,-66]],[[1908,4647],[-144,1],[1,174],[0,16]],[[1765,4838],[-1,191],[-1,0],[1,197],[-2,193]],[[1762,5419],[231,0],[67,1],[99,-1],[101,0],[200,-1]],[[2460,5339],[0,-78],[0,-100],[0,-130]],[[5053,4473],[66,0],[-3,-162],[113,-1],[119,-1],[33,0]],[[5785,8339],[1,-188],[0,-198],[1,-189]],[[2661,6964],[2,-191],[-3,-198]],[[2327,6190],[-303,-1],[-66,1],[-35,0],[-166,2]],[[3860,904],[-15,-42],[-1,-62],[8,-75],[-6,-37],[-11,-25],[-13,-92],[-8,-19],[-38,-37],[-53,-4],[-72,-15],[-22,-11],[-8,-23],[2,-37],[-28,-9],[-26,33],[-25,56],[-44,26],[-51,7],[-76,-12],[-78,40],[-22,25],[-59,38],[-10,19],[-11,79],[15,64],[-12,36],[-33,40],[-59,40]],[[5208,2608],[-5,-41]],[[5084,2532],[-164,0],[-95,-1],[-166,-1]],[[1762,5612],[1,144]],[[1762,5419],[0,97],[0,96]],[[5768,4465],[0,-129]],[[5774,4954],[-3,-229],[-3,-260]],[[1440,7647],[-17,-7],[-69,-65],[-15,-7],[-23,-1],[-61,-22],[-17,-16],[-39,-7],[-29,13],[-33,14],[-17,-8],[-121,-10]],[[999,7531],[0,404],[2,194],[0,193],[3,412],[28,-31],[70,-49],[32,27],[44,13],[33,-20],[-4,-24],[-43,-48],[113,-42],[140,-20],[48,-1],[69,8]],[[1368,1147],[0,-97]],[[1104,870],[-228,5],[-161,2]],[[715,877],[0,72],[-131,2],[-65,1],[1,59],[-17,0],[-33,0],[-274,4]],[[196,1015],[7,22],[34,-7],[11,35],[6,53],[20,13],[10,29],[30,8],[15,-16],[-16,-27],[18,-23],[33,35],[14,44],[17,15],[17,-20],[-10,-29],[12,-29],[28,3],[22,47],[-2,61],[15,42],[26,31],[45,20],[42,53],[28,48]],[[1111,1688],[1,-151],[32,0],[0,-66],[65,1],[0,-98],[0,-37],[48,17],[26,-10],[30,17],[16,-17],[40,6],[1,-3],[0,-11],[-1,-91],[-1,-98]],[[2478,3766],[94,1],[0,-65],[2,-77],[0,-132]],[[1566,4839],[-100,-1],[-101,0],[-179,-1]],[[1186,4837],[-35,17],[17,24],[5,35],[-10,32],[-3,56],[18,33],[-7,19],[20,20],[10,61],[-3,23],[10,22],[2,46]],[[1765,4838],[-101,0],[-98,1]],[[4660,5783],[198,0],[0,-1],[197,2]],[[4428,5114],[1,144],[0,16],[0,154],[-2,194],[-3,163]],[[4660,5784],[0,-1]],[[4282,8847],[304,1],[208,1],[302,-1]],[[2292,959],[0,-56],[-22,3],[13,-47],[-17,-39],[19,-43],[-21,-12],[34,-29],[35,-10],[-2,-29],[-16,-26],[19,-41],[-20,-16],[0,-32],[12,-82],[-33,11],[-10,25],[-30,-37]],[[2253,499],[-18,2],[-57,-26],[-53,-54],[-37,-43],[-32,-19],[-94,-11],[-69,-32],[-28,-21],[-19,-26],[3,-57],[-24,-91],[-22,-58],[-35,-31],[-38,-12],[-33,10],[-13,45],[-26,52],[-23,24],[-68,7],[-29,10],[-64,43],[-22,21]],[[3924,5173],[1,196],[1,59]],[[4428,4822],[-170,0],[-34,-1],[-166,-1],[-33,-1],[-100,-2]],[[3925,4817],[0,131],[0,64],[-1,161]],[[5657,2793],[10,-9],[61,-88],[13,-41],[-10,-25],[-62,-64],[-15,-29],[15,-34]],[[5789,6795],[0,-194],[0,-193],[0,-196]],[[5788,6990],[1,-195]],[[3058,6961],[64,0],[135,-1],[129,2]],[[3393,6191],[-136,-1],[-33,0],[-199,-2]],[[2860,6962],[198,-1]],[[4239,7266],[1,-100],[69,1]],[[4309,7167],[3,-194],[1,0],[1,-195],[2,-192],[3,-194]],[[3777,7160],[2,97]],[[3257,5344],[1,-180],[1,-64],[0,-160],[3,-162]],[[3262,4778],[-152,-4]],[[3925,4817],[0,-32],[-132,-4]],[[3793,4781],[-101,-1],[-131,0],[-12,0],[-222,0],[-65,-2]],[[4309,7167],[137,2],[201,5],[204,0]],[[2043,8737],[29,15],[13,23],[59,25],[89,49],[16,0],[204,-1],[205,0],[104,0]],[[3110,4126],[134,3]],[[3244,4129],[-1,-94],[0,-165],[-2,0],[0,-191],[0,-2],[0,-196]],[[1000,6966],[0,195],[-1,194],[0,176]],[[1000,6578],[1,178],[-1,210]],[[241,689],[-5,34],[-77,-33],[-21,29],[32,25],[40,4],[11,46],[24,4],[18,-14],[30,54],[20,14],[11,21],[-18,16],[-23,-21],[-11,24],[-52,37],[-25,38],[1,48]],[[715,877],[-1,-97],[-14,0],[-1,-98],[-2,-160],[0,-2],[-4,-244]],[[693,276],[-40,-12],[-29,6],[-39,-9],[-38,-29],[-56,-5],[-32,4],[-21,35],[-20,17],[-15,32],[-20,20],[-27,8],[-22,-6],[-57,-73],[-6,-29],[8,-25],[38,-40],[12,-27],[7,-44],[-5,-23],[-50,-27],[-16,-44],[-28,-5],[-29,33],[-36,21],[-55,14],[-16,13],[-39,-19],[-29,8],[-24,27],[7,28],[17,2],[32,-18],[44,5],[12,18],[-13,20],[-46,16],[-16,20],[-17,47],[-29,32],[15,27],[26,-22],[29,-10],[71,2],[-9,46],[-56,7],[-29,15],[24,24],[23,-21],[19,13],[-11,59],[28,6],[15,39],[-18,47],[-4,28],[14,30],[-1,23],[-29,-6],[-14,32],[17,12],[55,0],[60,34],[16,37]],[[863,3299],[5,28],[-13,32],[15,16],[-10,38],[27,47],[29,21],[23,-6],[26,29],[25,-9],[0,383],[-1,193]],[[989,4071],[264,1]],[[1253,4072],[152,1],[100,-1],[70,-2]],[[1253,4072],[2,18],[-20,43],[-3,52],[20,82],[-3,51],[13,61],[-6,46],[11,36],[-16,48],[-3,43],[-1,21],[34,21],[18,48],[-21,7],[-16,13],[15,37],[-20,30],[-44,16],[-10,21],[-36,20],[19,51]],[[3244,4129],[27,1],[167,3],[100,2],[67,2],[163,3]],[[3768,4270],[0,65],[-1,125],[-1,98],[-2,95],[28,0],[1,128]],[[5087,2037],[-43,33],[-36,58],[-22,13],[-65,9],[-93,-21],[-41,-4],[-67,14],[-46,-19],[-12,-21],[-16,-24],[-8,-35],[4,-25],[28,-48],[-2,-106],[20,-56]],[[4439,1849],[-1,160],[-66,1],[-1,64],[-65,1],[-1,48],[-32,16],[-33,0],[-1,174]],[[2873,772],[-9,-32],[13,-24],[43,-20],[2,-44],[-34,-37],[-49,-10],[-65,-7],[-13,-31],[-1,-134],[12,-37],[20,-34],[-7,-23],[-41,-20],[-56,12],[-40,-3],[-19,-32],[3,-87],[-12,-20],[-59,-35],[-35,3],[-7,29],[31,84],[-10,35],[-39,9],[-24,-4],[-57,-44],[-23,3],[-34,41],[-51,94],[-27,76],[-32,19]],[[989,4071],[-1,193],[0,286],[0,193],[1,199],[2,329]],[[961,335],[-24,20],[-25,42],[1,35],[-16,15],[-30,-7],[-15,-59],[-20,-35],[-11,-15],[13,-33],[59,-50],[5,-28],[-11,-31],[-44,-59],[-53,-13],[-47,7],[-12,16],[-4,44],[28,52],[1,31],[-35,22],[-28,-13]],[[1132,373],[-25,-17],[-55,-50],[-26,-10],[-65,39]]],"transform":{"scale":[0.0005687725631768948,0.00045054298430143524],"translate":[-88.094956,37.773223]},"objects":{"cb_2019_18_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[6,7,8,9,10,11,12,13,14,15]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[16,17,18,19,20,21]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[22,23,24,25,26,27,28,29]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[30,31,32,33,34,35]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[36,37,38,39,40,41,42]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[43,-13,44,45,46,47,48]],"type":"Polygon","properties":{"COUNTYFP":"179"}},{"arcs":[[49,50,51,52,-48,53,54]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[55,56,57,58,59]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[-3,60,61,-40,62]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[63,-4,64,65,66,67,68]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[69,70,71,72,73,-46,74,75]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[76,77,78,79,80,81,82]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[83,84,85,86]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[87,-17,-22,88,89,90,91,92,93,94]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[95,-33,96,97,98,99,100,101]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[102,103,104,-71,105,-42,106,107]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[108,109,-56,110,111,112,113]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[114,115,116,117,118,119,120,121,122]],"type":"Polygon","properties":{"COUNTYFP":"175"}},{"arcs":[[123,124,125,126,-116,127,128,129]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[130,131,-10,132,133,134]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[135,136,137,-118,138,139]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[140,141,142,143,144,-77,-83,145]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[146,-51,147,148,149,150]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[151,152,153,154,155]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-93,156,157,158,-129,159]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[160,161,-90,162,163,164]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[165,166,167,-121,168,169,170]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[171,172,173,174,175,176,177]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[178,179,180,181]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[182,183,-119,-138,184]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[185,-150,186,187,-80,188,189,190]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-168,191,192,193,-122]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[194,-124,-130,-159,195,196,197]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[198,199,200,-26,201,202]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[203,-152,-156,204,-141,-146,-82,205,-181,206]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[207,208,209,210,211]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[-193,212,-18,-88,-95,213]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[-78,-145,214,215,216,217]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[218,-8,219,220,221,-98]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[-163,-89,-21,222,223,224]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-61,-2,225,226,227]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[-215,-144,228,-125,-195,-198,229]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-167,230,231,-173,232,-19,-213,-192]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-29,233,-91,-162,234,235]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[236,-113,237,238,239,-5,-64,-69,240]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[-143,241,242,243,-126,-229]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[244,245,-107,-41,-62,-228,246]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[247,-240,248,249,250]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[251,-202,-25,252,253,254,-101,255]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-81,-188,256,-182,-206]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-72,-105,-104,-84,-87,257]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-68,258,-35,259,-109,-114,-237,-241]],"type":"Polygon","properties":{"COUNTYFP":"181"}},{"arcs":[[-184,260,-169,-120]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[-142,-205,-155,261,-211,262,-242]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[263,-57,-110,-260,-34,-96,-102,-255,264]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[265,-179,-257,-187,-149,266]],"type":"Polygon","properties":{"COUNTYFP":"177"}},{"arcs":[[-249,-239,267,268]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[269,-177,270,271,272,-224,273]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-28,274,-157,-92,-234]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[275,276,-58,-264,-265,-254,277]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[278,-52,-147,-151,-186,-191,279,-15,280]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-246,281,-85,-103,-108]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-174,-232,282,283]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[284,-220,-7,-16,-280,-190,285,286]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[-208,-212,-262,-154,287]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[288,-54,-47,-74,289]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[290,-134,291,-31,-36,-259,-67,292]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-53,-279,-281,-14,-44,-49]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-38,293,294,-11,-132,295]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[-100,296,297,-199,-203,-252,-256]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-222,-221,-285,-287,298,299,-297,-99]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-133,-9,-219,-97,-32,-292]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-12,-295,300,-75,-45]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-43,-106,-70,-76,-301,-294,-37]],"type":"Polygon","properties":{"COUNTYFP":"183"}},{"arcs":[[-251,301,-226,-1,-6,-248]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-275,-27,-201,302,303,-196,-158]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[304,-268,-238,-112,305]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-135,-291,-293,-66,-65,-63,-39,-296,-131]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[306,-272,307,308]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[-161,-165,309,310,311,-235]],"type":"Polygon","properties":{"COUNTYFP":"167"}},{"arcs":[[-278,-253,-24,-23,-30,-236,-312,312,-276]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[-216,-230,-197,-304,313]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-79,-218,314,-299,-286,-189]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-263,-210,315,-136,-140,316,-243]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-231,-166,-171,317,-283]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[-233,-172,-178,-270,-274,-223,-20]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[-313,-311,318,-59,-277]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[-160,-128,-115,-123,-194,-214,-94]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[319,-308,-271,-176,320]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[-315,-217,-314,-303,-200,-298,-300]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[-317,-139,-117,-127,-244]],"type":"Polygon","properties":{"COUNTYFP":"143"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ks.topo.json b/app/assets/topojson/states/ks.topo.json new file mode 100755 index 00000000..23a90fc8 --- /dev/null +++ b/app/assets/topojson/states/ks.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[366,2],[-177,-1],[-173,-1],[0,270],[0,457],[1,74]],[[17,801],[258,-1],[47,0],[266,0],[216,-1]],[[804,799],[1,-263],[0,-31],[1,-235],[0,-265]],[[806,5],[-264,-2],[-176,-1]],[[11152,3985],[30,9],[6,25],[40,-24],[46,0],[11,-21],[31,-11],[18,22],[-21,20],[4,16],[16,6],[30,-7]],[[11363,4020],[0,-227],[0,-59],[0,-206]],[[11363,3528],[-181,0],[-120,0],[-61,0],[-120,1],[-90,0],[-150,0]],[[10641,3529],[0,264]],[[10641,3793],[0,1],[0,116],[1,118],[-1,30],[-1,87],[2,26]],[[10642,4171],[27,0],[44,24],[33,3],[27,-6],[31,-14],[21,-23],[54,-28],[42,-6],[19,6],[30,15],[21,-20],[0,21],[25,3],[135,0]],[[11151,4146],[1,-161]],[[10497,4493],[1,176],[0,30],[0,146],[-1,59],[31,0]],[[10528,4904],[179,3],[91,-1],[92,-1],[182,-1],[89,0]],[[11161,4904],[1,-59],[0,-146],[0,-59],[-1,-176],[1,-117],[0,-30],[-13,0],[1,-113],[1,-58]],[[10642,4171],[-22,21],[-13,-4],[-44,7],[-36,-25],[-18,-4],[-24,21],[3,44],[0,87],[9,29],[0,146]],[[9918,3441],[0,88]],[[9918,3529],[-1,265]],[[9917,3794],[241,-2],[59,0],[61,1],[151,0],[30,0],[182,0]],[[10641,3529],[-1,-88],[-11,0],[-1,-87],[0,-59],[0,-59],[0,-132],[0,-15],[1,-177]],[[10629,2912],[-149,1],[-120,1],[-29,-1],[-180,-1],[-30,0],[-210,1]],[[9911,2913],[0,88],[0,88],[1,175],[0,177],[6,0]],[[10173,5376],[183,0],[91,0],[61,0],[30,0]],[[10538,5376],[0,-176],[-10,0],[0,-62],[0,-117],[0,-117]],[[10497,4493],[-229,1],[-103,0],[-30,0],[-151,0],[-212,0]],[[9772,4494],[1,118],[0,58],[1,59],[0,117],[-2,177],[0,178]],[[9772,5201],[35,0],[178,0],[5,-1],[177,0],[6,0],[0,176]],[[10761,2113],[30,0],[118,-1],[59,0],[121,0],[60,0],[179,0]],[[11328,2112],[-2,-177],[-1,-88],[0,-117],[0,-59],[-13,0],[0,-118],[-1,-58]],[[11311,1495],[-118,3],[-14,-3],[-105,0],[-235,0],[-133,1],[-105,-1]],[[10601,1495],[1,177],[9,29],[0,59],[0,176],[0,177]],[[10611,2113],[150,0]],[[4190,2742],[179,0],[177,2],[180,-4],[178,-1]],[[4904,2739],[1,-176],[16,0],[163,0],[15,0]],[[5099,2563],[0,-175],[-1,-176],[0,-176],[-177,0]],[[4921,2036],[-179,-1],[-89,0],[-87,0],[-125,1],[-53,1],[0,175],[-178,2],[-178,-2]],[[4032,2212],[-1,177],[-1,176],[-22,0]],[[4008,2565],[-1,177]],[[4007,2742],[183,0]],[[4890,3590],[1,29],[2,147],[0,206],[3,354]],[[4896,4326],[166,0],[179,0],[15,0],[167,0],[13,0],[168,0],[12,0],[169,-1]],[[5785,4325],[11,0],[-2,-177],[-1,-176],[1,-177]],[[5794,3795],[-1,-175],[-1,-176]],[[5792,3444],[-169,0],[-11,0],[-170,0],[-12,0],[-168,0],[-12,0],[-166,0],[-15,0],[-165,0]],[[4904,3444],[-16,0]],[[4888,3444],[2,146]],[[6697,5029],[-1,-89],[0,-88],[1,-175],[0,-1]],[[6697,4676],[-5,-59],[1,-79],[3,-38]],[[6696,4500],[-183,-1],[-182,1],[-181,0],[-182,0],[-183,1]],[[5785,4501],[0,88],[0,88],[1,175],[2,175],[2,177]],[[5790,5204],[153,-1],[27,0],[173,0],[9,0],[174,0],[6,0],[177,0],[7,0],[176,-1]],[[6692,5202],[6,0],[-1,-173]],[[6878,3972],[181,0],[183,-1],[29,1],[151,0],[180,-1]],[[7602,3971],[0,-58],[-15,0],[0,-30],[14,0],[0,-88],[1,-176],[-1,-176],[1,-176]],[[7602,3267],[-180,0],[-179,-1],[-180,0]],[[7063,3266],[-180,1],[-179,1]],[[6704,3268],[-1,176],[-5,0],[0,176],[-1,176]],[[6697,3796],[0,176]],[[6697,3972],[181,0]],[[6894,1497],[-179,0],[-178,-1],[-177,-1],[-179,0],[-177,0],[-178,0]],[[5826,1495],[0,186],[-12,0]],[[5814,1681],[1,176],[-1,176],[0,175],[-1,177]],[[5813,2385],[180,2],[149,-1],[30,0],[59,0],[0,-30],[119,2],[0,29],[179,-1],[89,-1],[90,1]],[[6708,2386],[179,0],[29,0],[150,1]],[[7066,2387],[0,-176],[-1,-30],[0,-146],[1,-179]],[[7066,1856],[-1,-7],[0,-137],[4,-30],[2,-182],[-16,-1],[-161,-2]],[[6893,1321],[1,-171],[0,-177]],[[6894,973],[1,-178]],[[6895,795],[-178,-2],[-177,0],[-171,-2],[-7,0],[-179,0],[-170,-1]],[[6013,790],[-8,0],[-168,0],[-11,0],[1,176]],[[5827,966],[-1,176],[0,176],[0,177]],[[6894,1497],[1,-161],[-2,-15]],[[8505,3794],[180,0],[120,0],[210,-1]],[[9015,3793],[1,-88],[180,0],[1,-176],[60,0]],[[9257,3529],[0,-88],[0,-175],[-2,-176]],[[9255,3090],[-180,0],[-216,0],[-181,0],[-179,1]],[[8499,3091],[-179,0],[-1,176]],[[8319,3267],[-1,135],[1,7],[0,5],[0,3],[0,25],[5,0],[0,147],[0,29],[0,59],[60,0],[0,117]],[[8384,3794],[121,0]],[[9893,1676],[1,-178]],[[9894,1498],[0,-29],[-1,-204],[0,-31]],[[9893,1234],[-265,4],[-29,0],[-269,2],[-59,0],[-294,1]],[[8977,1241],[-1,88],[1,176],[-1,177],[1,88],[2,176],[0,30],[2,234]],[[8981,2210],[267,-1],[2,175]],[[9250,2384],[190,1],[165,-2],[116,0],[176,-2]],[[9897,2381],[0,-264]],[[9897,2117],[0,-206],[0,-59],[1,-177],[-5,1]],[[7438,12],[-178,-1],[-179,1],[-178,0]],[[6903,12],[0,255],[-1,59],[1,118],[-2,175],[-2,176],[-4,0]],[[6894,973],[178,0],[179,2],[178,1],[177,3],[30,-1],[146,-3],[1,0],[174,0]],[[7957,975],[6,-171],[-2,-147],[0,-29],[2,-176],[0,-178],[3,-262]],[[7966,12],[-176,0],[-177,0],[-175,0]],[[4904,3003],[0,-88],[-1,-29],[1,-147]],[[4007,2742],[0,117],[-3,294],[3,290]],[[4007,3443],[359,1],[70,0],[109,0],[72,0],[107,0],[164,0]],[[4904,3444],[-1,-177],[0,-59],[1,-117],[0,-88]],[[7066,1856],[0,2],[178,0]],[[7244,1858],[179,0]],[[7423,1858],[178,0],[1,0],[176,0],[180,1]],[[7958,1859],[1,-177],[-2,0],[0,-176],[0,-15],[0,-4],[0,-2],[0,-24],[0,-29],[0,-44],[0,-15],[0,-30],[0,-14],[1,-177],[-1,-177]],[[2704,4326],[-31,-1],[-239,0],[-1,0],[-272,1]],[[2161,4326],[0,263],[0,88],[1,176],[0,177]],[[2162,5030],[1,175]],[[2163,5205],[149,-1],[33,0],[148,0],[123,-1],[59,1],[123,0],[59,0],[183,-2]],[[3040,5202],[30,1]],[[3070,5203],[-1,-176],[1,-88],[-1,-88],[0,-90],[-1,-85],[-1,-89],[-1,-263]],[[3066,4324],[-181,1],[-3,0],[-178,1]],[[4303,5203],[-182,1],[-142,-1]],[[3979,5203],[-42,0]],[[3937,5203],[0,176],[0,175],[1,177],[1,175],[2,176]],[[3941,6082],[179,0],[182,0],[183,0],[181,0],[182,0]],[[4848,6082],[0,-174]],[[4848,5908],[1,-176],[0,-176],[0,-176],[1,-175]],[[4850,5205],[-147,-1],[-36,1],[-144,-1],[-38,0],[-141,-1],[-41,0]],[[5099,2563],[165,0],[13,0],[166,0],[13,0],[180,0],[166,-1]],[[5802,2562],[12,0],[-1,-177]],[[5814,1681],[-179,-1],[-166,1],[-12,0],[-166,1],[-13,0],[-179,0],[-164,0]],[[4935,1682],[-15,0],[1,177],[0,177]],[[8338,6081],[183,0]],[[8521,6081],[0,-175],[0,-177],[-1,-176],[0,-176],[0,-176]],[[8520,5201],[-6,0],[-176,0],[-65,0]],[[8273,5201],[-118,1],[-64,0],[-119,0],[-62,0],[-120,0],[-1,0],[-182,1]],[[7607,5203],[0,176]],[[7607,5379],[0,175],[0,176]],[[7607,5730],[-1,176],[0,176]],[[7606,6082],[183,-1],[183,0],[183,-1],[183,1]],[[8977,1241],[-1,-88],[-1,-128],[1,-48]],[[8976,977],[-30,1],[-277,-3],[-1,0],[-180,1],[-177,0],[-2,0],[-175,0],[-177,-1]],[[7958,1859],[0,176],[0,1],[-1,177]],[[7957,2213],[180,-3],[179,-1],[29,0],[119,-1]],[[8464,2208],[90,1],[89,0],[148,1],[190,0]],[[11330,2375],[0,-28],[0,-117],[-2,-118]],[[10611,2113],[2,205],[0,29],[1,89],[1,123],[15,0],[-1,177],[0,88]],[[10629,2824],[240,0],[244,1],[85,-1],[150,0]],[[11348,2824],[0,-237],[1,-29],[-17,0],[-2,-183]],[[5790,5204],[-29,0]],[[5761,5204],[0,176],[1,175],[1,176],[-1,176],[0,175]],[[5762,6082],[183,1],[201,0],[181,0],[185,-1],[180,0]],[[6692,6082],[0,-177],[0,-1],[-2,-175],[1,-175],[2,-176]],[[6693,5378],[-1,-176]],[[2301,534],[1,175],[1,88],[-31,1]],[[2272,798],[1,176]],[[2273,974],[178,0],[265,0],[89,0],[88,0],[89,1]],[[2982,975],[177,-1]],[[3159,974],[-1,-177],[26,-1],[0,-148],[0,-29],[0,-293],[3,-194],[0,-114]],[[3187,18],[-293,0],[-267,-2],[-323,-2]],[[2304,14],[-3,223],[0,92],[0,205]],[[5397,6082],[183,1],[182,-1]],[[5761,5204],[-152,0],[-31,0],[-150,0],[-31,0],[-151,0],[-32,0],[-148,1],[-34,0],[-147,0]],[[4885,5205],[-35,0]],[[4848,6082],[184,0],[181,1],[184,-1]],[[7244,4676],[-182,0],[-183,0],[-182,0]],[[6693,5378],[182,0],[54,0],[129,0],[182,-1],[185,1],[182,1]],[[7607,5203],[0,-30],[0,-146],[-1,-176]],[[7606,4851],[-1,-176]],[[7605,4675],[-180,1],[-181,0]],[[1800,1503],[237,0],[59,0],[177,-1]],[[2273,1502],[0,-88],[0,-440]],[[2272,798],[-236,0],[-236,0],[-202,0]],[[1598,798],[-35,0]],[[1563,798],[0,153],[-1,199],[-1,118],[2,234]],[[1563,1502],[237,1]],[[6697,3972],[0,176],[1,175],[-3,1],[1,176]],[[7605,4675],[-1,-176],[-1,-176]],[[7603,4323],[0,-176],[-1,-176]],[[804,799],[50,0]],[[854,799],[303,0],[249,-1],[157,0]],[[1598,798],[0,-264],[0,-88],[1,-176],[1,-260]],[[1600,10],[-352,-3],[-214,-1],[-228,-1]],[[7422,2387],[-178,0],[-178,0]],[[6708,2386],[-1,176],[-4,0],[1,176],[0,177],[0,177]],[[6704,3092],[0,176]],[[7602,3267],[0,-176],[0,-176],[0,-176],[0,-176],[0,-177]],[[7602,2386],[-180,1]],[[4885,5205],[0,-177],[-2,-73],[1,-102],[-3,-146],[-3,-30],[2,-88],[-1,-88],[1,-176]],[[4880,4325],[-59,1],[-225,0],[-78,-1],[-181,0],[-40,0],[-142,0],[-159,-1]],[[3996,4324],[-22,0]],[[3974,4324],[0,177],[0,148],[1,29],[3,146],[0,30],[1,87],[1,88],[-1,174]],[[4896,4326],[-16,-1]],[[5785,4501],[0,-176]],[[4935,1682],[0,-186]],[[4935,1496],[-178,1],[-177,-1],[-236,1],[-296,2]],[[4048,1499],[0,5],[-1,179],[-17,0],[1,177]],[[4031,1860],[1,352]],[[9617,3529],[121,0],[180,0]],[[9911,2913],[0,-235],[0,-7],[0,-111],[-13,0],[-1,-179]],[[9250,2384],[1,60],[2,205],[0,30],[1,264],[1,147]],[[9257,3529],[270,0],[90,0]],[[7602,2386],[176,3],[179,-1],[0,-175]],[[11603,4245],[0,-5],[0,-66],[0,-35],[0,-100]],[[11603,4039],[-13,8],[-1,7],[-10,8],[-13,-2],[-28,-35],[-27,-5],[-25,21],[-50,17],[-16,-1],[-11,-43],[-17,-10],[-29,16]],[[11161,4904],[93,0],[92,-1],[159,1]],[[11505,4904],[23,-11],[14,-17],[1,-23],[12,-14],[24,-5],[46,18],[13,-5],[10,-14],[-1,-28],[-34,-20],[-13,-24],[4,-47],[10,-44],[19,-29],[19,-16],[35,-15],[36,-29],[13,-29],[-2,-22],[-11,-21],[18,-28],[19,-7],[40,2],[19,-14]],[[11819,4462],[-202,5],[-1,-3],[-1,-147],[-12,-27],[0,-45]],[[894,5205],[142,0]],[[1036,5205],[40,0]],[[1076,5205],[-2,-260],[0,-89],[-1,-175],[0,-88],[-1,-263]],[[1072,4330],[-140,-1]],[[932,4329],[-223,-1],[-48,0],[-317,-2],[-135,0],[-202,0]],[[7,4326],[-1,176],[-2,351],[-1,352]],[[3,5205],[122,0],[182,0],[45,0],[319,1],[42,0],[181,-1]],[[10601,966],[0,-176]],[[10601,790],[-125,1],[-51,0],[-52,0],[-126,2],[-124,1],[-53,0],[-178,2]],[[9892,796],[-1,88],[0,86],[0,88],[2,176]],[[9894,1498],[147,0],[28,0],[120,-1],[177,0],[31,-1],[204,-1]],[[10601,1495],[-1,-176],[1,-176],[0,-177]],[[11587,2822],[-239,2]],[[11348,2824],[0,116],[0,60],[0,79],[1,97],[-1,88],[0,89],[0,87],[14,0],[1,88]],[[11363,3528],[90,0],[14,0],[46,0],[75,0],[75,0],[38,0],[1,0],[1,0],[5,0],[45,0],[1,0],[4,0],[11,0],[15,0],[60,-1],[120,0],[125,0]],[[12089,3527],[-4,-267],[-1,-176],[-1,-263]],[[12083,2821],[-135,0],[-121,1],[-7,0],[-233,0]],[[11551,701],[176,-1],[88,0],[89,-1],[14,0],[15,0],[143,-1]],[[12076,698],[-2,-265],[1,-179],[0,-59],[0,-67],[0,-116],[-170,0],[-14,-1],[-22,0],[-8,1],[-133,0],[-177,1],[-216,0]],[[11335,13],[0,70],[0,4],[-1,171],[0,177],[-2,177],[0,89]],[[11332,701],[219,0]],[[2163,5205],[-34,0]],[[2129,5205],[0,175],[0,1],[1,174],[0,1],[0,175],[1,175],[2,176]],[[2133,6082],[182,0],[182,0],[182,-1],[182,0],[183,0]],[[3044,6081],[-2,-177],[-1,-175],[-1,-175],[0,-176],[0,-176]],[[8976,977],[1,-89],[0,-89],[1,-173]],[[8978,626],[-1,-87],[0,-118],[0,-205],[0,-9],[-1,-195]],[[8976,12],[-160,0],[-175,1],[-148,-1],[-166,0],[-170,0],[-191,0]],[[3673,1860],[-135,0],[-220,-1],[-354,3]],[[2964,1862],[1,175]],[[2965,2037],[1,177],[0,132],[-2,219]],[[2964,2565],[327,-1],[26,0],[218,0],[115,1],[23,-1],[335,1]],[[4031,1860],[-178,0],[-180,0]],[[5801,3090],[180,0],[183,1],[180,0],[181,0],[179,1]],[[5802,2562],[0,91],[0,85],[-1,176],[0,176]],[[4954,615],[1,176],[-17,0]],[[4938,791],[-1,174]],[[4937,965],[237,0],[119,0],[59,0],[74,1],[223,-1],[178,1]],[[6013,790],[2,-351],[1,-87],[1,-265],[1,-77]],[[6018,10],[-101,1],[-346,1],[-308,1],[-306,0]],[[4957,13],[-2,365],[-1,237]],[[8325,3971],[0,-176],[59,-1]],[[8319,3267],[-179,-1],[-179,1],[-179,0],[-180,0]],[[7603,4323],[181,2],[180,1],[2,0],[149,-1],[2,0],[149,-1]],[[8266,4324],[0,-176],[-1,-162],[28,20],[24,2],[9,-12],[-1,-25]],[[442,1504],[-118,2],[-308,1]],[[16,1507],[-2,131],[-1,224],[-1,265],[0,263],[0,176]],[[12,2566],[467,0],[308,1]],[[787,2567],[40,0]],[[827,2567],[1,-175],[1,-205],[-1,-309],[0,-15],[-1,-176],[25,0],[0,-185]],[[852,1502],[-265,2],[-145,0]],[[6875,6082],[182,0],[184,0],[183,0],[182,0]],[[6692,6082],[183,0]],[[6903,12],[-265,-1],[-265,-1],[-355,0]],[[854,799],[0,351],[-2,352]],[[852,1502],[534,0],[177,0]],[[5792,3444],[10,0],[0,-178],[-1,-176]],[[10136,2116],[-30,0],[-209,1]],[[10629,2912],[0,-88]],[[10611,2113],[-147,0],[-30,1],[-61,0],[-237,2]],[[11332,701],[1,89],[-22,0]],[[11311,790],[1,148],[0,29],[-1,175],[1,177],[-1,58]],[[11311,1377],[237,1],[59,0],[210,-1],[30,0],[83,-2],[145,0]],[[12075,1375],[1,-223],[0,-19],[0,-200],[0,-235]],[[9892,796],[-5,0],[1,-177]],[[9888,619],[-147,2],[-59,0],[-88,1],[-148,0],[-58,0],[-148,2],[-29,0],[-233,2]],[[8862,4205],[124,-1],[30,-1],[0,-58]],[[9016,4145],[-1,-175],[0,-60],[0,-117]],[[8266,4324],[2,0],[1,131],[-1,46]],[[8268,4501],[182,-2],[0,-161],[30,0],[-2,-39],[-31,-39],[0,-25],[155,-1],[21,0],[11,-16],[13,17],[36,6],[0,-37],[43,0],[136,1]],[[1563,1502],[-1,147],[0,41],[-22,0],[1,300],[1,199],[0,29],[-1,352]],[[1541,2570],[322,1],[34,0],[324,-2]],[[2221,2569],[31,0],[445,-2],[239,-2]],[[2936,2565],[28,0]],[[2965,2037],[-356,0],[-355,3],[-1,-271],[-1,-80],[22,0],[-1,-187]],[[8499,3091],[-1,-146],[1,-205],[-30,0],[0,-147],[-5,-30],[0,-61],[0,-117],[0,-177]],[[9888,413],[0,118],[0,88]],[[10601,790],[7,0]],[[10608,790],[2,-90],[1,-29],[2,-118],[0,-30],[-6,-117],[0,-88],[0,-61],[0,-87],[-2,-30],[1,-127]],[[10606,13],[-129,0],[-117,0],[-236,-1],[-236,0]],[[9888,12],[-1,197],[1,59],[0,145]],[[11311,790],[-113,1],[-123,0],[-25,-1],[-22,0],[-7,0],[-177,0],[-6,0],[-230,0]],[[11311,1495],[0,-118]],[[9622,5201],[2,0],[148,0]],[[9772,4494],[0,-175],[-5,-7]],[[9767,4312],[-5,7],[-3,23],[-22,0],[-50,22],[7,23],[41,3],[-41,58],[-20,-4],[-14,17],[-18,-19],[-17,-7],[-19,7],[-24,4],[-36,-8],[-14,37],[-22,-1],[-13,-14],[-25,3],[-17,21],[-16,-2],[-22,-39],[-19,-21],[-26,6],[-20,24],[-28,1],[-21,-20],[-11,-42],[-25,-23],[-9,1],[-60,37]],[[9198,4406],[-15,13],[-30,13],[-47,10],[-22,-2],[-7,-23],[5,-19],[-25,-9],[-8,27],[-15,-2],[-18,-19],[-25,7],[-1,34],[-46,-11],[-14,-7],[-11,36],[7,3],[11,-2],[14,2],[6,-4],[3,-1],[14,3],[11,2],[3,15],[-34,19],[-9,-13],[-6,6],[-4,22],[-18,38],[-29,-14],[-24,43],[-4,16],[-21,7],[-46,52],[10,10],[-15,16],[-19,14],[7,15],[-28,17],[-9,13],[14,10],[-27,22],[-17,23],[-4,19],[-40,43],[-15,22],[15,8],[3,26],[-11,15],[15,16],[-14,17],[24,35],[14,-7],[23,42],[26,-7],[19,53],[27,18],[-8,17],[27,30],[23,-3],[41,29],[-4,13],[17,27]],[[8887,5201],[190,0],[182,0],[1,0],[181,0],[1,0]],[[9442,5201],[180,0]],[[932,4329],[-4,-350],[-2,-265],[-2,-87],[-2,-176]],[[922,3451],[-135,-1]],[[787,3450],[-137,-2],[-270,-2],[-369,-1]],[[11,3445],[-1,234],[-2,473],[-1,174]],[[11328,2112],[235,-2],[178,1],[119,-1],[60,0],[161,0]],[[12081,2110],[-2,-264],[-4,-293],[0,-178]],[[9195,4144],[0,29],[0,147],[3,86]],[[9767,4312],[48,-21],[20,-13],[40,4],[16,-19],[26,-7],[0,-227],[-1,-117],[1,-118]],[[9016,4145],[179,-1]],[[8521,6081],[183,-1],[181,0],[192,0],[182,-1],[183,0]],[[9442,6079],[-1,-174],[0,-176],[0,-1],[0,-175],[0,-176]],[[9441,5377],[1,-176]],[[8887,5201],[-1,0],[-183,0],[-183,0]],[[12083,2821],[1,-176],[0,-168],[-2,-190],[-1,-177]],[[4607,13],[-260,1],[-34,0],[-235,-1]],[[4078,13],[-2,240],[-3,150],[-1,116],[0,105],[3,160]],[[4075,784],[175,1],[352,4],[336,2]],[[4957,13],[-81,0],[-269,0]],[[4937,965],[-3,175],[-2,176],[3,180]],[[5794,3795],[179,0],[182,1],[182,-1],[179,1],[181,0]],[[493,6083],[274,0],[274,0]],[[1041,6083],[2,-379],[-7,-499]],[[3,5205],[-2,351],[-1,218],[0,310],[309,0],[184,-1]],[[1405,6083],[365,-1],[363,0]],[[2129,5205],[-241,0],[-87,0],[-35,0],[-326,0],[-39,0],[-182,0],[-143,0]],[[1041,6083],[364,0]],[[2931,3152],[0,-118],[2,-175],[3,-294]],[[2221,2569],[-3,295],[-1,235],[0,59],[-2,292]],[[2215,3450],[148,0],[91,0],[238,-1],[31,0],[208,-3]],[[2931,3446],[-2,-118],[2,-176]],[[11636,4130],[0,-41],[-33,-50]],[[11819,4462],[20,-42],[18,-13],[25,-8],[37,2],[43,26],[30,-3],[16,-15],[-4,-24],[18,-17],[18,-1],[50,15],[21,-7],[12,-16],[-2,-22],[-30,-42],[1,-9],[0,-140]],[[12092,4146],[-22,0],[-46,0],[-30,0],[-30,0],[-31,-1],[-87,0],[-3,0],[-31,0],[-34,0],[-32,13],[-30,20],[-16,3],[0,-1],[-31,-2],[-25,-19],[-8,-29]],[[4007,3443],[-22,0]],[[3985,3443],[4,264],[1,88],[1,175],[3,246],[2,108]],[[10538,5376],[74,0],[7,0],[101,0],[91,0],[92,0]],[[10903,5376],[182,0],[168,0],[41,-36],[1,-29],[21,-11],[52,0]],[[11368,5300],[11,-27],[-5,-25],[-12,-18],[-32,-8],[-33,7],[-17,-13],[-10,-40],[7,-23],[20,-29],[32,-29],[29,-15],[15,-24],[5,-39],[22,-29],[29,-16],[41,-14],[19,-20],[16,-34]],[[2931,3446],[152,-1]],[[3083,3445],[206,-2],[94,0],[264,0],[37,1],[31,-1],[270,0]],[[2161,4326],[-147,0]],[[2014,4326],[-216,-1],[-55,1],[-121,0],[-150,1],[-37,1],[-234,2],[-129,0]],[[12092,4146],[0,-7],[0,-8],[0,-7],[-1,-66],[0,-33],[0,-238],[0,-33],[1,-38],[0,-8],[0,-4],[-1,-29],[-1,-89],[-1,-59]],[[8270,4853],[0,118],[2,58],[0,59],[1,113]],[[8268,4501],[1,176],[0,88],[1,88]],[[10903,5376],[0,177],[0,44],[-1,132],[1,88],[-1,261]],[[10902,6078],[52,0],[9,-32],[53,-30],[20,-29],[26,-20],[35,-2],[30,-20],[-7,-53],[20,-15],[23,-1],[43,13],[15,-9],[5,-41],[20,-16],[76,-25],[71,8],[16,12],[10,45],[14,13],[37,-6],[51,9],[25,-7],[26,-24],[-6,-28],[-18,-32],[8,-14],[33,-27],[49,-7],[16,-18],[2,-22],[-13,-38],[-15,-6],[-53,-3],[-11,-7],[-3,-26],[29,-25],[28,0],[29,20],[23,1],[11,-17],[-4,-41],[-21,-25],[-43,-13],[-26,10],[-34,25],[-26,9],[-14,-11],[-11,-17],[3,-79],[-12,-23],[-13,-7],[-40,-5],[-21,-10],[-45,-66],[-9,-33],[3,-13]],[[4048,1493],[3,-233],[3,-301]],[[4054,959],[-177,-1],[-119,1],[-151,3],[-271,8],[-177,4]],[[2982,975],[0,176],[1,177],[1,176],[0,181],[-21,0],[0,59],[1,118]],[[4048,1499],[0,-6]],[[10173,5376],[0,176],[0,118],[0,58],[1,113],[0,5],[0,43],[0,15],[0,30],[0,14],[0,131]],[[10174,6079],[187,-1],[175,0],[184,0],[182,0]],[[11335,13],[-139,0],[-177,0],[-177,0],[-236,0]],[[1184,2569],[321,1]],[[1505,2570],[36,0]],[[827,2567],[357,2]],[[1283,3453],[-361,-2]],[[2014,4326],[-3,-261],[-1,-88],[-4,-176],[-2,-176],[-1,-175]],[[2003,3450],[-145,-2],[-217,2],[-141,1]],[[1500,3451],[-217,2]],[[9448,12],[-238,1],[-234,-1]],[[9888,12],[-206,0],[-234,0]],[[3083,3445],[3,293],[0,58],[4,264],[2,264]],[[3092,4324],[183,-1],[94,0],[26,0],[277,1],[21,0],[281,0]],[[3066,4324],[26,0]],[[2215,3450],[-212,0]],[[3070,5203],[227,0],[227,-1],[48,0],[195,1],[170,0]],[[9442,6079],[183,0],[181,0],[184,0],[184,0]],[[1501,2863],[0,294],[-1,294]],[[1505,2570],[-4,293]],[[3044,6081],[303,0],[229,0],[365,1]],[[2304,14],[-164,-2],[-188,-1],[-155,-1],[-197,0]],[[4078,13],[-175,0],[-120,2],[-296,2],[-300,1]],[[4054,959],[0,-175],[21,0]],[[17,801],[-1,295],[1,293],[-1,118]],[[787,3450],[0,-883]],[[12,2566],[-2,386],[1,493]]],"transform":{"scale":[0.0006156340014847807,0.0004947504930966466],"translate":[-102.051744,36.993016]},"objects":{"cb_2019_20_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[4,5,6,7,8,9,10]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[11,12,13,-10,14]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[15,16,17,-8,18,19,20]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[21,22,-12,23,24,25]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[26,27,28,29,30]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[31,32,33,34,35,36,37]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[38,39,40,41,42,43,44]],"type":"Polygon","properties":{"COUNTYFP":"167"}},{"arcs":[[45,46,47,48,49,50]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[51,52,53,54,55,56,57]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[58,59,60,61,62,63,64]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[65,66,67,68,69,-59,70]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[71,72,73,74,75,76,77]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[78,79,80,81,82,83,84,85]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[86,87,-67,88,89,90]],"type":"Polygon","properties":{"COUNTYFP":"191"}},{"arcs":[[91,-32,-38,92,93,-44,94]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[-65,95,96,97,98,-89,-66,-71]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[99,100,101,102,103,104,105]],"type":"Polygon","properties":{"COUNTYFP":"179"}},{"arcs":[[106,107,108,109,110,111,112]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[113,114,-61,115,116,-34]],"type":"Polygon","properties":{"COUNTYFP":"185"}},{"arcs":[[117,118,119,120,121,122,123,124]],"type":"Polygon","properties":{"COUNTYFP":"201"}},{"arcs":[[-82,125,126,-99,127,128,129]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[130,-27,-31,131,132,133]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-50,134,135,136,137,138]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[139,140,141,142,143,144,145]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[146,-136,147,148,-112,-111,149]],"type":"Polygon","properties":{"COUNTYFP":"183"}},{"arcs":[[150,-46,-51,-139,151,-122,152,153,154]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[155,156,-141,157,158,159,160]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-52,-58,161,-47,-151,-155,162,163]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[-3,164,165,-159,166,167]],"type":"Polygon","properties":{"COUNTYFP":"189"}},{"arcs":[[168,-63,169,170,-55,-54,171,172]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[-113,-149,173,174,175,176,-107]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[-40,177,-174,-148,-135,-49,178]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[-35,-117,179,180,181,182]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[183,-16,-21,184,-84,185,-74,186]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-128,-98,-97,-96,-64,-169,-173,187]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[188,189,-5,-11,-14,190,191,192]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[193,194,195,196,197,198,199]],"type":"Polygon","properties":{"COUNTYFP":"181"}},{"arcs":[[200,201,202,-80,203,204]],"type":"Polygon","properties":{"COUNTYFP":"205"}},{"arcs":[[205,206,207,208,209]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[210,211,212,213]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-103,214,215,216,217]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-90,-127,218,219,220]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[221,222,223,224,-36,-183,225]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[226,-170,-62,-115,227]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[228,229,230,-69,231,232,233]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[234,-77,235,-53,-164,236,237]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[238,239,240,241,242,243]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[244,-124,-123,-152,-138,245]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[-68,-88,246,-232]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-160,-166,247,248]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-92,-95,-43,249,-228,-114,-33]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[250,-85,-185,-20,251,-132,252]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-214,253,254,255,256,-211]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-81,-203,257,258,-219,-126]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[259,260,-72,-78,-235,-238,261,262]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[-156,-161,263,264,265,266,-224,267]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-236,-76,268,-129,-188,-172]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[269,-258,-202,270,271,272,273]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[-255,274,-271,-201,-205,-29,275]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[276,-25,277,278,279,280,281]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[-198,282,283,284,285]],"type":"Polygon","properties":{"COUNTYFP":"199"}},{"arcs":[[-28,286,287,-256,-276]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-130,-269,-75,-186,-83]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-86,-251,-253,-30,-204,-79]],"type":"Polygon","properties":{"COUNTYFP":"207"}},{"arcs":[[288,-279,289,-17,-184,-187,-73,-261,290]],"type":"Polygon","properties":{"COUNTYFP":"197"}},{"arcs":[[-18,-290,-278,-24,-15,-9]],"type":"Polygon","properties":{"COUNTYFP":"177"}},{"arcs":[[291,292,293,-281,294,-119]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-206,-210,295,-287,-131,-134]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[296,297,298,-229,-234,299]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-231,300,-180,-116,-60,-70]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[-56,-171,-227,-250,-42,301]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[302,303,-194,-200,304]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[305,-216,306,-195,-304,307]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[308,-266,309,310,311]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[312,-189,-193,313,314]],"type":"Polygon","properties":{"COUNTYFP":"209"}},{"arcs":[[-48,-162,-57,-302,-41,-179]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-175,-178,-39,-45,-94,315,316]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-13,-23,317,318,319,-191]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[320,321,-316,-93,-37,-225,-267,-309,-312]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[-307,-215,-102,-101,322,323,-196]],"type":"Polygon","properties":{"COUNTYFP":"193"}},{"arcs":[[-315,324,-208,-6,-190,-313]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[325,-120,-295,-280,-289,-291,-260,-263,326]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[-319,327,328]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[329,330,-143,331,-222,-226,-182,332]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-328,-318,-22,333,334]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-275,-254,-213,335,-272]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[336,337,-264,-249,-243,338]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[339,-283,-197,-324,340,341,342]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-142,-157,-268,-223,-332]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-262,-237,-163,-154,-153,-121,-326,-327]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[343,-220,-259,-270,-274,344]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-322,345,346,-176,-317]],"type":"Polygon","properties":{"COUNTYFP":"195"}},{"arcs":[[-106,347,-346,-321,-311,348,-341,-323,-100]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-177,-347,-348,-105,349,-108]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-334,-26,-277,-282,-294,-293,350]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[351,-342,-349,-310,-265,-338,352]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[-109,-350,-104,-218,353]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[-146,354,-167,-158,-140]],"type":"Polygon","properties":{"COUNTYFP":"175"}},{"arcs":[[-19,-7,-207,-133,-252]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-298,355,-144,-331,356]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-239,-244,-248,-165,-2,357]],"type":"Polygon","properties":{"COUNTYFP":"187"}},{"arcs":[[-181,-301,-230,-299,-357,-330,-333]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[-285,358,-241,359]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-284,-340,-343,-352,-353,-337,-339,-242,-359]],"type":"Polygon","properties":{"COUNTYFP":"203"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ky.topo.json b/app/assets/topojson/states/ky.topo.json new file mode 100755 index 00000000..bf25628e --- /dev/null +++ b/app/assets/topojson/states/ky.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[10037,6231],[351,-259]],[[10388,5972],[160,-73],[-13,-108],[-35,-280]],[[10500,5511],[-12,-97]],[[10488,5414],[-309,-141],[-17,-8],[-98,12],[-265,30],[-30,3],[-416,-152],[-91,-70],[-2,-33],[-62,-40]],[[9198,5015],[-22,21]],[[9176,5036],[54,56],[23,130],[28,94],[-2,93],[-4,149],[10,42],[60,98],[70,62],[25,39],[16,106],[48,57],[77,20],[37,-10],[28,-44],[43,-16],[99,59],[80,57],[46,72],[42,134],[2,55]],[[9958,6289],[79,-58]],[[4451,2850],[5,4],[387,257],[152,102],[116,45],[137,48],[312,277]],[[5560,3583],[40,-80],[-18,-38],[30,-21],[12,-48],[-20,-23],[-10,-64],[20,-25],[-11,-50],[18,-136],[54,-55],[3,-33],[52,6],[31,-28]],[[5761,2988],[-21,-29],[12,-50],[-32,-15],[-27,-66],[-19,0],[-38,-114],[-61,25],[-7,-60],[-38,-86],[0,-61],[36,-16],[41,-57],[28,-71],[39,-41],[57,-18],[-12,-49],[-54,-76]],[[5665,2204],[-65,-1],[-7,-58],[-31,-19],[-285,-26],[-87,-69],[-255,100],[-71,40],[-77,7]],[[4787,2178],[-45,31],[-39,67],[-59,40],[-95,25],[8,53],[-40,45],[-42,52],[24,40],[-8,44],[10,71],[-34,13],[25,75],[-58,7],[-10,-47],[-70,49],[45,71],[48,9],[4,27]],[[10040,3595],[-3,56],[43,37],[-7,41],[19,38],[43,-6],[-12,49],[-57,6],[-14,59],[21,122],[-60,12],[-55,-3],[-19,66],[-88,53]],[[9851,4125],[-5,85],[-27,-8],[-29,43],[-60,20],[-37,60],[12,65]],[[9705,4390],[99,-2],[61,41],[80,36],[42,53],[68,65],[51,47],[-15,76],[92,73],[16,41],[48,56],[-26,27],[114,85]],[[10335,4988],[65,-65],[95,-39],[67,-66],[119,17],[120,27],[347,63]],[[11148,4925],[38,-248]],[[11186,4677],[3,-33],[-75,16],[-61,-98],[-27,27],[-76,-81],[-82,-10],[-44,-38],[-45,-93],[14,-37],[-28,-20],[-93,-21],[8,-81],[-56,24],[4,-83],[-33,4],[-39,-34]],[[10556,4119],[-129,-163],[-75,-178],[-56,-147],[-42,-100]],[[10254,3531],[-57,27],[-19,-29],[8,-69],[-58,-20],[-71,26],[-15,29],[-48,9],[41,51],[5,40]],[[3777,3268],[30,34],[16,65]],[[3823,3367],[35,43],[34,-16],[33,50],[14,63],[42,-29],[-2,-80],[30,-61],[40,10],[14,-49],[29,-19],[56,3]],[[4148,3282],[-28,-49],[19,-89],[-4,-43],[24,-57],[65,-35],[103,58],[47,4],[-1,-52],[-38,-28],[-1,-42],[31,-15],[76,23],[41,-11]],[[4482,2946],[-636,-473],[-57,-34],[-37,-18],[15,-127],[-31,-15]],[[3736,2279],[-37,-66],[-58,-27],[-50,-7],[-18,-55],[-62,-23],[-29,38],[7,32]],[[3489,2171],[15,24],[-21,63],[-59,30],[4,27],[54,97],[-12,53],[-46,126],[-122,148],[-67,60],[-20,105],[5,37],[-61,53],[-78,16],[-10,21]],[[3071,3031],[64,75],[52,45],[78,40],[67,14],[77,2],[126,21],[101,26],[141,14]],[[13220,988],[-1,-41],[69,-74],[0,-89],[15,-113],[23,-71],[48,-87],[43,-56],[81,-69],[32,-71]],[[13530,317],[-112,-1],[-434,14],[-254,1],[-157,8],[-439,15]],[[12134,354],[264,454],[5,65],[45,29],[32,-1],[43,42],[6,48],[66,20],[43,49],[-8,41],[3,46],[-26,73],[34,16]],[[12641,1236],[409,266],[87,21],[36,31],[25,-10]],[[13198,1544],[-25,-46],[56,-21],[54,23],[69,-1]],[[13352,1499],[-33,-46],[16,-66],[-45,-52],[15,-60],[-23,-26],[-1,-54],[-33,-99],[-43,-41],[26,-28],[-11,-39]],[[12987,5958],[12,-50],[39,-45],[-5,-49],[17,-56],[38,-45]],[[13088,5713],[-554,-262],[-11,-42],[-1,-2]],[[12522,5407],[-63,95],[-17,55],[3,61],[-71,-15],[-77,1],[-28,67]],[[12269,5671],[-13,43],[-10,161],[-9,176],[-7,145]],[[12230,6196],[87,59],[144,155],[65,49],[109,139]],[[12635,6598],[59,67]],[[12694,6665],[34,-94],[45,-50],[-5,-55],[82,-54],[71,-81],[13,-36],[4,-113],[36,-65],[32,-82],[-22,-70]],[[12984,5965],[3,-7]],[[11186,4677],[36,-20],[35,82],[47,-23],[-1,-52],[46,-20],[73,9],[29,18],[45,-14]],[[11496,4657],[52,-108],[24,-15],[-7,-66],[-22,-60],[11,-45],[-44,-417]],[[11510,3946],[-13,-159]],[[11497,3787],[-236,0],[-338,-1],[-89,45],[-49,25],[-74,-1],[-19,15],[-65,59],[11,46],[-11,41],[-43,46],[-28,57]],[[17456,4659],[162,-43]],[[17618,4616],[-76,-53],[-72,-38],[7,-24],[59,-74],[-75,-120],[53,-31],[-6,-83],[30,-37],[8,-72]],[[17546,4084],[-33,22],[-46,-4],[-33,33],[-59,14],[-39,32],[-34,-14],[-65,38],[-11,-48],[-61,8],[-138,-49],[-64,-2],[-53,-68],[-29,-6],[-60,42],[-35,-10]],[[16786,4072],[-19,13],[-5,248],[-83,53],[-7,53],[5,51],[-52,59]],[[16625,4549],[52,55],[17,59],[40,64],[-51,93],[-19,78]],[[16664,4898],[59,101],[66,16],[163,-71],[111,-33],[133,-95],[107,-77],[153,-80]],[[14317,6221],[29,21],[89,-49],[32,-3],[-2,-56],[57,-56],[-33,-68]],[[14489,6010],[-4,-1],[-324,-349]],[[14161,5660],[1,94],[-60,-19],[-67,12],[-89,57],[26,25],[-12,47],[-96,8],[-51,67],[-4,31],[-52,78],[-73,144],[-70,56]],[[13614,6260],[232,293]],[[13846,6553],[73,-7],[110,-56],[32,16],[18,-42],[76,22]],[[14155,6486],[79,-55],[70,-132],[13,-78]],[[6762,2382],[-15,-9],[15,-78],[-35,-22],[-32,-58],[8,-59],[66,-83],[1,-87],[-55,-39],[-60,-11],[3,-26]],[[6658,1910],[-88,15],[-195,-42]],[[6375,1883],[-29,-9],[-135,-45],[-335,-14],[-23,31],[36,47],[-36,28]],[[5853,1921],[-39,-2],[-18,56],[-6,65],[-72,19],[-43,71],[-10,74]],[[5761,2988],[219,-32],[71,76],[26,28],[149,-6],[31,15]],[[6257,3069],[12,-134],[-72,-51],[-34,-65],[40,-51],[47,9],[39,104],[42,35],[102,-23],[47,-59],[66,-98],[-6,-46],[18,-54],[-4,-56],[28,-39],[42,-1],[20,-57],[60,3],[10,-55],[51,-43]],[[6765,2388],[-3,-6]],[[13937,1201],[68,-27],[-11,-31],[41,-69],[69,-25],[2,-35],[40,0],[8,-31],[10,-42],[-29,-29],[4,-38],[45,7],[23,-39],[3,-74],[205,-133]],[[14415,635],[-3,-23],[-97,-63],[-21,-3],[-78,-51],[-1,-1],[7,-28],[54,-59],[19,-55],[-15,-50]],[[14280,302],[-304,10],[-381,5],[-65,0]],[[13352,1499],[54,53],[40,4],[71,-65],[19,44],[38,-32],[49,2],[41,-25],[56,50],[3,41],[76,4],[73,-43]],[[13872,1532],[24,-75],[0,-114],[32,-41],[9,-101]],[[12984,5965],[60,13],[102,-31],[59,34],[27,-10],[65,36],[27,55],[67,0],[44,40],[179,158]],[[14161,5660],[-31,-57],[-151,-126],[-26,-11],[-52,-63]],[[13901,5403],[-167,-51],[-354,-109]],[[13380,5243],[-2,28],[-62,37],[-39,-6],[-85,46],[-48,42],[28,75],[-13,80],[47,68],[-9,56],[-50,56],[-59,-12]],[[15520,4927],[18,205]],[[15538,5132],[-4,30],[48,16],[54,-19],[13,42],[47,50],[70,-2],[16,45],[83,25],[105,85]],[[15970,5404],[5,-44],[-24,-110],[8,-34],[44,-30],[44,6],[52,-83],[24,-44],[129,-11],[26,-44],[13,23],[67,-1],[21,19],[108,-13],[26,-30],[67,34]],[[16580,5042],[-7,-52],[36,-72],[55,-20]],[[16625,4549],[-45,52],[-87,-16],[-83,68],[-106,7],[46,-95],[-108,-75],[-46,-33],[-11,-34],[-75,-8],[-45,-78],[4,-17],[-22,5],[-95,-85],[67,-74],[-43,-63],[-3,-44]],[[15973,4059],[-49,21],[-14,78],[-56,9],[-63,45],[16,71],[-50,20],[-43,45],[-52,10],[-4,39],[-49,3],[-69,15],[-56,78],[-74,5],[-27,60]],[[15383,4558],[-2,96],[131,173],[8,100]],[[15254,6416],[57,-32],[22,20],[45,-43],[29,10],[83,-77]],[[15490,6294],[-44,-89],[-30,15],[-44,-35],[29,-83],[-34,-29],[-10,-72],[-23,-7],[16,-63],[-42,-61],[-80,-59],[-10,-55],[-54,-8],[-84,-84],[-52,-19]],[[15028,5645],[-28,-55],[-31,100],[-35,-12],[-34,56],[-34,106],[-45,20],[16,54],[-68,-9],[13,60],[-62,5],[-29,29],[-67,-4],[-30,-38],[-22,18],[-19,48],[-64,-13]],[[14155,6486],[-10,20],[35,62],[101,95]],[[14281,6663],[180,-120],[101,46],[38,18],[209,95],[203,71]],[[15012,6773],[33,-11],[10,-61],[40,-5],[39,-44],[44,-146],[-8,-51],[84,-39]],[[13776,6604],[60,-20],[10,-31]],[[12694,6665],[92,52],[62,13],[28,-13],[23,114]],[[12899,6831],[60,-39],[77,49],[10,43],[45,7],[494,71]],[[13585,6962],[3,-60],[-18,-44],[80,26],[45,-15]],[[13695,6869],[-4,-49],[-38,-22],[-13,-118],[56,14],[32,-82],[48,-8]],[[10254,3531],[46,-18],[26,-49],[3,-66],[44,-75],[20,-89]],[[10393,3234],[-58,7],[-35,49],[-61,-70],[-5,-24],[-91,19],[-47,34]],[[10096,3249],[-50,-9],[-19,-23],[-60,35],[-10,-56],[-68,-58],[20,-49]],[[9909,3089],[-192,11],[-43,19],[-286,24],[-75,7]],[[9313,3150],[-4,107],[15,4],[32,233],[94,84],[43,16],[6,36],[56,80],[-16,45],[109,86],[61,24],[142,260]],[[14842,1102],[-74,-62],[-36,-11],[-95,-27],[-21,-40],[5,-42],[-32,-36],[-1,-46],[-50,-16],[-27,-98],[-41,-28],[-25,31],[-30,-92]],[[13872,1532],[39,46],[37,22],[51,2],[22,39],[41,-15],[146,-23],[59,62],[5,39],[29,97],[43,-13],[52,34],[35,41]],[[14431,1863],[38,-42],[56,3],[29,-58],[45,23],[48,5],[28,-64],[61,38],[22,-14],[15,-53],[41,-38],[118,-63],[32,1],[31,-43],[107,-36],[42,10]],[[15144,1532],[14,-49],[44,-29],[-23,-34],[-14,-59],[-72,-28],[-27,-40],[-26,13],[-31,-34],[1,-39],[-53,-7],[-49,-32],[-23,-53],[-43,-39]],[[12476,1444],[59,-111],[37,-52],[39,6],[30,-51]],[[12134,354],[-164,7],[-175,17],[-158,17]],[[11637,395],[-62,31],[-13,61],[16,15],[-8,99],[-49,58],[2,78],[24,83],[16,45],[-57,170],[-83,87],[-13,86]],[[11410,1208],[51,40],[66,55],[115,77],[44,53],[13,98],[18,17],[55,-13],[34,-38],[183,174]],[[11989,1671],[132,-64],[34,-68],[100,29],[65,51],[65,-3],[91,-172]],[[12290,4402],[54,42],[50,-5],[-10,-79],[6,-40],[29,-26],[42,30],[0,59],[83,-19],[-66,-40],[-1,-46],[79,-38],[16,-38],[51,-16],[-5,-51],[43,-22],[25,41],[88,95]],[[12774,4249],[27,-40],[52,-34],[-22,-43],[46,-66],[79,-78],[28,-121],[36,4],[8,-70],[27,-42],[39,-24],[7,-53],[54,-14],[14,-84],[45,-59],[10,-45]],[[13224,3480],[-34,-85],[18,-40],[-51,-97],[-183,44]],[[12974,3302],[-14,23],[-53,6],[-189,169],[-36,31],[-143,129],[-86,84],[21,45],[-36,9]],[[12438,3798],[11,61],[-63,0],[-49,53],[3,44],[-18,53],[-46,-16],[-54,19],[-3,49]],[[12219,4061],[37,41],[71,0],[-2,100],[-32,49],[26,77],[-29,74]],[[16607,5706],[-43,-34],[-48,-7],[-9,-46],[-29,60],[-34,30],[-41,71],[-67,18],[-92,85],[-52,27],[-37,-51],[-50,-31],[-23,-33],[-5,-75],[-59,-59]],[[16018,5661],[-48,-5],[-27,38],[-66,23],[-30,146],[-53,107],[-22,116]],[[15772,6086],[40,34],[82,0],[28,-18],[68,20],[57,28],[-11,67],[11,37],[-11,189],[42,18],[24,48],[27,25],[40,140],[46,28]],[[16215,6702],[71,-22],[44,-39],[61,-9],[76,-55],[39,-5],[111,-131],[29,-52],[72,-54],[139,16],[59,-20],[183,-63]],[[17099,6268],[113,-36],[-24,-94],[-31,-305]],[[17157,5833],[-75,-52],[25,-37],[-92,-84],[-83,13],[-36,-44],[-69,-25]],[[16827,5604],[-45,-18],[-37,16],[-47,-9],[-35,26],[1,31],[-46,11],[-11,45]],[[13688,4555],[45,20],[47,0],[31,-48],[70,27],[20,-26]],[[13901,4528],[-12,-42],[-41,0],[-52,-109],[58,26],[56,-22],[8,-26],[-85,-85],[64,-28],[-19,-37],[22,-24],[-27,-82],[-3,-127],[-20,-28],[29,-38],[-26,-20],[-70,-61],[37,-123],[29,-68],[27,-64]],[[13876,3570],[-131,-4],[-75,-25],[-70,-116]],[[13600,3425],[-63,15],[-28,-25],[-33,17],[-37,-31],[-38,27],[-61,-1],[-53,53],[-63,0]],[[12774,4249],[9,28],[66,25],[50,56],[36,4],[-58,125],[31,41],[22,-30],[44,-12],[28,23]],[[13002,4509],[36,73],[27,7],[45,-80],[60,23],[7,30],[-43,102],[49,9],[58,-48],[10,33]],[[13251,4658],[94,42],[70,43],[28,-75],[-10,-37],[70,12],[34,-35],[24,-26],[71,33],[36,-13],[20,-47]],[[11989,1671],[-71,35],[-106,131],[-3,134],[15,97]],[[11824,2068],[240,203],[216,204]],[[12280,2475],[80,75],[291,276],[45,41],[136,-90]],[[12832,2777],[167,-190],[345,-360],[29,-41]],[[13373,2186],[-12,-25],[16,-69],[-8,-44],[27,-28],[-12,-43],[-42,-5],[-59,-66],[18,-33],[1,-58],[24,-29],[-61,-25],[46,-58],[-9,-26],[-77,-30],[7,-62],[-34,-41]],[[8469,1388],[-66,-71],[-36,6],[8,-67],[-82,-74],[-279,-250]],[[8014,932],[14,104],[-132,23],[-52,10],[-279,44],[-72,176]],[[7493,1289],[-11,29],[-148,361]],[[7334,1679],[143,479],[3,11],[7,68],[-24,47],[43,14],[64,-1],[102,-30],[113,49],[61,-81],[13,-43],[58,2],[4,38],[84,-42],[26,57]],[[8031,2247],[297,-299],[29,6],[35,11],[37,38],[59,24],[67,-92],[199,-52]],[[8754,1883],[-2,-7],[-132,-417]],[[8620,1459],[-57,-41],[-31,45],[-22,-25],[17,-48],[-24,-32],[-34,30]],[[12193,3670],[21,-35],[59,19],[87,77],[78,11],[0,56]],[[12974,3302],[-49,-171],[-93,-354]],[[12280,2475],[12,48],[-20,114],[43,52],[-40,193],[-185,101],[-140,129],[-23,128],[8,204],[24,66]],[[11959,3510],[117,69],[113,65],[4,26]],[[8620,1459],[15,-33],[-37,-38],[44,-21],[40,24],[84,-103],[34,60],[45,-28],[19,-50],[-20,-76],[57,-82],[-27,-24],[-5,-55],[30,9],[55,-96],[-42,-27],[35,-41],[17,14],[72,-18],[49,-58],[15,-63]],[[9100,753],[-1,-22],[71,-182],[-60,-110]],[[9110,439],[-151,6],[-335,25],[-325,25],[-101,11],[-198,6]],[[8000,512],[-12,50],[7,126],[-1,67],[20,177]],[[15239,3197],[-7,-54],[29,-42],[4,-90],[-18,-90],[32,-62],[-29,-63]],[[15250,2796],[5,-60],[-15,-98],[72,-52],[-9,-43]],[[15303,2543],[-37,31],[-51,1],[-36,44],[-85,66],[-33,46],[1,32],[-42,66],[-75,37],[-26,-61],[-24,3],[-77,3],[-169,33]],[[14649,2844],[-68,72],[-36,112],[-35,69],[-25,78],[-39,12],[-47,86],[6,61],[-16,22],[6,52]],[[14395,3408],[47,-14],[0,-28],[93,-61],[154,17],[66,8],[-5,47],[34,43],[74,-44],[56,13],[59,83],[67,2],[9,-49],[95,-56],[26,1]],[[15170,3370],[37,-119],[39,-19],[-7,-35]],[[6765,2388],[13,11],[27,66],[29,38],[47,13],[13,41],[35,39],[40,103],[4,74],[40,23],[66,-28],[12,-54],[28,-19],[151,124],[222,180]],[[7492,2999],[316,-109],[12,-36],[34,-102]],[[7854,2752],[138,-399],[39,-106]],[[7334,1679],[-308,134],[-114,51],[-254,46]],[[15229,4421],[75,42],[24,61],[55,34]],[[15973,4059],[47,-45],[-38,-63],[25,-36]],[[16007,3915],[-175,45],[-33,-28],[-101,48],[-52,34],[-69,-28],[-33,-57],[-6,-55],[-29,-21],[-34,-68],[-43,-16],[-47,-22],[0,67],[-38,11],[-33,-13]],[[15314,3812],[-141,56],[-98,38],[-29,40],[-202,126]],[[14844,4072],[195,364]],[[15039,4436],[47,29],[56,-53],[87,9]],[[6957,4143],[467,-253]],[[7424,3890],[-4,-143],[39,-51],[12,-56],[70,-76]],[[7541,3564],[40,-35],[-70,-43],[-39,43],[-13,40],[-55,-34],[-46,3],[-6,-34],[14,-15],[63,-242],[63,-248]],[[6257,3069],[-11,66],[-1,86],[-42,27],[-36,52],[28,5],[28,-51],[26,31],[67,117],[69,120],[28,30]],[[6413,3552],[82,66],[71,87],[75,80],[56,-20],[54,18],[27,39],[74,27],[57,52],[62,28],[-123,117],[109,97]],[[15028,5645],[38,-40],[68,-10],[-15,-31],[-48,-25],[12,-75],[38,-19],[34,60],[64,1],[27,-47],[-25,-52],[62,12],[37,-13],[1,-90],[143,-31],[-2,-39],[-42,4],[-46,-62]],[[15374,5188],[-6,-6],[-187,33],[5,-119],[-11,-33],[-107,3],[-38,42],[-63,5],[-75,-54],[-43,2],[-28,-31],[-59,13],[-48,-28]],[[14714,5015],[6,25],[-109,114],[-53,136],[-139,169],[-14,16],[-127,38],[-62,38],[-57,77],[2,32]],[[15144,1532],[204,-58]],[[15348,1474],[-7,-34],[44,-29],[-23,-46],[34,-35]],[[15396,1330],[-18,-39],[8,-67],[31,-48],[-23,-42],[-53,-98],[66,-80],[-14,-88],[-25,-79],[53,-79],[52,-41],[-4,-109]],[[15469,560],[-83,18],[-96,-17],[-25,-29],[-108,-50],[-76,-25],[-27,-29],[-62,-29],[-66,-60],[-38,-54],[-379,9],[-229,8]],[[13585,6962],[-23,240],[-27,300],[-28,263],[14,17]],[[13521,7782],[45,-73],[37,-16],[107,-20],[112,-47],[102,-34],[68,0],[166,55],[89,-11],[43,-41],[58,-11]],[[14348,7584],[-109,-279],[-113,-304]],[[14126,7001],[-44,-29],[-36,-2],[-68,61],[-103,-24],[-35,-30],[-25,-51],[-81,-71],[-39,14]],[[4653,1686],[57,65],[77,427]],[[5853,1921],[-57,-424],[-28,-201],[-18,-128],[-23,-175],[-68,-511]],[[5659,482],[-254,-2],[-652,-13]],[[4753,467],[29,222],[22,175],[0,241],[6,178],[29,274],[1,10],[-187,119]],[[16347,2864],[11,-113],[-16,-36],[-9,-88],[-19,-51],[27,-93],[29,-16],[88,42],[8,-57],[33,-52],[54,3],[68,-36],[15,-34]],[[16636,2333],[-53,-59],[-18,-28],[-52,-1],[33,-41],[-63,-140],[24,-76],[26,-41],[-42,-76],[-40,-37],[54,-58],[-6,-35],[-62,-32],[-63,-52],[-47,26]],[[16327,1683],[-37,10],[-61,56],[-54,1]],[[16175,1750],[-12,44],[25,96],[28,27],[-23,45],[20,34],[-5,25],[-63,23],[-29,66],[-54,34],[0,51],[60,71],[-29,1],[-88,64],[-14,30],[-48,-7],[-33,51],[-30,-9],[-31,51],[-31,-17],[-53,120],[7,23],[-30,55],[4,39],[-58,32],[-32,1],[-35,36],[-71,-44],[-33,-53],[-48,22],[-27,-9],[-38,-64],[9,-68],[-62,-53]],[[15351,2467],[-21,70],[-27,6]],[[15250,2796],[25,-15],[85,40],[49,100],[100,-4],[79,-67],[34,-41],[49,0],[33,66],[53,13],[38,59],[55,-6],[21,28],[82,42],[140,149],[31,-43],[7,-53],[41,-17],[150,-15]],[[16322,3032],[25,-168]],[[17741,3966],[19,23],[78,7],[31,-17],[47,-27],[73,9],[25,-49],[71,29],[46,7],[59,61],[-68,49],[94,91],[109,5]],[[18325,4154],[37,-27],[31,-87],[25,-69],[61,-75],[38,-23],[42,16],[37,-29],[32,-93],[32,9],[37,2],[-13,52],[34,16],[11,-59],[-21,-13],[63,-115],[62,2],[20,-57],[-47,-19],[25,-60],[72,25],[12,-25],[68,8],[22,-61],[90,3],[54,-13],[95,42],[5,-28],[-210,-192],[-30,-32],[-220,-202],[-265,-243],[-156,-143],[-22,-39],[-66,-54],[-73,-23],[-176,-54],[-126,-56],[-89,-64],[-79,-40]],[[17737,2334],[-73,58],[-14,48],[-89,69],[-75,-44],[-19,-27],[-57,23],[-27,29],[13,42],[-83,54]],[[17313,2586],[56,46]],[[17369,2632],[26,17],[17,53],[54,2],[6,48],[45,101],[-35,62],[41,32],[54,4],[25,25],[15,67],[20,6],[11,96],[30,25],[10,67],[-33,121],[-66,5],[6,75],[42,277],[10,65],[6,44],[-37,63],[-4,31],[42,28],[87,20]],[[15170,3370],[43,143],[101,299]],[[16007,3915],[30,-8],[22,-37],[57,-38],[24,10],[84,-43],[53,-52],[19,-42],[50,16],[78,62],[55,-69],[6,-26],[53,-57],[29,18],[45,-44],[-22,-71],[44,-33],[10,-57],[72,-25],[46,-29],[5,-30]],[[16767,3360],[-63,-18],[-130,31],[-65,61],[-38,0],[-74,-24],[5,-65],[-107,-139],[27,-174]],[[6314,4337],[20,19],[33,87],[33,137],[-4,86],[28,40],[55,41],[85,39]],[[6564,4786],[12,-40],[-22,-35],[1,-41],[60,8],[67,39],[64,-48],[33,-44],[-29,-66],[-19,-83],[28,-23],[121,34],[29,-70],[64,-94],[-16,-180]],[[6413,3552],[-48,33],[-97,-12],[-109,29],[-45,34],[-90,41],[-177,80],[-371,205]],[[5476,3962],[37,89],[-1,46],[59,46],[127,16],[77,60],[41,79],[-50,-1],[-34,105],[-41,13],[52,262]],[[5743,4677],[118,-98],[91,-64],[42,-16],[99,-10],[54,-75],[35,-108],[47,-14],[55,18],[30,27]],[[13901,4528],[11,-96],[84,58],[9,-27],[95,13]],[[14100,4476],[23,39],[77,-15],[-2,-149],[130,-111],[89,-49],[27,1],[87,42],[25,-64],[45,36],[67,1],[22,-53],[52,-31],[65,-9],[1,-42]],[[14808,4072],[-69,-5],[-79,-91],[-110,-83],[25,-61],[-7,-38],[-39,10],[-68,-50],[3,-40],[-120,-222]],[[14344,3492],[-87,101],[-64,28],[-83,-29],[-119,-31],[-115,9]],[[15490,6294],[62,21],[29,27],[34,-21],[28,-78],[74,-90],[-3,-34],[58,-33]],[[16018,5661],[-7,-23],[89,-70],[-26,-107],[-65,-8],[-39,-49]],[[15538,5132],[-42,-12],[-33,-45],[-39,52],[34,31],[-84,30]],[[17157,5833],[80,-30],[99,30],[61,60],[164,17],[52,-3],[24,-62]],[[17637,5845],[-20,-43],[36,-57],[-2,-68],[-31,-85],[-70,-2],[5,-107],[40,-23],[0,-30],[51,-18],[39,-36],[4,-54],[83,-67],[32,-111],[33,-37],[29,-91],[63,-1],[14,-49],[46,2],[-15,-86],[-41,-46],[-25,1]],[[17908,4837],[-94,58],[-52,-11],[-27,-25],[-37,6],[-9,-83],[-24,-23],[-13,-59],[8,-46],[-42,-38]],[[16580,5042],[50,56],[1,36],[92,58],[25,-8],[35,49],[0,45],[63,72],[72,42],[-8,27],[-38,44],[-2,79],[-43,62]],[[12235,7008],[146,-120],[37,-56],[76,-134],[24,-59],[66,-14],[51,-27]],[[12230,6196],[-134,-46],[-39,35],[-48,-2],[-30,25],[-78,2]],[[11901,6210],[6,40],[-66,22],[-9,48],[44,89],[-39,29],[-73,21],[3,38],[34,22],[-32,51],[-39,-47],[1,-62],[-31,-19],[-34,36],[29,67],[-9,51],[-84,49],[-9,28],[38,59],[-20,18],[-56,-15],[-26,-31],[-30,11],[10,52],[29,46],[15,73],[-88,49],[-43,-30],[-41,44],[3,63]],[[11384,7012],[38,47],[90,11],[28,27],[-7,33],[60,-5],[44,20],[12,40],[39,15],[45,-8],[6,38]],[[11739,7230],[23,38],[50,-14],[44,29],[72,76],[38,-13],[36,49],[44,1],[70,29]],[[12116,7425],[29,-340],[90,-77]],[[12899,6831],[-26,139],[-46,270],[-49,298],[-21,125]],[[12757,7663],[289,49]],[[13046,7712],[78,20],[394,208]],[[13518,7940],[-5,-71],[8,-87]],[[16030,1633],[-52,-57],[-80,-56],[-83,-39],[-152,-49],[-45,-33],[14,-36],[-30,-50],[-145,-3],[-61,20]],[[15348,1474],[-36,200],[31,17],[-27,59],[-61,92],[16,71],[-35,31],[45,80],[-40,53],[0,162],[117,122],[-15,23],[-46,68],[54,15]],[[16175,1750],[-15,-52],[-107,-10],[-23,-55]],[[16636,2333],[40,-27],[18,-48],[48,56],[67,42],[36,3],[60,38],[47,57],[2,34],[56,46],[50,9],[32,34],[51,-20],[86,2],[84,27]],[[17737,2334],[-69,-44],[-82,-67],[-22,-29],[-46,-7],[-63,-57],[-20,3],[-95,-52],[-11,-18],[11,-31],[-13,-109],[13,-50],[-11,-53],[-44,-2],[-11,-54],[-28,7],[-58,-64],[-103,-14],[-56,-68],[-61,-32]],[[16968,1593],[-177,137],[-67,-44],[-99,-29],[-46,-53],[-39,22],[-149,-51],[-126,-45],[-17,55],[39,61],[40,37]],[[15012,6773],[43,288],[-54,85]],[[15001,7146],[22,103],[26,39],[197,64],[72,15],[87,-44],[46,-49],[78,-20],[133,-21],[46,-15],[68,-43],[44,-50],[13,-72],[59,-42],[19,9],[64,78],[55,20],[94,-39],[115,12],[36,15],[42,68],[9,46],[50,61],[47,12],[79,49],[56,100]],[[16558,7442],[-18,-88],[17,-49],[-18,-64],[-38,-28],[-3,-58],[-39,-19],[1,-41],[-28,-38],[25,-51],[-57,-71],[-16,-50],[-42,-66],[-77,-30],[-3,-26],[-47,-61]],[[8657,4348],[2,-1]],[[8659,4347],[-141,-310],[-173,-376]],[[8345,3661],[-72,-18],[-15,-30],[-40,28],[-69,-2],[-1,-80],[-65,-5],[-37,22],[-45,31],[-91,-2],[6,43],[-64,23],[-30,49],[-55,37],[-76,-22],[-11,-29],[34,-30],[-26,-27],[-102,33],[15,-61],[-60,-57]],[[7424,3890],[21,45],[-119,392],[21,104],[36,62]],[[7383,4493],[43,1],[85,51],[16,31],[-4,131],[29,48],[56,4],[45,-15],[57,6],[38,22],[10,35],[-46,106],[1,199],[33,55],[53,4]],[[7799,5171],[266,-251],[203,-174],[159,-138],[85,-104],[145,-156]],[[4482,2946],[-26,-51],[-5,-45]],[[4653,1686],[-79,-91],[-236,-80],[-48,31]],[[4290,1546],[-248,358],[-65,137],[-29,60],[-77,162],[-135,16]],[[16786,4072],[-13,-129],[10,-29],[84,-66],[12,-156],[19,-47],[-14,-39],[34,-41],[6,-105],[-61,-114],[-38,-42]],[[16825,3304],[-39,10],[-19,46]],[[17908,4837],[-11,-42],[55,-60],[32,-3],[75,-46],[39,-46],[1,-76],[60,-141],[48,-36],[8,-29],[91,-54],[11,-38],[53,-30],[-45,-82]],[[17741,3966],[-67,26],[-19,25],[-69,34],[-40,33]],[[15039,4436],[-82,33],[-13,57],[-203,143],[-51,77]],[[14690,4746],[11,37],[-27,32],[13,75],[-11,38],[38,87]],[[13373,2186],[11,71],[41,21],[-32,61],[44,10],[2,58],[22,71],[38,4],[0,1],[54,6],[4,126],[38,0],[57,64],[77,10],[27,58]],[[13756,2747],[23,47],[52,-24],[2,-62],[36,-39],[45,-40],[39,4],[9,-53],[129,-55],[156,-9]],[[14247,2516],[8,-146],[-39,-84],[-32,-22],[85,-135],[20,-69],[60,-12],[45,28],[48,-49],[11,-43],[-39,-37],[-25,-17],[42,-67]],[[16452,1193],[-6,-45],[-68,-43],[9,-46],[-52,-83],[-36,-21],[14,-108],[-22,-26],[-147,-12],[-65,-27],[-169,-58],[-51,-8],[-200,-83],[-25,-33],[-70,-31],[-95,-9]],[[16968,1593],[-3,-29],[36,-43],[-10,-91],[-37,-46],[11,-33],[-24,-42],[-147,-73],[-82,-32],[-71,-3],[-20,-30],[-53,26],[-52,-13],[-64,9]],[[16810,7515],[94,30],[37,-17],[25,-78],[-20,-126],[37,-70],[17,-78],[1,-84],[22,-86],[20,-30],[70,-58],[56,-29],[98,-1],[51,-2],[78,-49],[87,-129]],[[17483,6708],[-137,-126],[-125,-115],[-21,-63],[-84,-73],[-17,-63]],[[16558,7442],[49,15],[82,-14],[121,72]],[[9808,2687],[30,199],[39,59],[43,40],[-11,104]],[[10096,3249],[-2,-127],[269,-228],[42,-74],[77,-122],[97,-186],[-28,-43],[-7,-48],[88,-3],[48,-96]],[[10680,2322],[-69,-81],[-167,-93],[-205,-103]],[[10239,2045],[-162,23],[-105,29],[-72,60],[-65,132]],[[9835,2289],[19,225],[0,94],[-8,35],[-38,44]],[[11800,4855],[-57,11],[-59,-27],[-43,-36],[-15,-68],[-20,-31],[-110,-47]],[[11148,4925],[1,9],[3,43],[69,36],[40,41],[-8,33],[44,23],[19,33]],[[11316,5143],[44,12],[33,58],[47,58],[-5,29],[38,117],[40,33]],[[11513,5450],[42,2],[90,-31],[34,-35],[98,-34],[30,-20],[51,11],[57,66]],[[11915,5409],[0,-68],[24,-21],[34,33],[37,-57],[-39,-43],[40,-32],[-42,-26],[-8,-39],[43,-58],[-19,-53],[51,-26],[-16,-59],[14,-30],[55,-11]],[[12089,4919],[-149,-62],[-72,-39],[-67,3],[-1,34]],[[9484,1048],[-190,-146],[-194,-149]],[[8754,1883],[100,-26],[29,252],[16,129]],[[8899,2238],[162,-34],[59,-3],[158,-26],[125,9],[139,40],[147,22]],[[9689,2246],[-38,-65],[-45,-40],[13,-95],[40,0],[-8,-138],[7,-96],[17,-147],[27,-515]],[[9702,1150],[-84,-17],[-88,-49],[-46,-36]],[[8921,3182],[392,-32]],[[9835,2289],[-146,-43]],[[8899,2238],[17,162],[-273,400]],[[8643,2800],[3,31],[90,5],[47,-15],[72,21],[20,39],[-4,77],[72,70],[-22,154]],[[10834,3147],[35,-16],[15,-58],[66,10],[61,82],[59,7],[74,57],[67,-56],[36,20],[103,-117],[36,-15]],[[11386,3061],[-34,-54],[-47,0],[-32,-42],[-32,-2],[0,-65],[-22,-38],[-42,-115],[-22,-29]],[[11155,2716],[-59,-12],[11,-35],[-20,-79],[-80,-34],[-63,6],[-60,-14],[-57,-48],[-50,-17],[-7,-56],[-90,-105]],[[10393,3234],[103,30],[62,-1],[50,-29],[38,8],[28,10],[62,-32],[18,-25],[80,-48]],[[8903,3263],[-32,-56],[50,-25]],[[8643,2800],[-34,-12],[-51,26],[-25,-34],[-16,10],[-287,-20],[-41,-2],[-335,-16]],[[8345,3661],[18,-29],[59,47],[31,-79],[41,3],[52,-35],[133,-20],[74,25],[29,-52],[97,-146],[24,-112]],[[9674,4440],[31,-50]],[[8659,4347],[364,66],[55,133],[25,58],[-53,373],[-6,42]],[[9044,5019],[132,17]],[[9198,5015],[15,-16],[17,-6],[48,-3],[15,-73],[-11,-90],[27,-8],[37,28],[63,-11],[25,-79],[38,-10],[6,-60],[-27,-71],[53,-71],[43,-13],[38,-38],[63,-31],[26,-23]],[[16825,3304],[-6,-19],[244,-46],[15,-95],[-29,-52],[4,-29],[63,-9],[35,22],[46,23],[37,-16],[31,-68],[-17,-111],[-15,-48],[22,-29],[19,-90],[-11,-29],[70,-22],[-2,-42],[38,-12]],[[4434,4245],[52,15],[23,-62],[45,42],[43,-130],[12,-166],[-10,-23],[51,-110]],[[4650,3811],[-85,-97],[-99,-110],[-138,-141],[-143,-138],[-37,-43]],[[3823,3367],[-19,67],[-48,32],[-46,71],[-69,60],[-23,98],[-41,121],[1,83],[60,90],[24,52],[155,105],[52,90],[19,88],[52,33],[98,-46],[42,-50],[39,7],[24,67],[71,41],[8,34],[-28,107],[-54,61],[-6,76],[29,37]],[[4163,4691],[271,-446]],[[1920,922],[0,150],[1,430]],[[1921,1502],[262,-2],[52,-12],[37,0],[230,3],[251,-5]],[[2753,1486],[-4,-559],[0,-81]],[[2749,846],[-4,-306],[-1,-157],[-4,-370]],[[2740,13],[-436,4],[-393,2]],[[1911,19],[0,646],[-7,199],[16,58]],[[12526,8607],[40,-4],[90,29],[54,58],[67,-24],[47,10]],[[12824,8676],[32,-82],[-11,-40],[31,-59],[-10,-28],[0,-38],[41,-56],[57,-27],[-36,-54],[14,-50],[48,64],[30,-31],[-53,-84],[-31,-2],[25,-68],[26,-71],[5,-35],[-33,-103],[-27,-48],[23,-41],[7,-65],[75,12],[9,-58]],[[12757,7663],[-38,-6],[-127,4],[-46,37]],[[12546,7698],[45,258],[-4,27],[-17,156],[-20,211],[-24,257]],[[10876,5361],[108,-43],[332,-175]],[[10335,4988],[-70,68],[12,6],[108,278],[98,37],[5,37]],[[10500,5511],[290,-117],[86,-33]],[[10778,6664],[11,22],[76,-10],[16,13],[65,87],[201,198]],[[11147,6974],[237,38]],[[11901,6210],[-34,-17],[-21,12],[-35,66],[-232,-132]],[[11579,6139],[-371,39],[-22,3],[-329,33]],[[10857,6214],[-107,154],[-17,131],[-36,54],[81,111]],[[14649,2844],[-17,-62],[-76,4],[-105,-83],[-47,1],[13,-41],[-29,-30],[-30,-63],[-55,-16],[-56,-38]],[[13756,2747],[4,52],[18,74],[-102,93],[0,38],[26,69],[-26,30],[-50,102],[-38,112],[12,108]],[[14344,3492],[51,-84]],[[17483,6708],[71,-71],[60,-34],[25,-49],[6,-56],[21,-71],[0,-138],[-12,-118],[55,-56],[11,-50],[-24,-43],[17,-122],[-29,-61],[-47,6]],[[13288,5022],[101,61],[-25,47],[20,23],[-4,90]],[[13901,5403],[93,-188],[149,-317],[47,-110]],[[14190,4788],[-41,-23],[-23,-21],[4,-60],[-16,-72],[-24,-47],[-37,-25],[47,-64]],[[13251,4658],[-25,26],[18,107],[20,49],[34,6],[-11,56],[1,120]],[[3580,1236],[329,124],[57,17],[289,169],[35,0]],[[4753,467],[-262,-7],[-141,-5],[9,101],[-159,16],[-251,29],[-149,3]],[[3800,604],[-35,117],[-67,114]],[[3698,835],[-36,119],[-11,78],[-71,204]],[[11155,2716],[45,-20],[89,-75],[140,-85],[9,-200],[26,-35]],[[11464,2301],[-118,-202],[-174,-278],[-65,-81],[-55,-71],[-66,-240]],[[10986,1429],[-248,19],[-309,25]],[[10429,1473],[26,53],[-157,179],[-48,199],[-6,82],[-5,59]],[[13253,8468],[80,-88],[24,-117],[18,-52],[79,-109],[57,-100],[7,-62]],[[12824,8676],[63,72],[27,16],[64,-24],[31,-67],[8,-120],[58,-42],[117,-15],[61,-28]],[[11461,3079],[5,311],[7,110]],[[11473,3500],[67,20],[28,-59],[134,-2],[129,-3],[128,54]],[[11824,2068],[-40,-30],[-95,-17],[-41,35],[-184,245]],[[11386,3061],[75,18]],[[5560,3583],[-55,64],[-171,15],[-46,24],[-43,89],[11,67]],[[5256,3842],[57,58],[87,20],[45,-3],[31,45]],[[12440,5078],[-7,-46]],[[12433,5032],[-87,-330],[-38,-144]],[[12308,4558],[-28,1],[-60,-38],[-52,-10],[-23,31],[38,57],[-17,49],[-42,19],[-44,-20],[12,86],[-49,-6],[-17,48],[62,29],[-59,51],[60,64]],[[11915,5409],[0,82],[154,78],[200,102]],[[12522,5407],[-10,-40],[-72,-289]],[[4985,3828],[-208,-10],[-127,-7]],[[4163,4691],[56,77],[32,10],[68,-43],[21,-48],[67,-81],[90,-4],[83,52],[56,13],[75,-3],[67,33],[48,-34],[-1,-47],[-41,-78],[7,-66],[17,-24],[88,-7],[56,17],[64,89],[16,65],[-13,27],[-81,71],[-18,49],[55,89],[12,75],[43,11],[23,-23],[-2,-52],[63,-89],[101,-64],[37,16],[80,75],[70,36],[62,1],[70,-23],[103,-89],[106,-45]],[[5256,3842],[-271,-14]],[[10055,1255],[49,-13],[50,-61],[60,38],[75,18],[84,88],[56,148]],[[10986,1429],[-109,-91],[63,-62],[10,-60],[48,-33],[30,10]],[[11028,1193],[-60,-282],[-19,-87],[-125,-394]],[[10824,430],[-97,-10],[-259,-15]],[[10468,405],[-152,240],[67,133],[-73,13],[-47,-9],[-63,145],[-72,-13],[-45,22],[-19,136]],[[10064,1072],[38,16],[16,51],[-49,64],[-14,52]],[[13002,4509],[3,69],[-23,44],[-23,93],[-47,36],[-21,68],[-142,77],[-144,77],[-172,59]],[[12308,4558],[52,-24],[-16,-31],[-54,-15],[-17,-27],[17,-59]],[[12219,4061],[-96,10],[-27,4],[-36,-42],[-231,-41],[-255,-41],[-64,-5]],[[10730,7477],[70,18],[94,-4],[55,-28],[52,-87],[32,-35],[63,-26],[39,1],[92,41],[99,91],[65,47],[123,69]],[[11514,7564],[154,-276],[71,-58]],[[11147,6974],[-109,-18],[-6,71],[-42,55],[3,31],[-75,98],[-179,232],[-9,34]],[[11473,3500],[24,287]],[[11410,1208],[-137,-105],[-108,85],[-90,71],[-87,45],[-8,-27],[50,-55],[-2,-29]],[[3409,1560],[56,-51],[41,-64],[16,-97],[58,-112]],[[3698,835],[-64,5],[-354,4],[-531,2]],[[2753,1486],[-2,50],[-1,80],[6,139]],[[2756,1755],[86,41],[57,51],[163,46],[54,-8],[72,-35],[96,-114],[86,-117]],[[3370,1619],[39,-59]],[[1134,962],[49,40],[107,-34],[-4,-16],[-9,-32],[152,-3],[491,5]],[[1911,19],[-46,0]],[[1865,19],[-174,247],[-46,-1],[-48,50],[-218,2],[-199,125],[-43,27],[-63,39],[-69,4]],[[1005,512],[39,53],[-24,19],[-2,56],[-76,91],[4,78],[34,48],[44,20],[104,-27],[23,80],[-17,32]],[[7493,1289],[-52,-1],[-60,-22],[-49,-70],[-39,-37],[-34,-115],[-31,-48],[-61,-135],[-27,-93],[-31,-261]],[[7109,507],[-753,-19]],[[6356,488],[2,233],[1,94],[24,88],[-20,124],[4,255],[2,185],[6,416]],[[6564,4786],[134,16],[60,38],[39,55],[78,81],[82,39],[71,-31],[49,-131],[63,-125],[50,-62],[33,-4],[82,67],[91,-9],[13,-53],[-45,-126],[19,-48]],[[10752,6054],[105,160]],[[11579,6139],[103,-11],[-106,-191],[-5,-163],[-3,-32],[-14,-136],[10,-51],[-41,-64],[-10,-41]],[[10388,5972],[58,47],[47,-22],[25,32],[78,18],[87,-16],[69,23]],[[1921,1502],[-8,24]],[[1913,1526],[-56,171],[-25,75],[-217,659]],[[1615,2431],[5,8],[157,-59],[87,-45],[75,-26],[75,-66],[111,-83],[29,-11],[83,-4],[109,-55],[85,-34],[87,-77],[27,-49]],[[2545,1930],[1,-24],[41,-34],[58,-75],[41,-35],[70,-7]],[[10268,6559],[42,23],[45,68],[36,75],[85,46]],[[10476,6771],[51,-23],[87,3],[35,-37],[35,5],[70,-28],[24,-27]],[[9958,6289],[50,154],[35,48],[47,31],[155,25],[23,12]],[[10021,1121],[43,-49]],[[10468,405],[-131,-11],[-480,10],[-170,9],[-221,4],[-356,22]],[[9702,1150],[319,-29]],[[14281,6663],[-30,41],[-47,94],[-19,167],[-59,36]],[[14348,7584],[114,-38],[32,-48],[14,-68],[48,-42],[79,-26],[18,-20],[29,-125],[24,-21],[106,-18],[89,-49],[44,-13],[56,30]],[[6356,488],[-347,-4],[-350,-2]],[[12546,7698],[-36,2],[-66,-43],[-10,-42]],[[12434,7615],[-228,178],[-25,55],[-45,0],[-2,41],[-41,-8]],[[12093,7881],[22,41],[-1,43],[-37,30],[-75,20],[-100,11],[-23,52],[21,44],[91,96],[13,38],[-18,62],[-88,133],[-35,32],[-28,53],[20,44],[94,62],[48,52],[123,58],[44,69],[31,27],[57,-7],[34,-25],[73,-110],[99,-42],[37,-40],[31,-17]],[[11637,395],[-126,13],[-432,21],[-255,1]],[[1865,19],[-328,-2],[-394,5],[-456,11],[-230,-26],[-67,-1],[48,145],[7,58],[33,80],[18,107],[48,43],[76,12],[33,-40],[48,-88],[67,-83],[25,-14],[78,15],[35,36],[28,72],[12,91],[59,72]],[[0,185],[48,82],[63,14],[108,-32],[30,-39],[18,-100],[-16,-55],[-33,-54],[-136,2],[-54,92],[-28,90]],[[3489,2171],[-45,-56],[-16,-119],[-35,-44],[38,-85],[-23,-36],[8,-89],[33,-63],[-79,-60]],[[2545,1930],[113,-32],[115,9],[44,19],[36,83],[3,35],[47,139],[-17,32],[-41,144],[-61,56],[-33,68],[-62,72],[-17,73],[12,48],[62,137],[26,158],[52,72],[119,56],[80,-51],[48,-17]],[[14431,4706],[47,-12],[62,12],[40,-10],[76,16],[34,34]],[[14844,4072],[-36,0]],[[14190,4788],[16,10],[131,-57],[56,-1],[38,-34]],[[3800,604],[6,-61],[32,-87],[26,-103],[32,-208],[-13,-89],[-39,-56],[-188,5],[-461,6],[-455,2]],[[1192,1492],[75,-95],[31,67],[29,-29],[69,5],[77,-26],[183,68],[34,-4],[131,42],[35,-14],[57,20]],[[1134,962],[-82,13],[-54,61],[-4,80],[14,28],[90,26],[51,133],[43,189]],[[8000,512],[-244,7],[-143,-64],[-18,18],[-47,46],[-313,-11],[-126,-1]],[[8402,5178],[49,-27],[32,-38],[112,-60],[122,20],[61,-12],[63,-40],[36,-84],[38,-50],[40,16],[-3,54],[25,43],[67,19]],[[7799,5171],[98,16],[49,56],[-3,66],[-63,30],[-18,62],[41,43],[51,-7],[62,-65],[23,5],[21,57],[31,21],[88,-10],[29,15],[20,50],[-17,26],[-96,22],[-29,33],[9,73],[66,7],[78,-75],[76,-50],[36,-57],[6,-37],[-22,-97],[20,-129],[47,-48]],[[10476,6771],[45,74],[0,56],[-47,105],[-14,55],[3,160],[-43,76],[8,87],[41,68],[66,28],[96,-22],[99,19]],[[1192,1492],[3,69],[-48,58],[-36,1],[-39,31],[-47,39],[-31,59],[-9,55],[17,83],[54,89],[109,101],[35,86],[12,39],[42,62],[117,120],[73,45],[67,17],[104,-15]],[[12434,7615],[-306,-41],[-1,-9],[-11,-140]],[[11514,7564],[80,55],[111,-11],[38,7],[116,58],[125,-33],[58,-1],[8,27],[-39,87],[9,68],[73,60]]],"transform":{"scale":[0.0003950073770065972,0.0002994494801084984],"translate":[-89.57150899999999,36.497129]},"objects":{"cb_2019_21_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[7,8,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[12,13,14,15,16,17,18,19]],"type":"Polygon","properties":{"COUNTYFP":"179"}},{"arcs":[[20,21,22,23,24,25,26]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[27,28,29,30,31,32]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[33,34,35,36,37,38,39,40]],"type":"Polygon","properties":{"COUNTYFP":"209"}},{"arcs":[[-18,41,42,43,44]],"type":"Polygon","properties":{"COUNTYFP":"229"}},{"arcs":[[45,46,47,48,49,50]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[51,52,53,54,55,56]],"type":"Polygon","properties":{"COUNTYFP":"181"}},{"arcs":[[57,58,59,60,-10,61,62,63]],"type":"Polygon","properties":{"COUNTYFP":"177"}},{"arcs":[[64,65,66,-28,-33,67,68]],"type":"Polygon","properties":{"COUNTYFP":"235"}},{"arcs":[[69,-54,70,71,72,-34,-41]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[73,74,75,76,-50,77,78,79]],"type":"Polygon","properties":{"COUNTYFP":"175"}},{"arcs":[[80,81,82,-52,-57,83,84,85]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[86,-55,-70,-40,87,88,89,90]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[-13,-20,91,92,93,94,95]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[96,-65,-69,97,98,99]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[100,-30,101,102,103,104]],"type":"Polygon","properties":{"COUNTYFP":"231"}},{"arcs":[[105,106,107,108,109,110]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[111,112,113,114,115,116,117]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[118,119,120,121,-107,122,123,124]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[-105,125,126,127,128,129,-31,-101]],"type":"Polygon","properties":{"COUNTYFP":"199"}},{"arcs":[[130,131,132,133,134,135,136]],"type":"Polygon","properties":{"COUNTYFP":"227"}},{"arcs":[[137,-109,138,-128,139,140]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[-131,-137,141,142,143,144]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[145,146,147,148,149,150]],"type":"Polygon","properties":{"COUNTYFP":"189"}},{"arcs":[[-64,151,152,153,-134,154,-58]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[155,-79,156,157,158,159,160]],"type":"Polygon","properties":{"COUNTYFP":"237"}},{"arcs":[[161,162,163,-152,-63,164,165]],"type":"Polygon","properties":{"COUNTYFP":"183"}},{"arcs":[[-83,166,167,168,-53]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-97,-100,169,170,171,172,-66]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[173,174,175,176,-90]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[177,-11,-61,178,179,180]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[181,182,183,184,185,-147,186,187]],"type":"Polygon","properties":{"COUNTYFP":"193"}},{"arcs":[[188,189,190,191,192]],"type":"Polygon","properties":{"COUNTYFP":"195"}},{"arcs":[[-187,-146,-151,193,-158,194,195]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[196,197,-166,198,199,200]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[201,202,203,204,-120]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[205,-113,206,-75,207,-167,-82]],"type":"Polygon","properties":{"COUNTYFP":"205"}},{"arcs":[[-117,208,209,210,-46,-51,-77,211]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[212,-38,213,214,215,216,217]],"type":"Polygon","properties":{"COUNTYFP":"187"}},{"arcs":[[-89,218,219,220,221,-174]],"type":"Polygon","properties":{"COUNTYFP":"191"}},{"arcs":[[222,-171,223,-185,224]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-183,225,-191,226,227]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[-114,-206,-81,-86,228,229,230]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[231,232,233,-163,234,235,236]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-24,237,-12,-178,238,239]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-78,-49,240,241,-195,-157]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[-211,242,-189,243,-47]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[-168,-208,-74,-80,-156,-161,244,245]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[-130,246,247,248,-98,-68,-32]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[249,-172,-223,-225,-184,-228,250]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[251,252,-115,-231,253]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[254,-94,255,256,257,258]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[259,-42,-17,260,261,262,263,264]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[265,-142,-136,266,267,268,269]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[270,-95,-255,-259,271,-268,272,273]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[274,275,276,-256,-93,277]],"type":"Polygon","properties":{"COUNTYFP":"217"}},{"arcs":[[278,-274,279,-153,-164,-234,280]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[281,-14,-96,-271,-279,-281,-233,282,283,-5,284]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-226,-182,-188,-196,-242,285,-192]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[-207,-112,-118,-212,-76]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-48,-244,-193,-286,-241]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[286,287,-22,288,289]],"type":"Polygon","properties":{"COUNTYFP":"225"}},{"arcs":[[-267,-135,-154,-280,-273]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[290,291,292,293,294,295]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[296,297,-220,298,299]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[300,-261,-16,301,-3,302]],"type":"Polygon","properties":{"COUNTYFP":"215"}},{"arcs":[[303,304,-215,305,306,307]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[-149,308,-248,309,-121,-205,310]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-116,-253,311,-209]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[312,-72,313,314,-202,-119,-125,315]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[316,-239,-181,317,318,319]],"type":"Polygon","properties":{"COUNTYFP":"221"}},{"arcs":[[-257,-277,320,321,322,323]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[324,-221,-298,325]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[326,327,-140,-127,328,-321,-276,329]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-148,-186,-224,-170,-99,-249,-309]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-165,-62,-9,330,331,-199]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[332,333,334,-264,335,-36,336]],"type":"Polygon","properties":{"COUNTYFP":"239"}},{"arcs":[[337,-287,-290,338,-200,-332,339]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[340,-323,341,342,343,344,345]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-316,-124,346,-333,-337,-35,-73,-313]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-43,-260,-265,-335,347,-111,348]],"type":"Polygon","properties":{"COUNTYFP":"167"}},{"arcs":[[349,350,-216,-305,351]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-141,-328,352,-44,-349,-110,-138]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-322,-329,-126,-104,353,-342]],"type":"Polygon","properties":{"COUNTYFP":"207"}},{"arcs":[[354,-320,355,-293,356,357,358]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[359,-296,360,361,362]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-155,-133,363,364,365,-59]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[-235,-162,-198,366]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-108,-122,-310,-247,-129,-139]],"type":"Polygon","properties":{"COUNTYFP":"203"}},{"arcs":[[367,-307,368,-262,-301,-303,-2,369]],"type":"Polygon","properties":{"COUNTYFP":"211"}},{"arcs":[[-306,-214,-37,-336,-263,-369]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[-292,370,371,372,373,-357]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[374,375,-308,-368,-370,-1,-7,376]],"type":"Polygon","properties":{"COUNTYFP":"185"}},{"arcs":[[377,-345,378,-143,-266,-270,379]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[-4,-302,-15,-282,-285]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-85,380,-176,381,-229]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[-347,-123,-106,-348,-334]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[-179,-60,-366,382]],"type":"Polygon","properties":{"COUNTYFP":"219"}},{"arcs":[[-300,383,384,385]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-278,-92,-19,-45,-353,-327,-330,-275]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[-324,-341,-346,-378,-380,-269,-272,-258]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[-343,-354,-103,386]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[[-362,387]],[[388]]],"type":"MultiPolygon","properties":{"COUNTYFP":"075"}},{"arcs":[[-338,-340,-331,-8,-238,-23,-288]],"type":"Polygon","properties":{"COUNTYFP":"233"}},{"arcs":[[-26,389,-358,-374,390]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[391,-245,-160,392,-203,-315,393]],"type":"Polygon","properties":{"COUNTYFP":"197"}},{"arcs":[[-177,-381,-84,-56,-87,-91]],"type":"Polygon","properties":{"COUNTYFP":"201"}},{"arcs":[[-169,-246,-392,-394,-314,-71]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[-25,-240,-317,-355,-359,-390]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[-356,-319,394,-294]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[395,-371,-291,-360,396]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-159,-194,-150,-311,-204,-393]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[-364,-132,-145,397]],"type":"Polygon","properties":{"COUNTYFP":"213"}},{"arcs":[[398,-283,-232,-237,399]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[-352,-304,-376,400]],"type":"Polygon","properties":{"COUNTYFP":"223"}},{"arcs":[[-372,-396,401]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-385,402,-217,-351,403]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-219,-88,-39,-213,-218,-403,-384,-299]],"type":"Polygon","properties":{"COUNTYFP":"081"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/la.topo.json b/app/assets/topojson/states/la.topo.json new file mode 100755 index 00000000..2f98f9e0 --- /dev/null +++ b/app/assets/topojson/states/la.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[9915,1282],[47,-10],[46,50],[51,-52],[-15,-36],[-118,11]],[[9926,1245],[-11,37]],[[9844,834],[56,-8],[86,86],[14,42],[39,40],[86,5],[-21,-35],[-157,-107],[-69,-82],[-96,-65]],[[9782,710],[-4,41],[66,83]],[[9437,2288],[64,176],[74,161],[-2,70],[-22,0],[-123,89],[-28,70],[-53,55],[-22,69],[-15,139],[0,117],[1,127],[9,120],[39,224]],[[9359,3705],[135,47],[99,26],[22,5]],[[9615,3783],[73,-52],[46,-22]],[[9734,3709],[-43,-579],[-36,-73],[4,-88],[84,-30],[89,37],[40,55],[110,-132]],[[9982,2899],[-48,-128],[-102,-72],[-1,-31],[-7,-31],[29,-70],[-39,-39],[25,-57],[-4,-43],[66,-92],[28,-63],[33,-38],[10,-47],[24,-106],[36,-6],[17,-124],[-19,-94],[24,-46],[3,-223]],[[10057,1589],[-35,-27],[53,-56],[-38,-59],[-42,-27],[-15,-72],[-55,-13]],[[9925,1335],[-6,55],[32,106],[-42,23],[-28,57],[-78,32],[-37,-13],[-105,47],[-22,72],[-68,126],[-44,36],[64,37],[35,62],[-20,86],[-3,89],[14,34],[-37,78],[-61,21],[-82,5]],[[4883,12254],[1095,-4],[472,-2]],[[6450,12248],[-4,-76],[-47,-45],[-58,-91],[11,-24],[-57,-78],[-6,-45],[-26,-23],[-58,-4],[-80,-68],[-16,-89],[-44,-55],[5,-26],[-40,-47],[24,-31],[-3,-71],[-51,-82],[-29,-8],[-24,-49],[37,-21],[5,-47],[-38,-38]],[[5951,11230],[-24,-82],[-61,-87],[-46,-8],[-39,14],[-71,-76],[-12,-80],[-74,-21],[-86,51],[-32,-18],[-50,-65],[-4,-75],[-67,12],[-52,64],[-26,-25],[-6,-59],[-32,-30]],[[5269,10745],[22,28],[-9,62],[-32,35],[-16,71],[-36,78],[43,64],[1,81],[31,48],[-61,-7],[-77,82],[-9,59],[-111,-16],[-43,35],[-27,-17],[-52,49]],[[4893,11397],[31,42],[-23,86],[23,88],[-33,80],[21,70],[-52,61],[-14,52],[17,33],[1,122],[-8,71],[27,152]],[[1214,6777],[8,72],[-11,93],[44,36],[9,74],[222,-1],[41,84],[87,178],[88,1],[294,0]],[[1996,7314],[505,0],[99,-12],[26,-41]],[[2626,7261],[42,-44],[85,0],[0,-23],[83,0],[42,-21],[0,-87],[42,0],[0,-43],[41,0],[0,-63],[41,-3],[1,-113],[0,-60],[4,-552],[9,0],[0,-364]],[[3016,5888],[1,-43],[-193,4],[-190,4]],[[2634,5853],[-384,0],[-54,13],[-123,2],[-216,-1],[-11,0],[-21,0],[-201,0],[-121,-3],[-24,-26],[-83,-42],[-146,66],[-52,-38]],[[1198,5824],[-38,48],[20,31],[42,8],[-23,48],[68,33],[12,39],[-14,62],[-93,54],[13,36],[-35,36],[31,39],[66,-14],[43,84],[-24,46],[31,31],[-34,38],[-49,13],[-25,56],[33,8],[22,86],[-21,59],[30,30],[-39,82]],[[8067,4039],[-71,3],[-33,51],[-16,78],[-53,40],[-48,38],[-50,2]],[[7796,4251],[-15,8],[-19,40],[-79,16],[-53,123],[-59,54],[-15,89],[-3,30],[37,50],[17,68],[-31,42],[-1,52],[22,46],[-33,102],[93,75],[57,87],[35,32]],[[7749,5165],[143,1],[540,0],[167,1]],[[8599,5167],[0,-21],[0,-297],[0,-172],[24,-6],[11,-66],[7,-29],[8,-65],[80,-77],[-1,-43],[34,-23],[-1,-67],[59,-16],[10,-39],[-29,-66],[8,-99],[-9,-35]],[[8800,4046],[-39,-77],[-19,-64],[-72,-80],[-39,-24],[-59,5],[-49,55],[-87,18]],[[8436,3879],[-41,33],[-73,-77],[14,-26],[-29,-53],[-34,-14],[-51,42],[-8,50],[-67,105],[-43,-6],[-18,31],[-41,51],[22,24]],[[5033,8345],[1,-354],[1,-303],[-1,-490]],[[5034,7198],[-72,51],[-78,-46],[-44,24]],[[4840,7227],[20,35],[-12,54],[-92,43],[-71,77],[-55,193],[-61,26]],[[4569,7655],[-41,11],[-64,54],[-68,-20],[-40,32],[21,38],[-13,54],[-58,43],[9,45],[-28,30],[8,49],[-89,19],[-101,68],[79,26],[-37,70],[2,65],[41,43],[-59,47],[16,58],[29,22],[-8,42],[33,37],[-41,114],[-3,11]],[[4157,8613],[14,38],[43,28],[-3,44],[47,104],[23,85],[0,72],[0,22]],[[4281,9006],[272,1],[4,0],[484,-1]],[[5041,9006],[-1,-384],[-6,-10],[-1,-267]],[[1807,3370],[-20,0],[-519,-1],[-217,1],[-259,-3]],[[792,3367],[16,54],[-18,75],[53,56],[15,117],[-14,44],[-42,128],[31,93],[-5,77],[10,74],[-98,42],[-47,121],[19,93],[-4,48],[38,36]],[[746,4425],[632,-2],[-1,265],[215,-1],[37,-1],[-1,-262],[376,1],[252,0]],[[2256,4425],[0,-70],[248,-1],[0,-313],[1,-44],[83,0],[2,-312],[254,-2],[10,-46],[-40,-33],[6,-57],[38,-86],[-268,0],[-1,-132]],[[2589,3329],[-326,0],[0,42],[-210,-2],[-122,0],[-58,0],[-66,1]],[[891,10624],[-37,57],[1,28],[-25,19],[-1,1],[-42,24],[-25,3],[-42,58],[3,44],[23,39],[-32,26],[44,44],[-50,23],[13,100],[-35,96],[-34,60],[-21,-1],[15,120],[-13,37],[-79,34],[64,64],[25,78],[-50,42],[43,116],[-28,39],[-7,59],[-50,48],[-1,53],[47,90],[-54,44],[31,46],[-40,139],[31,34]],[[565,12288],[727,-2]],[[1292,12286],[13,-16],[-23,-81],[15,-99],[63,-96],[53,-23],[-25,-36],[13,-49],[63,-89],[-39,-24],[27,-45],[-10,-57],[-8,-52],[-27,-27],[23,-46],[50,-34],[-3,-571],[0,-108],[12,-112],[0,-263],[169,-1]],[[1658,10457],[-39,-41],[-81,9],[-8,-67],[54,-25],[-35,-139],[-23,-58],[47,-57],[-2,-102],[-50,-44]],[[1521,9933],[-106,4]],[[1415,9937],[-19,54],[-33,32],[-81,23],[24,46],[-32,74],[-41,43],[-84,0],[-15,61],[-75,1],[17,66],[-43,-25],[-21,95],[-41,-46],[6,74],[-36,11],[-42,-48],[-29,99],[43,52],[-43,25],[21,50]],[[7128,11644],[-3,-39],[15,-35],[-21,-88],[37,-28],[67,3],[155,-46],[-8,-74],[-43,-36],[-92,-51],[-48,-70],[-37,-30],[-2,-38],[18,-72],[68,-57],[97,47],[74,19],[28,88],[31,31],[57,-73],[-4,-38],[-79,-91],[-83,-50]],[[7355,10916],[-95,-1],[-63,-74],[-248,-1],[-553,1]],[[6396,10841],[40,15],[26,53],[-36,64]],[[6426,10973],[47,54],[64,20],[-12,42],[27,109],[-21,76],[13,34],[49,19],[21,66],[61,105],[12,196],[-16,42],[27,91],[53,19],[9,54],[4,139],[71,43],[28,70],[-11,43],[20,50]],[[6872,12245],[245,-3],[-18,-54],[-70,-75],[-28,-75],[0,-42],[40,-46],[91,-21],[37,17],[34,74],[-16,68],[17,33],[-11,48],[71,28],[49,-39],[16,-99],[39,-50],[0,-77],[-15,-37],[-86,-91],[-55,-10],[-43,-36],[-41,-104],[0,-10]],[[2626,7261],[85,0],[0,63],[85,2],[-2,63],[63,0],[-1,43],[42,3],[0,42],[61,1],[0,45],[84,22],[-1,42],[55,22],[179,165]],[[3276,7774],[49,-78],[-18,-123],[54,-8],[-25,-122],[57,-23],[32,-35],[66,7],[121,33],[365,91],[173,44],[154,37],[151,31],[114,27]],[[4840,7227],[-98,-88],[-52,-13],[-73,28],[-8,48],[-99,17],[-33,-34],[-1,-511],[4,-106],[12,-124],[27,-251],[12,-24],[7,-56],[-178,1]],[[4360,6114],[-124,-6],[1,30],[-42,29],[-101,57],[-51,-26],[-12,-42],[-114,-70],[-51,-11],[4,-81],[-21,-48],[-54,-40],[-43,-7],[-62,28],[-24,-14],[-90,-6]],[[3576,5907],[-158,9],[-143,-2],[-4,-20],[-143,-7],[-112,1]],[[605,8758],[-201,-4]],[[404,8754],[-7,55],[-48,55],[10,44],[-62,24],[-15,27],[-60,-3],[-51,33],[-107,203],[-63,30],[0,417],[0,174]],[[1,9813],[227,-1],[135,95],[89,80],[11,74],[13,33],[98,61],[10,54],[63,47],[44,4],[37,-12],[27,-43],[54,-29],[123,2],[105,-101],[24,-56],[-1,-83]],[[1060,9938],[43,-53],[10,-43],[95,-40],[48,2],[30,-48],[2,-154],[-47,-59],[68,-61],[31,-68],[45,-11],[5,-82],[39,-20],[59,-109],[87,-4],[15,-29],[68,-49],[16,-78],[27,-11]],[[1701,9021],[-55,1],[-52,-44],[-62,40],[-41,-53],[-2,-206]],[[1489,8759],[-554,1],[-330,-2]],[[4157,8613],[-635,2],[-1,-264],[-119,0],[-502,-2],[-254,1]],[[2646,8350],[-1,0],[13,66],[-9,71],[13,65],[36,22],[16,58],[-6,48],[25,32],[-19,83],[100,-15],[11,125],[41,138],[27,15],[-28,36],[4,74],[-45,41],[42,52],[-26,79],[-2,50],[-37,60],[15,45],[-50,67],[-35,107]],[[2731,9669],[308,-3]],[[3039,9666],[57,-1],[228,1],[592,-1],[366,-2]],[[4282,9663],[1,-209],[-2,-448]],[[3206,10587],[-74,0]],[[3132,10587],[-253,2],[-4,394]],[[2875,10983],[0,47],[35,19],[16,103],[-20,110],[41,55],[59,45],[-1,143],[255,2]],[[3260,11507],[240,0],[37,-21],[48,9],[56,-21],[59,-90],[70,5],[2,-149],[98,-1],[157,-1],[0,-262]],[[4027,10976],[0,-263]],[[4027,10713],[-293,2],[-128,1],[-91,0],[1,-130],[-92,0],[-218,1]],[[6667,6216],[425,0]],[[7092,6216],[-10,-62],[-37,-48],[-4,-107],[-27,-26],[3,-76],[-29,-3],[-3,-82],[-17,-74],[-11,-30],[0,-59],[-29,-17],[5,-53],[-48,-47],[-19,-43],[-46,-32],[-15,-84],[-69,-66],[37,-70],[-12,-58]],[[6761,5179],[-52,14]],[[6709,5193],[-24,35],[-17,81],[-14,74],[-22,52],[-46,59],[-43,-5],[-129,-63],[-91,15],[-56,-3],[-107,-28],[-70,32],[-33,27],[25,67],[67,16],[44,39],[59,211],[-14,87],[-69,78],[-47,8],[-114,-4],[12,-57],[83,-15],[31,-31],[18,-104],[-157,-21],[-67,10],[-36,36],[1,115],[40,101],[-44,125]],[[5889,6130],[63,87]],[[5952,6217],[649,-1],[66,0]],[[5672,6275],[65,77]],[[5737,6352],[68,-15],[79,17],[32,-17],[17,-54],[-34,-81]],[[5899,6202],[-16,32],[-78,45],[-43,-40],[-90,36]],[[3342,12272],[624,-7],[621,-9],[296,-2]],[[4893,11397],[-65,-109],[-71,-39],[-51,1],[7,-40],[-201,-148],[-9,-53],[-126,-39],[-55,21],[-42,-15],[-3,0],[-250,0]],[[3260,11507],[0,132],[-22,4],[22,83],[1,547]],[[3261,12273],[81,-1]],[[1292,12286],[71,-1],[135,0],[492,-1]],[[1990,12284],[3,-907],[126,2],[0,-90],[24,-71],[0,-149],[-5,-87]],[[2138,10982],[12,-58],[24,-187],[44,-100],[-2,-45],[-221,-3],[0,-128],[-316,-4],[-21,0]],[[3593,3785],[-12,-33],[-48,-41],[-27,-144],[19,-41],[-18,-35]],[[3507,3491],[-32,-62],[-39,22],[-77,-60],[-132,-65]],[[3227,3326],[-44,6],[-182,-2],[-94,-1],[-318,0]],[[2256,4425],[0,62]],[[2256,4487],[162,2],[0,43],[467,-3],[208,0],[42,0],[5,152],[127,0],[228,-1]],[[3495,4680],[-4,-20]],[[3491,4660],[30,-82],[55,-76],[-24,-126],[-46,-13],[-3,-74],[20,-82],[-25,-38],[13,-110],[-10,-68],[13,-53],[-10,-32],[29,-46],[73,-35],[-13,-40]],[[2633,5098],[5,618],[-4,137]],[[3576,5907],[-2,-284],[1,-174],[-1,-113],[0,-53],[2,-263],[0,-59],[37,-46],[-57,-107],[-35,-18],[11,-45],[-37,-65]],[[2256,4487],[1,442],[1,81],[374,2],[1,86]],[[9369,5353],[331,-71],[297,-65],[27,-4],[87,0],[282,1]],[[10393,5214],[42,-49],[12,-50],[-6,-84],[21,-19],[19,-93],[41,9],[-11,-67],[36,-12],[28,-88],[64,-53],[44,-16],[21,-43],[81,-78],[12,-113],[-8,-33],[61,-140],[68,-52],[8,-75],[-38,-33],[-14,-36],[39,-35],[-1,-68],[39,-29],[-2,-60],[39,-34],[51,-90],[26,-18],[-5,-60],[-37,-29],[-95,13]],[[10928,3679],[-74,13],[-74,48],[-84,-43],[-65,50],[-75,-54],[-53,4],[-58,57],[-68,31],[-100,17],[-36,9],[-128,-52],[-120,-56],[-91,-23],[-124,12],[-44,17]],[[9615,3783],[6,42],[-17,93]],[[9604,3918],[-61,162],[-16,67],[-107,127],[-21,26],[-1,224],[-2,433],[4,48],[-20,82],[19,71],[-24,61],[7,85],[-13,49]],[[2731,9669],[-614,1]],[[2117,9670],[-11,90],[-48,42],[4,91],[-11,41],[-520,0],[-10,-1]],[[2138,10982],[484,-2],[46,0],[72,2],[135,1]],[[3132,10587],[6,-310],[2,-165],[-3,-159],[-31,-83],[-33,-12],[-1,-84],[-45,-74],[12,-34]],[[6349,10444],[-25,24],[0,63],[37,14],[-31,97],[-5,47],[43,142],[28,10]],[[7355,10916],[-14,-49],[60,-47],[81,-30],[59,-37],[10,-63],[-34,-17],[-83,25],[-32,29],[-59,101],[-47,47],[-19,-71],[-38,-77],[2,-51],[51,-73],[105,-61],[58,-15],[88,52],[38,-11],[30,-40],[-20,-65],[-48,-25],[-26,-107],[44,-49],[184,-37],[36,44],[38,10],[-84,-162],[-78,-61],[-40,41],[-30,-2],[-17,-78],[34,-54],[-27,-27],[-9,-99],[-46,-44],[-1,82],[-78,55],[-40,-11],[-27,-58],[-55,24],[-62,-55],[-38,9]],[[7221,9859],[7,84],[-31,31],[-123,-12],[-79,-37],[-48,-69],[-72,34],[-83,-5],[-58,-52],[-425,2]],[[6309,9835],[-106,2],[-17,104],[-37,37],[36,25],[48,-18],[-14,115],[62,69],[80,10],[-22,113],[36,-13],[36,53],[-60,50],[-2,62]],[[7452,9587],[-56,11]],[[7396,9598],[9,99],[19,52],[42,-36],[55,-2],[-22,-92],[-47,-32]],[[5547,9896],[59,46],[19,55],[-12,61],[37,127],[-4,47],[81,-5],[65,34],[11,79],[45,40],[51,5],[58,58],[135,0],[6,0],[213,0],[38,1]],[[6309,9835],[1,-140],[-29,-35],[-4,-87],[39,-71],[-29,-78],[-1,-53],[-20,-83],[32,-32],[-3,-60],[-41,-16],[-6,-47],[15,-119],[-14,-10],[-20,-34],[-45,-5],[-64,-61],[-16,-33]],[[6104,8871],[-53,1],[0,261],[-125,2],[-22,-67],[-34,-68],[-30,-6],[-61,-84],[-66,-42],[-57,10],[-50,-34],[-56,56],[1,56],[-60,21],[-62,76],[-13,46],[-89,40]],[[5327,9139],[-31,73],[19,44],[-20,45],[-2,58],[-63,79],[14,16],[47,4],[74,79],[12,34],[-62,68],[0,41]],[[5315,9680],[27,50],[131,38],[27,99],[47,29]],[[5794,4708],[291,-1],[-1,-43],[141,42],[103,2]],[[6328,4708],[62,-81],[17,14],[48,-65],[63,-80],[33,-74],[0,-20],[80,-38],[63,-91],[29,-17],[35,-73],[418,2]],[[7176,4185],[0,-10],[66,-22],[42,21],[174,-11],[18,17]],[[7476,4180],[4,-9],[-63,-201],[-36,-116],[-35,-157],[-40,-21],[-1,-38],[0,-99],[-40,-1],[1,-137]],[[7266,3401],[-175,-66],[-118,-45]],[[6973,3290],[-78,43],[-33,59],[-246,-2]],[[6616,3390],[-23,109],[-27,22],[-185,0],[-3,62],[-18,192],[-43,59],[35,68],[-81,34],[-135,5],[-63,45],[-4,60],[-77,99],[-16,61],[5,72],[-48,28],[39,43],[2,108],[-28,46],[-2,41],[-85,95],[-26,5],[-39,64]],[[4848,2490],[-80,-59],[-71,-70],[-13,29],[46,33],[18,49],[-20,38],[-63,-39],[-34,-40],[-80,41],[-14,-22],[22,-61],[77,-77],[161,-3],[2,-18],[-80,-66],[-2,-26],[76,-152],[53,33],[63,-40],[-47,-78],[-67,14],[-104,-8],[-138,-55],[-131,-82],[-130,-20],[-38,-6],[-231,52],[-126,42],[-157,25],[-110,32],[-103,14]],[[3527,1970],[8,565],[-4,793],[-304,-2]],[[3507,3491],[108,15],[33,37],[84,-5],[71,-86],[89,-52],[108,-38],[124,52],[36,36],[39,23],[52,101],[28,16],[38,34],[33,33]],[[4350,3657],[64,-25],[79,-7],[60,18],[67,-30],[117,-51],[21,18],[82,12],[34,-136],[17,-20],[251,-112]],[[5142,3324],[-30,-98],[-42,-60],[9,-54],[43,-388],[1,-10]],[[5123,2714],[-33,-42],[20,-50],[-144,-65],[-118,-67]],[[1746,7836],[249,1],[1,-523]],[[1214,6777],[-89,-60],[-30,31],[-17,88],[27,71],[-54,12],[9,86],[-20,32],[-53,-2],[-39,31],[-19,46],[-41,14],[-1,50],[37,59],[9,81],[-20,98],[-76,64],[30,65],[-29,37],[-44,2],[-55,40],[6,50],[36,16],[39,71],[-54,2],[-23,41],[-94,-4],[-99,99],[-46,122],[56,71],[-8,95],[-16,38],[54,57],[25,49],[-55,20],[8,51],[-56,69],[31,79],[-27,25],[-12,51],[-87,64],[-13,66]],[[1489,8759],[-1,-393],[63,0],[191,0],[2,-226],[2,-304]],[[7221,9859],[-24,7],[-75,-50],[-26,-126],[29,-67],[123,-21],[78,25],[70,-29]],[[7452,9587],[-20,-67],[-102,-58],[2,-87],[-48,-5],[-39,29],[-35,55],[-50,11],[-32,-37],[41,-64],[123,-27],[48,-62],[-35,-50],[-68,-40],[-116,-13],[-40,-38],[-19,-27],[-12,-76],[25,-59],[-44,-21],[-84,-97],[-79,-39],[0,-38],[52,-54],[-40,-72],[-37,6],[-31,52],[-13,96],[-108,-28],[-18,-25],[-34,-131],[-15,-113],[98,0],[98,31],[57,-15],[-31,-65],[-156,14],[-65,-5],[-38,-45]],[[6587,8423],[6,43],[-50,17],[-86,-7],[-277,2]],[[6180,8478],[-67,100],[-17,51],[25,75],[-4,108],[-13,59]],[[4031,4656],[-197,2]],[[3834,4658],[6,7],[69,50],[6,59],[28,45],[84,13],[137,1],[240,0],[1,88],[126,0],[0,62],[0,84],[18,25],[9,93],[16,10],[53,44],[1,32],[-1,101],[1,133],[-87,76],[-10,16],[-3,167]],[[4528,5764],[277,4],[175,-1],[531,-5]],[[5511,5762],[42,-57],[-22,-54],[95,-77],[31,-76],[-4,-58],[59,-113],[-1,-37],[4,-69],[-34,-28],[14,-78],[-34,-61],[8,-26],[-14,-124],[19,-48],[41,-79],[-8,-36],[-50,-32]],[[5657,4709],[5,-37],[44,-102],[34,3],[70,-152],[39,-21],[-213,-1],[-119,-1],[-19,18],[-120,51],[-152,-62],[-27,-3],[-60,45],[-31,-9],[-8,-77],[-18,-40]],[[5082,4321],[-66,9],[-24,-31],[-40,22],[-3,24],[-34,5],[-67,-53],[-5,-63],[-32,-36],[-109,-86]],[[4702,4112],[2,65],[-42,1],[0,87],[-43,-1],[0,66],[-1,196],[-102,0],[-66,0],[-1,131],[-378,-1],[-38,0],[-2,0]],[[5070,10420],[128,178],[21,102],[50,45]],[[5951,11230],[100,0],[0,-148],[7,-108],[123,0],[245,-1]],[[5315,9680],[6,32],[-46,20],[-54,-11],[-45,27],[-55,-23],[-23,80],[-44,-8],[-16,33],[71,44],[-51,59],[-4,69],[17,54],[-102,1]],[[4969,10057],[36,62],[4,74],[22,47],[2,82],[37,98]],[[3491,4660],[343,-2]],[[4702,4112],[1,-43],[-43,0],[1,-45],[-43,1],[1,-87],[-85,1],[1,-45],[-94,-46],[4,-77],[-41,-72],[-54,-42]],[[8298,3321],[54,-165],[-19,-83],[21,-5],[3,-134],[21,-53]],[[8378,2881],[-60,9],[-23,37],[-69,-7],[-29,26],[-44,3],[-95,29],[1,-43],[-248,-6]],[[7811,2929],[-1,55],[-1,36],[-98,-2],[0,130],[-84,-1],[1,86],[-10,180]],[[7618,3413],[69,58],[52,70],[82,31],[302,73],[127,30],[164,39]],[[8414,3714],[-29,-211],[-43,-7],[24,-130],[-68,-45]],[[4360,6114],[0,-88],[105,-131],[1,-132],[62,1]],[[7092,6216],[510,1],[357,0]],[[7959,6217],[-41,-44],[-6,-65],[-45,-63],[21,-58],[0,-69],[15,-29],[-22,-85],[38,-51],[-16,-21],[34,-75],[-7,-43],[-18,-18],[4,-86],[-14,-62],[24,-57],[-25,-16]],[[7901,5375],[-306,-12],[-262,-12],[-224,-10],[-210,-8],[-40,-73],[-45,-9],[-22,-85]],[[6792,5166],[-31,13]],[[9347,5488],[20,-72],[2,-63]],[[9604,3918],[-347,181],[-53,12],[-69,-5],[-58,-41],[-69,6],[-47,-17],[-161,-8]],[[8599,5167],[1,294],[-1,231],[0,526]],[[8599,6218],[544,2]],[[9143,6220],[1,-285],[42,-44],[32,0],[4,-59],[35,-62],[27,-86],[-8,-47],[36,-36],[35,-113]],[[5556,6912],[48,-26],[48,1],[49,-55],[41,-13],[34,28],[43,-21],[33,-42],[-24,-78],[-31,3],[-48,-86],[8,-53],[30,-40],[-31,-31],[15,-45],[-34,-102]],[[5672,6275],[-59,-48],[-20,-51],[-35,-9],[-18,-14],[5,-191],[-7,-153],[-27,-47]],[[5034,7198],[16,-24],[-53,-105],[43,-21],[6,-51],[38,-30],[-17,-58],[52,-13],[45,61],[50,-22],[-28,101],[49,69],[44,6],[98,-48],[36,-50],[51,6]],[[5464,7019],[46,-44],[12,-44],[34,-19]],[[746,4425],[54,71],[51,32],[-1,62],[-43,72],[24,88],[-66,61],[25,83],[-10,45],[35,40],[87,20],[-15,110],[10,14],[-6,16],[69,89],[42,8],[44,64],[23,72],[7,89],[40,48],[43,113],[53,95],[-14,107]],[[3276,7774],[5,14],[-110,76],[10,34],[-75,60],[-27,49],[-105,19],[-70,48],[-80,12],[-21,22],[13,97],[-49,15],[-12,36],[-86,7],[11,64],[-34,23]],[[10339,6225],[275,-1],[49,9],[12,-34],[-20,-81],[-51,-69],[29,-74],[-29,-53],[-42,-13],[13,-92],[-40,-38],[1,-79],[-50,-61],[-69,-125],[24,-33],[-14,-89],[-44,-53],[25,-23],[-28,-89],[13,-13]],[[9143,6220],[378,2],[300,0],[518,3]],[[1415,9937],[-355,1]],[[1,9813],[0,457],[0,368],[-1,669],[0,981],[565,0]],[[2117,9670],[18,-25],[67,-113],[-28,-27],[46,-62],[20,-71],[-50,-89],[54,-109],[37,-32],[-290,1],[-3,-208],[-15,22],[-91,-71],[-53,31],[-28,-23],[-88,26],[-12,101]],[[1990,12284],[294,-1],[206,0],[771,-10]],[[7037,4494],[-18,-54],[-18,-33],[-52,-66],[-19,-53],[47,-51],[70,19],[100,-23],[29,-48]],[[6328,4708],[8,41],[166,2],[-1,71],[43,101],[81,1],[0,57],[112,135],[25,51],[-53,26]],[[6792,5166],[12,-54],[-23,-67],[-33,-45],[23,-64],[96,-2],[60,-58],[-8,-52],[-95,-62],[25,-32],[29,2],[132,53],[30,-48],[1,-84],[2,-79],[-6,-80]],[[6180,8478],[24,-42],[-51,-41],[-41,36],[-29,59],[-45,18],[-29,-48],[-54,-50],[-66,1],[-44,43],[-35,-25],[-18,-97],[-28,-69],[18,-112],[-78,-87],[-47,26],[-20,65],[-28,13],[-76,-53],[-7,-16],[-21,-36],[-23,-66],[2,-58],[33,-52],[82,-72],[-11,-87],[-51,-48],[15,-38],[49,-16],[118,-7],[25,-41],[-7,-40],[-36,-22],[-69,5],[-45,24],[-64,6],[-2,44],[-43,118],[-67,-3],[-21,-90],[21,-127],[25,-43],[71,-42],[77,-2],[22,-29],[-31,-32],[-48,-12],[-56,25],[-33,-9],[-46,-65],[-10,-115],[13,-42],[52,-29],[43,-45],[-26,-34]],[[5041,9006],[165,1],[85,0],[-1,132],[37,0]],[[6981,1954],[92,81],[50,-46],[67,52],[134,50]],[[7324,2091],[187,265]],[[7511,2356],[97,2],[216,4],[-4,88],[101,2],[-8,28],[89,60],[9,-79],[41,-6],[26,-82],[27,-75],[54,-54],[43,-6],[55,-35],[44,-55],[73,-113],[90,-27],[48,-78],[68,-42],[16,-72],[43,-11],[110,-162],[98,-77],[46,-102],[73,-84],[38,-17],[44,-50],[15,-56],[-17,-73],[24,-66],[-17,-63],[-34,-46]],[[9019,1009],[-1,131],[-67,57],[-11,50],[-27,11],[-50,-36],[21,-48],[-68,-88],[-64,39],[-67,-6],[-55,-54],[-56,84],[-51,-30],[-6,-44],[30,-51],[-12,-77],[64,-23],[-19,-27],[-52,32],[-40,-75],[-59,-3],[-34,-127],[-65,7],[-46,-147],[-42,-26],[-29,59],[-24,1],[-30,-57],[-46,2],[-61,-32],[-35,-41],[-3,-79],[-81,-4],[-38,24],[-40,96],[-52,49],[-26,61],[-43,16],[-106,115],[-59,-37],[-68,5],[-40,37],[-28,67],[-65,-79],[-75,25],[-86,85],[-211,19],[-181,87],[-117,142],[98,19],[51,68],[24,87],[60,26],[2,-41],[102,-153],[53,48],[22,-37],[-9,-88],[17,-77],[90,-18],[29,31],[-38,70],[35,74],[-35,105],[-43,12],[-26,48],[-41,8],[-52,36],[-4,42],[-48,23],[13,57],[-17,61],[-48,11]],[[6933,1531],[-40,13]],[[6893,1544],[-3,-1]],[[6890,1543],[-19,86],[-20,20],[20,105],[-17,45],[29,45],[61,18],[31,35],[6,57]],[[8989,836],[0,-17]],[[8989,819],[0,17]],[[8640,485],[199,-76],[-8,-22],[-138,56],[-53,42]],[[7901,5375],[12,-34],[-79,-64],[-85,-112]],[[7796,4251],[-47,-17],[-33,14],[-38,-12],[-86,20],[-46,-12],[-48,-22],[-5,-17],[-17,-25]],[[7618,3413],[-51,-4],[-29,19],[-24,23],[-125,-26],[-46,34],[-36,-15],[0,-43],[-41,0]],[[8436,3879],[-22,-165]],[[9122,1122],[-52,-32],[-17,-107],[-32,17],[-2,9]],[[7511,2356],[62,90],[85,143],[48,96],[45,159],[60,1],[0,84]],[[8378,2881],[52,16],[57,-11],[147,7],[58,-25]],[[8692,2868],[34,-61],[42,1],[46,-53],[11,-104],[19,-28],[94,-82],[62,-6],[81,-45],[28,-67],[-2,-83],[38,-48],[75,-3],[217,-1]],[[9925,1335],[-10,-53]],[[9926,1245],[-19,-37],[9,-88],[45,-9],[-5,-41],[-35,-16],[-60,40],[-46,4],[-81,-93],[21,-78],[42,-30],[23,-56],[24,-7]],[[9782,710],[-202,-156],[-40,-36],[-90,-48],[-62,28],[34,41],[0,56],[-48,45],[-33,102],[19,66],[-43,34],[-76,180],[-36,6],[-55,49],[-28,45]],[[8989,836],[0,-17]],[[4969,10057],[-178,-1],[1,-55],[-115,1],[-30,54],[-364,2]],[[4283,10058],[0,130],[-45,47],[-211,215],[0,263]],[[8844,3309],[-16,-1],[-3,13],[-154,-57],[-29,-42],[1,-105],[42,0],[7,-249]],[[9359,3705],[-165,-40],[-57,-90],[-142,-112],[-107,-150],[-44,-4]],[[6360,3081],[537,47]],[[6897,3128],[18,-61],[45,-56],[-6,-43],[62,-65],[17,-105],[39,-45],[84,-30],[46,1],[55,-40],[42,-69],[-19,-48],[14,-61],[-2,-83],[-28,-11],[17,-102]],[[7281,2310],[-31,11],[-54,63],[-63,-1],[-55,16],[-82,67],[-36,-7],[-171,48],[-133,5],[-74,45],[-10,6],[32,153],[-68,117],[-23,83],[-153,141],[0,24]],[[6616,3390],[-293,-2],[-51,-74],[-229,-1],[-14,73],[-36,37],[-54,41],[-41,75],[-50,-10],[-60,49],[-58,3],[-95,-41],[-13,-56],[-77,-60],[-6,-27],[-30,-40],[-8,-11],[-141,71],[-18,-12],[-31,-20],[-27,46],[-109,2]],[[5175,3433],[42,141],[70,101],[-4,41],[-33,62],[-76,-4],[-30,-30],[-40,20],[7,83],[53,25],[30,21],[-38,33],[-45,71],[69,48],[-14,95],[-28,48],[25,29],[5,78],[-86,26]],[[5657,4709],[137,-1]],[[4282,9663],[0,285],[1,110]],[[6246,7806],[8,-54],[-8,-80],[12,-118],[33,-71],[69,-74],[-1,-74],[-16,-19],[-91,16],[-41,60],[-40,127],[-41,-27],[-33,-74],[23,-64],[48,-4],[2,-87],[96,-92],[3,-76],[-24,-49],[-87,-37],[-51,-5],[-157,19],[-40,-35],[24,-65],[48,-25],[58,-52],[28,-45],[-17,-91],[-61,-80],[-11,-60],[28,-37],[117,-103],[19,-48],[-11,-46],[-65,-65],[-115,-54]],[[5889,6130],[10,72]],[[6587,8423],[-41,-66],[-8,-70],[11,-132],[-13,-72],[-50,-26],[-105,26],[-84,76],[-36,-32],[-7,-77],[74,-69],[68,4],[86,28],[47,-22],[-10,-61],[-104,-89],[-74,-28],[-24,12],[-71,-19]],[[7959,6217],[391,0],[249,1]],[[7324,2091],[-57,57],[13,33],[1,129]],[[6897,3128],[-10,87],[56,1],[30,74]],[[12796,3361],[37,-44],[54,-107],[23,-85],[18,-109],[-3,-136],[-36,-195],[-87,-186],[10,94],[52,97],[16,88],[-17,26],[30,45],[7,126],[-22,73],[4,88],[-32,118],[-54,107]],[[11629,3391],[58,18],[39,80],[254,158],[-45,-65],[-23,-9],[-3,-62],[20,-83],[109,-32],[8,-52],[-26,-32],[-47,5],[-25,-21],[-61,18],[-3,59],[-35,22],[-55,-70],[-82,8],[-83,58]],[[10299,3170],[62,67]],[[10361,3237],[6,-91],[34,-95],[48,-39],[72,0],[106,38],[44,36],[36,-32],[-80,-49],[6,-68],[98,-101],[98,-35],[76,1],[95,49],[14,29],[-4,85],[26,36],[1,50],[27,47],[-24,87],[51,24],[63,51],[105,66],[-12,70],[40,41],[59,-47],[65,-75],[98,55],[22,-51],[-58,-19],[-45,-36],[-52,19],[-33,-75],[60,-21],[-1,-51],[26,-33],[63,-26],[43,-39],[11,-106],[15,-43],[88,45],[42,43],[105,206],[71,8],[0,-56],[51,-20],[-42,-109],[-92,-11],[-89,-75],[8,-64],[55,-5],[122,17],[-58,-54],[-29,-55],[-42,44],[-54,-32],[-31,-89],[-33,80],[-106,-29],[11,-54],[42,14],[9,-51],[55,-74],[45,-5],[64,47],[3,-97],[-34,-25],[-69,64],[-153,31],[-17,-62],[-72,-87],[1,-84],[15,-45],[-47,-80],[23,-44],[-78,-14],[-14,64],[21,20],[-12,58],[-44,63],[-30,-6],[-68,26],[15,-74],[-32,-107],[50,-29],[15,-64]],[[11225,2118],[-58,48]],[[11167,2166],[-43,4]],[[11124,2170],[-61,37],[-142,47],[-79,84],[-58,22],[-20,66],[-34,45],[-38,14],[-116,-7],[-59,19],[14,35],[-59,77],[-51,7],[-92,-22],[-27,65],[-43,53],[-36,104]],[[10223,2816],[18,59],[-17,40],[-27,45],[-44,27],[-82,2],[-30,13],[-69,49],[55,131],[35,13],[56,-38],[57,19],[36,32],[52,12],[36,-50]],[[10928,3679],[-78,-110],[-59,-41],[-10,-88],[-89,-21],[-30,-47],[39,-73],[-40,-19],[-85,71],[-125,0],[-68,-74],[-22,-40]],[[10223,2816],[-18,-3],[-44,79],[-58,29],[-70,7],[-5,-47],[-46,18]],[[5547,2552],[-134,-124]],[[5413,2428],[-56,28],[-4,26],[60,69],[46,-12],[26,20],[7,55],[-19,86],[-79,-8],[-48,27],[-61,-14],[-21,-34],[-55,-8],[-86,51]],[[5142,3324],[33,109]],[[6360,3081],[-377,-32],[-79,-112],[-4,-4],[-131,-182],[-222,-199]],[[4975,1944],[66,76],[56,34],[44,-19],[62,7],[34,56],[57,26],[29,-28],[62,5],[104,-81],[98,-27],[37,-59],[72,0],[9,-36],[59,-20],[-130,-93],[-21,-59],[14,-44],[-44,-22],[-43,14],[-44,-42],[-62,17],[-40,72],[-38,1],[-92,44],[-95,59],[-98,39],[-84,54],[-12,26]],[[6933,1531],[-40,13]],[[6890,1543],[-32,-90],[-41,-33],[-36,30],[-79,-65],[-7,67],[-34,27],[5,111],[38,10],[-19,85],[-42,65],[-54,-2],[-68,-74],[-40,4],[-93,-58],[-34,73],[-27,15],[-2,68],[-37,21],[-83,11],[22,41],[-29,60],[5,57],[-16,39],[-31,114],[-58,11],[-119,-32],[-27,38],[35,89],[-5,36],[20,110],[-17,55],[-61,23],[-61,2],[-101,-28],[-57,40],[-89,-14],[-151,-76],[-44,-36],[-66,23],[55,42],[3,26]],[[3527,1970],[-46,31],[-39,-8],[-222,85],[-53,37],[-37,7],[-389,203],[-77,36],[-109,34],[-135,54],[-277,75],[-128,19],[-136,-5],[-153,-37],[-112,11],[-200,8],[-96,-6],[-425,-63],[-142,-32],[-100,-37],[-85,-45],[-58,-53],[-80,134],[-46,21],[-24,88],[-59,40],[-16,37],[15,65],[54,54],[113,82],[61,91],[35,79],[21,102],[52,108],[38,16],[40,58],[39,27],[5,39],[36,42]],[[11124,2170],[-47,19],[-43,-12],[-28,-35],[-66,-22],[-30,24],[-65,-21],[61,-47],[62,-74],[-50,1],[-49,84],[-63,4],[9,-115],[52,-4],[21,-34],[-54,-34],[-52,-3],[18,-77],[50,-16],[-1,-29],[43,-58],[76,-41],[98,13],[-6,-57],[81,-100],[12,-57],[37,-61],[-60,5],[13,-53],[65,-13],[104,58],[80,-41],[134,1],[58,-27],[54,-72],[44,-1],[69,39],[86,-94],[11,-42],[45,-55],[87,120],[45,-20],[42,-104],[61,-36],[27,-77],[36,-38],[-36,-63],[35,-58],[-16,-32],[125,-25],[112,65],[49,-87],[-30,-30],[-71,24],[-10,-42],[-72,2],[-78,-33],[36,-64],[78,-15],[65,5],[-67,-134],[-30,56],[-62,22],[-8,-71],[-24,-57],[-75,-10],[-3,-90],[-26,-58],[39,-90],[-188,93],[8,69],[-15,57],[-48,60],[-26,-4],[-19,-75],[-59,-15],[-80,-107],[-45,-42],[-110,-142],[-76,-77],[23,123],[72,87],[47,86],[21,85],[57,0],[39,93],[5,97],[16,39],[42,12],[-7,66],[12,42],[-45,76],[-59,8],[-24,-33],[7,-41],[-16,-85],[-46,-57],[-121,-18],[-69,62],[-48,112],[-89,100],[-133,64],[-63,19],[-109,33],[1,23],[-45,24],[-39,64],[-105,5],[-109,36],[-288,44],[43,109],[59,-5],[27,-75],[53,24],[23,42],[84,23],[92,3],[57,22],[64,20],[41,-80],[68,29],[-33,95],[-70,29],[-82,-21],[-60,7],[-54,-14],[-127,4],[-5,26],[-52,39],[-59,-33],[-28,47],[-43,18],[20,92],[48,24],[-51,44],[-66,-13],[-3,-46],[-48,-62],[-18,32],[-70,10],[-37,-27],[-26,58],[-81,2]],[[11225,2118],[-58,48]],[[10925,1817],[59,11],[24,23],[69,-2],[-62,-66],[-23,-49],[-36,28],[-31,55]],[[6450,12248],[422,-3]]],"transform":{"scale":[0.0004042489170792078,0.00033272948178391894],"translate":[-94.04314699999999,28.9307921278392]},"objects":{"cb_2019_22_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[[0,1]],[[2,3]],[[4,5,6,7,8,9,10]]],"type":"MultiPolygon","properties":{"COUNTYFP":"051"}},{"arcs":[[11,12,13,14,15]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[16,17,18,19,20,21]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[22,23,24,25,26,27]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[28,29,30,31,32,33,34]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[35,36,37,38,39]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[40,41,42,43,44,45]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[46,47,48,49,50]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[51,52,-31,53,54,55,-19]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[56,57,58,59,60,61]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-33,62,63,64,65,66]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[67,68,69,70,71,72]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[[73,74,75,76,77,78]],[[79,80,81]]],"type":"MultiPolygon","properties":{"COUNTYFP":"125"}},{"arcs":[[82,-16,83,-71,84,85]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[86,87,88,-43]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[89,90,91,-39,92,93,94,95]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[96,-20,-56,97,-94,98]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[99,100,101,-7,102,103]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[104,105,-44,-89,106,-69,107,-65]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[[108,-48,109,110,111]],[[112,113]]],"type":"MultiPolygon","properties":{"COUNTYFP":"065"}},{"arcs":[[114,-112,115,116,117,118]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[119,120,121,122,123,124,125]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[126,127,-91,128,129,130,131]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[132,-17,133,-57,-62,134]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-111,135,-113,136,137,138,-116]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[139,140,141,142,143,144,145]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[146,-14,147,-49,-109,-115,-119,148,149]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-96,150,-140,-146,151,-129,-90]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[152,153,154,155,156]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-55,157,-141,-151,-95,-98]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-75,158,159,160,161]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[162,-104,163,-26,164,165,166]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[167,-80,168,-142,-158,-54,-30,169,170]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-21,-97,-99,-93,-38,171]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-63,-32,-53,172]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[173,-100,-163,-167,174]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-41,-46,175,-59,176]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-176,-45,-106,177,-60]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-85,-70,-107,-88,178]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[179,-121,180,-76,-162,181]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[-117,-139,182,-170,-29,-35,183]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[[184,185,186,187,188,189,190]],[[193]]],"type":"MultiPolygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-105,-64,-173,-52,-18,-133,-135,-61,-178]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-161,194,-24,195,-122,-180,-182]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-156,196,-123,-196,-23,-28,197]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[198,-187,199,-154,200,201,-11,202,-2,203,-4,204]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-84,-15,-147,-150,206,207,-72]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[208,-201,-153,-157,-198,-27,-164,-103,-6,209]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[[210,211,212]],[[-126,213,214,-144,215]]],"type":"MultiPolygon","properties":{"COUNTYFP":"099"}},{"arcs":[[-207,-149,-118,-184,-34,-67,216]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[217,-78,218,-81,-168,-171,-183,-138,219]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[220,-165,-25,-195,-160]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-155,-200,-186,221,-212,222,-124,-197]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[[223]],[[224]],[[225,226,227,228,229,230]]],"type":"MultiPolygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-8,-102,231,-226,-231,232]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-77,-181,-120,-216,-143,-169,-82,-219]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[[233,234,-131,235,-214,-125,-223,-211,236]],[[237]]],"type":"MultiPolygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-73,-208,-217,-66,-108,-68]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[-191,239,-234,-237,-213,-222,-185]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[-209,-210,-5,-202]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-145,-215,-236,-130,-152]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-40,-92,-128,240,-36]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[[-233,-230,241,-9]],[[243]]],"type":"MultiPolygon","properties":{"COUNTYFP":"075"}},{"arcs":[[-13,244,-50,-148]],"type":"Polygon","properties":{"COUNTYFP":"123"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ma.topo.json b/app/assets/topojson/states/ma.topo.json new file mode 100755 index 00000000..4cf90eac --- /dev/null +++ b/app/assets/topojson/states/ma.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[2037,3264],[28,5],[87,13],[13,-72],[229,37],[42,-220],[9,-18],[-10,-85],[60,47],[28,64]],[[2523,3035],[54,23],[29,-138],[135,26],[-6,-47],[6,1],[-11,-105],[11,-14],[-22,-16]],[[2719,2765],[-104,-23],[-138,-46],[-61,-47],[10,-35],[-75,-13],[-18,127],[-91,-13],[-163,-23],[-47,-6],[-99,-14],[-22,7],[-43,60],[53,88],[-23,47],[-7,3],[-45,-33],[-47,-127],[-23,-7],[-48,-34],[7,-81],[-199,45],[-23,48],[-3,54],[-42,22],[-93,-12],[-23,-47],[-8,-19],[-85,62],[67,72],[-10,185],[-22,22],[-121,8],[-100,-85]],[[1073,2950],[-65,-9],[-67,53],[-3,30],[-9,113],[6,23],[114,-26],[6,22],[34,168],[10,49],[19,85],[22,116],[-22,4],[8,40]],[[1126,3618],[208,-41],[14,-44],[-10,-49],[8,-64],[33,-8],[194,-48],[13,-49],[120,20],[-8,-130],[75,11],[186,35],[78,13]],[[2902,2536],[-15,-2],[-121,-21],[-3,21],[-134,62],[3,53],[87,116]],[[2523,3035],[0,152],[25,58],[39,57],[-16,106],[98,93],[-51,55],[-5,38],[-10,82],[32,-4],[-13,69],[27,29],[57,13],[6,62],[-10,65],[-90,33],[-23,129]],[[2589,4072],[363,-12],[274,-11],[175,-5]],[[3401,4044],[3,-21],[83,-79],[-1,-113],[29,12],[147,-4],[-1,21],[235,-90],[-31,-222],[91,-18],[0,44],[34,34],[53,-25],[31,19],[87,-20],[19,-64],[-64,-124],[36,-22],[-12,-53],[-22,-97],[-55,-13],[-40,-26],[51,-29],[-48,-54],[-46,-46],[83,-109],[72,42],[136,11],[2,-52],[-23,-59],[-19,-46],[-35,-18],[-59,-1],[-77,-18],[-27,-92],[-6,-22],[41,-62],[55,-8],[3,-27],[34,19],[78,5],[11,-68],[41,-27]],[[4290,2522],[-1,-70],[-49,-40],[4,-36],[3,-106],[0,-131]],[[4247,2139],[-138,-8],[-58,-2],[-190,-5],[-250,-10],[-11,42],[-168,2],[-231,7],[-225,6],[-76,4]],[[2900,2175],[1,165],[1,196]],[[5341,3167],[17,-19],[14,-74],[-9,-7],[-20,41],[-39,-15],[-37,-94],[-36,-6],[-15,-62]],[[5216,2931],[9,-47],[-16,-32],[-23,-15],[-75,-5],[-87,-115],[-26,22],[-8,55],[-25,-2],[-63,69],[-6,8]],[[4896,2869],[56,57]],[[4952,2926],[52,-5],[73,115],[-37,21],[-72,-59]],[[4968,2998],[-37,55],[15,27],[50,14],[33,23],[23,-49],[27,-9],[56,17],[11,40],[-1,51],[38,-13],[47,74],[10,28],[5,56]],[[5245,3312],[32,-28],[65,-6],[24,33],[18,-1]],[[5384,3310],[-32,-34],[-32,-67],[21,-42]],[[5282,2931],[-14,2]],[[5268,2933],[14,-2]],[[4691,2131],[232,118],[20,10],[64,32],[123,63]],[[5130,2354],[23,-126],[31,-177],[1,-7],[10,-54],[83,-63],[22,-28],[14,-64],[13,-2],[28,-123],[-71,-62],[-61,-60],[46,-47],[-25,-56],[221,34],[31,-76],[44,-10],[45,-164],[14,-53],[32,-144]],[[5631,1072],[-22,-40],[22,-48],[-28,-35],[-34,121],[-35,14],[-36,-26],[16,-84],[-67,41],[6,-38],[-22,-79],[7,-45],[-28,-52],[-68,-6],[-8,-51],[-41,8],[-40,-21],[-40,-19],[-63,32],[-105,-32],[-23,265],[-15,26],[12,156],[-91,22],[-53,37],[-15,24],[-112,170],[-117,63],[-24,14],[-41,117],[26,34],[-15,26],[17,48],[-14,53],[4,46],[-91,-15],[0,60],[1,193]],[[4494,2051],[36,0],[161,80]],[[53,2517],[49,172],[61,215],[43,153],[57,202],[162,569],[89,311],[214,-5],[243,-7],[54,-1]],[[1025,4126],[-1,-106],[54,-4],[102,11],[-6,-37],[-44,-8],[-44,-46],[82,-48],[9,-37],[-7,-34],[-44,-199]],[[1073,2950],[-3,-169],[-13,-35],[-57,-260],[-75,-10],[20,-59],[-25,-19],[-1,-48],[39,-100],[3,-49]],[[961,2201],[-251,9],[-262,11],[-297,9],[-127,-2],[-24,100],[53,189]],[[5187,3398],[58,-86]],[[4968,2998],[-46,-44],[30,-28]],[[4896,2869],[-30,17],[-17,46],[-30,25],[-90,35],[-121,-39],[8,-45],[32,-73],[12,-62],[-63,-1],[6,-40],[-18,-50],[-12,-40],[-86,-23],[-37,-37],[-88,-10],[-43,-46],[-29,-4]],[[3401,4044],[266,-9],[255,-8],[231,-7],[180,-5],[186,-6],[159,-4],[83,108]],[[4761,4113],[36,-184],[-38,-34],[178,-111],[14,-51],[35,42],[28,-39],[125,14],[37,13],[52,-64],[-3,-42],[-46,10],[-29,-50],[-9,-68],[16,-17],[56,4],[11,-58],[-37,-80]],[[6044,2292],[10,-61],[73,-102],[-15,0],[-61,89],[-52,-25],[3,-68],[-23,-18],[-36,21],[-33,-28],[38,-55],[23,-9],[62,-75],[95,-32],[52,25],[83,-65],[-4,-52],[30,-49],[13,-84],[-37,-94],[13,-38]],[[6278,1572],[-60,-66],[-142,-65],[23,-38],[-46,-86]],[[6053,1317],[-27,-12],[-48,38],[-19,-10],[-65,33],[-17,-32],[27,-61],[-32,-37],[-72,-30],[14,-29],[-42,-44],[-69,21],[10,-47],[-12,-45],[-70,10]],[[5130,2354],[40,21],[84,43],[42,21],[43,25],[86,43],[34,17],[21,185],[-37,76],[51,33]],[[5494,2818],[52,-50],[16,29],[-24,44],[35,35],[42,-48],[55,-6]],[[5670,2822],[-42,-16],[-18,-57],[26,-72],[29,-34],[80,60],[17,71]],[[5762,2774],[39,5],[6,-42],[62,-66],[37,-18],[-12,-54],[83,-161],[83,-103],[-16,-43]],[[2900,2175],[-133,2],[-152,2],[-204,2],[-193,4],[-154,0],[-88,-11],[-20,-15],[-54,17],[-225,16],[-79,-18],[-31,-74],[-106,-15],[7,107],[-46,0],[-304,5],[-157,4]],[[7544,1571],[20,-190],[0,-51],[-11,-120],[-21,-38],[-50,-145],[-53,-24],[46,115],[-54,60],[-38,13],[-49,-12],[-110,-13],[-59,-21],[-50,-13],[-111,-6],[-111,-54],[-52,-2],[-42,20],[-55,-26],[-45,29],[-48,-14],[-20,-42],[-65,-26],[-77,-3],[-28,-48],[-54,-80],[-109,-32],[-41,12],[-183,-36],[-49,-64],[-24,50],[29,46],[1,42],[25,49],[-22,61],[27,53],[-28,40],[57,51],[-58,26],[16,73],[43,14],[-2,39],[-36,13]],[[6278,1572],[37,-49],[102,-86],[124,-47],[62,-12],[195,-16],[63,-55],[46,33],[49,46],[158,47],[41,-3],[122,38],[87,42],[30,34],[11,22],[-6,198],[-14,70],[-67,66],[-35,-18],[-24,-65],[-9,159],[-1,76],[-13,73],[-25,57],[-58,51],[-52,25],[-47,-2],[-82,-80],[-21,41],[-57,50],[42,40],[77,11],[74,-15],[81,-26],[70,-35],[51,-40],[53,-62],[77,-140],[60,-151],[24,-87],[25,-95],[16,-96]],[[1025,4126],[203,-6],[132,-3],[155,-5],[246,-9],[161,-6],[173,-6],[221,-8],[273,-11]],[[4761,4113],[66,28],[89,-25],[-9,146],[8,10],[35,39],[70,35],[144,-41],[23,73],[47,72],[56,11],[81,16],[75,43],[34,5],[60,-11],[80,-59],[66,31],[-1,-60],[15,-87],[5,-20],[6,-82],[22,-78],[15,-39],[33,-77],[-8,-54],[67,-27],[41,-45],[71,-25],[59,59],[49,32],[41,-34],[-4,-43],[54,-25],[7,-46],[-51,-25],[-30,-25],[-7,-46],[-96,-18],[-37,-45],[-36,-14],[-52,7],[-79,-42],[-34,13],[-63,-35],[-94,-8],[-26,-30],[27,-3],[-40,-76],[16,-9],[46,44],[31,-35],[-11,-41],[-68,-41],[-31,-49],[-66,6],[-20,-18],[-5,-45],[37,-46],[-35,-15],[-6,106],[-44,-35]],[[4494,2143],[-162,-3],[-85,-1]],[[5216,2931],[52,2]],[[5282,2931],[10,-29],[-36,-24],[62,-57],[79,-36],[97,33]],[[4494,2051],[0,92]],[[5670,2822],[92,-48]],[[6255,491],[41,-32],[46,-14],[34,-45],[40,34],[-3,35],[48,33],[9,-67],[-4,-117],[-32,-17],[-245,7],[-58,-3],[-94,-6],[-84,-7],[-89,-22],[-66,-48],[-24,-49],[-51,33],[-82,94],[55,23],[62,-21],[31,17],[59,78],[18,42],[42,32],[24,67],[61,23],[34,51],[29,4],[82,55],[32,-62],[53,25],[21,-44],[-5,-60],[16,-39]],[[5707,606],[49,53],[114,69],[-9,-45],[-71,-80],[-47,-31],[-36,34]],[[5501,521],[87,41],[32,-27],[-48,-30],[-71,16]],[[6918,131],[48,-28],[37,13],[15,39],[132,-2],[90,15],[76,62],[31,48],[23,82],[127,-248],[-8,-64],[-23,-24],[-85,-24],[-80,17],[-139,-5],[-109,41],[-108,54],[-27,24]],[[6827,199],[65,-12],[-2,-48],[-63,60]]],"transform":{"scale":[0.00047324669123988524,0.00036433131387966864],"translate":[-73.50814199999999,41.237964]},"objects":{"cb_2019_25_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[5,-2,6,7,8,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[12,13,14,15,16,17,18]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[21,22,23,24]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[25,26,-4,27,28]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[29,-17,30,-15,31,-9,32,33]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[34,35,36,-23,37,38,39,40]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-3,-6,-12,41,-28]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[42,-36,43]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-1,-5,-27,44,-7]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-34,45,-18,-30]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[[46,-10,-32,-14,47,-20,48,-38,-22,-25,49]],[[-40,50]],[[-16,-31]]],"type":"MultiPolygon","properties":{"COUNTYFP":"021"}},{"arcs":[[[51]],[[52]],[[53]]],"type":"MultiPolygon","properties":{"COUNTYFP":"007"}},{"arcs":[[[54]],[[55]]],"type":"MultiPolygon","properties":{"COUNTYFP":"019"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/md.topo.json b/app/assets/topojson/states/md.topo.json new file mode 100755 index 00000000..a656fa6f --- /dev/null +++ b/app/assets/topojson/states/md.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[9316,5313],[-9,7],[23,77],[52,65],[-36,45],[12,77],[-25,7],[-35,-67],[18,-28],[-21,-83],[-41,-32],[11,-39],[-36,-76],[35,-44],[24,-77],[-59,-57],[-12,-82],[-42,9],[20,55],[-26,43],[8,76],[-39,15],[20,83],[-26,41],[-131,20],[-2,-15]],[[8999,5333],[-41,55],[5,37],[-29,34],[4,75],[-37,62],[-56,58],[-28,-1],[-46,86],[-64,19],[-33,31],[-77,32],[-38,0],[-24,43],[-38,27],[0,63],[-23,28],[-22,69],[-33,34],[-18,101],[-11,346]],[[8390,6532],[365,1],[602,0]],[[9357,6533],[11,-44],[48,-83],[141,-127],[56,-121],[24,-17],[86,-118],[57,-78],[29,-55]],[[9809,5890],[-58,-25],[-43,-112],[-38,-64],[35,-7],[40,-37],[76,-4],[34,-91],[-61,-48],[-23,31],[-164,-144],[-36,3],[-110,-139],[-106,-57],[-54,65],[15,52]],[[8918,4824],[84,42],[25,-39],[-68,-44],[-41,41]],[[9000,5326],[21,-46],[35,-7],[-20,-57],[31,-65],[-44,-1],[-9,-36],[55,-19],[-19,-47],[-45,17],[-71,-63],[-54,-5],[17,-39],[-6,-71],[-59,-68],[-60,20],[-13,-38],[54,-38],[14,-46],[-22,-51],[-33,-13],[-29,59],[-45,-9],[-3,-36],[-93,-15],[-13,100],[-47,10],[-37,29]],[[8505,4791],[0,206],[-1,48],[0,223],[-41,1],[-312,0],[-169,-1],[1,-129],[-1,-33],[1,-179],[65,-35],[201,-111]],[[8249,4781],[-53,-50],[-62,27],[-111,-62]],[[8023,4696],[-74,48],[-49,19],[-34,44],[-37,16],[-86,64],[44,110],[-42,35],[-2,27],[-82,17],[-48,-13],[-48,31],[-53,30],[-21,65]],[[7491,5189],[1,51],[-27,65],[35,21],[-18,35],[11,72],[-37,62],[20,21],[12,124],[40,28],[8,67],[26,102],[49,168],[104,363],[3,8],[47,155]],[[7765,6531],[257,1],[368,0]],[[8999,5333],[1,-7]],[[2142,6539],[104,0],[136,-1],[140,0],[533,-1],[237,0]],[[3292,6537],[24,-46],[49,-38],[-2,-68],[-44,-51],[-19,-49],[17,-59]],[[3317,6226],[-52,14],[-30,-52],[-59,-14],[14,-51],[-122,58],[-38,-21],[38,-55],[66,-47],[-30,-42],[-101,46],[-40,-14],[8,-47],[80,-55],[26,-35],[-95,-42],[-52,-77],[-100,7],[-52,22],[-128,-19],[-75,45],[-61,19],[-123,-9],[-96,40],[-15,27],[-87,39],[-26,82],[-36,-25],[-60,28],[-31,51],[29,26],[99,19],[-19,35],[-66,-17],[-41,10],[34,95],[-45,-40],[-28,5],[-31,-39],[17,-74],[-39,4],[-8,-38],[-40,-32],[-1,-41],[37,-35],[-22,-26],[-50,24],[-26,-19],[-78,-143],[-45,9],[-7,-44],[-32,-29],[-36,-66],[-49,-1],[-15,-44],[-54,-58],[2,-65],[-221,100],[-38,56],[-59,-14]],[[1208,5657],[74,164],[68,150],[56,122],[27,61],[63,138],[35,78],[24,52],[53,116]],[[1608,6538],[239,1],[295,0]],[[7218,3961],[32,55],[107,183],[62,107],[0,42],[54,48]],[[7473,4396],[56,-68],[82,-33]],[[7611,4295],[38,-48],[-29,-72],[43,-24],[53,-4],[38,-60],[41,-2],[44,-36],[39,-7],[9,-59],[111,-101],[1,-1],[9,-68],[24,-48],[10,-116],[61,-74],[-20,-33],[-1,-70],[-44,-60],[-22,-82],[9,-50],[-45,-41],[6,-56],[-12,-55],[38,-44],[5,-55],[37,-18]],[[8054,3011],[-21,-86],[-24,-50],[29,-98],[25,-82],[-26,-65],[-2,-25],[59,-68],[0,-66],[-24,-68],[25,-101],[-9,-61]],[[8086,2241],[-188,83],[-6,128],[-14,84],[-87,35],[-246,114],[-30,-1],[-1,0],[-87,-24],[-26,5],[-75,6],[-75,24],[-74,-15],[-78,-31],[-29,-54],[-28,-13],[-27,-50],[-89,282],[-22,43]],[[6904,2857],[95,14],[34,58],[-2,75],[6,157],[199,198],[107,106],[70,68],[-64,65],[-78,76],[-126,122]],[[7145,3796],[45,42],[-12,56],[21,36],[19,31]],[[9292,3322],[40,-62],[36,15],[51,-58],[-14,-68],[84,-69],[15,-40],[47,12],[-64,117],[-35,39],[26,97],[-30,67]],[[9448,3372],[24,53],[32,-15],[35,25],[18,50],[40,12],[68,-23],[65,21],[2,29],[-37,85],[34,92],[65,13],[197,-46],[182,-42]],[[10173,3626],[15,-76],[-18,-47],[32,-65],[43,-22],[-10,-78],[68,-45],[20,-41],[-37,-31],[-64,-38],[-49,-64],[-51,4],[-37,-57],[-56,-34],[9,-67],[-36,2],[-18,-28],[60,-70],[-1,-36],[55,-10],[11,-43],[76,-38]],[[10185,2742],[-30,-39],[-6,-56],[-37,-40],[-37,-43],[5,-65],[-25,-50],[-51,-25],[-58,-51]],[[9946,2373],[-9,33],[-62,46],[-1,35],[-77,39],[-24,41],[-71,-16],[-62,63],[-36,-7],[-24,77],[-62,64],[-1,62],[-20,7],[-40,-66],[-41,19],[-2,38],[-39,20],[-34,54],[2,87],[25,8],[40,-39],[29,39],[-55,44],[0,33],[-52,-2],[-35,-39],[-1,-46],[-44,-43],[-73,-1],[-8,92],[-34,-1],[-68,-167],[35,-50],[-12,-41],[-40,-8],[-19,59],[23,109],[-11,97],[22,86],[32,23],[39,64],[3,60],[32,54],[92,69],[29,-47]],[[8904,3075],[53,28],[26,-99],[-40,-14],[-38,52],[-1,33]],[[5691,6398],[44,-28],[-107,-162],[-30,7],[-53,-38],[-45,-41],[-9,-37],[-26,-109],[-20,-27],[-9,-79],[-37,-36],[-37,-89],[24,-58],[-17,-25],[10,-50],[-29,-81],[-29,-36],[-9,-126],[-46,-128],[-8,-11],[-42,-76],[-10,-73]],[[5206,5095],[-59,-20],[-86,11],[-82,44],[-10,42],[39,28],[5,43],[-26,48],[47,32],[-9,53],[-38,78],[-29,19],[-85,7],[-23,37],[42,23],[-20,54],[-7,72],[86,40],[-46,22],[-32,-31],[-26,-4],[-126,34],[2,26],[56,40],[0,44],[-43,0],[-4,-39],[-70,-2],[5,62],[-63,62],[23,41],[104,4],[21,16],[15,80],[-6,37],[-43,22],[-110,31],[9,-57],[-79,5],[-40,12],[-28,47],[-28,2],[21,-37],[-11,-76],[-37,20],[4,41],[-33,17],[-42,-32],[-99,15],[-71,115],[-120,120],[-64,38],[-125,40],[-113,17],[-58,-67],[-70,-2],[10,-49],[-87,-81],[-37,-77],[-47,6],[-146,58]],[[3292,6537],[812,-1],[324,0],[206,0],[248,-2],[178,-2],[154,-1],[287,-2],[303,-1]],[[5804,6528],[-61,-87],[-52,-43]],[[11141,1310],[120,7],[329,20],[264,15],[24,83],[74,68],[21,0],[47,82],[-20,19],[-45,80],[36,81],[-38,72],[-31,100]],[[11922,1937],[312,-2],[443,0],[85,0],[-16,-132],[-52,-216],[-38,-113],[-49,-45],[-79,-234],[-82,-227],[-58,-209],[-42,-110],[-65,-124],[-75,-125],[-118,-14],[-332,-37],[-648,-69]],[[11108,280],[-21,85],[-70,44],[-17,44],[29,38],[17,-24],[66,33],[39,75],[28,-23],[52,-4],[34,68],[47,-8],[36,17],[-8,63],[-26,51],[-69,70],[12,38],[59,43],[17,58],[-41,69],[-77,94],[-54,92],[3,38],[-23,69]],[[10734,2204],[27,44],[37,1],[88,82]],[[10886,2331],[14,-233],[14,-132],[125,-5],[267,-11],[224,-7],[306,-5],[86,-1]],[[11141,1310],[-59,37],[-31,1],[-24,18],[-30,17],[-57,-22],[-48,-101],[-62,8],[-56,44],[-66,24],[-51,-66],[-44,-7],[-14,-36]],[[10599,1227],[-59,22],[-69,-16],[-17,-34],[-91,-13],[-10,-54],[-26,-3],[-61,125],[45,83],[5,54],[49,102],[76,73],[20,56],[-45,54]],[[10416,1676],[60,17],[14,16],[-35,41],[17,78],[48,6],[21,57],[-42,23],[8,44],[48,20],[-21,65],[25,28],[59,13],[108,76],[8,44]],[[5804,6528],[177,0],[547,0]],[[6528,6528],[-25,-37],[23,-49],[-72,-4],[24,-63],[-25,-28],[-54,-17],[-10,-33],[-17,-51],[-81,-67],[-22,-16],[48,-53],[14,12],[100,-23],[24,-37],[36,-28],[92,-29],[66,-57],[18,-94],[29,-3],[25,-40],[33,-5],[14,-43],[68,-41],[-22,-68],[5,-66],[-31,-56],[-21,-48],[-38,-46],[-3,-49],[-28,-116],[-29,-70]],[[6669,5203],[-2,-2]],[[6667,5201],[-83,-47],[-186,-109],[-61,-36],[-154,-89],[-271,-158],[-67,-38],[-12,-5]],[[5833,4719],[-4,29],[-76,70],[-62,18],[-100,52],[-10,19],[-41,50],[-14,71],[-78,-16],[-36,8],[-98,17],[-108,58]],[[1262,6538],[346,0]],[[1208,5657],[-80,-61],[-23,-46],[-74,-73],[2,-44],[-91,-31],[-6,-62],[-66,-24],[-35,12],[-49,-91],[-52,-5],[-49,-23],[-23,-48],[-7,-30],[-64,-40],[-23,-86],[-71,18],[-85,-39],[-27,-56],[-72,-23],[-40,-36],[-91,-122],[-45,-40],[-61,-20],[-25,-28],[-49,8],[3,213],[-5,55],[5,233],[5,23],[4,596],[11,59],[2,228],[5,180],[0,278],[457,2],[197,1],[576,3]],[[6528,6528],[315,0],[430,1],[492,2]],[[7491,5189],[-68,15],[-31,-13],[-49,26],[-168,7],[-88,-33],[-66,34],[-55,7],[-109,25],[-64,-15],[-76,-58],[-48,19]],[[7611,4295],[34,16],[36,50],[74,15],[39,92],[88,103],[70,13],[53,100],[18,12]],[[8249,4781],[20,-11],[90,-101],[87,-34],[49,38]],[[8495,4673],[-1,-62],[22,-46],[107,-74],[49,-9],[116,-82],[-6,-76],[32,-124],[-39,-74],[13,-35],[75,-49],[30,-75],[-56,-40],[-49,0],[-45,-24],[-11,-63],[-69,15],[10,-91],[60,-56],[-38,-49],[13,-45],[-30,-13],[-58,57],[-48,-22],[34,-43],[11,-89],[-83,-78],[-55,-6],[6,-35],[62,1],[72,-49],[-23,-86],[-35,-49],[-42,-23],[-42,-73],[-59,-27],[16,-48],[-9,-34],[37,-61],[42,2],[5,-57]],[[8509,2881],[-21,32],[-231,-2],[-20,21],[-1,147],[-57,7],[-50,-19],[-75,-56]],[[9997,1665],[-1,-80],[-18,-79],[-70,-39],[-23,-45],[-36,-16],[61,-26],[40,-60],[-49,-144],[24,-40],[-65,-8],[-58,98],[2,43],[-50,41],[-32,84],[-66,-15],[6,-52],[-65,5],[50,62],[-5,28],[-87,22],[7,53],[-59,106],[-42,15],[-48,53],[-5,41],[-40,15],[7,-47],[-20,-57],[39,-83],[24,-15],[-29,-88],[46,-49],[14,-31],[67,-4],[-9,-72],[51,-79],[49,3],[56,-24],[-40,-41],[-54,49],[-35,9],[-40,59],[-14,47],[-46,77],[-67,58],[-9,112],[-48,69],[-82,65],[-3,76],[-21,60],[-56,103],[-45,49],[-34,73],[28,41],[69,29],[75,-23],[27,19],[49,85],[77,30],[-25,31],[-44,-13],[-66,20],[-65,97],[68,61],[-36,92],[116,57],[1,-38],[65,-27],[36,5],[76,61],[35,-46],[-10,-41],[44,-28],[32,37],[78,-83],[70,36],[35,-49],[88,-60],[24,0],[30,34]],[[10185,2742],[44,6],[118,71],[60,-1],[21,18],[65,14],[109,-29],[5,-71],[71,0],[32,35],[39,-54],[99,-92],[21,-38]],[[10869,2601],[17,-270]],[[10416,1676],[5,-62],[-27,-25],[-114,-45],[-24,-65],[-19,-14],[-40,-100],[2,-83],[-42,-25],[17,-96],[-43,13],[6,37],[-55,62],[-60,97],[-19,62],[78,10],[46,27],[22,89],[-26,16],[-20,52],[-106,39]],[[9772,892],[22,46],[-9,50],[54,-6],[48,57],[66,-79],[10,-30],[-48,-24],[29,-47],[-64,-24],[-26,77],[-47,-38],[-35,18]],[[10120,5600],[-54,-9],[-37,17],[13,86],[20,27],[22,116],[52,25],[-23,78],[41,36],[21,45],[-46,24],[-24,-58],[-76,-36],[-20,-52],[-99,24],[-18,-23],[-83,-10]],[[9357,6533],[314,1],[277,1],[261,-1],[426,2],[1,-246],[16,-279],[30,-476],[16,-247]],[[10698,5288],[-51,10],[-62,-12],[-37,19],[-105,-64],[-185,9],[-58,3],[-69,25],[-54,-26],[-23,26]],[[10054,5278],[-12,36],[-103,3],[-30,19],[23,45],[76,41],[27,57],[43,18],[42,103]],[[9844,4643],[-2,-53],[51,-14],[20,-39],[-20,-25],[-100,-53],[19,-53],[-51,-22],[-70,-75],[-49,-9],[-66,-36]],[[9576,4264],[-50,6],[-27,0],[-56,-39],[-24,-57],[-3,-104],[32,-100],[-24,-17],[-63,35],[-31,38],[35,61],[-4,134],[-12,62],[-32,68],[7,43],[-59,49],[-31,8],[4,70],[20,47],[48,75],[54,123],[28,89],[64,80],[49,40],[34,-7],[-41,110],[74,60],[76,-11],[3,71],[46,30],[17,41],[138,-1],[108,-32],[65,16],[33,26]],[[10698,5288],[31,-476]],[[10729,4812],[-34,6],[-83,-23],[-67,18],[-70,42],[-59,13],[-60,-44],[-111,-19],[-47,-20],[-85,28],[-50,-25],[-65,1],[-52,-49],[-24,-18],[-57,-39],[-21,-40]],[[11108,280],[-59,-88],[-38,-38],[-55,31],[-38,-4],[-71,41],[-62,-54],[-7,75],[-25,11],[-7,-66],[-97,14],[-57,-62],[-31,40],[-34,-50],[22,-23],[-42,-57],[-79,-45],[-92,-5],[8,133],[35,-12],[48,18],[-11,39],[-72,40],[13,69],[41,78],[1,63],[38,13],[41,-41],[38,39],[72,44],[71,54],[19,43],[-28,19],[-49,-74],[-93,21],[-33,17],[-77,-48],[-13,77],[57,88],[53,33],[-2,45],[30,26],[110,14],[-3,30],[-51,-18],[-81,36],[-44,-25],[-57,-6],[-45,26],[-51,-25],[-77,15],[32,-54],[-48,-26],[-64,47],[34,116],[-11,32],[26,32],[52,12],[104,49],[60,-13],[109,59],[22,49],[-68,4],[-33,17],[96,61],[64,11]],[[9883,254],[9,118],[18,45],[56,23],[40,-6],[14,-43],[40,-20],[25,-52],[-38,-72],[-13,-63],[11,-51],[-151,0],[-11,121]],[[9872,642],[41,27],[-6,56],[47,18],[9,-58],[41,-53],[-45,-28],[-53,-6],[-34,44]],[[6667,5201],[-52,-55],[48,-91],[73,-67],[41,-95],[77,-9],[97,-43],[41,-57],[43,-15],[24,-50],[66,-49],[3,-91],[32,-55],[70,-17],[-7,-44],[36,-14],[41,-58],[56,31],[33,-29],[43,-17],[41,20]],[[7145,3796],[-110,108],[-33,-31],[-194,-189],[-77,108],[-96,15],[-50,-6],[-69,17],[-67,40],[-32,72],[32,64],[-11,25],[-75,26],[-53,45],[-141,59],[-95,-6],[-138,21],[-114,33],[-66,120],[-85,34],[-27,33],[-8,67],[32,89],[32,40],[55,14],[32,33],[4,49],[42,43]],[[7514,1686],[70,-61],[6,-37]],[[7590,1588],[-24,11],[-40,-97],[53,-57],[48,-152],[-35,-65],[-49,47],[-124,70],[-51,9],[8,74],[-23,43],[-106,67],[-47,77],[-17,120],[-35,94],[-43,85],[-34,-2]],[[7071,1912],[-35,-1],[-101,-72],[-44,-62],[-64,7],[-29,4],[-39,-69],[-123,-84],[-80,-31],[-123,83],[-43,111],[24,61],[-40,122],[13,36],[-23,28],[31,111],[42,82],[32,61],[65,38],[67,83],[25,55],[39,23],[60,-4],[95,64],[16,36],[-58,6],[-16,54],[9,87],[31,43],[102,73]],[[8086,2241],[35,-33],[-32,-98]],[[8089,2110],[-74,-7],[-31,42],[-165,13],[-19,-14],[-15,-32],[-116,-236],[-7,-24],[-73,-81],[-6,-28],[-60,-30],[-9,-27]],[[8633,1517],[37,-39]],[[8670,1478],[-14,-29],[51,-82],[86,0],[19,37],[78,14],[59,-33],[-55,-77],[-15,-68],[33,-122],[8,-29],[67,-93],[24,-50],[55,-67],[41,-77],[-59,-79],[25,-61],[6,-99],[23,-82],[-89,13],[-24,23],[-30,72],[-59,85],[-84,11],[-47,109],[8,68],[-33,17],[-67,-23],[24,-51],[-23,-69],[-34,-15],[-54,73],[-95,38],[-21,23],[-36,124],[-108,97],[-121,42],[-43,-2],[-148,56],[-60,-27],[-9,30],[-26,17],[-58,-87],[-76,23],[2,53],[-79,38],[-10,56],[19,28],[-55,83],[-39,124],[22,49],[-59,29]],[[8089,2110],[24,-19],[40,-75],[-2,-41],[58,-46],[69,-91],[32,-4],[84,-57],[42,-46],[56,10],[123,-132],[18,-92]],[[10192,3802],[38,86],[111,110],[37,64],[24,67],[49,38],[13,64],[38,83],[126,88],[96,21],[29,17]],[[10753,4440],[23,-369],[25,-392],[30,-475],[9,-131],[29,-472]],[[10173,3626],[-4,101],[36,45],[-13,30]],[[10729,4812],[24,-372]],[[9448,3372],[-3,52],[17,118],[-20,2],[-4,127],[-10,48],[-80,36],[-27,44],[-22,-5],[7,-89],[-28,-27],[-36,33],[-85,-72],[-40,4],[-68,-41],[5,-70],[22,-102],[-94,-52],[-32,20],[29,67],[-3,121],[12,115],[22,66],[84,139],[13,99],[24,44],[41,-58],[10,-55],[48,-78],[87,-6],[24,-27],[57,-10],[48,9],[110,96],[1,38],[-42,78],[9,98],[31,17],[61,88],[-40,25]],[[8509,2881],[-13,-47],[1,-77],[22,-117],[31,-88],[8,-22],[-15,-92],[2,-222],[28,-88],[38,-79],[44,-49],[178,-198],[37,-73],[60,-29],[-26,-41],[11,-50],[-93,-139],[-152,8]],[[8505,4791],[-67,63],[-97,14],[6,-28],[54,-45],[4,-60],[90,-62]]],"transform":{"scale":[0.00034780692681397977,0.0002762150918040365],"translate":[-79.487651,37.916848]},"objects":{"cb_2019_24_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[[5]],[[6,7,8,9,10,11,-2,12]]],"type":"MultiPolygon","properties":{"COUNTYFP":"005"}},{"arcs":[[13,14,15,16,17]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[18,19,20,21,22,23,24]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[[25,26,27,28,29]],[[30]]],"type":"MultiPolygon","properties":{"COUNTYFP":"041"}},{"arcs":[[31,32,-15,33,34]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[35,36,37]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[38,39,-36,40,41,42]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-32,-35,43,44,45,46,47]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[48,-17,49]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-45,50,-11,51]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-21,52,-9,53,54,55]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[[56,-29,57,58,-39,-43,59]],[[60]]],"type":"MultiPolygon","properties":{"COUNTYFP":"019"}},{"arcs":[[61,-4,62,63,64]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[65,66,-64,67,68]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[[-38,69,-41]],[[70]],[[71]]],"type":"MultiPolygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-47,72,-19,-25,73]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[74,75,76,-23,77,78]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[79,80,-75,-79,81]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-53,-20,-73,-46,-52,-10]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[82,83,-58,-28,84]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-69,85,-83,-85,-27,86,-66]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-56,87,-80,-82,-78,-22]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-8,88,-54]],"type":"Polygon","properties":{"COUNTYFP":"510"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/me.topo.json b/app/assets/topojson/states/me.topo.json new file mode 100755 index 00000000..24043fcd --- /dev/null +++ b/app/assets/topojson/states/me.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[1616,1489],[-9,6],[38,64],[41,23],[13,-15],[-18,-49],[-65,-29]],[[1566,1431],[47,37],[-10,-41],[-37,4]],[[1535,1445],[7,-11],[-7,11]],[[1514,1977],[146,-82],[45,49],[20,-11],[80,102]],[[1805,2035],[24,-62],[22,-9],[54,-54],[38,16],[35,-22],[39,20],[63,65],[30,-18],[-9,-28],[-5,-25],[-53,-110],[36,-30],[6,-77],[-27,-55],[0,-22]],[[2058,1624],[-25,-11],[-52,25],[-41,-25],[-48,-57],[-102,8],[42,62],[64,70],[8,32],[51,67],[-34,-17],[-97,9],[-36,-43],[-86,-42],[-40,-38],[-30,-7],[-13,4],[-20,-42],[-42,3],[-27,-16],[-6,-63],[-82,-98],[-13,-32],[24,-35],[24,-17],[6,-33],[24,-22],[-16,-55],[34,-66],[-45,-2],[-36,-25],[-46,21],[-48,-24],[-26,-31],[-25,11],[-43,-11]],[[1256,1124],[-63,38],[-175,110],[40,50],[19,23],[-153,147],[-53,-54],[-31,21],[-29,-21],[-4,23],[-32,11],[-45,15],[27,92],[-21,51],[-21,26],[-76,14],[-36,-20],[-56,6],[-29,45]],[[518,1701],[-32,86],[34,37],[28,-5],[37,30],[-24,43],[48,45],[-30,36],[55,33],[-114,144],[-19,18],[-95,19],[-18,21],[0,74],[63,-38],[149,93],[67,26],[123,76],[30,-35],[15,-9],[19,-57],[-32,-44],[5,-26],[-17,-53],[30,-64],[40,-32],[48,-22],[61,74],[49,-20]],[[1038,2151],[55,-47],[80,-40],[11,27],[54,-34],[85,105],[147,-131],[44,-54]],[[1704,1438],[9,-5],[-9,5]],[[541,3599],[265,132],[88,-171],[92,-178],[-68,-34],[135,-25],[213,-38],[115,-22],[-46,-66],[31,5],[15,-72],[52,-4],[20,-92]],[[1453,3034],[-61,-38],[11,-50],[-15,-18],[20,-92],[-28,-84],[-57,-176],[-18,-60],[-16,5],[-99,-118],[-17,-21],[-85,-102],[-59,-70],[9,-59]],[[518,1701],[-28,-14],[-73,5],[-19,-11],[-48,13],[-56,-21],[-24,-22],[-53,-11],[-54,15]],[[163,1655],[-5,195],[-5,152],[-12,312],[-13,336],[-9,203],[-5,91],[-16,295],[-7,202],[-14,253],[-18,244],[-13,196],[-3,30],[-31,500],[-12,121],[42,17],[47,-7],[40,18],[7,55],[33,-28],[57,15],[13,-28],[47,-28],[9,-33],[-16,-35],[40,-43],[0,-30],[23,-19],[48,-12],[15,71],[23,28]],[[428,4726],[95,-535],[-75,-9],[32,-184],[16,-7],[37,-169],[8,-223]],[[4490,3886],[31,-143],[17,-80],[-143,-22],[-46,-7],[-106,-16],[-52,-78],[-76,38],[-51,-46],[-40,-81],[-48,8],[-45,51],[-30,-11]],[[3901,3499],[-35,16],[-3,22],[-214,-44],[-90,-19],[-80,-16],[-48,-9],[-163,-32],[-37,177],[-106,-16]],[[3125,3578],[-34,178],[9,2],[-42,180],[-43,188],[-40,166],[-3,13]],[[2972,4305],[213,35],[211,35],[216,39],[17,2],[201,33],[-41,170],[180,31],[-43,184],[-42,189],[-10,45],[-45,176],[-184,-31],[22,144],[2,117],[-15,49],[227,47],[9,997],[2,99],[2,374]],[[3894,7040],[214,0],[0,-27],[219,0],[226,-1],[-2,-361],[2,-171],[-1,-170],[8,-15],[1,-172],[7,-16],[2,-189],[-2,-193],[-5,0],[-3,-190],[-1,-179],[0,-6],[38,-11],[189,36],[75,15],[-5,14],[137,28],[24,5],[204,40]],[[5221,5477],[47,-179],[47,-179],[61,-235],[-16,-3],[47,-174],[-108,-16],[-90,-15]],[[5209,4676],[-216,-32],[-212,-32],[14,-65],[43,-187],[-217,-34],[36,-178],[-215,-35],[16,-75],[24,-114],[8,-38]],[[3894,7040],[-4,0],[1,366],[-962,1],[-585,2]],[[2344,7409],[-520,-1]],[[1824,7408],[45,252],[307,372],[434,517],[218,258],[370,434],[31,-12],[48,6],[96,-30],[26,-23],[46,-15],[28,19],[35,-11],[14,-28],[-18,-63],[-14,-12],[-1,-130],[23,-144],[105,-53],[34,-30],[32,2],[60,-44],[43,-4],[96,49],[25,18],[82,13],[80,39],[35,0],[57,-8],[89,17],[33,30],[-9,21],[35,37],[42,-11],[62,29],[74,3],[22,-18],[21,-14],[57,11],[57,-3],[11,20],[-13,55],[10,43],[44,29],[40,6],[50,-8],[29,9],[33,-17],[52,6],[20,-22],[76,-30],[45,-18],[27,-52],[93,-50],[37,-33],[78,-45],[45,-50],[65,-29],[1,-26],[41,-59],[30,-14],[35,-49],[1,-30],[170,-87],[0,-37],[1,-188],[1,-180],[0,-378],[1,-185],[4,-184],[2,-92],[3,-194],[2,-193],[1,-193],[0,-186],[1,-198],[0,-88],[6,-49],[47,-34],[-30,-40],[-62,-32],[12,-37],[23,-39],[49,-47],[-81,-42],[-5,-61],[-2,-38],[22,-10],[20,-40],[-49,-4],[12,-69],[-4,-33]],[[5638,5560],[-117,-22],[-49,22],[9,-31],[-63,-12],[-175,-35],[-22,-5]],[[5638,5560],[63,-5],[25,-20],[71,27],[65,-104],[51,-35],[11,23],[53,-39],[32,1],[49,-24],[26,5],[47,-19],[33,-2],[25,30],[51,6],[44,-43],[15,-70],[-19,-19],[12,-76],[-42,-9],[-23,19],[-63,-64],[30,-35],[17,-78],[19,-2],[59,-67],[9,-33],[-12,-62],[-29,-29],[-26,-61],[-45,-41],[18,-12],[22,-64],[41,-35],[20,-52],[48,-51],[-8,-36],[42,-17],[68,-54],[61,40],[27,91],[32,5],[42,-22],[33,-35],[40,16],[80,-22],[60,-75],[18,-25],[37,-91],[-46,-24],[26,-21],[35,-35],[24,-60],[23,-29],[-6,-36],[7,-11],[23,-8],[4,-25],[42,-23],[-1,-23],[52,-28],[-18,-42],[15,-37],[11,-38],[-29,-23],[35,-75],[-86,-83],[-73,1],[7,-35],[-48,-19],[-20,-53],[-25,-22],[-35,-26],[-28,-50],[-54,-14],[-5,-36],[-77,-17],[-18,8],[7,51],[-55,-3],[13,-69],[-38,-14],[-9,50],[-27,27],[1,62],[14,27],[-47,-2],[-55,-8],[-42,-22],[-7,-49],[23,-5],[21,-47],[-11,-32],[-36,-21],[-28,-42],[-23,19],[-3,31],[-36,50],[-8,-31],[28,-29],[-32,-27],[-56,22],[-43,53],[-61,-21],[-14,-11],[-11,-45],[-33,-80],[26,-43],[-8,-17],[-87,-9],[-48,2],[-51,23],[-40,-12],[-3,-50],[-26,-33],[-52,8],[-2,70],[-31,35],[-31,-24],[1,-29],[-39,3],[-12,38],[-34,34],[-50,-82],[15,-49],[-20,-46],[-45,21],[9,-64],[-11,-22],[-2,-69],[-39,18],[5,72],[-40,-18],[2,-65],[-27,8],[-20,79],[-40,40]],[[5334,3064],[9,51],[-25,13],[-44,175],[41,7],[-39,175],[-32,-6],[-39,181],[-43,183],[-39,184],[212,35],[-29,139],[-61,326],[-36,149]],[[6054,3141],[59,5],[32,-34],[-56,-47],[-3,45],[-32,31]],[[6468,3350],[40,20],[35,-11],[-23,-35],[-37,-3],[-15,29]],[[5955,3135],[32,3],[38,-38],[18,-69],[-27,-19],[-30,76],[-7,39],[-24,8]],[[5517,3007],[22,18],[21,-63],[-26,-2],[-17,47]],[[3656,2971],[-63,-13],[23,-48],[-11,-12],[35,-25],[33,-52],[-11,-66],[-44,-60],[-26,5],[-17,-48],[-40,-52]],[[3535,2600],[-25,22],[-135,-8],[-85,76],[-29,25],[-140,124],[-133,-116],[-82,71],[-27,-31]],[[2879,2763],[-43,8],[-123,23]],[[2713,2794],[105,250],[85,-14],[40,181],[-76,14],[12,57],[29,127],[-116,14],[30,53],[-56,9],[7,33]],[[2773,3518],[94,17],[4,36],[34,28],[-5,31],[26,15],[67,-9],[28,-73],[104,15]],[[3901,3499],[-12,-41],[-42,-80],[2,-21],[7,-8],[31,-31],[15,-38],[29,-20],[-12,-40],[5,-49]],[[3924,3171],[-21,-59],[-36,-31],[7,-49],[-57,-37],[-34,-25],[-22,47],[-42,12],[-38,-58],[-25,0]],[[3683,2673],[24,39],[44,44],[-29,27],[19,16],[-5,41],[14,28],[67,-8],[0,-41],[-45,-38],[-16,-51],[23,-15],[-29,-51],[-18,-58],[-25,66],[-24,1]],[[3661,2505],[-5,-1]],[[3656,2504],[5,1]],[[2713,2794],[-26,-129],[-12,-10],[-33,-30],[-176,38],[-3,-9],[-24,-98],[15,-212],[-16,-3],[-158,32]],[[2280,2373],[-9,29],[-158,30],[-39,-30],[-34,-94],[-185,34]],[[1855,2342],[-38,13],[15,56],[34,19],[9,28],[-115,24],[-26,29],[2,174],[0,17],[-42,44],[-7,36],[-51,71],[18,20],[37,6],[-49,214]],[[1642,3093],[149,-4],[12,47],[-63,44],[51,86],[4,37],[149,-29],[12,15],[32,46],[-4,13]],[[1984,3348],[132,22],[57,-37],[3,-46],[44,-8],[29,64],[55,-12],[4,-9],[131,-24],[103,-19],[28,25],[-6,25],[22,41],[-12,26],[-45,41],[-26,38],[-8,55],[51,12],[206,33],[23,-5],[-2,-52]],[[3962,3118],[-38,53]],[[5334,3064],[-18,-26],[36,-103],[22,-25],[-43,-30],[-34,55],[-27,-25],[9,-27],[-38,-48],[-12,-39],[-41,-17],[-15,26],[-3,83],[-29,-2],[-31,30],[4,28],[-17,63],[8,46],[-42,39],[-37,27],[-17,-61],[-32,10],[-15,82],[-23,8],[-11,-53],[-43,-42],[-33,31],[-9,-34],[-45,0],[23,-41],[-30,-4],[-43,26],[-11,-26],[-40,17],[-7,-64],[77,36],[30,-23],[45,14],[36,-14],[14,-49],[41,-39],[32,-9],[38,-85],[-39,-74],[-46,-40],[-121,-7],[-22,20],[-22,-17],[43,-55],[7,-32],[-51,-44],[-32,-4],[-21,29],[-91,35],[-15,43],[-31,50],[1,29],[36,30],[-13,36],[36,40],[-2,20],[71,38],[-25,62],[-38,-8],[-35,-39],[-30,-5],[-6,35],[12,57],[-6,32],[13,33],[-11,52],[-13,-32],[-52,16],[-2,-45],[17,-44],[-22,-14],[22,-42],[-25,-33],[-23,85],[-23,-64],[-25,-2],[-23,-31],[-47,11],[-20,-19],[36,-82],[-28,-43],[-3,-54],[47,-35],[30,-66],[-51,-32],[-49,22],[-45,42],[-43,21],[-63,16],[-56,27],[-72,57],[-39,-7],[-57,-45],[-55,9],[18,90],[11,35],[0,12],[-17,6],[5,91],[58,45],[-6,33],[14,70],[-2,5]],[[4084,2431],[-21,8],[13,59],[-31,48],[57,21],[2,29],[32,36],[28,11],[41,-12],[51,-40],[11,-45],[65,-36],[1,-29],[-26,-13],[-69,24],[10,-26],[-48,-54],[-45,-12],[-71,11],[0,20]],[[4025,2708],[18,17],[51,-34],[37,-10],[-32,-36],[-42,23],[-32,40]],[[4411,2319],[29,29],[18,-36],[-29,-17],[-18,24]],[[4442,2403],[43,34],[24,43],[18,1],[27,-48],[47,17],[43,-43],[-16,-28],[-79,-54],[-29,43],[-5,38],[-38,-18],[-35,15]],[[4518,2797],[11,27],[42,30],[19,-30],[-53,-67],[-19,40]],[[4656,2320],[46,31],[31,-47],[-52,-5],[-25,21]],[[4391,2775],[17,51],[4,47],[29,3],[39,-130],[-80,9],[-9,20]],[[4831,2620],[41,-2],[11,-42],[-56,7],[4,37]],[[1144,4451],[95,18],[-2,10],[97,12],[25,-110],[231,38],[45,-190],[39,-185],[-72,-11],[39,-188],[166,28],[13,-70],[-8,-18],[25,-72],[26,-27],[-22,-34],[18,-101],[12,-65],[62,8],[-1,-43],[23,-26],[29,-77]],[[1642,3093],[-121,-19],[-68,-40]],[[428,4726],[9,28],[30,24],[10,38],[-21,30],[15,28],[7,58],[-34,49],[76,64],[45,-6],[44,-60],[30,-18],[59,8],[46,-36],[47,60],[-6,32],[-40,49],[-42,15],[-29,46],[-44,32],[12,62],[40,60],[-2,26],[50,52],[25,42],[43,10],[48,37],[67,79]],[[913,5535],[81,-319],[-22,-3],[101,-436],[29,-134],[42,-192]],[[2151,5681],[43,-12],[6,-34],[25,-12],[8,-37],[53,-27],[17,-33],[36,-13],[38,-61],[-33,-53],[14,-20],[-32,-53],[-84,-50],[88,-338],[49,-180],[-6,-40],[35,-125],[2,-37],[48,-196],[15,3],[43,-187],[181,29],[35,26],[-8,34],[248,40]],[[913,5535],[45,-3],[105,82],[46,-4],[36,20],[30,12],[21,62],[-31,25],[1,31],[-19,38],[36,8],[14,41],[49,34],[29,35],[63,16],[37,25],[53,64],[-17,43],[40,41],[-62,48],[-50,-4],[-8,32],[12,39],[-25,42],[65,68],[-46,19],[9,45],[20,23],[59,33],[27,67],[-91,101],[37,42],[39,114],[29,50],[44,18],[-3,65],[61,58],[41,-1],[102,107],[55,9],[58,328]],[[2344,7409],[3,-372],[-23,0],[7,-863],[77,14],[64,-248],[-75,-20],[-31,65],[-30,-11],[30,-54],[-1,-89],[-36,-72],[-36,-27],[-69,9],[-2,-45],[-44,2],[-27,-17]],[[3757,1717],[10,23],[17,-2],[-5,-21],[-22,0]],[[3419,2052],[52,21],[-7,-17],[-45,-4]],[[3403,2275],[12,-18],[72,25],[5,-37],[-45,-46],[4,-27],[-57,-24],[-30,-27],[-3,-30],[-34,-23],[-48,-13],[-13,-53],[-33,-37],[-120,-58],[-10,17],[21,44],[-26,30],[-68,23],[0,-37],[-73,-16],[31,41],[28,18],[-66,48]],[[2950,2075],[8,37],[31,12],[19,-29],[43,83],[47,16],[0,4],[1,20],[-38,67],[1,74],[-31,84],[-28,75],[-59,-8],[-58,11],[4,17],[-51,16],[-28,73],[15,46],[-18,61],[24,22],[47,7]],[[3535,2600],[-20,-32],[-5,-38],[-28,-15],[6,-39],[-30,-27],[-14,-40],[9,-46],[-10,-39],[-33,3],[-7,-52]],[[3680,2318],[48,75],[50,24],[70,49],[37,4],[21,-75],[-29,2],[-94,-44],[-15,20],[-58,-29],[-30,-26]],[[3661,2505],[-5,-1]],[[3746,1783],[6,31],[39,-13],[-29,-29],[-16,11]],[[3735,2284],[5,33],[37,27],[45,-28],[66,23],[29,-13],[59,-78],[-4,-30],[-70,-66],[-50,17],[-19,-28],[-26,10],[-1,39],[-16,50],[-55,44]],[[4149,2242],[71,17],[13,23],[36,-19],[1,-84],[-20,-67],[-26,18],[-57,-10],[18,100],[-36,22]],[[2950,2075],[-27,-43],[-26,17],[-29,-11],[-12,-33],[-33,14],[-35,-145],[-33,-40],[-37,-85],[-17,15],[-21,67],[-31,9],[-14,-97],[-34,20],[-50,29],[-22,-43],[-63,-4],[7,-34],[-13,-58],[-56,39],[1,91],[-2,34],[3,55],[21,57],[-3,2],[-30,-17],[-19,-130]],[[2375,1784],[-34,-3],[-11,46],[-25,38],[62,69],[-24,9],[3,83],[34,73],[-80,14],[-115,26],[0,1],[40,33],[12,58],[-3,38],[18,21],[28,83]],[[3027,1586],[17,29],[22,-9],[-23,-24],[-16,4]],[[2824,1912],[4,47],[26,-10],[-30,-37]],[[1256,1124],[-53,-80],[12,-73],[69,-9],[-3,-28],[-40,-9],[-25,-24],[-7,-36],[-35,-21],[-45,-22],[19,-59],[-50,-15],[-35,-28],[-17,13],[-72,-5],[-33,-17],[-45,-52],[-40,-89],[-13,-38],[21,-41],[-21,-83],[-43,-53],[-27,-90],[-35,-43],[-32,-60],[-52,-22],[-5,32],[-54,-3],[-32,13],[-19,28],[-102,69],[-12,41],[16,68],[13,72],[-1,48],[-36,11],[-8,24],[-66,37],[-25,27],[-47,81],[-24,26],[-33,-5],[-18,19],[-30,66],[-4,79],[44,50],[-10,25],[11,34],[-15,28],[26,80],[-16,34],[22,32],[-38,40],[-4,91],[-8,122],[-16,246]],[[1855,2342],[-34,-152],[-16,-44],[-2,-46],[-28,-34],[30,-31]],[[2375,1784],[-5,-71],[-16,-21],[-11,-58],[-34,-26],[-22,-53],[-23,-2],[-114,-52],[-37,-27],[-5,40],[16,38],[-34,1],[12,34],[-44,37]]],"transform":{"scale":[0.0005814926387315968,0.00048346131371063746],"translate":[-71.083924,42.99202]},"objects":{"cb_2019_23_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]],[[3,4,5,6,7,8]]],"type":"MultiPolygon","properties":{"COUNTYFP":"005"}},{"arcs":[[10,11,-8,12,13,14]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[15,16,17,18,19,20,21]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-20,22,23,24,25]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[[-21,-26,26,27]],[[28]],[[29]],[[30]],[[31]]],"type":"MultiPolygon","properties":{"COUNTYFP":"029"}},{"arcs":[[[32,33,34,35,36,-17,37,38]],[[39]]],"type":"MultiPolygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-36,42,43,44,45,46]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[[47,-38,-16,-22,-28,48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]]],"type":"MultiPolygon","properties":{"COUNTYFP":"009"}},{"arcs":[[57,-46,58,-11,-15,59,60]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[61,-18,-37,-47,-58,-61,62,-24,63]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[[64]],[[65]],[[66,67,-34,68]],[[69]],[[71]],[[72]],[[73]]],"type":"MultiPolygon","properties":{"COUNTYFP":"013"}},{"arcs":[[[-35,-68,74,75,-43]],[[76]],[[77]]],"type":"MultiPolygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-62,-64,-23,-19]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-13,-7,78]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-45,79,-4,-9,-12,-59]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-76,80,-5,-80,-44]],"type":"Polygon","properties":{"COUNTYFP":"023"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/mi.topo.json b/app/assets/topojson/states/mi.topo.json new file mode 100755 index 00000000..255fb991 --- /dev/null +++ b/app/assets/topojson/states/mi.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[12934,324],[-39,-18],[-13,-25],[-2,-62],[26,-82],[-5,-15],[-40,-11],[-2,-20],[-138,-4],[-216,-8],[-217,-10]],[[12288,69],[-8,243],[-6,254],[0,36],[-2,146],[0,18],[-4,200]],[[12268,966],[114,3],[21,1],[9,0],[54,1],[9,0],[9,0],[19,-1],[198,4]],[[12701,974],[219,5],[0,15],[216,2],[1,0],[32,-9],[1,-3],[-1,-1],[32,-37],[20,-1],[19,-33],[21,-7],[20,-22],[47,-31]],[[13328,852],[12,-26],[24,1],[13,-31],[-38,-42],[-34,-22],[-30,-4],[-33,-29],[-19,-40],[6,-37],[-31,-14],[-47,14],[-26,-13],[-30,-37],[-14,-46],[-7,-44],[-20,-31],[-42,1],[-20,-15],[-23,-39],[-35,-74]],[[8349,1810],[-184,-2],[-31,0],[-183,0],[-34,0],[-178,1],[-63,0],[-1,0],[-3,0],[-23,0]],[[7649,1809],[23,61],[22,91],[8,64],[1,30],[19,126],[16,62],[-4,117],[8,27],[15,39],[1,3],[2,23],[4,9],[10,73],[-1,95],[-4,50]],[[7769,2679],[79,2],[9,0],[14,0],[5,0],[8,0],[8,0],[144,2],[4,0],[82,0],[215,-3],[220,1]],[[8557,2681],[220,0],[218,0]],[[8995,2681],[1,-217],[3,-216],[0,-215],[0,-219]],[[8999,1814],[-197,-1],[-21,0],[-191,-1]],[[8590,1812],[-25,0],[-187,-2],[-29,0]],[[12701,974],[-5,222],[-4,186],[1,34],[-7,217],[-4,109],[-4,106]],[[12678,1848],[73,4],[28,1],[43,1]],[[12822,1854],[74,4]],[[12896,1858],[108,4],[14,0],[94,3],[54,2],[161,5],[54,2],[36,1],[78,3],[48,0]],[[13543,1878],[208,7],[55,1],[23,1],[33,0],[62,1],[13,0]],[[13937,1888],[-23,-89],[-12,-49],[-20,-29],[-22,-12],[-13,-13],[-17,-39],[8,-17],[-40,-11],[-26,-19],[-54,-19],[-69,-8],[-69,-31],[-31,-25],[-36,-50],[-27,-74],[-23,-56],[-8,-80],[-6,-70],[17,-93],[11,-31],[-26,-93],[-45,-6],[-23,-32],[-39,-21],[8,-50],[-24,-19]],[[11762,6167],[79,0],[143,-1],[80,0]],[[12064,6166],[140,1],[84,0],[140,0],[83,1],[143,3]],[[12654,6171],[-5,-19],[-3,-128],[-36,-48],[-3,-40],[19,-51],[-56,17],[-74,-9],[-47,-34],[-7,-7],[-3,-16],[-4,-7],[-1,-12],[7,-70],[-10,-13],[-32,3],[-10,17],[-25,-9],[-8,17],[-33,-20],[-22,-16],[-38,-1],[-76,6],[-19,4],[-51,-33],[-6,-24],[-33,-21],[-8,-39],[-22,-52],[-30,-28]],[[12018,5538],[-142,1],[-109,0],[-1,215],[-223,0]],[[11543,5754],[0,215],[0,197]],[[11543,6166],[75,0],[144,1]],[[11181,725],[0,-218],[0,-86],[1,-42],[0,-90],[2,-263]],[[11184,26],[-213,-6],[-430,-12],[-180,-8],[0,160],[-35,0]],[[10326,160],[-1,127],[1,218],[-2,219],[-1,217]],[[10323,941],[216,-5]],[[10539,936],[216,3],[212,3],[212,2]],[[11179,944],[2,-219]],[[10059,5296],[-220,0]],[[9839,5296],[1,218],[0,216],[1,216],[0,226]],[[9841,6172],[212,-4],[9,0],[215,-3]],[[10277,6165],[6,0],[221,-1],[219,-1],[4,0]],[[10727,6163],[2,-211],[1,-218],[0,-218],[0,-216]],[[10730,5300],[-226,-1],[-46,0]],[[10458,5299],[-13,-1],[-14,0],[-6,0],[-22,0],[-122,-1],[-221,-1],[-1,0]],[[11607,1527],[1,-142],[-4,-147],[-2,-77],[4,-222]],[[11606,939],[-88,6],[-55,-1],[-70,-1],[-214,1]],[[10539,936],[-3,222]],[[10536,1158],[-10,219],[-3,219],[0,1],[0,217]],[[10523,1814],[218,1]],[[10741,1815],[218,1],[217,0],[0,6],[197,0],[14,0],[203,0]],[[11590,1822],[18,0]],[[11608,1822],[-1,-219],[0,-76]],[[8964,4432],[-1,-218],[0,-217]],[[8963,3997],[-204,-1],[-16,0],[-201,-2]],[[8542,3994],[-19,-1],[-198,1],[-22,0],[-199,1],[-21,0],[0,218],[-1,217]],[[8082,4430],[0,217],[1,217],[0,218],[2,219]],[[8085,5301],[220,-3],[219,-1],[220,3],[220,0]],[[8964,5300],[-1,-217],[1,-216],[-1,-218],[1,-217]],[[13495,4514],[-9,217],[-6,219]],[[13480,4950],[221,10],[221,8],[222,8],[280,12]],[[14424,4988],[1,-72],[6,-69],[12,-48],[-8,-29],[12,-46],[16,-103],[17,-38],[20,-90],[20,-33],[-2,-14],[17,-42],[-3,-18],[21,-42],[-4,-89],[11,-35],[-8,-76],[5,-23],[7,-15],[3,-54],[-6,-26],[13,-87],[0,-42],[5,-73],[7,-31],[19,-40],[10,-70]],[[14615,3683],[-77,-3],[-182,-9],[-217,-9],[-215,-8],[-220,-8]],[[13704,3646],[-3,126],[-1,10],[0,5],[0,5],[0,7],[0,10],[-2,56],[-1,108],[-219,-3],[-3,109]],[[13475,4079],[31,1],[-5,217],[-6,217]],[[9622,5296],[217,0]],[[9839,5296],[2,-218],[2,-218],[1,-217],[2,-216]],[[9846,4427],[-221,3],[-220,1],[-220,1],[-221,0]],[[8964,5300],[220,-1],[58,-1],[161,0],[219,-2]],[[14106,3001],[37,2],[37,2],[8,-209],[1,-11],[0,-14],[1,-29],[6,-179],[2,-37],[44,-49]],[[14242,2477],[-39,-10],[-19,-24],[-37,-14],[-7,-27],[-38,-11],[-21,7],[-24,-16],[-23,-44],[-2,-37],[13,-13],[43,-18],[0,-44],[8,-31],[-68,-8],[-24,-7],[-28,-30],[-21,-39],[-26,-42],[-14,-56],[7,-24],[-3,-31],[17,-47],[1,-23]],[[13543,1878],[-2,73],[-4,146],[-8,224],[-5,126],[-2,74],[-1,21],[-7,220],[-7,220]],[[13507,2982],[147,5],[74,8]],[[13728,2995],[218,4],[160,2]],[[12521,8774],[-226,1],[-226,-7]],[[12069,8768],[-226,-8],[-222,-1],[-227,1]],[[11394,8760],[0,208],[-5,0],[4,216],[-1,211],[0,5],[-6,354],[-2,74],[89,1]],[[11473,9829],[15,-12],[54,-73],[54,-50],[16,-25],[5,-61],[11,-49],[14,-25],[42,-35],[37,-13],[25,0],[36,14],[48,1],[39,-9],[33,9],[60,-5],[55,-19],[51,-44],[43,-53],[24,-22],[32,-15],[33,-29],[49,-17],[24,-17],[17,7],[38,-15],[10,20],[37,8],[34,-46],[62,-32],[45,-33],[16,-14],[48,-11],[15,-21],[52,-11],[24,4],[32,22],[33,-27],[82,-37],[23,-5],[0,-22],[37,-37],[19,-7],[20,-33],[27,-8],[49,-46],[-19,-42],[-44,8],[6,-40],[13,-31],[19,-18],[12,-32]],[[12980,8781],[-232,0],[-227,-7]],[[7551,6421],[50,111],[46,69],[13,28],[17,93],[13,43],[7,77],[-7,49],[5,79],[10,14],[17,74]],[[7722,7058],[99,-1],[74,-3],[148,-5],[225,-4],[224,0]],[[8492,7045],[-2,-222],[-4,-216],[0,-217],[0,-218]],[[8486,6172],[-185,2],[-226,6]],[[8075,6180],[-37,2],[-178,7],[-212,12],[-9,0],[-202,8]],[[7437,6209],[48,73],[21,54],[14,50],[31,35]],[[9613,7911],[221,-2],[226,1],[225,-2]],[[10285,7908],[0,-218],[-5,-146],[0,-70],[0,-217],[-2,-217]],[[10278,7040],[-286,-2],[-161,0],[-222,3],[-223,2]],[[9386,7043],[2,215],[-1,217],[1,219],[0,99]],[[9388,7793],[30,28],[-12,56],[-9,12],[67,22],[149,0]],[[8171,160],[-216,1],[-217,-1]],[[7738,160],[1,130],[1,49],[0,5],[0,19],[1,17],[0,14],[0,5],[0,7],[0,8],[0,1],[1,92],[2,214],[-1,218]],[[7743,939],[213,-2],[214,-2],[212,-1],[211,-1]],[[8593,933],[3,-214],[2,-218],[0,-219],[0,-25],[-16,-35],[-31,-19],[-10,-46]],[[8541,157],[-160,1],[-210,2]],[[10500,9641],[0,215],[-2,217],[-1,161]],[[10497,10234],[17,-11],[0,-40],[79,-31],[2,-16],[56,-16],[31,-25],[43,-22],[65,-34],[31,-4],[9,-28],[29,-24],[25,-9],[45,-34],[35,-33],[76,-17],[15,-14],[21,26],[-25,22],[35,13],[69,-35],[86,22],[79,-30],[31,-19],[101,-25],[21,-21]],[[11394,8760],[-220,0],[-1,0]],[[11173,8760],[-453,4],[-226,4]],[[10494,8768],[3,218]],[[10497,8986],[4,217],[0,32],[0,189],[-1,217]],[[10303,3342],[1,216]],[[10304,3558],[217,-2],[220,-1],[215,0],[215,1]],[[11171,3556],[0,-190],[1,-28],[0,-48],[0,-10],[0,-1],[1,-32],[1,-98],[0,-29],[2,-115],[0,-10],[0,-8],[1,-26],[0,-46],[0,-12],[1,-203]],[[11178,2700],[0,-14],[-206,-1],[-5,0],[-10,-1],[-9,0],[-44,1],[-38,0],[-63,0],[-1,0],[-9,0],[-56,0]],[[10737,2685],[-217,1],[-9,0],[-8,0],[-6,0],[-8,0],[-2,0]],[[10487,2686],[-183,1]],[[10304,2687],[-1,217],[0,216],[0,222]],[[12413,3815],[210,3],[223,1]],[[12846,3819],[2,-200],[0,-16],[1,-207],[0,-10],[4,-204],[1,-13],[6,-207]],[[12860,2962],[0,-11],[-217,-7],[-219,-5],[3,-129],[2,-73],[0,-4],[0,-14]],[[12429,2719],[-9,0],[-15,-1],[-86,-2],[-109,-3],[-146,2],[-71,-2]],[[11993,2713],[-8,219],[-5,220],[2,0],[0,220],[-1,221]],[[11981,3593],[-5,219],[217,2],[219,1]],[[12412,3815],[1,0]],[[12447,2276],[-11,224],[-7,219]],[[12860,2962],[215,6],[212,7],[1,0],[219,7]],[[12678,1848],[-198,-9],[-11,-1]],[[12469,1838],[-1,21],[0,9],[-1,18],[0,7],[-1,19],[-1,16],[-1,19],[-6,110],[0,2],[-11,217]],[[12005,4568],[56,0],[15,-1],[112,0],[-1,-108],[219,0]],[[12406,4459],[1,-216],[0,-166],[6,-49],[-1,-213]],[[11981,3593],[-224,-3],[-191,-7],[-27,0],[-216,0],[-153,-1]],[[11170,3582],[-1,192],[0,23],[-1,194],[0,26],[-1,192],[0,26],[0,191]],[[11167,4426],[0,39],[146,0],[222,1],[4,218]],[[11539,4684],[219,-4],[-2,-109],[249,-3]],[[9819,8558],[223,1],[224,-5]],[[10266,8554],[0,-217],[15,0],[0,-212],[4,-217]],[[9388,7793],[-29,39],[-39,-5],[-10,9],[-13,75],[-74,1],[-39,0]],[[9184,7912],[32,55],[4,33],[26,25],[25,65],[11,38],[-2,18],[17,61],[-2,33],[13,31],[-10,38],[1,69],[27,57],[-8,14],[13,93],[-11,25],[-17,75],[-3,73],[-14,27],[-1,40]],[[9285,8782],[119,-2],[187,-3],[-2,-220],[230,1]],[[12268,10892],[19,31],[23,2],[8,-20],[22,-7],[-20,-33],[-27,-6],[-25,33]],[[12169,11018],[27,17],[36,-3],[18,-24],[-81,10]],[[12066,10702],[29,79],[13,2],[28,47],[37,-26],[-17,-15],[19,-32],[33,-34],[23,30],[23,7],[28,66],[52,-3],[19,28],[30,13],[42,-11],[-9,26],[41,22],[-11,45],[-42,6],[-59,29],[23,35],[36,7],[72,-9],[22,9],[44,-4],[61,-34],[21,3],[16,-50],[29,-23],[18,-32],[11,-66],[17,-38],[23,6],[24,-34],[33,11],[28,-38],[-16,-31],[-33,-30],[3,-26],[-26,-28],[1,-28],[-31,-23],[-16,12],[-23,-13],[-23,12],[-35,-6],[-40,12],[-26,22],[-7,28],[-40,6],[-29,-4],[-55,-25],[-17,15],[-16,-18],[-26,0],[-8,26],[-32,-18],[-18,11],[-11,32],[-36,-15],[-18,-39],[-55,43],[-52,7],[-1,18],[-48,5],[-24,18],[1,15]],[[9793,11378],[-230,-1]],[[9563,11377],[-2,217],[0,218],[0,363],[0,236],[2,242]],[[9563,12653],[38,3],[110,21],[140,-18],[85,6],[71,27],[47,5],[35,-13],[-63,-56],[-37,-43],[-24,-40],[-13,-37],[-2,-56],[-13,-125],[-3,-61],[3,-48],[13,-55],[3,-41],[-48,-26],[-4,-45],[10,-27],[29,-41],[35,-20],[48,-4],[46,-3],[31,26],[17,-3],[30,-40],[53,-12],[59,12],[41,-59],[40,-5],[89,23],[85,37],[83,48],[45,-14],[42,7],[18,-17],[25,-53],[16,-13],[-9,-48],[15,-43],[23,-4],[60,12],[61,41],[13,-4],[26,34],[14,-21],[18,-15],[31,21],[13,55],[-14,11],[34,54],[46,31],[47,-5],[38,25],[60,-4],[30,-19],[34,-10],[26,-8],[51,4],[20,16],[52,83],[60,15],[30,-33],[21,-2],[49,15],[20,-5],[33,-65],[-65,-214],[13,-116],[37,-88],[24,-37],[-24,-17],[7,-118],[32,-29],[-19,-38],[-25,-32],[-24,9],[-33,-11],[-26,28],[-19,-8],[-21,4],[-1,7],[-7,6],[-34,6],[-4,-33],[-19,0],[-24,-29],[-39,-5],[-28,-42],[19,-28],[33,-24],[12,-26],[32,-18],[45,8],[50,39],[8,-21],[36,14],[28,-22],[29,10],[1,-27],[46,-42],[54,-1],[56,-29],[-41,-37],[-32,-40],[-3,-27],[52,-54],[30,-45],[31,-24],[11,4],[42,-45],[82,7],[2,-25],[50,-22],[24,-62],[-20,-16],[-7,-55],[-22,23],[-40,-5],[-64,8],[-33,-18],[-8,-25],[-31,19],[-66,18],[-50,9],[-26,-5],[-37,34]],[[11639,10717],[0,9],[-187,0]],[[11452,10726],[-12,0]],[[11440,10726],[-32,0],[1,216],[-230,0],[0,217],[-231,0],[-231,-1],[-230,0],[-78,0],[-269,2],[-345,-1],[-2,219]],[[11828,10992],[31,9],[27,-46],[-28,-1],[-31,28],[1,10]],[[8493,7263],[0,222],[4,214]],[[8497,7699],[186,1],[37,1],[65,0],[28,-1],[6,1]],[[8819,7701],[23,-21],[54,-3],[9,22],[22,68],[6,40],[19,19],[37,94],[29,25],[4,42],[-5,27],[-51,-4],[40,44],[19,47],[0,29],[17,33],[0,35],[37,17],[17,24],[29,3],[18,-66],[-27,-8],[-21,-87],[-2,-44],[7,-20],[-21,-74],[0,-40],[-74,-55],[-29,-40],[-17,-101],[-19,-48],[39,-25],[51,-1],[37,44],[5,18],[-10,36],[18,42],[52,31],[52,108]],[[9386,7043],[-227,0],[-219,0],[-224,1],[-224,1]],[[8492,7045],[1,218]],[[12846,3819],[0,24],[202,6],[-5,218],[22,0],[193,5],[28,1],[189,6]],[[13704,3646],[10,-214],[8,-215],[-2,0],[8,-222]],[[10730,5300],[-1,-219],[-2,-218],[0,-218],[1,-219]],[[10728,4426],[-221,1],[-220,0]],[[10287,4427],[-221,0],[-220,0]],[[11317,6165],[78,1],[148,0]],[[11543,5754],[1,-212],[-3,-216]],[[11541,5326],[-223,5],[-145,2],[0,-38],[-221,3],[-222,2]],[[10727,6163],[223,0],[220,0]],[[11170,6163],[147,2]],[[9457,1155],[3,-216]],[[9460,939],[-217,-1],[-218,-1],[-215,-1],[-217,-3]],[[8593,933],[-3,220],[-3,219],[1,218],[2,222]],[[8999,1814],[20,0],[198,-3],[13,0],[203,-1],[18,0]],[[9451,1810],[1,-173],[0,-11],[0,-7],[0,-2],[0,-3],[1,-22],[1,-217],[3,-219],[0,-1]],[[12406,4459],[-1,217],[0,59]],[[12405,4735],[27,-13],[32,15],[38,36],[99,120],[42,53],[36,61],[50,47],[47,-15],[25,9],[33,36]],[[12834,5084],[1,-153],[208,5],[219,5]],[[13262,4941],[218,9]],[[11777,2707],[216,6]],[[12469,1838],[-148,-6],[-78,0],[-219,-9],[-72,-2],[-133,-1],[-12,0],[-199,2]],[[11590,1822],[0,213],[-7,224],[-11,215],[-14,228]],[[11558,2702],[219,5]],[[8497,7699],[-225,9],[-223,0],[-32,0]],[[8017,7708],[-7,40],[22,64],[-7,108],[-4,54],[11,53],[42,22],[42,-30],[53,-6],[23,15],[24,58],[27,28],[31,64],[37,5],[45,-26],[21,-36],[19,-11],[62,3],[45,19],[13,12],[34,46],[15,30],[4,44],[-7,23],[31,32],[17,46],[24,37],[53,25],[25,22],[13,24],[19,21],[10,57],[30,51],[7,25],[71,103],[19,-21],[39,5],[40,30],[25,46],[19,0],[6,-25],[20,-29],[-9,-30],[-38,-25],[-34,-30],[-54,-15],[-4,-22],[-23,-32],[16,-49],[19,-22],[-6,-20],[29,-49],[31,-31],[0,-39],[-38,29],[-20,-37],[-4,-47],[-41,-43],[-15,-5],[-34,-77],[34,-12],[35,40],[16,-22],[0,-54],[-5,-36],[8,-34],[-46,-9],[-8,-36],[-29,-57],[-6,-52],[-6,-35],[1,-44],[18,-52],[16,-26],[-12,-53],[-2,-9]],[[8544,9483],[35,-4],[7,-27],[-20,-20],[-22,51]],[[8368,9375],[61,-20],[37,-41],[10,-36],[-7,-54],[-22,17],[-43,65],[-18,20],[-18,49]],[[7868,8299],[32,71],[37,14],[61,-23],[-31,-41],[11,-42],[-36,-18],[-36,-5],[-36,14],[-2,30]],[[8036,8612],[10,31],[27,19],[71,-10],[31,-12],[23,-31],[4,-40],[-8,-15],[-9,-74],[13,-35],[0,-26],[-42,-21],[-77,91],[-32,26],[1,35],[-12,62]],[[11541,5326],[1,-214],[-1,-214],[0,-43],[0,-53],[0,-5],[0,-10],[-1,-31],[0,-43],[0,-5],[-1,-24]],[[11167,4426],[-220,1],[-219,-1]],[[10326,160],[-217,-1],[-214,1],[-215,-1],[-217,1]],[[9463,160],[0,127],[0,217],[-1,218],[-2,217]],[[9460,939],[216,2],[215,1],[218,-1],[214,0]],[[13169,7422],[-7,-28],[-33,-57],[-14,-79],[4,-96],[11,-44],[-21,-77]],[[13109,7041],[-153,0],[-451,-2],[-223,-2],[-223,-2]],[[12059,7035],[-1,216],[-1,217],[-1,218],[0,218]],[[12056,7904],[225,0],[294,6],[151,1],[225,-2],[153,0]],[[13104,7909],[13,-41],[26,-34],[12,-51],[-6,-53],[5,-36],[6,-18],[-14,-26],[8,-46],[19,-37],[19,-20],[-9,-71],[-14,-54]],[[7722,7058],[20,77],[4,41],[-6,62],[-13,47],[-25,52],[-11,35],[-14,49],[2,34],[5,37],[12,18],[30,17],[96,32],[47,34],[63,-11],[27,8],[31,27],[21,41],[6,50]],[[4021,14341],[36,28],[9,21],[59,19],[181,28],[65,3],[15,15],[113,8],[75,1],[34,-4],[33,-3],[43,-23],[50,1],[9,14],[85,-1],[82,-31],[75,-53],[-1,-45],[8,-51],[-56,11],[-30,-7],[-16,-22],[-61,-5],[-27,-18],[-77,26],[-47,1],[-138,-21],[-15,-32],[5,-30],[28,-18],[17,-33],[-15,-20],[-41,-4],[-89,-66],[-71,-20],[-31,-29],[-46,-63],[-20,-6],[-18,-10],[-37,-50],[-37,-23],[-17,-26],[-51,-15],[-34,0],[-27,-24]],[[4041,13764],[-132,0],[-1,143],[0,73],[-395,0]],[[3513,13980],[22,18],[43,50],[13,36],[21,30],[42,42],[20,29],[21,9],[77,51],[32,4],[58,25],[46,28],[26,19],[87,20]],[[2971,15595],[0,2],[0,-2]],[[2971,15698],[-52,-22],[-34,2],[-68,-33],[-18,3],[-47,-25],[1,-16],[-42,-16],[-34,-22],[-70,-33],[4,-44],[44,11],[50,-12],[93,30],[-22,-28],[-73,-30],[-47,-14],[-85,-38],[-40,-7],[-117,-50],[-30,-17],[-42,-3],[-28,-10],[-57,25],[-10,37],[-19,8],[-48,0],[22,42],[41,37],[-19,6],[-28,-22],[-57,-21],[3,19],[57,11],[-9,22],[15,55],[77,60],[155,82],[161,72],[26,14],[183,67],[2,14],[107,56],[-24,-33],[78,33],[54,27],[25,43],[104,50],[59,38],[17,38],[97,48],[66,19],[58,32],[41,-24],[44,7],[35,29],[64,8],[46,20],[5,-51],[-49,-39],[-223,-153],[-18,-22],[4,-56],[-21,-21],[-155,-107],[-90,-41],[-136,-40],[-26,-15]],[[5106,14308],[20,2],[30,20],[48,-11],[-5,-35],[-32,0],[-16,16],[-45,8]],[[7743,939],[0,214],[-1,216],[-72,0],[-143,-1],[-46,0]],[[7481,1368],[16,28],[64,141],[19,50],[26,69],[15,61],[8,48],[20,44]],[[10278,7040],[221,1],[223,0],[224,-2],[219,-9]],[[11165,7030],[2,-216],[0,-217],[2,-217],[4,-179],[-3,-38]],[[10277,6165],[-3,219],[1,107],[-3,110],[-3,216],[9,223]],[[7769,2679],[-5,165],[2,55],[-10,159],[-6,60],[-13,114],[-12,68],[-17,71],[-17,40],[-1,33],[-9,36],[-28,77]],[[7653,3557],[123,-2],[109,-1],[147,2],[73,1],[221,1],[-1,218],[217,-2]],[[8542,3774],[3,-218],[1,-218],[6,-110],[6,-188],[0,-1],[0,-85],[0,-53],[-1,-220]],[[5020,10071],[0,439],[112,1],[35,-1],[1,218]],[[5168,10728],[230,-1],[230,0]],[[5628,10727],[1,-216],[78,-1],[0,-72],[0,-144],[0,-144],[-2,-292],[-1,-37],[-1,-180],[117,-2]],[[5820,9639],[-3,-26],[-35,-68],[-7,-30],[-30,-45],[-10,-31],[-21,-19],[-22,-39],[0,-26],[14,-17],[-19,-37],[-42,-27],[-6,-31],[-39,-44],[-21,-25],[-2,-37],[-26,-18],[3,-24],[-26,-17],[-28,-51],[1,-29],[-45,-41],[-14,-29],[-57,-69],[-24,-46],[-38,-34],[-12,-31],[-44,-25],[-13,-23],[-28,-21],[-1,-20],[-25,-20],[1,-19],[-24,-49],[4,-23],[33,-48],[-66,21],[-7,7],[-55,5],[-6,19],[-26,39],[-10,32],[-43,26],[-51,58],[-12,51],[28,28],[4,60],[24,17],[10,64],[13,9],[1,31],[15,22],[53,77],[-1,13],[26,32],[0,29],[-16,19],[-4,28],[-27,18],[-23,30],[-24,-1],[-37,-27],[-39,-53],[-26,-18],[-54,1],[-13,9],[-37,-5],[-41,3],[-10,-18],[-87,44],[25,27],[1,24],[21,12],[1,27],[17,27],[-20,35],[-2,27],[54,54],[36,21],[13,22],[24,67],[-17,33],[-2,63],[-29,34],[-26,19],[7,23],[59,-17],[16,10],[2,39],[19,31],[5,20],[-12,32],[-20,5],[-34,55],[-26,21],[2,39],[77,26],[-11,35],[-40,33],[-6,27],[-46,14],[-17,15]],[[4744,10070],[50,0],[226,1]],[[11441,36],[-17,-1],[-240,-9]],[[11606,939],[229,5],[0,11],[219,6],[214,5]],[[12288,69],[-178,-6],[-39,-3],[-219,-8],[-214,-8],[-162,-7],[-35,-1]],[[9427,2903],[4,-218]],[[9431,2685],[-218,-2],[-218,-2]],[[8542,3774],[0,220]],[[8963,3997],[20,0],[200,0],[22,0],[199,0],[22,0],[0,-220],[-1,-219]],[[9425,3558],[1,-223],[0,-214],[1,-218]],[[11558,2702],[-211,-1],[-169,-1]],[[11171,3556],[-1,26]],[[11614,7032],[-112,-1],[-337,-1]],[[11165,7030],[-2,435],[0,3],[0,432]],[[11163,7900],[221,2],[222,-2],[1,0],[225,2],[224,2]],[[12059,7035],[-222,-1],[-223,-2]],[[14615,3683],[17,-63],[15,-103],[31,-48],[11,-35],[36,-73],[32,-57],[7,-23],[-4,-37],[21,-41],[-6,-26],[-22,-36],[-35,-37],[-15,-26],[-26,-99],[0,-25],[3,-46],[-7,-45],[-12,-39],[-7,-46],[19,-52],[8,-61],[-30,-70],[0,-13],[0,-26],[-24,-57],[-26,-76],[1,-29],[1,-40],[-17,-59],[-12,-20],[-42,-35],[-14,-23],[-43,-43],[-20,-37],[-35,-4],[-30,21],[-42,5],[-25,23],[-40,-33],[-8,27],[23,33],[24,5],[7,24],[-35,16],[-19,-20],[-25,-9],[-22,30],[22,22],[25,0],[21,24],[-14,17],[35,23],[22,46],[25,-26],[15,5],[15,34],[-1,23],[-22,26],[-45,8],[-48,29],[-36,-9]],[[12059,7035],[5,-218],[1,-218],[0,-217],[-1,-216]],[[9864,2251],[2,-218],[4,-219]],[[9870,1814],[-203,-2],[-15,0],[-201,-2]],[[9431,2685],[215,0],[220,3]],[[9866,2688],[-3,-218],[1,-219]],[[10287,4427],[2,-218],[-1,-217],[19,0],[-2,-217],[0,-36],[0,-18],[0,-9],[-1,-22],[0,-132]],[[10304,3558],[-220,2],[-220,1],[-219,-1],[-220,-2]],[[10084,2687],[220,0]],[[10737,2685],[-1,-47],[0,-106],[0,-27],[0,-71],[0,-9],[1,-172],[2,-219],[2,-219]],[[10523,1814],[-205,1],[-12,0],[-205,1],[-13,0],[-205,-2],[-13,0]],[[9866,2688],[218,-1]],[[9285,8782],[5,77],[26,81],[32,35],[35,22],[14,23],[28,8],[16,31],[23,-11],[38,6],[30,23],[9,35],[23,-2],[34,27],[29,31],[20,-5],[81,22],[20,12],[29,-12],[48,-6]],[[9825,9179],[0,-7],[0,-11],[-1,-59],[94,-2],[18,-34],[24,-28],[15,-38],[2,-34],[29,-21],[42,-3],[21,2],[-1,48],[204,-3],[225,-3]],[[10494,8768],[-1,-218],[-227,4]],[[9217,10215],[53,-7],[38,33],[-6,56],[34,10],[22,-35],[-17,-54],[-32,-33],[-45,22],[-47,8]],[[9016,10264],[26,13],[-18,33],[4,24],[54,-15],[52,-38],[1,-20],[31,-11],[-20,-27],[14,-20],[-37,-7],[-13,17],[-23,-18],[-21,14],[-3,43],[-47,12]],[[8961,10095],[2,26],[-10,39],[21,2],[24,-20],[34,-3],[35,12],[16,-22],[-42,-23],[21,-12],[19,-15],[9,-70],[-22,-43],[10,-42],[19,-31],[6,-77],[-9,-34],[-32,-28],[-33,-12],[-26,-41],[-38,-7],[-43,17],[-22,-2],[-46,15],[-14,30],[13,27],[5,43],[28,37],[-11,63],[10,44],[26,40],[34,34],[0,40],[16,13]],[[8708,10110],[36,22],[51,-18],[5,-45],[-7,-16],[-47,-50],[-32,4],[19,56],[-25,47]],[[4299,10225],[-29,17],[-10,30],[-39,15],[-8,33],[66,69],[38,34],[12,27],[-57,22],[-9,41],[22,40],[-15,15],[-25,0]],[[4245,10568],[-2,52],[0,327],[1,433]],[[4244,11380],[231,0],[232,1],[116,0],[116,0],[231,-1],[0,-217],[-1,-231],[-1,-204]],[[4744,10070],[-33,36],[4,20],[-32,24],[-38,-3],[-54,17],[-24,-7],[-39,2],[-6,14],[-36,14],[10,19],[-23,46],[-63,-16],[-23,1],[-20,-21],[-37,-3],[-31,12]],[[6935,9710],[27,13],[13,-27],[22,-1],[9,-33],[-10,-25],[-40,-13],[-12,30],[-9,56]],[[6859,9777],[17,29],[43,-22],[-15,-21],[-24,-11],[-21,25]],[[7076,10029],[3,-52],[-16,-15],[-1,-35],[-36,10],[-30,-24],[20,-108],[-62,-2],[-29,14],[-39,32],[-15,49],[-32,9],[-11,42],[5,24],[26,18],[23,-8],[24,10],[20,26],[-11,46],[16,21],[21,-2],[14,29],[31,37],[8,23],[-26,2],[13,31],[27,14],[15,-12],[41,2],[20,-15],[27,5],[-38,38],[3,26],[27,10],[15,23],[-8,16],[9,30],[26,14],[24,39],[-3,55],[-10,27],[-45,33],[-45,-10],[-28,-46],[-27,-2],[-36,-40],[1,-41],[-22,-1],[-32,-22],[-69,23],[-33,-4],[-28,17],[-1,16],[-32,32],[-37,-9],[-23,-10],[0,-48],[-11,-14],[23,-27],[5,-33],[-20,-42],[-35,-3],[-8,-43],[-26,-15],[1,-36],[-21,-12],[-24,-36],[5,-43],[-35,-11],[-9,-12],[-68,-3],[-31,-31],[-10,15],[-30,-1],[-20,-44],[-29,-17],[-3,35],[-21,8],[-7,27],[13,57],[4,68],[-10,11],[-6,42],[6,21],[-14,63],[-27,34],[4,20],[25,11],[7,27],[24,18],[10,24],[32,31],[-1,52],[-29,18],[-25,2],[-15,-20],[-37,-67],[-30,-26],[43,-31],[-37,-22],[-39,-12],[-7,-11],[-26,-48],[-5,-67],[8,-21],[-12,-7],[-3,-35],[17,-25],[33,-13],[-37,-17],[-24,-45],[20,-26],[-37,-10],[-39,-17],[1,-24],[-54,-16],[-25,-20],[-59,-35],[-3,-29],[-38,-24],[-15,-36],[-63,-120],[-24,-21],[-22,-43]],[[5628,10727],[186,-1],[45,0],[2,361],[1,74],[231,0]],[[6093,11161],[232,0],[385,0],[77,-1],[115,0],[116,0]],[[7018,11160],[232,-1],[1,-218],[-1,-437],[57,0],[-1,-347]],[[7306,10157],[-32,17],[-17,-44],[-29,15],[-56,-15],[-9,-96],[-20,12],[-48,7],[-19,-24]],[[6708,9519],[18,22],[30,-18],[-2,-62],[-13,-1],[-26,26],[-7,33]],[[7653,3557],[-47,119],[-43,91],[-43,83],[-74,157],[-22,45],[-58,148],[-40,141],[-23,101]],[[7303,4442],[119,0],[220,-6],[220,-3],[220,-3]],[[7303,4442],[-33,108],[-36,75],[-40,78],[-17,42],[-17,60],[-3,72],[3,31],[18,48],[35,52],[68,89],[22,31],[30,62],[21,76],[5,44]],[[7359,5310],[61,0],[36,-1],[185,-3],[1,0],[221,-4],[222,-1]],[[8960,6174],[200,0],[22,0],[202,1]],[[9384,6175],[16,-1],[208,0],[13,0],[210,-1],[10,-1]],[[8964,5300],[0,216],[-1,217],[-1,215],[-2,226]],[[7738,160],[-86,0],[-338,-1],[-216,0],[-178,0],[-288,1],[109,79],[43,34],[68,57],[39,30],[28,39],[34,32],[67,78],[43,73],[24,53],[29,89],[18,51],[55,112],[22,45],[39,91],[9,33],[14,16],[13,15],[51,67],[72,97],[35,52],[37,65]],[[9463,160],[-215,-1],[-22,0],[-6,0],[-189,-1],[-252,0],[-238,-1]],[[11171,8544],[-2,-179],[-5,-250],[-1,-215]],[[11163,7900],[-211,5],[-220,0],[-223,3],[-224,0]],[[11173,8760],[-2,-216]],[[9386,7043],[-8,-217],[2,-216],[2,-217],[2,-218]],[[8960,6174],[-23,0],[-198,-1],[-27,0],[-194,0],[-32,-1]],[[4245,11597],[-1,-217]],[[4245,10568],[-45,22],[-13,17],[-45,9],[-10,15],[-37,15],[-11,-13],[-54,-1],[-18,7],[-5,31],[-70,-19],[-17,-10],[-31,21],[-21,1],[-110,80],[-14,-22],[-54,-19],[-17,22],[-42,14],[-18,24],[-29,-14],[-34,-3],[-8,6],[-23,60],[-42,5],[-16,-18],[-45,5],[-44,-27],[-8,24],[-19,4],[-23,-71],[-87,0],[-29,64],[-47,12],[-66,23],[-37,-19],[-40,-8],[-10,31],[-34,-19],[-61,22],[-21,25],[-260,143]],[[2630,11007],[0,588]],[[2630,11595],[0,2],[-1,216]],[[2629,11813],[346,1],[230,0]],[[3205,11814],[116,0],[464,0],[460,0]],[[4245,11814],[0,-217]],[[8085,5301],[-1,217]],[[8084,5518],[-3,218],[0,219],[-6,225]],[[12005,5323],[0,-34],[-13,-27],[-13,-62],[-18,-30],[-23,-7],[0,-28],[12,-27],[12,-58],[19,-36],[31,-59],[32,-31],[73,-46],[11,2],[21,17],[41,-42],[37,-6],[109,-40],[63,-45],[6,-29]],[[12018,5538],[-4,-103],[-12,-62],[3,-50]],[[4246,12460],[-1,-430],[0,-216]],[[3205,11814],[1,431],[1,326],[5,18],[-5,87],[-1,217],[235,1],[-1,217],[188,1]],[[3628,13112],[-14,-57],[-33,-76],[-12,-149],[17,-34],[1,-21],[20,-37],[-9,-16],[-8,-6],[-20,5],[-32,-59],[16,-14],[26,-10],[48,34],[3,19],[28,57],[34,45],[63,67],[-16,33],[-26,0],[27,39],[38,-25],[31,0],[77,82],[22,17],[68,47],[32,35],[84,36],[17,21],[83,37],[22,-17],[-26,-16],[-6,-26],[-69,-61],[-45,-25],[-41,-36],[-16,-24],[-33,-80],[-20,-38],[-21,-15],[18,-19],[34,37],[22,56],[19,28],[39,28],[-7,19],[56,33],[42,1],[65,12],[83,26],[69,-20]],[[4378,13045],[0,-259],[0,-109],[98,0],[0,-215],[-230,-2]],[[13109,7041],[2,-64],[-17,-104],[3,-67],[8,-27],[-24,-86],[0,-88],[-13,-15],[-44,3],[-17,-12],[-52,-64],[-23,-19],[-21,-55],[-30,-5],[-35,20],[-34,4],[-40,-9],[-15,-7],[-48,-57],[-26,-59],[-11,-93],[-18,-66]],[[7359,5310],[0,53],[-27,127],[-4,67],[-12,55],[-10,19],[-6,54],[-16,38],[-22,42],[-34,52],[-24,65],[11,49],[35,36],[80,60],[31,34],[30,47],[38,75],[8,26]],[[6093,11378],[0,-217]],[[4378,13045],[23,-9],[28,4],[34,-12],[79,9],[108,0],[42,-41],[53,-22],[54,18],[24,-24],[39,-4],[11,-33],[39,-16],[27,12],[12,-70],[13,-24],[43,-5],[55,29],[0,-33],[12,-17],[35,-13],[29,0],[47,-59],[28,-18],[-5,-17],[23,-110],[17,-25],[56,-43],[5,-16],[28,-16],[5,-29],[37,-78],[64,-30],[8,-52],[39,-30],[21,-31],[35,3],[14,-11],[35,-12],[-13,-29],[30,-62],[-25,-9],[-7,-23],[9,-22],[42,-44],[4,-2],[56,-25],[43,-10],[96,-9],[104,6],[42,12],[16,21],[23,-14],[44,-11],[33,2]],[[6092,12001],[1,-186],[0,-73],[0,-254],[0,-110]],[[8869,11376],[-464,-1]],[[8405,11375],[0,218],[0,433]],[[8405,12026],[1,464]],[[8406,12490],[43,-4],[85,-19],[82,-10],[67,0],[84,8],[82,-4],[69,-10],[82,-1],[61,3],[51,12],[220,90],[96,53],[100,40],[35,5]],[[9563,11377],[-231,0],[-463,-1]],[[12911,8415],[-2,-8],[-28,-17],[-11,-23],[-14,-42],[6,-16],[31,-17],[-34,-32],[15,-45],[0,-44],[8,-41],[30,-51],[38,-20],[20,-39],[34,-7],[21,-25],[90,-24],[1,-31],[-12,-24]],[[12056,7904],[-1,218],[-3,217],[19,0],[0,107],[-2,107],[-3,108],[3,107]],[[12980,8781],[15,-9],[21,-47],[2,-31],[15,-24],[20,-3],[25,-46],[35,-3],[-10,-21],[3,-32],[19,-30],[-6,-20],[20,-14],[5,-33],[21,-29],[-8,-27],[-25,-25],[51,-10],[13,-19],[9,-38],[-40,9],[-30,18],[-66,19],[-29,22],[-22,29],[2,18],[-19,18],[-24,-6],[-66,-32]],[[12834,5084],[1,17],[32,46],[55,139],[-16,20],[-55,-18],[-14,5],[25,61],[10,10],[-7,35],[10,16],[33,-6],[-12,-33],[53,-11],[38,32],[25,1],[21,15],[31,29],[18,30],[3,24],[-13,16],[-4,11],[-69,13],[-36,-7],[-3,25],[35,-9],[98,5],[30,11],[34,30],[7,8],[11,15],[0,1],[4,10],[17,20],[18,39],[-1,16],[34,3],[27,10],[57,8],[24,-5],[28,13],[35,2],[46,25],[26,17],[61,-9],[38,13],[33,47],[30,51],[63,9],[18,19],[20,24],[19,6],[23,-16],[28,16],[21,0],[47,-27],[36,-32],[79,-20],[36,-15],[37,-19],[19,-35],[28,-1],[54,-49],[22,-39],[15,-45],[17,-20],[18,-52],[29,-40],[1,-38],[9,-30],[44,-36],[7,-17],[11,-19],[-5,-31],[21,-21],[16,-65],[12,-27],[-5,-24],[18,-27],[-7,-21],[2,-55],[9,-10],[0,-43],[12,-39],[-8,-29],[6,-19]],[[9825,9179],[3,0],[72,-4],[23,-8],[56,24],[27,-3],[23,-2],[43,19],[4,3],[35,17],[47,21],[3,51],[-14,21],[-63,14],[-28,-1],[-36,-5],[-5,-6],[-32,19],[-49,11],[-47,41],[-54,70],[-12,52],[-19,46],[-15,81],[-6,46],[15,42],[34,35],[32,58],[27,41],[85,30],[27,24],[15,47],[31,8],[27,37],[31,28],[5,48],[-38,41],[-60,34],[96,1],[34,-5],[31,-23],[19,0],[35,22],[50,-19],[19,-10],[35,20],[21,-15],[41,14],[14,22],[-20,52],[35,19],[40,-17],[35,14]],[[1938,11812],[1,217],[-344,0],[-350,-1],[1,217],[-230,1],[1,432],[-42,0]],[[975,12678],[70,75],[31,21],[81,37],[125,29],[62,1],[25,6],[63,-23],[18,-14],[30,3],[34,17],[150,39],[78,-11],[58,5],[46,11],[116,48],[36,26],[91,41],[103,58],[49,45],[36,51],[16,31],[29,14],[28,38],[44,24],[23,-19],[52,-2],[32,9],[59,29],[23,-18],[54,8],[67,43],[32,42]],[[2736,13342],[1,-158],[1,-400],[0,-108],[127,1],[-2,-215],[-231,2],[-2,-217],[-1,-434]],[[2630,11595],[-232,0],[-126,1],[-334,0],[0,216]],[[7018,11160],[1,218],[-1,219],[463,-3],[0,435],[231,-2],[693,-1]],[[8405,11375],[-1,-215],[1,-143],[-1,-333]],[[8404,10684],[-51,-2],[-55,-48],[-6,-40],[-33,-7],[-24,22],[-64,26],[-48,17],[-83,22],[-60,6],[-40,-5],[-86,-26],[-62,22],[-45,-14],[-17,-25],[-41,5],[-36,-12],[-26,-46],[-37,-12],[-34,-38],[-1,-48],[-18,-45],[14,-35],[-24,-20],[-17,-37],[7,-27],[-18,-40],[11,-14],[-39,-30],[-37,20],[-34,-2],[-30,-13],[-21,-71],[-22,4],[-21,-14]],[[2736,13342],[36,70],[4,37],[42,67],[62,34],[18,1],[44,56],[59,35],[27,-2],[26,16],[58,73],[56,48],[80,52],[51,12],[27,18],[67,16],[47,44],[73,61]],[[4041,13764],[-22,-34],[-6,-38],[-1,-31],[20,-32],[-29,-25],[-19,22],[-44,-16],[-13,-21],[1,-38],[-17,-40],[-97,-56],[-7,-54],[-25,-69],[-1,-20],[-33,-36],[-47,-67],[-43,-7],[-20,-13],[-10,-77]],[[7481,12195],[83,48],[244,156],[49,39],[43,8],[34,-39],[59,-5],[94,31],[77,15],[30,-8],[55,14],[74,27],[58,10],[25,-1]],[[6092,12001],[73,51],[62,13],[34,14],[7,20],[51,-18],[31,-1],[23,-25],[38,-91],[3,-27],[27,-12],[35,5],[36,-19],[18,-50],[25,-7],[53,-5],[40,10],[7,37],[16,35],[29,27],[61,5],[44,-20],[-3,-15],[26,-25],[15,-27],[21,-15],[29,1],[26,16],[26,-8],[4,-24],[-18,-27],[21,-25],[24,-1],[57,79],[5,27],[17,-3],[24,38],[26,23],[32,46],[36,11],[32,40],[36,22],[24,45],[26,24],[44,-13],[146,63]],[[6845,12127],[21,24],[36,15],[22,-10],[24,10],[50,-65],[-5,-43],[-33,-75],[35,-25],[34,40],[5,-45],[-30,-48],[-32,-5],[-36,39],[-22,-49],[-29,14],[5,109],[-31,29],[-14,85]],[[2630,11007],[-186,103],[-62,15],[-675,177],[-80,22],[-193,49],[-189,50],[-462,120],[-240,63],[3,56],[-28,31],[0,19],[-23,50],[-21,25],[-5,44],[-16,33],[-16,0],[0,39],[-21,8],[0,20],[-23,23],[-27,64],[-55,8],[-35,-3],[-34,38],[-56,-7],[5,58],[-38,35],[-23,-3],[-11,-29],[-31,2],[-49,-22],[-39,86],[53,40],[102,65],[44,-15],[77,39],[51,15],[136,53],[117,24],[102,33],[31,15],[60,47],[16,22],[56,37],[60,48],[70,74]],[[11440,10726],[-20,-21],[-75,29],[27,-53],[-13,-29],[-20,10],[-33,-14],[-27,23],[-19,-17],[-68,3],[20,-30],[-18,-14],[-24,1],[-36,18],[-25,-10],[-43,37],[6,35],[33,25],[-9,24],[-27,26],[-28,12],[-19,-12],[-23,9],[-15,-13],[18,-47],[-24,-26],[-18,15],[-12,45],[-32,6],[-15,-13],[-1,-53],[-33,-5],[-5,24],[8,31],[-9,44],[-17,35],[-36,24],[-42,-15],[-48,6],[-6,17],[-31,10],[-44,32],[-35,-16],[-22,-28],[-9,-45],[16,-29],[-19,-50],[18,-20],[-6,-15],[-38,4],[-41,-30],[-16,-38],[10,-30],[27,-16],[10,-29],[-34,-1],[-3,-46],[14,-13],[13,-61],[33,-36],[-29,-12],[-37,-3],[-22,-18],[-49,24],[-32,23],[-20,29],[-33,-5],[-32,33],[-2,40],[-35,12],[-36,28],[-19,28],[-47,3],[-53,89],[-57,62],[-56,50],[-95,41],[-72,11],[-35,25],[-32,23],[-40,11],[-26,-7],[-31,32],[-14,-32],[-55,35],[-32,-5],[-46,12],[-87,41],[-30,23],[-36,8],[-32,-8],[-33,-36],[-19,45],[-40,19],[-27,1],[-57,-28],[-42,14],[-36,2],[-40,-14],[-36,-30],[-45,-47],[-16,-34],[-43,-35],[-29,-47],[-9,-22],[-31,-40],[-26,-14],[-7,-38],[-56,-6],[-15,-21],[-36,14],[-47,-1],[-55,15],[-46,21],[-37,7],[-28,-10],[-31,-27],[-42,7]],[[10646,10420],[9,52],[33,-3],[12,-12],[38,-64],[-33,-16],[-37,18],[-22,25]],[[10713,10666],[-30,-14],[-18,44],[10,20],[37,-25],[1,-25]],[[10760,10295],[30,17],[66,-29],[54,8],[64,-31],[75,-30],[40,34],[10,-31],[93,-43],[-27,-37],[3,-17],[-41,-24],[-4,-29],[-48,-20],[-26,21],[-33,-5],[-42,16],[-13,-7],[-36,18],[-15,42],[-32,30],[-44,60],[-59,32],[-15,25]],[[10774,10671],[9,17],[29,-16],[-11,-27],[-27,26]],[[11639,10717],[-52,-4],[-13,-16],[-50,16],[-40,-19],[-32,32]]],"transform":{"scale":[0.0005413038360056831,0.00039986093931786187],"translate":[-90.41448599999998,41.696118]},"objects":{"cb_2019_26_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[5,6,7,8,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-4,12,13,14,15,16,17]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[18,19,20,21,22,23]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[24,25,26,27,28,29]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[30,31,32,33,34,35,36]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[37,38,-29,39,40,41,42,43,44]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[45,46,47,48,49,50]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[51,52,53,54,55,56]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[57,58,59,-51,60]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[61,62,-17,63,64,65]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[66,67,68,69,70]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[71,72,73,74,75,76]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[77,78,79,80,81]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[82,83,84,85,86]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[87,88,-69,89,90,91,92]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[93,94,95,96,97,98,99]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[100,101,102,103,104,105,106]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[107,-103,108,-64,-16,-15,-14,109,110]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[111,112,-106,113,114,115,116]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[117,118,-78,-82,119,120,121]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[[122]],[[123]],[[124]],[[125,126,127,128,129,130]],[[131]]],"type":"MultiPolygon","properties":{"COUNTYFP":"033"}},{"arcs":[[132,133,134,-120,-81,135,136]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-109,-102,137,-56,138,-65]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-37,-36,139,140,141,-59,-31]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[142,-23,143,144,-35,145,146]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[147,148,149,-11,150,151]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-138,-101,-107,-113,152,153,154,155,-52,-57]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[156,-104,-108,-111,157,-44,158,159]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[[-134,160,161]],[[162]],[[163]],[[164]],[[165]]],"type":"MultiPolygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-145,166,-116,167,-140]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-27,168,169,170]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[171,172,173,174,175]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-73,176,-161,-133,-137]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[[177,178,179]],[[181]],[[182]]],"type":"MultiPolygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-6,-12,-150,-85,183,184]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[185,186,-146,-34,187]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[-8,188,189,190]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[191,192,193,194,195]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[196,-25,-30,-39,197,-2,198]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[199,200,-9,-191,201,-47,202,203]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-114,-105,-157,-160,204,-96,205]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[206,207,208,-174,209]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[-198,-38,-45,-158,-110,-13,-3]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[-55,210,-62,-66,-139]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[-24,-143,-147,-187,-207,-210,211,-19]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[212,213,-151,-10,-201,214,215]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-203,-46,-60,-142,216,217]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[218,-99,-98,219,-42,220,-213,-216,221]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[[-122,222,223,-92,224,-118]],[[225]],[[226]],[[227]],[[228]]],"type":"MultiPolygon","properties":{"COUNTYFP":"029"}},{"arcs":[[229,230,231,-192,-196,232]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[[233]],[[234]],[[235,-194,236,237,238,239]],[[240]]],"type":"MultiPolygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-48,-202,-190,241,242]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[-217,-141,-168,-115,-206,-95]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-49,-243,243,244]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[245,246,-32,-58,-61,247]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[-184,-84,248]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-170,249,-86,-149]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[-205,-159,-43,-220,-97]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-204,-218,-94,-100,-219,-222,-215,-200]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[250,251,-119,-225,-91,252]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[-74,-136,253,-246,254]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[255,-231,256,257,258,259,260,261]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-50,262,263,-75,-255,-248]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-33,-247,-254,-80,-188]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[264,-153,-112,-117,-167,-144,-22,265]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[266,-261,267,268,269]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-173,270,-20,-212]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-245,271,-76,-264,-263]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-152,-214,-221,-41,-40,-28,-171,-148]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[272,-237,-193,-232,-256,-262,-267,-270,273,274]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[275,276,277,278,-127,279]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[280,-175,281,-67,-71,282]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-53,-156,-155,283]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-282,-209,-251,-253,-90,-68]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[-88,-93,-224,284]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[285,286,287,-259,288]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-239,289,-277,290,291]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[-288,292,-179,293,-268,-260]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[[294,-278,-290,-238,-273,-275,295]],[[296]]],"type":"MultiPolygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-286,-289,-258,297]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[-208,-186,-79,-252]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[[-131,298,-291,-276,-280,-126]],[[299]],[[300]],[[301]],[[302]],[[-129,303]]],"type":"MultiPolygon","properties":{"COUNTYFP":"097"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/mn.topo.json b/app/assets/topojson/states/mn.topo.json new file mode 100755 index 00000000..4b5a3947 --- /dev/null +++ b/app/assets/topojson/states/mn.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[1100,15314],[257,0],[253,0]],[[1610,15314],[0,-300],[2,-242],[-1,-246],[34,0],[-1,-239],[-2,-36],[2,-206]],[[1644,14045],[-251,-2],[-255,1],[-253,-1],[-254,-1],[-251,3],[-235,-1]],[[145,14044],[-6,15],[49,6],[-10,17],[-38,-1],[-10,22],[37,7],[17,45],[-2,41],[21,42],[25,23],[-20,25],[26,0],[10,0],[8,47],[16,32],[-4,61],[-36,57],[20,17],[-26,26],[-26,25],[-10,32],[7,36],[-32,20],[17,22],[-22,32],[1,36],[-28,6],[2,32],[-7,24],[-28,13],[21,22],[-13,24],[20,14],[1,33],[-13,62],[-35,22],[-4,27],[12,24],[-26,11],[-7,39],[-16,15],[7,29],[-35,42],[9,34],[-16,15],[-1,34],[19,65],[321,-1],[254,-1],[253,0],[253,0]],[[8292,1],[-193,0]],[[8099,1],[0,242],[0,204],[0,19],[0,20],[0,242],[0,244]],[[8099,972],[6,0]],[[8105,972],[225,0],[9,0],[224,1],[20,-1],[212,0]],[[8795,972],[0,-41],[232,1],[233,0]],[[9260,932],[-1,-243],[0,-202],[0,-242],[1,-242]],[[9260,3],[-232,-1],[-232,0],[-232,-1],[-234,0],[-38,0]],[[7919,5329],[238,-5]],[[8157,5324],[1,-81],[0,-37],[-1,-121],[0,-81]],[[8157,5004],[-1,-239]],[[8156,4765],[-1,-242]],[[8155,4523],[-70,0],[-59,0],[-39,0],[-69,1],[-20,0],[-68,0],[-20,0],[-56,1],[0,-24],[0,-13],[0,-12],[0,-39],[1,-88],[0,-32],[1,-40]],[[7756,4277],[-88,0],[-22,-1],[3,44],[-6,21],[8,36],[5,89],[-32,32],[-2,19],[-30,61],[-33,22],[-34,24],[-24,41],[-28,9],[-43,36],[-32,19],[-20,37],[-8,10],[-31,4],[-54,27],[-29,-1],[-29,42],[-23,14]],[[7204,4862],[2,149],[3,240],[-1,82]],[[7208,5333],[137,-4],[187,0],[40,0],[26,1],[83,0],[198,1],[40,-2]],[[8090,7645],[1,241],[-3,243]],[[8088,8129],[246,0],[241,-2],[241,-1],[242,0],[246,-1],[258,-2]],[[9562,8123],[-1,-239],[-1,-485],[-1,-230],[-43,-12],[-37,-30],[-15,-45],[-1,-41],[-15,-36],[-20,-7],[-59,18],[-35,22],[-20,-2],[-41,-29],[-22,-65],[-21,-26],[-16,-29],[-35,7],[-51,21],[-17,1],[-46,-43],[-4,-46],[-45,-10],[-53,-20],[-23,-17],[-50,-6],[2,-22],[-33,-1],[-58,-60],[-41,-22],[-26,-31],[-25,-43],[-11,-58],[-43,-38],[-6,-27],[13,-36],[-7,-27],[-30,-38],[-14,-66],[-49,-55],[-37,-30],[-41,-17]],[[8484,6203],[-8,7],[-266,2],[-58,0],[-232,0]],[[7920,6212],[0,162],[-1,39],[1,40],[-1,243],[-1,213],[170,1],[0,251],[2,241]],[[8090,7402],[0,243]],[[5429,14035],[2,-241],[1,-241]],[[5432,13553],[-253,0],[-252,-1],[-251,-1],[-748,-2],[-8,0],[-2,160],[1,79],[-1,245],[-253,1]],[[3665,14034],[0,481],[489,0],[-1,235],[0,7]],[[4153,14757],[0,40],[-2,202],[0,94],[-49,-47],[-42,-25],[-117,-26],[-42,-6],[-29,-5],[-45,14],[-56,31],[-6,11],[-14,3],[3,16],[-28,27],[-23,48],[15,29],[-22,101],[13,47]],[[3709,15311],[321,0],[1,499],[0,574],[52,-42],[131,-45],[86,9],[49,35],[61,4],[93,-56],[59,-47],[47,-26],[74,-8],[-16,-34],[-2,-40],[54,-223],[-1,-46],[48,-215],[44,-60],[61,-276],[67,-323],[0,-32],[-16,-10],[4,-85],[-27,-39],[18,-42],[-1,-22],[1,-24],[1,-29],[82,-74],[21,-40],[43,-11],[17,-16],[40,-38],[75,-9],[24,-34],[75,-13],[68,-7],[23,-8],[43,23]],[[5429,14481],[1,-202],[1,-102],[-2,-142]],[[3668,971],[-216,-1]],[[3452,970],[-16,0],[-3,0]],[[3433,970],[1,242],[-1,243],[1,242],[-1,242]],[[3433,1939],[216,-1],[18,0],[216,-1],[17,0],[159,1],[39,-1],[19,0]],[[4117,1937],[15,-1],[2,-241],[232,-1],[129,0],[7,0],[16,0],[3,0],[1,0],[9,0],[67,0]],[[4598,1694],[2,-241],[0,-241],[0,-1],[-1,-240]],[[4599,971],[-223,-1],[-9,0],[-224,0],[-10,0],[-222,0],[-11,0],[-222,0],[-10,1]],[[3451,486],[0,40],[1,62],[1,140],[-1,242]],[[4599,971],[10,0]],[[4609,971],[0,-240],[-1,-243],[0,-241],[1,-244]],[[4609,3],[-232,0],[-231,1],[-234,0],[-233,-1],[-230,1]],[[3449,4],[0,79],[0,20],[0,141],[2,242]],[[3849,4252],[0,-9],[-1,-25],[-1,-101],[0,-242]],[[3847,3875],[-218,0],[-18,0],[-217,-1],[-1,-243]],[[3393,3631],[-2,-20],[3,-122]],[[3394,3489],[-13,32],[-30,25],[-21,-18],[-19,46],[53,10],[-11,21],[-38,22],[-9,0],[-31,48],[-38,19],[-25,35],[-46,12],[-8,20],[-42,52],[-28,15],[-45,55],[-15,28],[-29,-5],[-60,10],[-18,65],[-18,19]],[[2903,4000],[-37,29],[-26,4],[-15,-15],[-53,19],[-13,34],[-23,9],[-1,38],[-2,23],[-40,43],[-25,12],[-1,0],[-21,48],[-22,2],[-27,33],[-165,170],[-38,61],[-49,47],[-22,45]],[[2323,4602],[109,-1],[237,-1],[236,0],[236,-1],[236,1]],[[3377,4600],[236,3]],[[3613,4603],[238,-1]],[[3851,4602],[-1,-242],[-1,-108]],[[5550,971],[230,-1],[3,0]],[[5783,970],[-1,-243],[-1,-242],[1,-241],[-1,-241]],[[5781,3],[-232,0],[-240,0],[-236,0],[-232,0],[-232,0]],[[4609,971],[222,0],[9,0],[59,0],[29,0],[135,0],[10,0],[236,0],[6,0],[232,0]],[[5547,971],[3,0]],[[3035,8954],[243,1],[105,4],[143,-3],[243,1],[2,0],[240,3]],[[4011,8960],[0,-244],[16,0],[0,-243],[0,-235],[0,-6],[0,-64],[0,-6],[0,-21],[0,-152]],[[4027,7989],[2,-241],[17,0],[-2,-246],[1,-243]],[[4045,7259],[-243,1],[-241,2],[-240,0],[-241,-1],[-241,0]],[[2839,7261],[-241,2],[-240,1],[-238,0],[-1,0],[-238,0]],[[1881,7264],[0,240],[0,1],[1,242],[-29,1],[-1,244],[-1,242],[0,41],[0,28],[0,4],[0,170],[0,241]],[[1851,8718],[210,0],[-5,242]],[[2056,8960],[245,0],[246,-3],[244,-1],[244,-2]],[[7189,4852],[8,-2],[0,-8],[-8,-1],[-4,-17],[-40,1],[-19,-15],[-34,-24],[-37,-10],[-25,-19],[-73,3],[-37,-43],[15,-31],[25,-23],[0,-24],[-44,-34],[-29,-7],[-10,1],[-30,-33],[-4,-6],[-42,-64],[-7,-18],[-4,-18],[-6,-11],[1,-21],[-17,-20],[-23,-10],[-6,1],[-18,5],[7,-23],[-14,-24],[-2,-40],[0,-61],[-1,-140]],[[6711,4116],[-109,1],[-2,0],[-126,0],[-237,2]],[[6237,4119],[-236,0],[-235,2]],[[5766,4121],[0,241],[0,241],[-1,241],[-8,11],[0,113]],[[5757,4968],[-2,39],[17,29],[61,11],[16,13],[51,4],[26,-47],[32,7],[36,32],[33,28],[28,40],[27,7],[-2,31],[23,37],[-8,36],[15,12],[33,81],[14,26],[7,1],[5,0]],[[6169,5355],[42,-51],[22,-3],[20,-17],[35,6],[24,-30],[31,-30],[26,20],[42,0],[27,-36],[34,-22],[23,-49],[22,-21],[70,-12],[22,-29],[39,-39],[21,-8],[34,-25],[28,-11],[41,15],[60,-6],[36,20],[24,-25],[76,-1],[41,-8],[65,-2],[33,22],[15,-55],[3,-37],[18,-25],[43,-32]],[[7186,4864],[3,-12]],[[6709,1213],[1,-243]],[[6710,970],[-78,1],[-21,-1],[-5,0],[-10,0],[-16,1],[-24,-1],[-78,1],[-1,0],[-229,0],[-3,0],[-231,0],[-2,0],[-229,-1]],[[5547,971],[0,242],[0,241],[0,1],[1,241]],[[5548,1696],[-1,243],[-3,0],[-2,191]],[[5542,2130],[19,-5],[58,-22],[24,-32],[55,-10],[36,-43],[41,-11],[0,-10],[0,-5],[52,-9],[28,-32],[21,7],[50,-21],[59,-4],[26,-25],[35,-15],[2,-19],[49,-33],[21,-6],[24,12],[12,-24],[18,1],[4,22],[21,8],[43,1],[17,22],[-14,29],[-3,1],[-6,-1],[-4,-1],[0,0],[-2,1],[-6,2],[3,14],[-2,20],[-1,-1],[-1,1],[-2,11],[1,3],[3,3],[10,4],[-22,21],[20,26],[-6,41],[13,10]],[[6238,2061],[157,0],[3,0],[6,0],[2,0],[70,-1],[33,0],[200,0],[1,-121]],[[6710,1939],[-1,-242],[0,-242],[0,-242]],[[1927,5327],[241,-2]],[[2168,5325],[-3,-57],[1,-181],[0,-242],[27,0],[1,-175]],[[2194,4670],[-8,18],[-59,28],[-22,-7],[-44,5],[-62,36],[-30,39],[-12,0],[-48,-1],[-50,12],[-13,65],[-36,9],[-50,0],[-14,13],[-17,4],[-48,4],[-1,4],[-10,5],[-57,-12],[-26,28],[-26,8],[-43,-2]],[[1518,4926],[0,41],[0,41],[-33,77],[-43,93],[-57,46],[-47,15],[-63,31],[-43,30],[-30,13],[-61,7],[-63,1],[-23,19],[-61,95],[-14,15],[-42,126],[-24,53],[-55,82],[-16,13],[-64,86]],[[779,5810],[9,0],[13,-1],[122,0],[241,-1],[37,0],[205,0],[33,0],[209,0],[30,0],[227,0]],[[1905,5808],[22,0],[1,-242]],[[1928,5566],[-1,-239]],[[3952,11982],[0,-119],[0,-242],[18,-1],[0,-242],[3,-242],[0,-1],[0,-240]],[[3973,10895],[1,-243],[25,0],[1,-239],[0,-243]],[[4000,10170],[-247,-2],[-246,-1],[-1,0],[-244,1]],[[3262,10168],[-1,242],[0,241],[1,240],[-1,247],[-5,0]],[[3256,11138],[1,242],[0,241],[-49,0],[-2,242],[-2,241],[-2,220],[0,22]],[[3202,12346],[-2,241]],[[3200,12587],[684,-2],[-34,-40],[-50,-126],[-9,-47],[-1,-51],[16,-59],[20,-35],[25,-22],[53,-22],[49,-8],[-1,-193]],[[5044,3389],[0,-243],[0,-242],[10,0],[0,-241]],[[5054,2663],[-233,1],[-69,1]],[[4752,2665],[-57,41],[-27,39],[-43,20],[-16,-7],[-22,23]],[[4587,2781],[-16,3],[-8,43],[-39,17],[-31,-14],[-32,24],[-74,26],[-30,23],[-4,-1],[-14,9],[-38,-6],[-22,10],[-16,24],[-31,9],[-36,38],[-25,-5],[-3,-3],[-5,4],[-24,4],[-10,37],[-28,22],[-57,40],[-8,22],[-31,18],[-38,7],[-22,32],[-39,27],[-40,41],[-11,19],[-47,-22],[-42,6],[-42,41],[-4,43],[-78,13],[-11,7]],[[3631,3339],[-34,12],[-46,45],[-12,32],[-64,36],[-33,-8],[-37,43],[-11,-8],[0,-2]],[[3847,3875],[17,0],[221,1],[14,0],[222,0],[14,1],[224,1],[11,0],[225,-1]],[[4795,3877],[10,0],[227,0],[10,0],[248,1]],[[5290,3878],[9,0],[-1,-243],[0,-219],[0,-26]],[[5298,3390],[-254,-1]],[[1337,8717],[-211,0],[-34,0],[-216,0]],[[876,8717],[-27,66],[21,68],[6,44],[-9,29],[14,32],[6,38],[-12,35],[2,35],[16,35],[-40,27],[19,20],[-27,38],[9,15],[-7,41],[33,52],[11,56],[-9,38],[24,19],[-10,32],[2,40],[16,5],[12,63],[-5,19],[-58,-17],[0,44],[-14,1],[-21,53],[-26,20],[6,16],[-6,59],[-20,34],[31,100],[-14,26],[7,24],[-15,30],[24,10],[0,86],[-17,39],[4,22],[-17,51],[-15,3]],[[770,10165],[290,2],[243,0],[248,0],[220,0],[247,0]],[[2018,10167],[0,-243],[2,-241],[37,0],[0,-239],[-5,-241],[4,-243]],[[1851,8718],[-35,0],[-204,0],[-30,0],[-213,-1],[-32,0]],[[1272,11136],[-248,-1],[-272,0]],[[752,11135],[-39,83],[38,66],[-36,37],[29,38],[3,18],[-10,69],[-44,28],[8,22],[-22,68],[4,58],[-23,2],[-5,41],[-15,13],[-24,79],[-26,41],[8,37],[-18,30],[7,15],[-41,23],[-4,48],[-41,33],[-5,74],[-29,49],[-2,24],[-15,37],[-31,7],[-7,63],[15,30],[-1,39],[-35,29],[0,25],[-37,31],[-12,37],[15,67],[-21,30],[-15,61],[7,20],[-14,70],[-22,15],[-21,36],[-4,41],[-18,52],[-28,9],[4,25],[-15,46],[6,23],[-38,10],[43,33],[-7,16],[-32,-1],[-5,30]],[[177,13012],[244,0],[251,0],[251,1],[251,0],[252,2]],[[1426,13015],[-1,-182],[0,-243],[36,0],[0,-161]],[[1461,12429],[0,-81],[1,-243],[93,1],[157,-1],[2,-242],[246,-2],[249,1],[249,1],[251,1],[0,243],[247,1],[-1,243]],[[2955,12351],[247,-5]],[[3256,11138],[-241,-2],[-6,0],[-239,0]],[[2770,11136],[-247,-1],[-11,0],[-249,0]],[[2263,11135],[-247,2],[-247,0],[-248,-2],[-249,1]],[[3179,2668],[0,-243],[1,-243],[0,-82],[0,-20],[0,-142]],[[3180,1938],[-212,1],[-22,0],[-211,1],[-23,0],[-208,0],[-27,1],[-206,0]],[[2271,1941],[-29,0]],[[2242,1941],[-1,243],[-1,244],[-1,244],[0,235],[-25,1],[0,241]],[[2214,3149],[235,0],[236,1],[237,-2],[238,0],[-1,-244],[18,0]],[[3177,2904],[2,-236]],[[1518,1942],[252,1],[28,0],[210,0],[30,-1],[204,-1]],[[2271,1941],[-1,-242],[-1,-242],[1,-242],[-1,-242]],[[2269,973],[-209,-1],[-23,0],[-208,1],[-29,0],[-155,1],[-10,0],[-29,0],[-10,0],[-78,1]],[[1518,975],[-1,242],[0,243],[1,243],[0,239]],[[1517,246],[0,243],[0,243],[1,243]],[[2269,973],[24,1]],[[2293,974],[-1,-245],[-1,-243],[-1,-241]],[[2290,245],[1,-243]],[[2291,2],[-231,1],[-231,0],[-311,0],[-1,243]],[[4547,5327],[-237,-1],[-237,0]],[[4073,5326],[0,231],[0,10],[0,25],[0,5],[0,210],[-16,0],[1,242],[-1,242]],[[4057,6291],[0,40]],[[4057,6331],[239,2],[168,0],[73,0],[241,-1],[238,0]],[[5016,6332],[252,2],[122,2],[120,0],[225,0]],[[5735,6336],[14,-34],[-4,-23],[17,-38],[20,-16],[20,-14],[43,-11],[-19,-31],[29,-39],[13,-64],[26,-13],[-16,-14],[0,-45],[-11,-14],[-3,-28]],[[5864,5952],[3,-49],[15,-33],[5,-15],[47,-45],[7,-33],[31,-43]],[[5972,5734],[7,-15],[-6,-58],[18,-46],[-5,-64],[67,-58],[14,-16],[-3,-30],[40,-25],[4,-25],[26,-15],[28,5],[7,-32]],[[5757,4968],[-202,-4],[-36,1],[0,123],[-236,-3],[-57,1]],[[5226,5086],[-42,-1],[-161,-1],[-238,2]],[[4785,5086],[1,241],[-239,0]],[[2771,10164],[244,2],[247,2]],[[4000,10170],[-2,-246],[1,-137],[-1,-102],[16,0],[-1,-242],[-1,-241]],[[4012,9202],[-1,-242]],[[2018,10167],[246,2]],[[2264,10169],[259,-2],[248,-3]],[[6238,2061],[4,35],[-23,26],[16,19],[5,23],[24,6],[26,52],[1,0],[29,22],[19,5],[28,89],[24,16],[-32,30],[-25,40],[13,10],[-14,30],[27,35],[-4,27],[19,16],[25,92],[0,21],[-3,10]],[[6397,2665],[2,4],[3,33],[31,3],[12,28],[1,18],[17,10],[9,35],[2,1],[8,41],[-25,27],[-21,25],[-2,16]],[[6434,2906],[236,0],[39,0],[234,2],[3,0],[84,0],[8,0],[87,-1],[2,0],[54,0]],[[7181,2907],[-1,-241],[0,-241],[-1,-244],[0,-241]],[[7179,1940],[-4,0],[-231,-1],[-2,0],[-49,1],[-9,0],[-18,0],[-156,-1]],[[8088,8129],[0,244],[-2,201],[2,39],[-15,1],[-4,241],[6,241]],[[8075,9096],[120,1],[123,-2],[246,0],[248,8],[82,-6],[161,-2],[206,-2],[38,-2],[204,1],[42,-3],[1,-201],[0,-66],[17,-13]],[[9563,8809],[0,-23],[1,-180],[-1,-241],[-1,-242]],[[7657,3150],[-79,-1],[1,242],[-20,0],[-2,205]],[[7557,3596],[48,9],[46,34],[56,14],[47,49],[32,30],[26,62],[-4,9],[41,41],[0,23]],[[7849,3867],[20,1],[29,14],[32,32],[16,40],[33,0],[11,0],[78,0],[27,0],[32,-61],[29,-19]],[[8156,3874],[16,-67],[6,-32],[-7,-52],[12,-51],[-30,-80],[11,-39],[19,-11],[38,10],[22,-8],[21,-6],[75,29],[23,-16],[59,-2],[31,-39],[22,-35],[58,7],[25,-8],[19,-4]],[[8576,3470],[28,-23],[43,-22],[65,-44]],[[8712,3381],[0,-235],[-117,1],[0,-242],[-220,1],[-14,1],[-10,-1],[0,-71],[-37,-17],[-68,9],[-22,11],[-36,-8],[-70,-1],[0,-122]],[[8118,2707],[-117,0],[-89,-1],[-11,0],[-9,0],[-6,0],[-2,0],[-11,0],[-28,0],[-10,0],[-4,0],[-65,0],[-116,2],[0,200]],[[7650,2908],[6,0],[1,242]],[[6110,2],[-39,1],[-58,0],[-232,0]],[[6710,970],[231,1]],[[6941,971],[0,-244],[0,-1],[0,-241],[0,-242],[-1,-242]],[[6940,1],[-232,-1],[-231,1],[-232,0],[-135,1]],[[10530,10783],[-1,-243],[0,-241],[0,-205],[-3,-38],[-1,-240],[1,-237]],[[10526,9579],[-35,-26],[-56,-15],[-27,-31],[-40,-18],[-39,-29],[-47,-46],[0,-1],[-61,-37],[-64,-49],[-26,-30],[-37,-15],[-32,-32],[-22,-9],[-32,-41],[-45,-23],[-17,-22],[5,-27],[28,-53],[51,-75],[48,-59],[-16,-5],[-107,112],[-53,-2],[-41,-25],[-16,-66],[-41,11],[-42,-7],[-32,-41],[14,-18],[43,-17],[-10,-27],[-21,-10],[-25,-34],[6,-27],[-20,-14],[-31,9],[-27,-11],[-27,27],[-18,-22],[-51,35]],[[8075,9096],[4,241],[4,241],[3,241]],[[8086,9819],[0,231],[-20,0],[2,241],[-1,242],[2,247],[-4,0],[-3,32],[-2,89],[1,120],[9,198],[1,43],[2,146],[-1,101],[4,242],[-41,0],[-3,240],[5,238]],[[8037,12229],[1,241],[-14,0],[-1,73],[-1,176],[-14,0],[-1,311],[-1,175],[4,21],[4,443],[2,15],[3,241],[4,352]],[[8023,14277],[200,-11],[68,19],[0,-62],[39,-4],[38,-29],[30,-4],[322,-155],[136,20],[44,-10],[19,-83],[-4,-27],[-18,-11],[-34,6],[-14,-14],[-45,3],[-27,-7],[-27,-89],[48,-53],[61,-20],[156,11],[74,19],[58,1],[61,-81],[38,-19],[-1,-30],[-39,-82],[13,-56],[32,-62],[42,-68],[30,-27],[45,-101],[23,-61],[23,-47],[31,28],[40,10],[34,19],[66,10],[21,11],[-7,24],[-33,24],[-21,64],[13,50],[-22,28],[21,21],[12,53],[52,33],[107,-26],[55,18],[31,31],[33,7],[3,-27],[116,-6],[11,12],[44,3],[13,-29],[4,-39],[30,-25],[60,-12],[-25,-67],[11,-47],[1,-42],[33,-15],[17,-34],[20,16],[31,-5],[-7,-52],[40,3],[42,13],[43,-3],[17,-29],[32,-23],[7,-34],[94,13],[34,-24]],[[10518,13095],[-4,-382],[2,-247],[3,-124],[0,-23],[0,-77],[-4,-262],[3,-240],[10,-231],[0,-10],[10,-231],[-4,-362],[-4,-123]],[[14784,12437],[22,31],[41,4],[10,-19],[-62,-38],[-11,22]],[[14214,12492],[78,18],[31,21],[20,41],[29,-4],[72,25],[65,-2],[35,-15],[-1,-18],[29,-11],[24,13],[62,-2],[7,-15],[55,19],[58,-20],[27,-24],[47,-7],[-53,-33],[-49,-4],[6,25],[-21,21],[-41,-25],[-22,-23],[19,-54],[-34,20],[-36,-4],[-26,-34],[17,-24],[-32,-10],[-63,-44],[-11,-21],[-73,-43],[-39,-31],[-67,-31],[-11,6],[-39,-23],[-27,0],[-30,-18],[-24,1],[-54,-16],[-7,-31],[-48,-29],[-34,-4],[-8,-24],[-57,-15],[-40,-20],[-35,-1],[-57,-18],[-17,-17],[-71,-29],[-84,-5],[-35,-18],[-18,-26],[-79,-2],[-62,-21],[-84,-35],[-30,-6],[-68,-27],[-69,-9],[-13,-10],[-77,-16],[-7,-19],[-57,-15],[-129,-46],[-27,-35],[-65,-27],[-107,-60],[-60,-35],[-29,-8],[-82,-44],[-73,-51],[-44,-36],[-162,-120],[-111,-100],[-41,-27],[-138,-120]],[[12017,11040],[0,382],[2,316],[2,480],[-11,1],[4,489],[-14,0],[-1,322],[1,25]],[[12000,13055],[53,39],[53,47],[100,29],[77,44],[20,-22],[53,18],[16,-13],[13,-183],[29,16],[26,-5],[15,-51],[39,7],[-9,-45],[-31,-18],[19,-33],[20,-10],[29,-71],[20,-21],[19,10],[73,4],[33,13],[87,8],[29,23],[98,26],[39,-11],[-27,-28],[25,-31],[77,10],[58,-1],[38,27],[56,-28],[68,18],[41,-34],[84,9],[17,17],[47,8],[31,-18],[29,12],[40,-2],[56,16],[70,-1],[23,13],[24,-8],[61,6],[32,-21],[48,1],[65,-23],[66,-32],[17,-49],[12,3],[29,-54],[-6,-38],[7,-19],[36,-16],[12,-23],[32,-10],[33,13],[14,-38],[58,-40],[21,-3]],[[5451,11859],[1,-242],[2,0],[2,-218],[4,-20],[-2,-241],[-2,-154]],[[5456,10984],[0,-92],[-251,-2],[-240,-2]],[[4965,10888],[-165,1],[-86,-2],[-246,2]],[[4468,10889],[-248,3],[-247,3]],[[3200,12587],[-18,0],[-1,242],[-2,182]],[[3179,13011],[0,61],[1,241],[0,234],[-17,0],[1,242],[1,222],[-2,19]],[[3163,14030],[1,0],[249,2],[252,2]],[[5432,13553],[6,0],[2,-246],[4,-341],[-1,-142],[-1,-82],[0,-157],[11,0],[0,-241],[-1,-243]],[[5452,12101],[-1,-131],[0,-20],[0,-31],[0,-10],[0,-50]],[[2912,14033],[-204,1],[-48,3],[-254,6],[-256,1],[-254,3],[-252,-2]],[[1610,15314],[513,0],[255,0],[254,-1],[214,0],[545,-2],[318,0]],[[3163,14030],[-251,3]],[[10649,726],[-1,-241],[1,-240],[0,-241]],[[10649,4],[-231,0],[-232,-1],[-231,1],[-231,-1],[-233,0],[-231,0]],[[9260,932],[0,39],[20,0],[212,0],[21,0],[211,-3],[20,0]],[[9744,968],[38,0],[20,0],[16,0],[3,0],[135,0],[19,0]],[[9975,968],[211,0],[21,0],[210,0],[21,0],[211,0]],[[10649,968],[0,-142],[0,-100]],[[8640,4106],[29,-51],[7,-40],[-3,-30],[-6,-34],[-8,-30],[-26,-18],[-3,-24],[20,-47],[-9,-38],[7,-59],[-14,-54],[-15,-25],[-16,-69],[-32,-54],[-5,-47],[10,-16]],[[8156,3874],[30,0],[39,10],[-1,152],[0,141],[0,82],[0,14],[0,3],[0,42],[0,6],[0,4],[0,10],[0,6],[0,17],[0,86],[0,54],[0,21],[-69,1]],[[8157,5004],[152,-1],[85,0],[158,0],[134,-2]],[[8686,5001],[-25,-13],[-4,-34],[17,-48],[-16,-33],[15,-91],[-22,-34],[-6,-54],[18,-22],[2,-71],[21,-81],[12,-18],[-10,-23],[-92,-82],[-21,-37],[12,-41],[20,-22],[42,-39],[5,-23],[-17,-53],[1,-25],[2,-51]],[[6628,8124],[-1,-242],[0,-215],[28,-28]],[[6655,7639],[-29,0],[2,-241]],[[6628,7398],[-246,0],[-242,-1],[-153,-1],[-90,3],[-243,0],[-70,0],[-47,0],[5,80],[-17,24],[-29,49],[2,47],[11,26],[34,16],[31,31],[-1,21],[28,18],[-1,24]],[[5600,7735],[18,5],[10,29],[-1,220],[0,1],[-1,189],[0,53],[-2,80],[-1,165],[-2,242],[-28,1],[-1,121],[1,121],[3,65],[2,177],[122,-1],[243,-1],[240,-4],[246,1],[1,0],[244,-2]],[[6694,9197],[-3,-241],[-1,-241],[0,-97],[-36,-25],[-29,-5],[-1,-222],[4,-242]],[[3433,970],[-19,0],[-193,0],[-21,0],[-211,1],[-22,0],[-209,0],[-24,1],[-210,1],[-22,0],[-209,1]],[[3180,1938],[22,0],[212,1],[19,0]],[[1903,6780],[-24,0],[0,242]],[[1879,7022],[2,242]],[[2839,7261],[0,-242],[0,-242],[21,0],[1,-242],[0,-242]],[[2861,6293],[-238,0],[-241,-1],[-240,1],[-239,0]],[[1903,6293],[0,243],[0,244]],[[5063,1697],[-230,0],[-235,-3]],[[4117,1937],[3,241],[233,3],[233,-1],[0,241],[1,242],[0,118]],[[4752,2665],[-1,-19],[35,-19],[35,12],[24,-15],[12,-23],[37,2],[24,-24],[15,-47],[33,-16],[-13,-19],[46,-7],[15,11],[33,-18],[8,-25],[44,10],[16,-25],[27,-13],[16,11],[41,-16],[4,-16],[47,2],[10,-20],[35,-17],[15,22],[0,-22],[75,-71],[2,-28],[38,-65],[16,-3],[18,-18],[5,-34],[27,-15],[51,-10]],[[5548,1696],[-232,1],[-253,0]],[[7188,3784],[0,15],[0,77],[-6,0],[-83,-1],[-4,0],[-99,0],[-49,-1],[-75,0],[-161,0],[-1,161],[2,81],[-1,0]],[[7186,4864],[18,-2]],[[7756,4277],[36,0],[1,-82],[0,-15],[0,-35],[0,-97],[14,-33],[0,-91],[12,-10],[8,-26],[22,-21]],[[7557,3596],[-19,-12],[-20,13],[-60,-16],[-9,34],[-25,2],[-14,17],[-65,23],[-10,-21],[-26,-6],[-121,3]],[[7188,3633],[0,151]],[[5534,3149],[-236,-2],[0,243]],[[5290,3878],[0,243],[239,-2],[237,2]],[[6237,4119],[1,-242],[4,0],[0,-245]],[[6242,3632],[-1,-241]],[[6241,3391],[-236,0],[-235,1],[-2,-243],[-234,0]],[[6241,3391],[235,-1],[0,-121],[233,0],[0,-93]],[[6709,3176],[-47,-28],[-13,13],[-31,-5],[-41,-40],[-34,-4],[-12,-31],[-57,-26],[-21,-76],[5,-20],[-24,-53]],[[6397,2665],[-155,0],[-232,1],[-234,-1],[-234,-1],[-19,1],[-39,0],[-175,-1],[-255,-1]],[[2096,3150],[-58,1],[-60,0],[-238,-1],[-220,1]],[[1520,3151],[1,242],[0,243]],[[1521,3636],[218,-1],[238,1],[237,-2],[237,1],[235,1],[3,241],[213,-1],[1,124]],[[3631,3339],[0,-195],[0,-242],[-217,0],[-20,0],[-217,2]],[[2214,3149],[-118,1]],[[2679,13009],[-250,-1],[-245,0],[-127,5],[-18,-4],[-109,2],[-40,6],[-166,-2],[-43,2],[-255,-2]],[[177,13012],[-6,29],[14,22],[6,28],[19,18],[-19,18],[-10,88],[38,20],[-1,64],[16,16],[-16,27],[24,17],[-48,39],[8,45],[15,29],[-26,16],[6,23],[-37,32],[29,18],[-8,31],[-25,12],[-9,25],[27,5],[32,28],[-23,32],[10,43],[26,0],[-8,64],[-25,19],[-30,51],[33,8],[16,22],[-34,26],[-8,77],[22,20],[-40,20]],[[3179,13011],[-249,1],[-251,-3]],[[7585,9824],[240,-8],[2,0],[259,3]],[[8090,7402],[-242,1],[-204,3],[-39,-2],[-246,-13]],[[7359,7391],[3,21],[0,236],[-237,1],[-256,-6],[-214,-4]],[[6694,9197],[2,241],[0,240],[-1,153]],[[6695,9831],[147,-3],[89,-1],[159,1],[246,-3],[246,0],[3,-1]],[[1520,4364],[-1,241],[-1,321]],[[2194,4670],[20,-21],[36,-13],[35,-23],[38,-11]],[[1521,3636],[-1,243],[0,242],[0,241],[0,2]],[[7359,7391],[0,-21],[0,-9],[-1,-210],[0,-241],[-165,1],[-1,-203],[3,-244],[6,-242]],[[7201,6222],[3,-88],[-1,-160]],[[7203,5974],[4,-241]],[[7207,5733],[-108,1],[-12,0],[-80,1]],[[7007,5735],[-40,1]],[[6967,5736],[-241,0]],[[6726,5736],[-2,248],[-3,241],[1,83],[-5,159]],[[6717,6467],[-8,243],[-1,203],[-80,2],[-1,242]],[[6627,7157],[1,241]],[[7207,5733],[0,-241],[1,-159]],[[5972,5734],[35,1],[20,0],[19,0],[21,0],[40,0],[40,0],[10,0],[10,0],[1,0],[24,0],[56,0],[240,2],[238,-1]],[[5600,7735],[-13,13],[9,15],[-32,34],[-20,-8],[-18,31],[-38,20],[-1,13],[-58,34],[-45,-12],[-30,-17],[-25,-9],[-68,-27],[-34,-17],[-41,12],[-57,48],[-43,14],[-29,-8],[-18,29],[-1,0],[-12,13],[-29,20]],[[4997,7933],[-22,9],[-73,-6],[-39,7],[-16,45]],[[4847,7988],[6,35],[-41,-2],[-31,27],[-27,11],[1,171],[-1,246],[-3,240],[-10,0],[-1,240],[-1,244]],[[4739,9200],[246,-1],[1,243],[2,240],[-10,0],[-1,241],[0,240],[1,242],[0,239],[-15,0],[2,244]],[[5456,10984],[10,1],[36,-48],[74,-9],[52,-24],[405,180],[44,-7],[29,-27],[36,-84],[47,-66],[18,-16],[-26,-18],[4,-51],[-7,-14],[14,-51],[16,-24],[103,-39],[3,-21],[56,-37],[28,-28],[50,-16],[3,1],[36,43],[33,11],[24,-7],[18,-24],[67,-18],[31,14],[38,-10],[-1,-20],[-23,-11],[20,-44],[-16,-7],[-10,-43],[-29,-24],[-4,-40],[20,-54],[43,-18],[-1,-171],[0,-112],[-1,-127],[-1,-93]],[[4785,5086],[0,-243],[11,0],[1,-238],[0,-40],[0,-21],[0,-182],[-1,-242],[-1,-243]],[[3851,4602],[0,240],[-17,0],[0,241],[0,1],[0,243]],[[3834,5327],[239,-1]],[[9149,2419],[-20,0],[-66,1],[0,-242],[0,-40],[0,-202]],[[9063,1936],[-95,1],[-8,0],[-9,0],[-5,0],[-10,0],[-14,0],[-21,1],[-30,0],[-19,0],[-11,0],[-11,0],[-14,0]],[[8816,1938],[-218,3],[-15,0],[-234,1],[-10,0],[-224,-1]],[[8115,1941],[1,243],[1,243],[0,80],[0,13],[0,22],[0,15],[1,110],[0,40]],[[8712,3381],[61,-56],[56,-67],[31,-32],[46,-25],[20,-28],[0,-67],[39,-8],[38,-31],[24,7],[38,-62],[0,-34],[18,-5],[43,22],[51,-25],[21,6],[43,-16],[38,-28],[46,22],[51,-8],[40,5],[40,-6],[36,-18],[22,-22],[29,-73],[1,-45],[21,-42],[28,-33],[67,-54]],[[9660,2658],[-62,1],[-38,0],[-11,0],[-19,1],[-234,1],[-1,-242],[-146,0]],[[11468,968],[-16,0],[-3,0],[-87,0],[-137,0],[-94,0],[-20,0],[-154,0],[-56,0],[-231,0],[-21,0]],[[9975,968],[1,242],[-1,59],[0,71],[1,110],[-2,242]],[[9974,1692],[1,239],[18,0],[211,0],[21,0],[134,0],[1,0],[23,0],[19,0]],[[10402,1931],[38,-29],[18,-12],[23,-39],[40,-28],[43,-18],[44,-36],[62,-15],[17,-25],[6,-46],[51,-18],[28,-29],[14,-36],[29,-31],[72,-43],[15,-27],[33,-29],[69,-14],[77,-9],[52,-31],[23,4],[54,-22],[20,-21],[11,-32],[35,-52],[39,-27],[42,-58],[13,-45],[27,-34],[11,-20],[33,-26],[19,-58],[52,-57]],[[11512,968],[-25,0],[-19,0]],[[2955,12351],[0,80],[-248,0],[-250,0],[-249,-2],[-245,-3],[-251,2],[-251,1]],[[2263,11135],[1,-241],[1,-243],[-1,-240],[0,-242]],[[770,10165],[29,12],[3,53],[-17,27],[7,26],[-14,60],[6,64],[-25,99],[10,11],[-7,45],[24,38],[-30,25],[20,24],[12,40],[-19,6],[-23,53],[14,22],[10,85],[-24,24],[19,13],[-30,-4],[4,38],[-12,37],[15,68],[-13,31],[16,11],[-20,36],[27,26]],[[6717,6467],[-119,0],[-117,2],[-240,3],[-242,-2],[-122,0],[-153,-2],[-13,0]],[[5711,6468],[-7,0],[-31,0],[-95,-1],[36,-54],[44,-34],[77,-43]],[[5016,6332],[0,200],[0,172],[0,2],[0,16],[1,12],[0,41],[-11,0],[2,244],[0,243],[1,240],[0,2],[-1,244],[-10,1],[0,113],[0,1],[0,7],[-1,63]],[[3360,5325],[237,1],[237,1]],[[2168,5325],[237,1],[239,0],[238,0]],[[2882,5326],[239,0],[239,-1]],[[7867,971],[7,0],[225,1]],[[8099,1],[-232,0],[-231,-1],[-232,0],[-135,0],[-38,0],[-58,0],[-233,1]],[[6941,971],[2,0],[229,0],[3,0],[229,0],[4,0]],[[7408,971],[227,0],[5,0],[227,0]],[[11342,4],[-173,0],[-8,-1],[-49,1],[-232,-1],[-231,1]],[[11512,968],[12,-26],[11,-67],[24,-67],[31,-46],[-23,-79],[0,-37],[-25,-60],[2,-40],[-10,-53],[2,-60],[17,-28],[-11,-82],[20,-33],[51,-60],[0,-26],[-2,-22],[-21,-43],[1,-25],[20,-46],[30,-32],[-1,-33],[-298,1]],[[7179,1940],[229,0]],[[7408,1940],[0,-242],[1,-243]],[[7409,1455],[-1,-242],[0,-242]],[[5452,12101],[251,0],[237,2],[247,2],[129,0],[126,-1],[252,-2],[0,147],[99,-5],[294,2],[206,-8],[109,-2],[510,-4],[125,-3]],[[8152,5729],[0,1],[-232,2],[0,239],[0,241]],[[8484,6203],[-37,-27],[-19,-145],[-15,-60],[-2,-44],[10,-50],[-7,-43],[5,-54],[25,-22],[47,-3],[58,-15],[60,19],[30,-3],[85,-72],[-1,-74],[47,-60],[34,-64],[14,-20],[48,-23],[9,-29],[-4,-69],[7,-17],[-8,-41],[-39,-30],[-8,-13],[-8,-29],[-34,-25],[-14,-28],[9,-48],[-21,-42],[-69,-71]],[[8157,5324],[-5,163],[0,1],[0,241]],[[2882,5326],[0,241],[0,241],[-21,0],[0,243],[0,242]],[[2861,6293],[240,-1],[241,-2],[194,3],[41,-1],[242,-2],[238,1]],[[4045,7259],[-1,-242],[1,-242],[14,-1],[-3,-171],[0,-30],[0,-14],[0,-26],[1,-202]],[[3449,4],[-232,-3],[-212,0],[-23,0],[-232,1],[-228,0],[-231,0]],[[4498,9203],[241,-3]],[[4847,7988],[-92,0],[-12,0],[-8,0],[-81,-1],[-142,1],[-61,0],[-20,1],[-162,-1],[-242,1]],[[4012,9202],[243,3],[243,-2]],[[8816,972],[1,242],[0,240],[0,20],[0,9],[-1,212],[0,243]],[[9063,1936],[4,0],[133,0],[80,-1],[231,-1],[0,-240],[231,-1],[232,-1]],[[8795,972],[21,0]],[[1518,1942],[1,243],[1,244],[0,242],[0,236],[0,244]],[[8106,1941],[9,0]],[[8105,972],[1,26],[0,11],[0,5],[0,9],[1,10],[0,21],[0,161],[-1,242],[0,242]],[[8106,1699],[0,242]],[[7188,3633],[-40,1],[-19,-20],[-30,-3],[-27,-9],[-2,-30],[-25,-17],[-13,-19],[-28,-8],[-12,-18],[26,-17],[-45,-44],[5,-15],[5,-40],[16,-32],[-49,-40],[-47,7],[-59,-71],[-44,-19],[-32,-46],[-19,-3],[-40,-14]],[[7408,1940],[4,1],[228,0],[8,0],[225,0],[8,0],[225,0]],[[7920,6212],[-30,0],[-22,-1],[-8,1],[-10,0],[-10,0],[-160,0],[-238,0],[-241,10]],[[1903,6293],[0,-242],[2,-243]],[[779,5810],[-12,14],[-10,15],[-22,26],[33,109],[99,79],[56,39],[20,31],[76,53],[74,41],[40,40],[19,36],[7,29],[26,49],[25,19],[30,48],[33,39],[11,58],[7,182],[12,21],[1,44],[5,29],[-18,49],[-12,163]],[[1279,7023],[361,-1],[159,0],[40,0],[40,0]],[[5429,14481],[27,28],[53,3],[39,-15],[50,-9],[67,19],[51,-14],[34,-17],[25,-43],[-6,-55],[19,-29],[39,-11],[48,4],[82,-14],[127,-6],[50,7],[10,-9],[60,-6],[43,7],[102,-27],[53,-7],[30,10],[47,-11],[83,-4],[19,-12],[23,-44],[8,-39],[25,-69],[-13,-55],[2,-23],[-14,-34],[46,-39],[81,-3],[67,7],[45,-8],[96,7],[36,38],[31,-26],[31,20],[31,-6],[60,6],[62,17],[29,18],[63,12],[21,45],[-15,61],[1,22],[50,5],[57,42],[27,-14],[41,5],[35,18],[15,41],[180,45],[91,0],[57,-54],[173,12]],[[9660,2658],[18,-24],[34,-19],[50,-17],[52,-15],[73,-14],[26,-23],[63,-25],[33,-2],[30,-28],[52,-36],[20,-4],[41,-30],[33,-9],[21,-18],[35,-51],[31,-21],[23,-61],[-20,-40],[7,-30],[34,-18],[14,-19],[-1,-28],[16,-46],[-10,-32],[32,-76],[2,-20],[33,-21]],[[1279,7023],[-3,14],[23,68],[18,37],[5,54],[-17,69],[-11,65],[-20,43],[6,33],[-7,47],[-17,8],[-5,46],[8,39],[-20,50],[-2,43],[25,12],[-28,41],[7,43],[-6,13],[9,11],[-1,0],[-2,8],[0,2],[-17,13],[16,64],[-6,33],[-40,33],[-45,59],[-25,20],[-18,14],[-31,92],[-15,5],[-7,35],[-49,50],[-4,26],[17,19],[-3,25],[-26,19],[-22,81],[8,28],[-18,42],[5,46],[-18,3],[10,59],[4,1],[-7,29],[-50,78],[-8,28],[-20,15],[4,31]],[[7181,2907],[3,0],[232,1],[4,0],[230,0]],[[10787,9820],[-1,-8],[-28,-18],[-21,-30],[-38,-4],[-63,-62],[-58,-70],[-20,-14],[-5,-26],[-27,-9]],[[10518,13095],[95,-12],[20,15],[46,-14],[5,-32],[-24,-47],[38,0],[-7,-50],[20,-31],[-3,-27],[-23,-48],[37,5],[31,-25],[45,6],[26,-35],[48,14],[51,0],[57,17],[12,-14],[-32,-27],[-11,-76],[-1,-48],[17,-14],[47,26],[105,41],[74,2],[23,-46],[17,-10],[74,24],[39,34],[11,-7],[49,18],[96,2],[78,28],[29,33],[40,19],[46,62],[14,-8],[53,51],[35,24],[-10,14],[44,17],[10,16],[44,20],[18,21],[34,1],[16,17],[49,4]],[[12017,11040],[-44,-23],[-49,-64],[-48,-53],[-20,-8],[-42,-34],[-6,-16],[-39,-40],[-7,3],[-40,-60],[-16,-42],[-43,-41],[-45,-61],[-20,-13],[-14,-27],[-19,-34],[-27,-10],[-15,-29],[-23,-8],[-47,-49],[-26,-36],[-47,-45],[-1,-18],[-51,-45],[-11,-20],[-27,-4],[-21,-23],[-70,-80],[-29,-40],[-39,-28],[-50,-16],[-27,-40],[-35,-7],[-21,-23],[-46,-10],[-41,-76],[-16,4],[-52,-46],[-33,-57],[-23,-1]]],"transform":{"scale":[0.0005172010523187732,0.00035919094956704095],"translate":[-97.23813703430001,43.4993734822936]},"objects":{"cb_2019_27_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[4,5,6,7,8,9,10]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[11,12,13,14,15,16,17,18]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[19,20,21,22,23,24]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[25,26,27,28,29,30]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[31,32,33,34,35,36,37]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[38,-32,-38,39,40,41,42]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[43,44,45,46,47,48,49,50,51]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[52,53,54,-41,55,56]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[57,58,59,60,61,62,63,64]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[65,66,67,68,69,70,71]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[72,73,-53,-57,74,75,76,77,78]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[79,80,81,82,83,84,85]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[86,87,88,89,90,91,92]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[93,94,95,96,97,-46,-45,98,99,100,101]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[102,103,104,105,-64,106]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[107,108,109,110,111,112,-91,113,114,115]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[116,117,118,119,120,121]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[122,-119,123,124,125]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[126,-125,127,128,129,130]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[131,132,133,134,135,136,137,138,-70,139,140,141]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[142,-89,143,144,-58,-65,-106,145,146]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-78,147,148,149,150,151]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[-21,152,153,154]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[155,156,157,158,159,160,161,162]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[163,-54,-74,164,165,166]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[167,168,-154,169,170,171,172,173]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[[174]],[[175,176,177]]],"type":"MultiPolygon","properties":{"COUNTYFP":"031"}},{"arcs":[[178,179,180,181,-87,-93,182,183,184,-27,185,186]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[187,-2,188,-29,-28,-185,189]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[190,191,-10,192,193,194,195]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[196,-159,197,-15,-14,198,199]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[200,201,202,203,204]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-34,205,-128,-124,-118,206]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[207,208,-62,209,210,211]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[212,-36,213,-96,214,-76,215]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[216,-66,-72,217,-17,218,-157,219,220]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[221,-101,222,-68,223,224,225]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-226,226,227,-149,228,-94,-102,-222]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[229,230,231,-47,-98,232,-121,233]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[234,-110,235,-3,-188,-190,-184,236]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[237,-170,-153,-20,-25,238,239,-201,-205,240,241]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[242,-82,243,-48,-232,244]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[-202,-240,245,246,247,248,249,250,251,252,253]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[-250,-249,254,-18,-218,-71,-139,255,-251]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[-204,256,257,258,259,-180,260,-241]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-132,-142,261,-99,-44,-52,262,263]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[264,265,266,267,-161,268,269]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[-233,-97,-214,-35,-207,-117,-122]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[270,-195,271,272,273,274]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[-111,-235,-237,-183,-92,-113,275]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[-116,276,-146,-105,277,-108]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-253,278,279,-136,280,-257,-203,-254]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[281,-263,-51,-50,-49,-244,-81,282,283]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[284,-6,285,-166,286,287]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[288,-191,-196,-271,-275,289]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-152,290,291,292,-287,-165,-73,-79]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[-171,-238,-242,-261,-179,-187,293]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[294,-23,295,-199,-13,296]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-133,-264,-282,-284,297,298]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[-61,299,-134,-299,-210]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-206,-33,-39,-43,300,-130,-129]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[301,-259,302,-59,-145,303]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[-147,-277,-115,-114,-90,-143]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-112,-276]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[-141,-140,-69,-223,-100,-262]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[304,-266,305,-272,-194,-193,-9,306]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-230,-234,-120,-123,307]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-252,-256,-138,-137,-280,-279]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[308,-267,-305,-307,-8,309,310]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-227,-225,-224,-67,-217,-221,311]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-310,-7,-285,-288,-293,-292,312,-311]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[-246,-239,-24,313]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-229,-148,-77,-215,-95]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[-300,-60,-303,-258,-281,-135]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[-208,-212,314,-84,315,316]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[317,-172,-294,-186,-26,-31]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-298,-283,-80,-86,-85,-315,-211]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[-265,-270,318,-273,-306]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[-144,-88,-182,-181,-260,-302,-304]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-56,-40,-37,-213,-216,-75]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[-107,-63,-209,-317,319,-103]],"type":"Polygon","properties":{"COUNTYFP":"167"}},{"arcs":[[-268,-309,-313,-291,-151,320,-162]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-295,-297,-12,-19,-255,-248,-247,-314]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-16,-198,-158,-219]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[-220,-156,-163,-321,-150,-228,-312]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[321,-168,-174,322,-177,323]],"type":"Polygon","properties":{"COUNTYFP":"075"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/mo.topo.json b/app/assets/topojson/states/mo.topo.json new file mode 100755 index 00000000..3dc34a95 --- /dev/null +++ b/app/assets/topojson/states/mo.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[2430,10904],[211,1],[211,2]],[[2852,10907],[2,-242],[31,0],[1,-206]],[[2886,10459],[-208,6],[-74,0],[-208,0],[-1,0],[-220,0]],[[2175,10465],[-19,0],[0,104],[0,100],[-43,1],[0,235]],[[2113,10905],[317,-1]],[[214,10594],[-26,38],[-39,30],[-3,58],[-10,28],[71,28],[13,24],[4,26],[-36,58],[-41,-13],[-6,-68],[-21,-16],[-25,15],[-28,-10],[-37,5],[-22,26],[10,27],[-18,72],[15,16],[229,-2],[178,-4],[212,-3],[423,-7]],[[1057,10922],[1,-237],[45,0],[0,-103],[0,-104],[-3,-173],[-3,-138]],[[1097,10167],[-246,3],[-69,0],[-377,4]],[[405,10174],[3,63],[-28,19],[-25,1],[-30,23],[-23,12],[-65,-20],[-22,12],[7,28],[37,16],[20,28],[-9,29],[-27,40],[-3,40],[-33,70],[7,59]],[[5396,8828],[277,-3],[35,-1],[-5,-209]],[[5703,8615],[-9,0],[-7,-258],[-2,-69],[-4,-155],[-7,-206]],[[5674,7927],[-103,35],[-50,17],[-109,-280]],[[5412,7699],[-20,25],[-45,-27],[-40,-7],[-25,22],[7,52],[-15,24],[-44,16],[-21,31],[10,37],[-9,30],[-19,9],[-102,-5],[-39,11],[-52,43],[-10,30],[-4,56],[-45,29]],[[4939,8075],[-20,13],[-9,68],[-35,13],[-29,-4],[-20,35],[-33,-9],[-39,19],[-27,-24],[-19,27],[19,22],[-16,53],[-36,-36],[-20,11],[-15,37],[-18,15],[19,32],[-32,51],[12,24],[24,31],[-12,42],[6,27],[-14,41],[8,30],[-15,34]],[[4618,8627],[30,17],[-40,69],[-4,36],[13,57],[22,31]],[[4639,8837],[11,0],[260,4],[70,4],[101,-5],[105,-6],[210,-6]],[[6523,2743],[-5,-207]],[[6518,2536],[-100,4],[-201,3],[-197,2],[-3,0],[-204,7],[-99,1]],[[5714,2553],[4,122],[2,87],[6,219],[1,40],[-25,1],[4,207],[1,0],[1,68],[5,244]],[[5713,3541],[178,-5],[58,-1],[68,-4],[200,-6],[5,0],[195,-4],[100,0]],[[6517,3521],[-2,-228],[1,-82],[1,-1],[-2,-209],[11,0],[-2,-84],[-1,-174]],[[6815,2320],[-4,-176],[0,-33],[-5,-208],[-30,0]],[[6776,1903],[-65,2],[-106,3],[-201,5],[-33,1],[-169,3],[-115,3],[-83,2],[-35,1],[-167,3],[-1,0],[-200,5],[-33,0]],[[5568,1931],[-168,5],[-99,3]],[[5301,1939],[4,208],[2,102],[1,71],[4,172],[0,70]],[[5312,2562],[100,-5],[204,-2],[98,-2]],[[6518,2536],[102,-3],[99,-3],[100,-2]],[[6819,2528],[-4,-208]],[[10759,1197],[4,-90],[-17,-124],[-10,-44],[20,-2]],[[10756,937],[1,-52],[0,-105],[-1,-209],[4,-211],[-1,0],[1,-224],[0,-128]],[[10760,8],[-436,-5],[-99,-1],[-240,-2],[49,71],[7,39],[20,14],[7,47],[23,9],[0,38],[39,26],[12,39],[39,9],[44,28],[31,41],[-7,29],[28,61],[28,4],[31,45],[50,25],[35,28],[45,61],[6,29],[58,16],[11,39],[25,35],[-6,14],[-27,31],[12,28],[-4,35],[21,26],[3,54],[-29,44],[-44,10],[-57,21],[1,55],[-13,63],[-32,39],[8,41],[-117,3]],[[10282,1197],[1,70],[13,35],[39,6],[15,60],[-11,43],[31,34],[3,31],[23,5],[14,32]],[[10410,1513],[221,-1],[130,-2]],[[10761,1510],[-8,-9],[0,-58],[10,-39],[7,-93],[-12,-44],[3,-35],[-2,-35]],[[3596,5273],[136,-5],[23,-1],[250,-8],[96,-3],[-24,34],[25,10],[32,-30],[30,1]],[[4164,5271],[19,-19],[26,0],[4,-1],[-12,-265],[-1,-35]],[[4200,4951],[-8,-173],[-6,-174],[-1,-33],[-105,3],[-8,-207]],[[4072,4367],[-102,3]],[[3970,4370],[-119,4],[-220,9],[2,59],[3,68],[0,11],[-169,6],[-34,2],[-272,12]],[[3161,4541],[3,68],[10,255]],[[3174,4864],[6,161],[10,262]],[[3190,5287],[157,-5],[46,-2],[159,-5],[44,-2]],[[6245,9632],[100,0]],[[6345,9632],[4,0],[-3,-200],[105,-2]],[[6451,9430],[-5,-207],[-5,-207],[-4,-102],[-3,-105],[-4,-206]],[[6430,8603],[-3,0]],[[6427,8603],[-196,3],[-10,0],[-207,4],[-14,0],[-159,2],[-138,3]],[[5396,8828],[2,104],[1,107],[5,208],[7,208],[4,177]],[[5415,9632],[211,2],[61,1],[145,0],[197,-3],[11,0],[205,0]],[[2902,9144],[-1,-103]],[[2901,9041],[0,-103]],[[2901,8938],[-208,4],[-36,-1],[-210,1],[-35,0],[-244,-1]],[[2168,8941],[-1,173]],[[2167,9114],[-1,35],[-2,104],[-1,139],[0,71],[-1,174]],[[2162,9637],[283,-1],[12,0],[235,0],[185,-9]],[[2877,9627],[29,-1],[-2,-170],[-1,-69],[-1,-139],[0,-104]],[[6534,10268],[-194,-3]],[[6340,10265],[-4,104]],[[6336,10369],[-1,103],[-2,209],[0,34],[1,252]],[[6334,10967],[194,5],[357,9],[204,6]],[[7089,10987],[-3,-242],[-1,-68],[-3,-176],[1,-32],[-7,-209]],[[7076,10260],[-207,5],[-176,3],[-40,0],[-119,0]],[[3190,5287],[-47,1],[6,207],[7,208],[5,139]],[[3161,5842],[1,45],[-5,1],[6,241]],[[3163,6129],[206,-6],[204,-5],[101,-2],[103,-1],[172,-5],[33,-1],[205,-6]],[[4187,6103],[-3,-105]],[[4184,5998],[-4,-138],[5,-18],[-6,-174],[-4,-78],[-6,-164],[-5,-155]],[[2919,1199],[-265,2],[-200,-1],[-54,0],[-144,1],[-117,0],[0,298],[-1,200],[0,138]],[[2138,1837],[142,-6],[199,-9],[165,-7],[34,-1],[67,-4],[130,-5],[100,-4],[180,-8]],[[3155,1793],[3,-1],[-8,-239],[-1,-35],[-4,-139],[-5,-180]],[[3140,1199],[-221,0]],[[3163,6129],[-102,3],[6,207],[-24,1],[2,69],[2,35],[8,139],[3,109],[4,71]],[[3062,6763],[9,200]],[[3071,6963],[309,-11],[6,-1],[199,-8],[3,69],[103,-5],[102,-3],[208,-6],[212,-8]],[[4213,6990],[-3,-70],[10,0],[-9,-210],[-10,-209],[-5,-104],[-3,-105],[-6,-189]],[[2170,8101],[0,-165],[1,-70],[-1,-83],[0,-88],[-1,-85],[0,-69]],[[2169,7541],[-71,-14],[-40,21],[3,28],[-17,18],[-50,-8],[-33,-20],[-42,-3],[-49,26],[-23,49],[-22,17],[-67,5],[-21,34],[13,24],[1,38],[-19,30],[-36,27],[-55,30],[-24,33],[-15,56],[-4,68],[53,43],[2,28],[-9,18],[-31,7],[-39,-19],[-42,22],[-1,28],[-56,50],[-4,23],[-40,31],[-61,28],[-26,33],[-5,47],[-17,27],[-34,18],[-47,47]],[[1241,8431],[202,0],[208,-2],[68,-1],[139,-1],[210,-2],[102,-1]],[[2170,8424],[0,-177]],[[2170,8247],[0,-146]],[[4639,8837],[-181,1],[0,40],[2,240],[1,140],[3,104],[-1,104]],[[4463,9466],[0,156]],[[4463,9622],[204,5],[57,1],[181,3],[4,0],[195,0],[15,0],[280,1]],[[5399,9632],[16,0]],[[4716,2614],[-8,0],[-4,0],[-51,3],[-9,0],[-2,0],[-12,0],[-1,0],[-11,0],[-36,2],[-43,0],[-46,1],[-16,0],[-65,1],[-33,1],[-68,1],[-69,1],[-54,1],[-12,0],[-170,3]],[[4006,2628],[3,173],[1,70],[2,104],[1,89],[-38,2]],[[3975,3066],[2,117],[3,90],[3,139]],[[3983,3412],[239,-6],[34,-1],[59,-2],[77,-2],[67,-2],[68,-3],[200,-6],[68,-2]],[[4795,3388],[202,-5]],[[4997,3383],[-2,-85],[-1,-58],[-3,-202],[28,-1],[-1,-83],[-3,-175],[-3,-174]],[[5012,2605],[-200,5],[-67,3],[-29,1]],[[2901,9041],[209,-8],[202,0],[210,2],[206,-5]],[[3728,9030],[0,-205],[1,-208]],[[3729,8617],[-1,-207]],[[3728,8410],[-206,4],[-141,-3],[-70,-1],[-208,4]],[[3103,8414],[-207,3]],[[2896,8417],[4,207],[0,69],[1,140],[0,105]],[[3300,9863],[208,-1],[211,-2]],[[3719,9860],[0,-35],[-1,-172],[1,-35],[4,-171]],[[3723,9447],[3,-208],[2,-154]],[[3728,9085],[0,-55]],[[2877,9627],[4,242]],[[2881,9869],[209,-5],[210,-1]],[[2358,4914],[101,-3],[102,-3],[202,-7],[74,-3],[-7,-55],[35,-2],[20,19],[9,41],[37,-16],[38,10],[70,20],[23,-38],[44,-3],[18,-20],[50,10]],[[3161,4541],[-7,-139],[-8,-207],[9,-1],[-9,-276]],[[3146,3918],[-168,9],[0,1],[-203,7],[-201,6],[-204,5],[-231,5]],[[2139,3951],[0,282],[3,205],[3,206],[1,276]],[[2146,4920],[212,-6]],[[4200,4951],[169,-7],[103,-5],[60,-3],[177,-4],[101,-3],[202,-3]],[[5012,4926],[-7,-174],[-6,-207]],[[4999,4545],[-204,4],[-2,-35],[-7,-173],[-1,-34]],[[4785,4307],[-173,4],[-167,6],[-1,0],[-187,9],[-17,0],[-83,3],[-87,3],[2,35]],[[7623,2721],[-2,-198],[0,-13]],[[7621,2510],[-199,2],[-67,1],[-68,1],[-169,6],[-99,6],[-101,1],[-99,1]],[[6517,3521],[0,2],[5,311]],[[6522,3834],[168,1],[137,-3],[102,-2]],[[6929,3830],[174,-5],[234,-4]],[[7337,3821],[100,0],[0,-35],[0,-173],[0,-209],[200,-3]],[[7637,3401],[-1,-208],[-1,-207],[-7,-1],[-5,-264]],[[7450,4904],[214,-6],[3,245]],[[7667,5143],[178,-2]],[[7845,5141],[17,-1],[-1,-246],[-1,-192],[0,-16],[-1,-101],[-4,-311]],[[7855,4274],[-202,2],[-311,3],[-4,-207],[-1,-251]],[[6929,3830],[2,248],[4,69],[3,138],[3,208],[3,309]],[[6944,4802],[102,-2],[15,63],[30,13],[12,-26],[75,49],[172,2],[100,3]],[[4213,6990],[1,34]],[[4214,7024],[207,-10],[34,-1],[171,-7]],[[4626,7006],[203,-8],[108,-1],[102,-8]],[[5039,6989],[-3,-105],[-6,-207],[-7,-209],[-1,-39]],[[5022,6429],[-7,-172],[-7,-217]],[[5008,6040],[-207,10],[-206,3],[-2,-69],[-204,7],[-205,7]],[[6776,1903],[-3,-76],[-4,-196],[-1,-81],[-4,-174],[-3,-177]],[[6761,1199],[-258,-1],[-205,-2],[-207,3],[-250,-2],[-287,0]],[[5554,1197],[6,302],[0,2],[4,207],[4,223]],[[5012,2605],[133,-2],[167,-6],[0,-35]],[[5301,1939],[-101,3],[-34,1],[-166,4],[-139,3],[-66,2],[-225,5]],[[4570,1957],[-70,1],[1,70],[3,139],[2,104],[1,63],[1,42],[-58,1],[-111,1],[-134,1],[-32,1],[-102,2],[-67,2]],[[4004,2384],[1,174],[1,70]],[[2852,10907],[211,1],[213,4],[212,5],[212,3]],[[3700,10920],[-1,-251],[18,1],[2,-220],[1,-35],[0,-174],[0,-68]],[[3720,10173],[0,-39],[0,-101],[-1,-173]],[[2881,9869],[1,70],[0,104],[1,208],[3,208]],[[4618,8627],[-266,-1],[-208,-3],[-208,-4],[-207,-2]],[[3723,9447],[258,8],[14,0],[209,5],[86,2],[173,4]],[[3728,7997],[0,206],[0,207]],[[4939,8075],[-2,0],[-36,-15],[-27,3],[-22,20],[-23,42],[-47,14],[-21,-21],[20,-48],[-4,-38],[-27,-32],[-27,-50],[-64,15],[-40,-62],[-28,-6],[-73,1],[-22,-30],[1,-24],[27,-51],[-8,-37],[-64,-40],[-63,-15],[-25,19],[20,46],[-5,26],[-22,7],[-46,1],[-39,57],[-22,1]],[[4250,7858],[-24,-18],[-12,-40],[16,-94],[-23,-26],[-81,-6],[-35,11],[-41,48],[-20,4],[-88,8],[-34,-23],[-37,-11],[-34,-51],[-42,-6],[-66,0]],[[3729,7654],[-1,343]],[[7089,10987],[205,10],[191,9],[31,-44],[43,-28],[-1,-60],[14,-12],[105,-23],[12,-11],[-6,-52],[9,-29],[28,-17],[28,-25],[12,-39],[31,-24],[65,-5],[8,-25],[-17,-18],[27,-23],[-11,-49],[59,-18],[23,-51],[28,9],[24,-24],[20,26],[41,-19],[-47,-36],[-32,-49],[-18,-60],[-39,-93],[4,-45],[-10,-22],[-2,-4]],[[7914,10136],[-208,5],[-210,6],[-108,4],[-104,2],[-210,4]],[[7074,10157],[2,103]],[[7074,10157],[-1,-104],[8,0],[-4,-145],[-1,-71],[-2,-172],[0,-35],[-3,-207]],[[7071,9423],[-205,4],[-105,4],[-106,4],[-204,-5]],[[6345,9632],[-2,207],[1,3],[-2,216],[-4,0],[2,207]],[[7071,9423],[208,-3]],[[7279,9420],[-1,-83],[-4,-163],[-1,-81],[-3,-121],[-3,-242]],[[7267,8730],[-209,2],[-140,2],[-138,3],[-34,1],[-105,2],[-3,-140],[-208,3]],[[4454,9622],[9,0]],[[3720,10173],[206,0],[283,2],[244,3]],[[4453,10178],[1,-139],[0,-34],[0,-174],[0,-209]],[[2167,10259],[8,206]],[[2162,9637],[-2,0],[1,207]],[[2161,9844],[1,105],[3,112],[1,129],[1,69]],[[2896,8417],[-4,-173]],[[2892,8244],[-205,2],[-69,0],[-193,0],[-17,0],[-238,1]],[[2170,8424],[0,24],[-2,182],[0,69],[0,139],[0,103]],[[1436,9466],[-14,30],[2,41],[-13,10],[5,92],[-14,6],[-8,23],[-31,-15],[-4,33],[-36,15],[-1,21],[29,8],[1,124]],[[1352,9854],[198,-3],[70,-1],[111,-2],[98,-2],[72,0],[260,-2]],[[2167,9114],[-231,2],[-54,1],[-222,0]],[[1660,9117],[-8,19],[-22,13],[-45,4],[-47,49],[27,70],[-30,29],[-28,8],[-63,-9]],[[1444,9300],[0,41],[-23,30],[31,36],[-16,59]],[[10041,3924],[238,-2],[134,1]],[[10413,3923],[0,-106]],[[10413,3817],[15,-134],[-6,-106],[-4,-37],[-3,-295],[1,-35],[-1,-73],[-133,7]],[[10282,3144],[-35,3],[-166,-2],[-37,-2],[-197,4],[-180,4]],[[9667,3151],[3,212],[3,250],[0,30],[-1,177],[22,2],[1,106]],[[9695,3928],[150,-3],[196,-1]],[[2148,5915],[188,-4],[6,-1],[200,-5],[2,0],[161,-5],[27,-29],[14,15],[60,-36],[14,13],[42,4],[36,-16],[57,-11],[36,6],[45,13],[27,-5],[58,9],[40,-21]],[[2146,4920],[0,138],[2,240],[0,225],[-1,207],[1,185]],[[1903,10908],[210,-3]],[[1352,9854],[-24,14],[-14,54],[0,41],[-14,9],[-5,38],[18,24],[-5,54],[16,25],[-29,11],[4,41],[-167,1],[-35,1]],[[1057,10922],[334,-5],[232,-4],[280,-5]],[[5408,3754],[4,186],[1,24],[4,148],[-25,1],[3,104],[0,1],[0,138],[5,172]],[[5400,4528],[312,-5],[101,-2],[21,-15],[12,-54],[25,-34],[2,-22],[27,-29],[26,-10],[25,-50],[34,-2],[14,22],[34,-1],[22,40],[39,3],[51,-11],[7,27],[44,40],[30,16]],[[6226,4441],[-8,-345],[4,-1],[199,-103],[102,-53],[-1,-105]],[[5713,3541],[-307,6],[-2,0]],[[5404,3547],[3,138],[1,69]],[[4004,2384],[-2,-174]],[[4002,2210],[-134,4],[-133,4],[-134,2],[-101,2],[-33,1],[-134,4],[-167,4]],[[3166,2231],[0,18],[3,120],[4,139]],[[3173,2508],[1,70],[3,173],[2,69],[5,174],[1,91]],[[3185,3085],[180,-5],[1,0],[184,-3],[18,-1],[182,-4],[22,-1],[203,-5]],[[3380,3774],[203,-2],[118,-4],[90,-4],[202,-6]],[[3993,3758],[-4,-138],[0,-1],[-4,-138],[-2,-69]],[[3185,3085],[-58,2],[3,139]],[[3130,3226],[3,69],[4,207],[4,209],[2,69]],[[3143,3780],[237,-6]],[[4780,4168],[5,139]],[[4999,4545],[167,-8],[234,-9]],[[5404,3547],[-199,4],[-102,2],[-103,2],[-3,-172]],[[4795,3388],[3,173],[3,104],[2,103],[3,138],[3,96],[3,131],[-33,0],[1,35]],[[10939,3577],[1,0],[2,245]],[[10942,3822],[82,1],[27,-14],[43,-7],[65,4],[16,21],[26,-17],[18,12],[62,-35],[6,12],[18,21],[26,-1],[46,-23],[41,9],[49,-47],[41,10],[22,-23],[40,-2]],[[11570,3743],[10,-73],[30,-54],[15,-45],[38,-66],[48,-52],[21,-42],[21,-71],[1,-39],[-13,-67],[-13,-19],[-71,-15],[-31,-17],[-38,-49],[-12,-60],[30,-52],[25,-29]],[[11631,2993],[-27,-10],[-79,0],[0,-17],[-69,0],[0,-17],[-69,0],[0,-35],[-54,0],[0,-29],[-33,0],[-34,-18],[0,-35],[-33,0],[0,-69],[-33,0],[0,-34],[-68,0],[-13,-35]],[[11119,2694],[-187,0]],[[10932,2694],[-1,139],[0,82],[8,72],[1,147],[-1,141],[0,79],[0,223]],[[4227,7336],[-2,-69],[-5,-103],[-6,-140]],[[3071,6963],[2,104],[5,104],[7,208],[3,123]],[[3088,7502],[15,-10],[64,-12],[70,49],[-20,54],[12,34],[90,34],[34,-33],[-2,-21],[-38,-35],[-10,-38],[18,-17],[33,-5],[24,22],[15,64],[26,12],[49,0],[51,51],[43,21],[56,-3],[56,-30],[55,15]],[[4250,7858],[-16,-349],[-7,-173]],[[3146,3918],[-3,-138]],[[3130,3226],[-169,5],[-203,6],[-51,2],[-152,4],[0,1],[-201,9]],[[2354,3253],[-215,9]],[[2139,3262],[1,270],[0,213],[-1,206]],[[5717,10362],[102,1],[210,3],[89,0],[218,3]],[[5399,9632],[0,208],[0,1],[1,207],[0,208],[0,104]],[[5400,10360],[207,0],[110,2]],[[6886,6109],[-59,0],[-48,7],[-53,18],[-56,29],[-55,44],[-6,55],[-14,34],[-20,14]],[[6575,6310],[4,104],[4,66],[44,27],[-5,21],[21,21],[17,35],[25,33],[4,36],[-1,32],[45,32],[-33,33],[9,79],[-20,28],[2,36],[-11,46],[16,17],[5,61],[10,90],[19,34],[-3,33],[14,37],[-9,26],[8,77],[39,-1]],[[6779,7313],[36,0],[212,-5],[73,0],[136,-1],[110,-2],[108,-2],[207,-2]],[[7661,7301],[-3,-74],[-5,-177],[-1,-16],[-9,-301],[0,-1],[-7,-279]],[[7636,6453],[-34,-3],[-45,12],[-78,-3],[-51,-49],[-114,-12],[-79,-33],[-33,-32],[-22,-45],[-93,-88],[-70,-23],[-50,-39]],[[6967,6138],[-81,-29]],[[9429,2218],[300,1],[33,0],[270,-2],[72,-3],[102,-6]],[[10206,2208],[19,-58],[-9,-67],[30,-17],[13,-30],[25,-17],[-15,-25],[15,-42],[32,-22],[-3,-67],[30,-37],[22,-34],[27,-59],[14,-55],[19,-15],[-16,-39],[22,-23],[-18,-27],[15,-33],[-18,-28]],[[10282,1197],[-396,1],[-66,0],[-202,0]],[[9618,1198],[3,223],[-34,1],[1,51],[0,52],[1,104],[-67,1],[1,207],[0,106],[-65,1]],[[9458,1944],[2,101],[1,70],[-34,0],[2,103]],[[6420,8373],[3,103],[4,127]],[[7267,8730],[243,-2]],[[7510,8728],[-1,-139],[8,-1],[-2,-168],[-2,-62],[-4,-181],[-4,-209]],[[7505,7968],[-256,-3],[-208,5],[-244,3],[-35,1],[-352,15]],[[6410,7989],[3,106],[2,69],[2,86],[3,123]],[[12229,1582],[-41,-44],[-18,-29],[-10,-65],[-20,-51],[-25,-26],[-58,-10],[-18,9],[-49,59],[-35,63],[-26,29]],[[11929,1517],[0,30],[-34,17],[0,35],[-34,18],[-16,34],[-1,35],[-33,0],[-1,34],[-16,30],[-51,39],[-16,34],[-17,17],[1,51],[-33,0],[-1,34],[-15,34],[-21,0],[0,36],[-35,0],[0,36],[-32,0],[-1,52]],[[11573,2083],[34,18],[0,69],[33,1],[34,-1],[0,70],[66,0],[0,35],[34,0],[0,35],[67,0],[1,70],[51,18],[0,18],[64,-1]],[[11957,2415],[38,-40],[25,-8],[23,18],[16,46],[-5,18],[-33,31],[-43,21],[-18,31],[6,28],[88,-14],[10,19],[38,-83],[54,-41],[12,-19],[6,-53],[18,-39],[29,-7],[76,31],[36,-16],[18,-29],[-2,-49],[-40,-155],[-29,-75],[-29,-2],[-37,-16],[-10,-20],[3,-58],[40,-43],[50,-3],[22,-29],[-17,-57],[-90,14],[-43,-43],[-3,-56],[56,-65],[7,-70]],[[2291,7506],[27,10],[47,3],[20,-12],[43,-60],[39,25],[71,81],[4,24],[-16,45],[35,-1],[21,-55],[34,-11],[41,36],[29,43],[15,54],[17,24],[28,13],[63,-2],[23,-10],[47,-56],[10,-3]],[[2889,7654],[72,16],[6,-22],[-31,-50],[19,-13],[55,-7],[32,-15],[46,-61]],[[3062,6763],[-207,4],[-69,0],[-36,0],[-207,9],[-58,2],[-147,7],[-36,3],[-145,8]],[[2157,6796],[-1,321],[2,314]],[[2158,7431],[18,-9],[89,50],[26,34]],[[3173,2508],[-219,7],[-50,1],[-169,4],[-203,3],[-34,0],[-168,2],[-191,4]],[[2139,2529],[-1,246],[1,243],[0,244]],[[3999,1966],[72,-1],[-2,-97],[-6,-206],[-2,-70],[-5,-185],[-4,-208]],[[4052,1199],[-199,1],[-264,-1],[-299,0],[-150,0]],[[3155,1793],[5,155],[1,111],[1,34],[4,138]],[[4002,2210],[0,-16],[-2,-107],[-1,-121]],[[6006,6843],[-82,-204],[-42,-104],[-40,-103],[-1,-34],[-202,7],[0,2],[-210,0]],[[5429,6407],[-68,1],[-103,3],[-34,0],[-5,1],[-16,1],[-181,16]],[[5039,6989],[5,106],[20,21],[190,198]],[[5254,7314],[37,-103],[22,-24],[49,-25],[26,-32],[27,-15],[34,-5],[69,-16],[33,0],[36,17],[66,12],[48,-20],[50,1],[36,-1],[109,-20],[55,7]],[[5951,7090],[33,-40],[46,-37],[31,-38]],[[6061,6975],[-55,-132]],[[2148,5915],[1,210],[3,255],[3,210],[2,206]],[[9365,2360],[0,34],[-33,1],[2,117],[-92,2]],[[9242,2514],[1,137],[0,71],[41,0],[2,69],[35,-1],[4,104],[-1,146]],[[9324,3040],[136,8],[36,-6],[170,1],[1,108]],[[10282,3144],[-3,-188],[-2,-147],[-5,-176],[0,-33],[208,-2],[-1,-106]],[[10479,2492],[-69,0],[-2,-81],[-34,1],[-1,-35],[-33,1],[-1,-35],[-33,0],[-1,-34],[-33,0],[-1,-69],[-34,1],[0,-34],[-31,1]],[[9429,2218],[-34,2],[1,36],[2,68],[-34,1],[1,35]],[[8043,3390],[-304,9],[-26,0],[-76,2]],[[7855,4274],[408,-4],[-4,-208],[291,-6]],[[8550,4056],[-3,-261]],[[8547,3795],[-107,2],[-184,9],[-3,-209],[191,-7],[-2,-207]],[[8442,3383],[-170,4],[-229,3]],[[1241,8431],[-20,49],[12,48],[33,17],[24,-10],[36,9],[20,50],[-15,41],[9,45],[40,66],[18,18],[48,9],[29,11],[15,56],[-4,65],[28,32],[30,-9],[39,-31],[29,-11],[50,15],[23,30],[4,48],[-12,20],[-26,-1],[-33,-23],[-32,-1],[-33,30],[16,38],[61,4],[30,37],[0,34]],[[4977,10465],[-206,-3],[-317,-6]],[[4454,10456],[0,212],[-14,0],[0,259]],[[4440,10927],[315,3],[212,6],[210,7],[212,2],[210,2],[62,2]],[[5661,10949],[23,-21],[-16,-57],[51,8],[-40,-66],[48,-22],[-11,-20],[14,-46],[-35,-20],[-9,-34],[-14,-29],[-1,-36],[29,-55],[42,-30],[-28,-38],[-1,-18],[7,-25],[-3,-78]],[[5400,10360],[1,103],[-210,-2],[-107,2],[-107,2]],[[3700,10920],[280,3],[138,4],[110,-1],[212,1]],[[4454,10456],[-1,-34],[0,-174],[0,-70]],[[8418,6256],[47,-17],[13,-6],[128,-31],[85,27],[40,-2],[43,-36],[27,-57],[47,-34],[52,-18]],[[8900,6082],[7,-6],[69,-26],[32,7],[61,40],[43,20],[68,55],[73,22],[32,38],[10,35],[34,34]],[[9329,6301],[-3,-249],[-4,-163]],[[9322,5889],[-2,-121],[-34,-204],[-31,-191],[-14,-110]],[[9241,5263],[-285,3],[-67,3],[-36,-5],[-196,-1]],[[8657,5263],[-192,0],[-207,0],[-104,0],[0,14]],[[8154,5277],[3,215],[-4,287],[0,34],[-1,283],[1,72],[-2,276]],[[8151,6444],[51,-5],[25,24],[44,-18],[82,-79],[42,-28],[18,-29],[5,-53]],[[9329,6301],[40,13],[24,37],[35,12],[8,40],[22,12],[70,6],[28,-15],[78,-5],[56,16],[13,25],[-6,67],[22,23],[29,17],[19,11],[25,38],[17,64],[60,87],[47,3],[61,-16],[41,18],[21,29],[23,97],[30,21],[40,-8],[52,-55],[27,-30],[112,-74],[41,-2],[27,20],[32,2],[27,-20],[17,-37]],[[10467,6697],[-10,-18],[-81,-61]],[[10376,6618],[-32,5],[-4,-32],[-66,-74],[-33,-16],[-37,-35],[-29,-46],[-42,-69],[-38,-146],[4,-35],[36,-53],[18,-16],[27,-17],[3,-23],[25,-16]],[[10208,6045],[-32,-108],[-19,-103],[-19,-40],[-84,-94]],[[10054,5700],[-13,43],[3,28],[-4,27],[2,18],[10,9],[11,20],[0,13],[-6,4],[-27,7],[-13,-4],[-56,-14],[-34,6],[-10,23],[-13,37],[26,12],[5,42],[-130,1],[-69,0],[-140,0],[-27,-52],[-20,-20],[-37,35],[-37,4],[-13,-20],[12,-53],[-45,-26],[-32,60],[-64,27],[-11,-38]],[[7937,7505],[140,-5]],[[8077,7500],[275,-7]],[[8352,7493],[-4,-166],[-1,-79],[-2,-105]],[[8345,7143],[1,-87],[-3,-194],[1,-74],[-69,1],[-210,3],[-2,-35],[-4,-288]],[[8059,6469],[-72,-9],[-51,17],[-21,-9],[-11,-35],[-61,-31],[-21,-13],[-75,14],[-70,44],[-28,7]],[[7649,6454],[-13,-1]],[[7661,7301],[8,212],[136,-5],[132,-3]],[[7641,5465],[1,141],[1,214],[1,49],[1,201],[1,34],[3,350]],[[8059,6469],[44,-5],[48,-20]],[[8154,5277],[-311,3],[2,-139]],[[7667,5143],[-26,0],[0,213],[0,109]],[[9453,7003],[8,-22],[39,-39],[28,-47],[77,-47],[31,0],[42,14],[50,57],[18,9],[37,56],[9,44],[19,34],[39,21],[83,-12],[43,-17],[136,-75],[48,0],[62,-11],[50,-29],[47,-47],[58,-26],[98,-65],[8,-28],[-16,-76]],[[8900,6082],[2,347],[4,296],[5,127]],[[8911,6852],[2,54],[32,-16],[60,10],[17,-10],[63,3],[69,-21],[31,16],[11,60],[49,27],[50,2],[15,17],[34,-49],[61,58],[48,0]],[[5394,7644],[-30,-38],[-40,-27],[-15,-23],[-5,-51],[-27,-33],[-36,-12],[-5,-18],[-2,-27],[21,-18],[46,-9],[3,-27],[-50,-47]],[[5412,7699],[-18,-55]],[[4570,1957],[-3,-103],[-9,-169],[-1,-82],[-3,-172],[-5,-233]],[[4549,1198],[-300,1],[-197,0]],[[8050,7710],[-27,210]],[[8023,7920],[-41,314],[134,100],[39,24],[159,121]],[[8314,8479],[143,107],[48,0]],[[8505,8586],[17,-79],[38,-46],[88,-17],[47,-85],[20,-20],[2,-32],[7,-29],[39,-49],[83,-61],[81,-36],[29,-37],[48,-27],[27,-32],[99,-64],[43,-48],[43,-26],[78,-105],[45,-34],[10,-65]],[[9349,7694],[-123,0],[-301,2],[-213,1],[-143,4],[-73,1],[-1,-34],[-4,-176],[-139,1]],[[8077,7500],[-27,210]],[[7581,1629],[4,207],[1,52],[27,-1],[2,104],[1,101],[0,36]],[[7616,2128],[270,-4],[98,-3],[34,1],[98,-1],[101,0],[154,-1],[51,-3]],[[8422,2117],[-4,-139],[202,-5]],[[8620,1973],[-7,-104],[-3,-117],[-3,-207],[-2,-70],[-5,-279]],[[8600,1196],[-85,0],[-287,0],[-227,0],[-160,4],[-251,1]],[[7590,1201],[1,106],[-1,112],[-11,37],[2,173]],[[8620,1973],[167,-3],[33,-5],[113,-6],[89,-11],[267,-3],[169,-1]],[[9618,1198],[-216,0],[-203,0],[-113,0],[-142,0],[-141,-1],[-203,-1]],[[11929,1517],[-70,-17],[-19,-22],[-13,-77],[-24,-57],[-6,-41],[-34,-103],[-36,-59],[-30,-31],[-44,-9],[-26,19],[-6,25],[14,45],[33,63],[6,35],[-15,57],[-13,23],[-87,27],[-46,-9],[-33,-48],[-2,-23],[20,-52],[41,-68],[29,-38],[6,-34],[-14,-37],[-33,-39],[5,-35],[52,-84],[8,-27],[-17,-60],[-48,-28]],[[11527,813],[0,55],[-72,55],[-16,50],[-34,17],[-76,-29],[-51,8],[-30,34],[-55,25],[-34,-12],[-4,-42],[-18,-47],[-23,4],[-142,1],[-92,-1],[-124,6]],[[10761,1510],[73,-2],[168,-2],[235,0],[1,0],[-2,210],[2,99],[-7,243],[24,1]],[[11255,2059],[100,3],[26,1],[35,12],[71,7],[86,1]],[[6779,7313],[6,211],[4,208],[-173,6],[-215,10]],[[6401,7748],[9,241]],[[7505,7968],[-1,-34],[174,-1],[1,0],[232,-8],[112,-5]],[[10479,2492],[36,-1],[178,-2],[-1,35],[68,-1],[-1,174],[173,-3]],[[11119,2694],[-19,-54],[-21,-37],[42,-91],[14,-13],[4,-32],[18,-24],[44,-73],[-3,-34],[14,-25],[0,-31],[28,-17],[20,-31],[-9,-77],[13,-36],[-19,-25],[10,-35]],[[2889,7654],[1,139],[0,205],[1,107],[1,139]],[[6401,7748],[-214,5]],[[6187,7753],[-86,29],[-153,53],[-17,5],[-154,52],[-103,35]],[[2138,1975],[0,243],[1,205],[0,106]],[[2138,1837],[0,138]],[[7914,10136],[-17,-29],[3,-91],[-15,-41],[9,-56],[-4,-70],[13,-70],[25,-99],[-10,-50],[99,-203],[11,-14]],[[8028,9413],[-336,4],[-315,2],[-98,1]],[[7621,2510],[-1,-174],[-1,-36],[-3,-172]],[[7590,1201],[-305,-2],[-218,-1],[-306,1]],[[6640,4816],[8,345],[-31,1],[4,311]],[[6621,5473],[309,-8],[268,3],[40,7],[-1,2],[162,-4],[34,-8],[208,0]],[[6944,4802],[-100,2],[-204,12]],[[8422,2117],[0,35],[10,447],[199,-5],[13,6],[56,6],[11,11],[90,5]],[[8801,2622],[100,4],[-1,-105],[132,-3],[6,0],[204,-4]],[[8866,4155],[201,-12],[98,3],[4,1],[149,4],[173,-6]],[[9491,4145],[-5,-215],[0,-4],[175,0],[34,2]],[[9324,3040],[-34,-3],[7,245],[-43,2],[1,64],[3,250],[4,233],[-41,-2],[-166,1],[-196,3],[-211,-39],[-67,1],[-34,0]],[[8550,4056],[12,-1],[1,104],[86,-2]],[[8649,4157],[184,-3],[33,4],[0,-3]],[[11527,813],[-68,13],[-54,-4],[-17,-42],[15,-33],[62,-50],[79,-42],[2,-43],[-43,-3],[-55,-28],[-44,0],[-76,27],[-47,-6],[-30,10],[-21,-30],[37,-48],[145,-116],[27,-50],[-3,-55],[-50,-40],[-84,-34],[-25,-32],[-14,-116],[-9,-32],[-27,-46],[-117,-1],[-166,-2],[-184,-2]],[[10621,4235],[64,117],[114,127]],[[10799,4479],[67,-12],[55,42],[51,43],[86,-62],[4,-48],[104,-30],[19,-28],[50,-44],[61,-40],[17,-32],[-3,-30],[-6,-52],[29,-16],[60,10],[8,-21],[30,-19],[25,-46],[31,-15],[75,-21],[26,-31],[-11,-105],[21,-39],[52,-62],[2,-31],[-31,-14],[-42,11],[-9,-44]],[[10942,3822],[-155,-2],[-91,-1],[-283,-2]],[[10413,3923],[67,71]],[[10480,3994],[34,58],[107,183]],[[3993,3758],[1,35],[6,208]],[[4000,4001],[5,160],[-43,2],[5,104],[3,103]],[[9495,4480],[-2,-219],[-1,-46],[-1,-70]],[[8649,4157],[7,312],[3,208],[1,103],[-2,277],[-1,206]],[[9241,5263],[125,-164],[11,-15],[47,-62],[7,-38],[69,-25]],[[9500,4959],[-1,-57],[-1,-209],[0,-8],[-3,-205]],[[9928,4579],[-93,-91],[73,-71],[162,-164],[43,-46],[201,-217],[85,71],[81,-67]],[[9500,4959],[50,-11],[-15,-75],[16,-56],[-29,-22],[83,-10],[170,52],[35,11],[105,30]],[[9915,4878],[172,-145],[-108,-104],[-51,-50]],[[8606,2966],[0,34],[-67,1],[1,25],[1,113],[-33,0],[1,243],[-67,1]],[[8801,2622],[1,114],[-33,-8],[1,69],[-67,-16],[0,36],[-33,-8],[1,69],[-70,-9],[5,97]],[[6187,7753],[-83,-204],[-83,-205],[-44,-101],[-34,-75],[-14,-55],[22,-23]],[[5554,1197],[-300,0],[-147,0],[-363,0],[-195,1]],[[7889,8794],[-103,0],[-102,1],[-174,1],[0,-68]],[[8028,9413],[25,-29],[2,-43],[-42,-51],[-8,-37],[14,-52],[20,-44],[96,-63],[30,-63],[-8,-29],[-8,-96],[30,-38],[88,-76]],[[8267,8792],[-128,2],[-78,0],[-172,0]],[[1444,9300],[-47,-1],[-17,-62],[-18,-14],[-81,-9],[-87,30],[-23,18],[-6,48],[-29,12],[-40,-17],[-45,20],[8,62],[-35,24],[-39,1],[-30,24],[-23,35],[-60,35],[-11,35],[-7,25],[-45,23],[-19,22],[-32,8],[-35,-11],[-37,8],[-20,19],[-15,49],[22,36],[-1,42],[25,32],[7,30],[-10,21],[-38,10],[-22,18],[-10,49],[-45,25],[-39,49],[-1,26],[23,65],[-14,35],[-30,16],[-56,4],[-57,32]],[[6621,5473],[3,104]],[[6624,5577],[2,84],[23,18],[37,-4],[51,19],[33,40],[-17,44],[-46,26],[-21,30],[-15,55],[28,19],[29,-11],[40,-30],[64,19],[71,3],[42,23],[23,44],[-31,70],[-7,33],[6,34],[31,45]],[[2158,7431],[-2,10],[34,50],[-1,38],[-20,12]],[[8345,7143],[140,-2],[-1,-143],[146,0],[-1,-69],[-1,-72],[70,0],[213,-5]],[[5700,5929],[-125,123],[-46,46],[-104,101],[4,208]],[[6061,6975],[45,-49],[-7,-66],[39,-33],[22,-52],[24,-32],[28,-14],[36,2],[24,-11],[7,-25],[-19,-58],[-26,-15],[-8,-24],[12,-44],[15,-16]],[[6253,6538],[-9,-34],[-92,-370],[-17,-70],[-68,-267]],[[6067,5797],[-94,2],[-147,5]],[[5826,5804],[-126,125]],[[5661,10949],[287,7],[160,6],[226,5]],[[9998,5572],[-3,-25],[-2,-98],[13,-80],[21,-77],[39,-62],[22,-20],[59,-27],[29,-30],[41,-71]],[[10217,5082],[-17,-48],[-37,-11],[-21,-33],[-67,12],[-160,-124]],[[10054,5700],[-17,-23],[-39,-105]],[[10474,4846],[37,-27],[68,-8],[11,-26],[35,-19],[44,-60],[21,-17],[34,-1],[68,18],[31,-38],[-41,-33],[-23,-1],[-28,-32],[20,-56],[22,-47],[26,-20]],[[10217,5082],[18,-37],[45,-43],[86,-59],[25,12],[52,-30],[8,-51],[23,-28]],[[6575,6310],[-77,7],[-25,29],[-61,26],[-91,24],[-6,30],[33,31],[-4,30],[-27,30],[-31,9],[-33,12]],[[6228,5590],[195,-11],[26,5],[71,-38],[32,12],[16,19],[56,0]],[[6640,4816],[-70,1],[-338,10]],[[6232,4827],[-203,3],[0,35],[-34,1],[1,34],[-35,1],[1,34],[-34,7],[1,64],[-34,0],[-16,35],[1,69],[-17,0],[1,74],[-67,2],[0,34],[2,65],[-66,-1],[-37,22]],[[5696,5306],[5,124],[6,177],[104,-1],[6,198],[9,0]],[[6067,5797],[165,-6],[5,0],[-9,-201]],[[5696,5306],[-66,-1],[-46,-22],[-15,-54],[-180,9],[-188,9],[12,15],[41,18],[5,22],[-37,21],[-16,-2],[-35,-73],[-20,-22],[-30,-6],[-29,30],[19,28],[43,0],[4,25],[-36,5],[-15,44],[-53,57],[-26,16],[-39,-21]],[[4989,5404],[8,234],[8,172],[-6,21],[9,209]],[[9349,7694],[8,-63],[13,-50],[10,-80],[37,-65],[4,-65],[-55,-75],[2,-24],[49,-108],[16,-42],[1,-52],[19,-67]],[[8267,8792],[56,-45],[65,-85],[45,-36],[57,-24],[15,-16]],[[6226,4441],[2,176],[2,107],[2,103]],[[4989,5404],[-8,-183],[42,-2],[-10,-258],[-1,-35]],[[11631,2993],[52,-2],[4,-25],[-17,-44],[11,-53],[14,-34],[35,-79],[38,-64],[56,-52],[14,-61],[-16,-48],[13,-43],[30,-23],[57,-24],[35,-26]],[[10376,6618],[-31,-61],[-40,-35],[-13,-49],[55,-110],[9,-54],[-2,-33],[-24,-72],[-60,-57],[-62,-102]]],"transform":{"scale":[0.0005403574609343378,0.00041958540795929464],"translate":[-95.773549,35.995683]},"objects":{"cb_2019_29_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"COUNTYFP":"227"}},{"arcs":[[5,6,7,8]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[9,10,11,12,13,14,15]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[16,17,18,19,20]],"type":"Polygon","properties":{"COUNTYFP":"229"}},{"arcs":[[21,22,23,24,25,-18,26,27]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[28,29,30,31,32,33]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[34,35,36,37,38,39,40,41]],"type":"Polygon","properties":{"COUNTYFP":"185"}},{"arcs":[[42,43,44,45,46,-10,47,48]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[49,50,51,52,53,54,55]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[56,57,58,59,60,61]],"type":"Polygon","properties":{"COUNTYFP":"199"}},{"arcs":[[-42,62,63,64,65,66,-35]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[67,68,69,70]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[-65,71,72,73,74]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[75,76,77,78,79]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[-48,-16,80,81,82,83]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[84,85,86,87,88,89,90]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-51,91,92,93,94,95,96]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[97,98,99,100,-92,-50,-56,101,102]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[103,-40,104,105,106,107]],"type":"Polygon","properties":{"COUNTYFP":"217"}},{"arcs":[[-37,108,109,110,111]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[112,113,-27,-17,-21,114,115,116,117,118]],"type":"Polygon","properties":{"COUNTYFP":"215"}},{"arcs":[[119,120,121,122,-117,123,124]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[-75,125,126,127,128,129,130,-66]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[-23,131,132,133]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[-85,-91,134,-25,135,136,137]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-2,138,139,140,-98,-103,141]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-81,-15,142,-93,-101,-100,143]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[144,-94,-143,-14,145,146,147]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-61,148,149,150]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-62,-151,151,152,-44,153,-57]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[-45,-153,154,155,156]],"type":"Polygon","properties":{"COUNTYFP":"205"}},{"arcs":[[157,-82,-144,-99,-141,158,159]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[160,-3,-142,-102,-55,161,162]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[-52,-97,163,164,-79,165]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[166,167,-162,-54,168,169,170]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[171,172,173,174,175,176]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[177,-63,-41,-104,-108,178]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[179,-4,-161,-163,-168,180,-7,181]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[182,183,184,-115,-20,185,186]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-86,-138,187,188,189,190,191]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[192,193,-87,-192,194,195,196]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[197,-111,198,-183,-187,199,-89,200]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[201,202,203,204,205,206]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[207,-126,-74,208,209,-147,210]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-106,211,-196,212,213,214]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[215,-58,-154,-43,-49,-84,216,217]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[218,219,220,221,222,223]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[224,225,-32,226,227,228]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[229,-46,-157,230,231,232,233]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[234,235,236,237]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[238,239,-209,-73,240,241,242]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[-213,-195,-191,243,244,-214]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[245,246,-70,247,-189,248]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[249,250,-129,251,252,253,254]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[-241,-72,-64,-178,255]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[256,257,258,-175,259,260,-225,261]],"type":"Polygon","properties":{"COUNTYFP":"223"}},{"arcs":[[262,-118,-123,263,264,265,266]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-78,267,-169,-53,-166]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[268,269,270,271,-218,272]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[-159,-140,273,-270,274]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[-83,-158,-160,-275,-269,-273,-217]],"type":"Polygon","properties":{"COUNTYFP":"211"}},{"arcs":[[275,276,277,278,279,280,281,282]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[283,284,285,286,287,-278]],"type":"Polygon","properties":{"COUNTYFP":"189"}},{"arcs":[[288,289,290,291,292,293,-222,294]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[295,-293,296,-282,297,-121,298]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[299,-284,-277,300,301]],"type":"Polygon","properties":{"COUNTYFP":"183"}},{"arcs":[[302,-252,-128,-127,-208,-211,-146,-13,303]],"type":"Polygon","properties":{"COUNTYFP":"195"}},{"arcs":[[-249,-188,-137,304,305,-246]],"type":"Polygon","properties":{"COUNTYFP":"209"}},{"arcs":[[-19,-26,-135,-90,-200,-186]],"type":"Polygon","properties":{"COUNTYFP":"225"}},{"arcs":[[306,307,308,309,310,-290,311]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[312,313,314,315,316,317]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[-316,318,-228,319]],"type":"Polygon","properties":{"COUNTYFP":"181"}},{"arcs":[[-236,320,321,-29,-34,322,323]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[-295,-221,324,325,-233,326,-307,-312,-289]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-323,-33,-226,-261,327,-206,328]],"type":"Polygon","properties":{"COUNTYFP":"207"}},{"arcs":[[-164,-96,-95,-145,-148,-210,-240,329]],"type":"Polygon","properties":{"COUNTYFP":"177"}},{"arcs":[[-11,-47,-230,-234,-326,330,331]],"type":"Polygon","properties":{"COUNTYFP":"175"}},{"arcs":[[332,-244,-190,-248,-69,333]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[-150,334,335,-155,-152]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-114,336,-313,-318,337,-132,-22,-28]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[338,339,-299,-120,-125,340]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[-262,-229,-319,-315,341,342,-257]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[343,344,-176,-259,345,-265,346,347]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-30,-322,348]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[349,350,-203,351,-173,352,353]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[-88,-194,354,355,-38,-112,-198,-201]],"type":"Polygon","properties":{"COUNTYFP":"167"}},{"arcs":[[-260,-174,-352,-202,-207,-328]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[356,-344,-348,357,-280,358,359]],"type":"Polygon","properties":{"COUNTYFP":"221"}},{"arcs":[[360,-353,-172,-177,-345,-357,-360,361,362]],"type":"Polygon","properties":{"COUNTYFP":"187"}},{"arcs":[[-281,-358,-347,-264,-122,-298]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[363,-266,-346,-258,-343,364]],"type":"Polygon","properties":{"COUNTYFP":"179"}},{"arcs":[[-337,-113,-119,-263,-267,-364,-365,-342,-314]],"type":"Polygon","properties":{"COUNTYFP":"203"}},{"arcs":[[-12,-332,365,-253,-303,-304]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-105,-39,-356,-355,-193,-197,-212]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-136,-24,-134,366,-305]],"type":"Polygon","properties":{"COUNTYFP":"213"}},{"arcs":[[367,-231,-156,-336,368,369]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[-167,-171,370,-8,-181]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-223,-294,-296,-340,371,372]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[-330,-239,-243,373,-76,-80,-165]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-292,374,-301,-276,-283,-297]],"type":"Polygon","properties":{"COUNTYFP":"219"}},{"arcs":[[375,-250,-255,376,377,378,379]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[380,-59,-216,-272]],"type":"Polygon","properties":{"COUNTYFP":"197"}},{"arcs":[[381,382,-362,-359,-279,-288,383]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[384,-350,-354,-361,-363,-383,385]],"type":"Polygon","properties":{"COUNTYFP":"186"}},{"arcs":[[-325,-220,386,-377,-254,-366,-331]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[387,-372,-339,388,389,390,-379,391]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-391,392,393,-130,-251,-376,-380]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[-375,-291,-311,394,-302]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[-308,-327,-232,-368,-370,395,-309]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[-124,-116,-185,396,-389,-341]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[-109,-36,-67,-131,-394,397]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-324,-329,-205,398,-237]],"type":"Polygon","properties":{"COUNTYFP":"201"}},{"arcs":[[-373,-388,-392,-378,-387,-219,-224]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-390,-397,-184,-199,-110,-398,-393]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-286,399]],"type":"Polygon","properties":{"COUNTYFP":"510"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/mp.topo.json b/app/assets/topojson/states/mp.topo.json new file mode 100755 index 00000000..8f3dba76 --- /dev/null +++ b/app/assets/topojson/states/mp.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[1388,57],[12,37],[114,97],[19,42],[84,94],[83,-6],[173,57],[65,51],[162,80],[122,-6],[156,-38],[11,-35],[-27,-42],[-12,-103],[-97,-51],[-39,17],[-108,-15],[-72,-63],[6,-53],[-57,-32],[-54,-61],[-167,5],[-85,-32],[-5,61],[-26,51],[-76,43],[-45,10],[-40,-29],[-38,-61],[-59,-18]],[[4119,5153],[45,112],[43,20],[36,101],[90,101],[85,63],[64,74],[28,-11],[56,-94],[-13,-81],[24,-55],[-70,-73],[7,-64],[52,-86],[65,-15],[33,-55],[-74,-273],[-9,-54],[-49,-43],[6,-21],[-43,-64],[-79,-7],[-21,87],[19,63],[-32,56],[-52,2],[-31,43],[0,70],[-42,60],[-88,-9],[-34,39],[24,68],[-40,46]],[[3854,4176],[20,41],[192,78],[30,-57],[-90,-72],[-88,-17],[-64,27]],[[4840,5962],[24,23],[31,83],[23,91],[-7,129],[59,-2],[38,44],[40,7],[49,60],[51,40],[56,14],[73,40],[32,50],[78,84],[94,76],[57,-36],[50,-60],[-2,-51],[-31,-29],[-55,12],[-45,-96],[17,-20],[-71,-66],[-38,-18],[-79,-91],[21,-58],[-23,-59],[40,-71],[72,-68],[-33,-50],[-100,-26],[-42,58],[-35,10],[-61,-18],[-17,-34],[-44,-87],[27,-63],[68,-36],[-34,-150],[-75,61],[-126,8],[-61,16],[-44,34],[-53,16],[10,55],[42,96],[3,56],[21,26]],[[6899,10773],[64,118],[18,-15],[-60,-96],[-22,-7]],[[5599,18196],[27,45],[32,3],[48,-34],[3,-47],[-33,-62],[-61,30],[-16,65]],[[5498,19836],[46,91],[98,9],[73,-101],[-14,-71],[-65,-58],[-57,2],[-74,70],[-7,58]],[[5214,14742],[17,39],[71,32],[32,-30],[19,-51],[-32,-75],[-51,21],[-56,64]],[[4870,22375],[17,76],[32,77],[66,56],[60,-2],[107,83],[16,39],[-12,99],[31,61],[-31,50],[-6,71],[79,61],[58,14],[136,-40],[27,-30],[17,-67],[1,-74],[-67,-135],[-130,-4],[-53,-27],[-135,-178],[-23,-63],[-68,-61],[-107,-30],[-15,24]],[[4440,26523],[30,92],[46,62],[46,38],[52,-21],[72,-8],[62,-68],[51,-35],[14,-53],[1,-116],[-40,-17],[-11,-93],[-84,-15],[-53,-72],[-102,92],[-77,142],[-7,72]],[[4416,12812],[30,24],[157,3],[109,-14],[111,10],[68,-18],[64,-41],[5,-46],[-50,-79],[-72,-24],[-274,13],[-62,-20],[-48,44],[-32,62],[-6,86]],[[2967,31707],[21,51],[37,35],[50,0],[48,-31],[16,-77],[-47,-55],[-54,-13],[-65,41],[-6,49]],[[2021,33533],[26,78],[36,-46],[-62,-32]],[[0,36552],[39,55],[56,-46],[-51,-52],[-44,43]]],"transform":{"scale":[0.00016872897865635316,0.0001760108995547299],"translate":[144.886921,14.110571]},"objects":{"cb_2019_69_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0]],"type":"Polygon","properties":{"COUNTYFP":"100"}},{"arcs":[[[1]],[[2]]],"type":"MultiPolygon","properties":{"COUNTYFP":"120"}},{"arcs":[[3]],"type":"Polygon","properties":{"COUNTYFP":"110"}},{"arcs":[[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]]],"type":"MultiPolygon","properties":{"COUNTYFP":"085"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ms.topo.json b/app/assets/topojson/states/ms.topo.json new file mode 100755 index 00000000..f405799e --- /dev/null +++ b/app/assets/topojson/states/ms.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[4175,10389],[-32,0],[-245,-1]],[[3898,10388],[-1,139],[0,173],[-104,-1],[-3,206]],[[3790,10905],[0,112],[-1,418]],[[3789,11435],[209,0],[359,-4],[161,1]],[[4518,11432],[0,-355],[105,0],[0,-57],[1,-236],[1,-180],[0,-148],[104,0]],[[4729,10456],[-1,-207],[0,-1]],[[4728,10248],[-92,48],[-66,18],[-80,6],[-5,-17],[-72,18],[-36,-17],[-62,33],[-40,50],[-100,2]],[[4143,1063],[-1,-264],[-101,1],[0,-35],[-101,1],[1,-104],[-84,1]],[[3857,663],[-52,44],[-17,33],[-35,13],[-50,42],[-23,70],[-28,9],[9,52],[-33,-6],[-32,136],[13,34],[-62,73],[23,70],[-20,19],[35,42],[6,40],[-14,53],[36,70],[59,80],[-1,62],[31,30],[-10,73],[33,10],[24,42],[-23,59],[40,54],[15,85]],[[3781,1952],[146,1]],[[3927,1953],[200,-2],[0,34],[38,0],[62,0],[-1,-35],[50,0],[9,-44],[91,-1],[1,66],[149,0]],[[4526,1971],[16,-22],[0,-216]],[[4542,1733],[0,-71],[-2,-552]],[[4540,1110],[-398,2],[1,-49]],[[3795,10388],[103,0]],[[4728,10248],[-1,-276]],[[4727,9972],[1,-310],[0,-35],[1,-173]],[[4729,9454],[-519,2]],[[4210,9456],[1,69],[-35,0],[-20,0],[-361,4]],[[3795,9529],[3,345],[-5,196],[2,57],[1,111],[-1,150]],[[5730,10488],[35,0],[-1,277],[-1,104]],[[5763,10869],[35,0],[224,-2],[226,-1],[118,0],[91,0]],[[6457,10866],[33,-35],[35,-1],[0,-45],[0,-300],[0,-35],[3,-278]],[[6528,10172],[-54,1],[-295,4],[-69,-1]],[[6110,10176],[1,105],[-244,-1],[-139,0]],[[5728,10280],[2,208]],[[5420,10490],[-70,0],[-207,3],[-106,-1]],[[5037,10492],[0,309],[0,68],[0,35],[1,104],[103,-1],[1,104],[34,0],[0,53],[1,69],[0,201]],[[5177,11434],[381,1]],[[5558,11435],[-1,-289],[0,-36],[139,1],[0,-242],[67,0]],[[5730,10488],[-310,2]],[[5156,478],[-57,-15],[-87,-32],[-168,-73],[-167,-61],[-38,-5],[-1,59],[45,30],[-56,63],[-35,19],[-51,-6]],[[4541,457],[-1,423],[0,21],[0,209]],[[4540,1110],[199,0],[0,70],[167,0],[119,0],[413,0]],[[5438,1180],[2,-614],[24,2]],[[5464,568],[24,-31],[2,-44],[-71,13],[-79,-1],[-73,-5],[-109,-22],[-2,0]],[[5017,81],[1,39],[-1,-39]],[[2583,6721],[-32,4],[-18,-3]],[[2533,6722],[-35,26],[4,36],[-23,31],[-47,-2],[-28,28],[-5,83],[31,20],[68,4],[-3,37],[104,39],[0,73],[-3,319]],[[2596,7416],[28,34],[51,4],[23,49],[-30,53],[-44,28],[281,-96]],[[2905,7488],[71,-24],[415,-142],[23,-8],[325,-108]],[[3739,7206],[-21,-44],[-32,-5],[2,-47],[-36,-35],[-4,-83],[-51,-25],[-22,-122],[-6,-49],[-67,-90],[-35,-56],[0,-48],[-20,-71],[-35,-12],[-48,-76],[-35,-4],[-15,-29]],[[3314,6410],[-261,111],[-470,200]],[[6725,8820],[-40,-354]],[[6685,8466],[-135,0],[-16,-46],[-35,-47],[-60,-49],[-20,10],[-28,2],[-15,-40],[-53,-13],[-97,-5],[-61,-37]],[[6165,8241],[33,71],[-392,0],[-45,0],[0,311]],[[5761,8623],[-1,207],[0,95],[3,323]],[[5763,9248],[0,36],[68,-1],[208,0],[68,0]],[[6107,9283],[278,-4],[389,-2]],[[6774,9277],[-16,-154],[-33,-303]],[[5926,2978],[366,4]],[[6292,2982],[19,-400],[18,-433],[10,-206]],[[6339,1943],[-266,0],[-378,-2],[-159,1]],[[5536,1942],[-13,1],[0,231],[0,117],[0,193],[0,99],[-1,394]],[[5522,2977],[263,1],[141,0]],[[1354,6042],[2,270],[11,30],[35,27],[-1,55],[18,36],[34,118],[0,4],[-1,99],[0,34]],[[1452,6715],[0,213],[106,-5],[311,2]],[[1869,6925],[86,1],[4,-345],[-1,-69]],[[1958,6512],[-98,-104],[-104,-102],[0,-51],[38,-12],[33,23],[46,-13],[-28,-32],[13,-52],[35,-29],[-6,-27],[-49,-15],[-23,22],[-26,-67],[57,-52],[40,-2],[57,-41],[-11,-46],[-49,3],[-9,43],[-46,-64]],[[1828,5894],[-70,0],[-405,2],[1,146]],[[1963,5618],[130,0],[0,-34],[67,1],[0,-58]],[[2160,5527],[-52,-14],[-47,-48],[13,-74],[-5,-61],[-53,-111],[-18,-8],[17,-83],[-110,31],[-27,-11],[-20,-19],[17,-101],[-27,-42],[-28,-91],[-3,-39]],[[1817,4856],[-48,-69],[-39,-8],[-34,-42],[46,-28],[-16,-22],[-98,-36],[-6,43],[-43,0],[7,-68],[-71,-32],[-50,41],[-19,-58],[3,-62],[-57,-4],[-28,26],[-61,15],[-79,41]],[[1224,4593],[37,40],[17,73],[-43,2],[-33,28],[-15,-41],[-7,-78],[-56,23],[-58,-21],[-102,18],[-23,53],[21,99],[60,39],[32,-16],[66,47],[44,-18],[29,53],[24,1],[61,-44],[1,-64],[37,35],[7,78],[21,21],[-26,42],[13,63],[56,-31],[81,72],[39,89],[-22,7],[-29,-35],[-146,29],[-35,39],[21,85],[38,19],[16,52],[-54,40],[-70,-41],[-46,12],[-83,48],[-41,58],[-1,40],[30,61],[15,56],[37,-37],[47,-80],[25,-23],[67,-19],[26,13],[-8,49],[-46,30],[-64,23],[-58,61],[73,47]],[[1199,5690],[156,-1],[1,-391],[24,79],[48,15],[22,-16],[41,11],[20,-17],[45,3],[2,315],[181,-1],[83,-12],[12,116]],[[1834,5791],[59,0],[-1,-70],[68,1],[3,-104]],[[1958,6512],[272,1],[134,1],[1,204],[168,4]],[[3314,6410],[-30,-31],[-28,-77],[-43,-16],[-4,-65],[-39,-124],[-36,-39],[-36,-4],[-34,-52],[-84,-21],[-83,-47],[-38,-36],[-59,7],[-71,-24],[-41,-27],[-52,-11],[-21,-58],[-26,-23],[-90,-25],[-46,-50],[-45,26],[-44,-29]],[[2364,5684],[-30,-62],[-32,-8],[-42,-50],[-40,-9],[-39,-33],[-21,5]],[[1834,5791],[44,15],[9,36],[-51,15],[-8,37]],[[6524,6869],[-33,-341]],[[6491,6528],[-198,-1],[-334,-3],[-136,-1],[-245,-2]],[[5578,6521],[-1,300],[1,288],[0,268]],[[5578,7377],[277,1],[6,0]],[[5861,7378],[220,0],[223,3],[273,0]],[[6577,7381],[-53,-512]],[[3314,6410],[249,1],[-2,13],[217,0]],[[3778,6424],[-1,-596]],[[3777,5828],[-57,-49],[-49,-64]],[[3671,5715],[-151,-8],[-20,-53],[-28,5],[-19,-44],[-64,-69],[-23,-4],[-44,-54],[-38,17],[-64,-43],[-53,-73],[1,-18],[-58,-19],[-10,-39],[18,-43]],[[3118,5270],[-96,0],[-67,2],[-136,0],[-50,0],[0,207],[-405,2],[0,203]],[[2793,10733],[36,55],[25,4]],[[2854,10792],[23,9],[45,73],[72,4],[39,-54],[31,-12],[56,-11],[26,-38],[43,-10],[98,42],[51,3],[-2,26],[58,32],[26,50],[145,1],[17,0],[208,-2]],[[3795,10388],[-358,-2],[-301,1],[-279,1]],[[2857,10388],[-24,44],[-51,60],[6,7],[-14,33],[49,76],[-17,62],[9,40],[-22,23]],[[4578,4504],[1,-270],[2,-211],[7,0],[1,-171]],[[4589,3852],[-76,-6],[-90,-7]],[[4423,3839],[-364,-28],[-130,-10]],[[3929,3801],[-4,149],[0,79],[1,325],[-15,80],[-134,-1]],[[3777,4433],[-2,416],[2,0]],[[3777,4849],[56,4],[204,0],[97,-1],[443,0]],[[4577,4852],[1,-348]],[[3277,4439],[-482,1]],[[2795,4440],[3,108],[-34,19],[10,44],[-12,37],[4,81],[64,20],[60,52],[-7,41],[-37,28],[-2,50],[51,83],[37,-3],[9,28],[-10,25],[18,37],[43,15],[26,29],[33,59],[10,53],[57,24]],[[3671,5715],[85,-440],[21,-116],[0,-310]],[[3777,4433],[-298,1],[-202,5]],[[5536,1942],[0,-139],[0,-69],[-99,1]],[[5437,1735],[-446,-2],[-51,0]],[[4940,1733],[-1,215],[-15,0],[0,155],[1,376],[-1,216],[0,283]],[[4924,2978],[64,-1],[196,-1],[138,0]],[[5322,2976],[200,1]],[[4584,6534],[407,0],[185,-1],[91,-11],[12,-18],[68,1],[32,17]],[[5379,6522],[-1,-311],[-1,-164],[2,-355]],[[5379,5692],[-370,-1],[-37,1],[-26,0],[-359,-1]],[[4587,5691],[-1,366],[0,326],[-2,151]],[[3297,3432],[-1,-80],[-2,-164],[34,-1],[0,-41],[0,-272]],[[3328,2874],[-14,0],[-18,10],[-128,0],[0,-139]],[[3168,2745],[-25,-17],[-57,0],[-18,34],[-34,18],[-265,-1]],[[2769,2779],[-1,138],[-1,188],[0,145],[-1,401]],[[2766,3651],[30,14],[90,19],[104,58],[16,-9],[1,1]],[[3007,3734],[290,22]],[[3297,3756],[0,-324]],[[5842,5693],[-59,0],[-404,-1]],[[5379,6522],[199,-1]],[[6491,6528],[-41,-443],[-39,-390]],[[6411,5695],[-457,-1],[-112,-1]],[[3739,7206],[9,32],[60,71],[25,65],[111,1]],[[3944,7375],[167,0],[72,0],[137,1]],[[4320,7376],[270,-1],[-1,-80],[-1,-74],[-1,-266]],[[4587,6955],[-1,-166],[-2,-255]],[[4584,6534],[-302,-1],[-240,-2],[-54,0],[-211,-1],[1,-106]],[[6685,8466],[-42,-428],[-63,-624],[-3,-33]],[[5861,7378],[-3,278],[-2,243]],[[5856,7899],[122,1],[62,36],[91,37],[14,32],[86,-67],[-34,97],[6,38],[39,44],[-7,20],[-29,20],[-13,68],[-28,16]],[[4214,9231],[1,-224],[0,-70],[0,-180]],[[4215,8757],[-413,-1],[-101,0],[-1,71],[-307,2]],[[3393,8829],[0,180],[-1,64],[2,332],[-12,57]],[[3382,9462],[23,-1],[144,0],[245,-1],[1,69]],[[4210,9456],[4,-225]],[[1817,4856],[6,-167],[14,-253]],[[1837,4436],[3,-53],[5,-115],[-4,-174],[-1,-142],[-32,-34],[-6,-104]],[[1802,3814],[-229,-2],[25,45],[-4,53],[-126,31],[-119,29],[-89,23],[-166,9],[-297,10]],[[797,4012],[26,17],[99,117],[-17,23],[9,60],[47,51],[93,11],[53,31],[28,40],[-38,49],[-98,21],[-32,50],[25,30],[40,-9],[58,-67],[39,5],[-2,69],[81,45],[16,38]],[[5783,4857],[544,5]],[[6327,4862],[-43,-414],[-39,-378]],[[6245,4070],[-293,-88],[-134,-25],[-166,-27],[-265,-20]],[[5387,3910],[-2,221],[-4,387],[-1,336]],[[5380,4854],[403,3]],[[768,2824],[-40,-28],[-40,8],[-75,-50],[-49,-10],[-41,-21],[-50,-7],[-21,-20],[-88,10],[0,-51],[-23,-40],[0,-48],[3,-53],[-36,-34],[-65,-23],[-21,56],[-38,-7],[-30,-26],[-27,-79]],[[127,2401],[-24,41],[-84,61],[-19,51],[32,28],[124,-15],[41,4],[69,29],[19,39],[-2,60],[-77,72],[-2,69],[-37,4],[-18,50],[25,58],[33,22],[32,-100],[32,-48],[73,-13],[13,74],[-55,58],[-26,57],[-9,93],[4,113],[71,-2],[59,22],[82,72],[8,47],[-37,18],[-68,-23],[-55,-3],[-61,61],[0,37],[37,42],[66,-59],[84,-21],[40,21],[10,57],[-8,104],[5,55],[63,88],[93,3]],[[660,3727],[21,-92],[30,-46],[-12,-45],[61,-21],[-5,-39],[36,-9],[35,-34],[99,2],[57,1],[0,-48]],[[982,3396],[-2,-88],[-4,-486],[-2,-52]],[[974,2770],[-28,-2],[-72,21],[-32,41],[-71,-27],[-3,21]],[[1869,6925],[32,2],[12,42],[-23,21],[-14,34],[20,25],[5,98],[11,29],[-47,25],[-57,49],[3,75],[30,13]],[[1841,7338],[316,1],[0,139],[201,1]],[[2358,7479],[-1,-126],[-1,-22],[78,-74],[7,22],[57,-2],[21,32],[-6,57],[24,13],[35,51],[24,-14]],[[3733,1951],[-163,1]],[[3570,1952],[0,173],[-93,-1],[-74,0],[-17,35],[0,52],[-17,51],[-133,-1],[-1,103],[-50,0],[0,104],[0,17],[-17,17],[0,243]],[[3328,2874],[266,-1],[-1,105],[96,-1],[71,0],[166,0]],[[3926,2977],[1,-358],[0,-127],[0,-41],[0,-498]],[[3781,1952],[-48,-1]],[[2795,4440],[-458,0],[-310,0],[-78,-3],[-112,-1]],[[6293,40],[-1,11],[1,-11]],[[5863,138],[-1,-21],[1,21]],[[6298,420],[-1,-46],[-65,-46],[-48,4],[-44,53],[-104,4],[-26,41],[-35,-15],[-15,42],[-38,-31],[-53,5],[-70,-43],[-56,-2],[-35,11],[-125,112],[-61,36],[-32,48],[-26,-25]],[[5438,1180],[0,139]],[[5438,1319],[99,-3],[341,1],[220,0],[266,2]],[[6364,1319],[17,-457],[18,-413],[-12,-59],[-38,22],[-51,8]],[[1371,9357],[307,1],[275,-4],[-2,-312],[7,0]],[[1958,9042],[-4,-534],[-1,-67],[1,-73],[0,-208],[-206,0],[0,-206]],[[1748,7954],[-201,0],[-207,2],[-479,-2]],[[861,7954],[-33,55],[7,28],[104,44],[46,-1],[41,40],[-15,62],[-63,53],[-94,32],[-18,24],[15,51],[30,19],[87,15],[60,-78],[91,-40],[97,37],[9,20],[-33,59],[-42,24],[-42,-22],[-55,-4],[-53,51],[21,133],[52,-29],[105,19],[54,-36],[52,13],[23,37],[-23,35],[-92,38],[-40,59],[-7,63],[118,140],[-18,27],[-115,40],[-19,51],[33,21],[45,2],[58,43],[37,-87],[46,-14],[30,46],[-37,48],[-15,45],[74,-3],[99,14],[21,14],[5,68],[31,58],[-45,36],[-54,-10],[-68,63]],[[1836,2777],[168,-1]],[[2004,2776],[167,1]],[[2171,2777],[0,-300],[1,-184],[0,-347]],[[2172,1946],[-598,-1],[-408,-1]],[[1166,1944],[2,166],[-1,250],[0,256],[-40,17],[-16,68],[-14,8]],[[1097,2709],[17,14],[88,22],[47,27],[60,-25],[8,28],[187,1],[332,1]],[[3531,3772],[197,14]],[[3728,3786],[-1,-391],[41,1],[35,-51],[57,-32],[31,-26],[54,-11],[85,-56],[8,-46],[20,-8],[1,-189]],[[4059,2977],[-133,0]],[[3297,3756],[34,2],[200,14]],[[4958,7166],[39,1],[0,209],[41,0]],[[5038,7376],[369,1],[171,0]],[[4587,6955],[204,1],[1,210],[69,0],[97,0]],[[2769,2779],[-33,0]],[[2736,2779],[-182,-1],[-246,-1],[-137,0]],[[2004,2776],[1,257],[-1,159],[0,207],[-204,-1]],[[1800,3398],[1,208]],[[1801,3606],[343,-1],[127,2],[67,0],[96,3],[1,-36],[68,0],[-2,36],[197,-1],[41,9],[27,33]],[[6826,9765],[-52,-488]],[[6107,9283],[-2,417],[0,50],[5,124],[0,302]],[[6528,10172],[339,-1]],[[6867,10171],[-41,-406]],[[2362,9210],[0,-173]],[[2362,9037],[-274,3],[-130,2]],[[1371,9357],[3,43],[87,64],[30,-10],[59,-49],[34,-9],[48,17],[29,42],[-2,37],[-15,14],[-76,9],[-64,-11],[-55,35],[-33,43],[-7,51],[26,24],[32,-5],[13,-35],[41,-34],[62,-21],[16,47],[14,98],[58,35],[74,-4],[48,61],[-16,59],[-32,27],[-4,42],[22,17],[86,-9],[66,18],[-28,-116],[29,-22],[41,34],[-19,67],[17,48],[87,35],[65,47],[22,29],[5,42],[-33,44],[-12,62],[18,66],[23,29]],[[2130,10318],[333,-240]],[[2463,10078],[-1,-211],[2,-175],[-101,3],[-1,-93],[0,-357]],[[2362,9245],[0,-35]],[[4542,1733],[333,0],[65,0]],[[5437,1735],[0,-311],[1,-105]],[[1181,6721],[171,1],[100,-7]],[[1199,5690],[76,80],[3,30],[-45,57],[-24,-24],[-23,-69],[-58,-16],[-77,-37],[-54,45],[-13,87],[30,24],[38,55],[107,69],[18,45],[-12,13],[-123,37],[-53,-3],[-30,23],[17,69],[-15,13],[6,63],[32,72],[34,29],[44,8],[68,72],[14,36],[-2,54],[-31,40],[-12,78],[-39,30],[-57,-22],[-5,-64],[13,-54],[-27,-58],[-29,-13],[-72,16],[-32,36],[22,93],[64,74],[6,45]],[[958,6723],[223,-2]],[[4425,3428],[2,-451]],[[4427,2977],[-103,0]],[[4324,2977],[-265,0]],[[3728,3786],[201,15]],[[4423,3839],[1,-263],[1,-148]],[[4980,4853],[400,1]],[[5387,3910],[-65,-5]],[[5322,3905],[-267,-20],[-7,0],[-168,-12],[-58,-4],[-233,-17]],[[4577,4852],[403,1]],[[4427,2770],[101,0],[-2,-501],[0,-298]],[[4324,2977],[1,-208],[102,1]],[[5554,9769],[0,-105],[2,-241],[-1,-174]],[[5555,9249],[-469,-1],[-22,0],[-126,-1]],[[4938,9247],[-207,0],[-2,187],[0,20]],[[4727,9972],[303,2],[115,0],[205,-2],[1,-34],[203,0]],[[5554,9938],[1,-35],[-1,-134]],[[3198,11434],[104,-1],[348,0],[139,2]],[[2854,10792],[-3,182],[0,141],[-89,0],[-112,0]],[[2650,11115],[-18,27],[124,84],[11,72],[-10,32],[-92,60],[-25,46],[558,-2]],[[2737,2120],[1,-172]],[[2738,1948],[-566,-2]],[[2736,2779],[-1,-66],[1,-349],[1,-244]],[[6910,10548],[-43,-377]],[[6457,10866],[1,413],[2,157]],[[6460,11436],[321,0],[47,-79],[43,-95],[35,-35],[76,-37],[-19,-191],[-30,-276],[-23,-175]],[[6411,5695],[-42,-425],[-42,-408]],[[5380,4854],[-2,414],[0,1],[-1,379],[2,44]],[[2983,9590],[-1,-138]],[[2982,9452],[-1,-208],[-302,0],[-107,0],[-210,1]],[[2463,10078],[114,1],[78,1],[-5,202],[208,3]],[[2858,10285],[3,-202],[-2,-204],[8,-15],[-1,-77],[54,-38],[63,-46],[0,-95],[0,-18]],[[5174,8105],[0,-74]],[[5174,8031],[-136,0],[-1,-68]],[[5037,7963],[-181,-1],[-91,-25],[-52,-11],[-77,-24],[-53,-26],[-43,-64],[-41,8],[-36,-30]],[[4463,7790],[-247,-2],[0,77],[1,63],[-1,285],[0,24],[0,69]],[[4216,8306],[-1,105]],[[4215,8411],[546,0],[73,1],[0,39]],[[4834,8451],[309,2]],[[5143,8453],[1,-248],[30,0],[0,-100]],[[3777,5828],[0,-136],[306,-2],[201,0],[37,0],[256,1]],[[4577,5691],[0,-423],[0,-1],[0,-415]],[[958,6723],[7,20],[72,44],[2,62],[-49,41],[-43,15],[-58,52],[-1,37],[35,39],[46,-1],[20,-25],[90,2],[33,32],[6,85],[-14,95],[17,2],[64,70],[13,56],[-46,29],[-37,-32],[-27,-84],[-21,19],[-29,81],[-32,46],[0,80],[-1,37],[43,35],[37,56],[51,45],[34,54],[1,39],[-20,23],[-37,-8],[-21,-47],[4,-34],[-36,-58],[-54,-30],[-49,-2],[-49,24],[-35,33],[19,35],[45,-3],[87,31],[27,56],[-14,45],[-76,59],[-26,-27],[16,-80],[-35,-33],[-39,-11],[-56,12],[7,43],[46,27],[50,72],[-9,28],[-55,45]],[[1748,7954],[6,-93],[0,-106],[-7,-33],[0,-175],[1,-208],[93,-1]],[[4753,11434],[150,-2],[274,2]],[[5037,10492],[-308,-1],[0,-35]],[[4518,11432],[235,2]],[[2857,10388],[1,-103]],[[2130,10318],[46,30],[0,61],[-48,57],[-33,68],[8,64],[-11,67],[42,53],[23,11],[32,-37],[-27,-54],[10,-67],[60,-1],[74,69],[31,51],[-7,33],[-39,14],[-69,-11],[-47,13],[-38,45],[11,47],[48,22],[-24,82],[22,33],[43,7],[26,-75],[-41,-38],[4,-52],[37,-19],[62,7],[35,36],[-44,121],[34,72],[-53,90],[0,38],[35,32],[58,-19],[13,-28],[3,-70],[27,-23],[146,68],[57,-39],[14,39]],[[4427,2977],[197,1],[300,0]],[[974,2770],[22,3],[23,-39],[46,-27],[32,2]],[[1166,1944],[-366,1],[-330,-1],[-413,1],[0,14],[68,29],[51,51],[9,36],[-15,38],[-93,82],[-22,29],[9,48],[48,63],[15,66]],[[6278,3283],[14,-301]],[[5322,2976],[1,521],[-1,408]],[[6245,4070],[8,-223],[9,-243],[16,-321]],[[5558,11435],[272,1],[630,0]],[[5856,7899],[0,140],[-86,-14],[-34,14],[-75,0],[-419,-3],[-68,-5]],[[5143,8453],[0,34],[119,1],[83,0],[1,120],[0,18],[160,-2],[255,-1]],[[5624,10247],[104,-1],[0,34]],[[5763,9248],[-208,1]],[[5554,9938],[0,69],[70,-1],[0,241]],[[4577,5691],[10,0]],[[6353,1604],[11,-285]],[[6339,1943],[14,-339]],[[4834,8451],[3,107],[1,66],[102,1],[0,333],[-1,168],[-1,121]],[[3007,3734],[20,41],[3,46],[-59,0],[-19,25],[28,46],[-39,52],[46,38],[-11,41],[0,2],[-15,42],[-48,28],[4,62],[-49,53],[-27,59],[-31,27],[-49,100],[34,44]],[[2362,9037],[-1,-414]],[[2361,8623],[0,-244],[-1,-70],[-1,-204],[-1,-104],[1,-166],[0,-144],[-1,-212]],[[3669,7852],[0,-167],[101,1],[13,0],[23,-35],[136,1],[2,-277]],[[2905,7488],[-1,199],[73,-2],[0,102],[71,-1],[0,104],[0,18],[-1,222],[-13,61],[13,55],[-50,58]],[[2997,8304],[291,-2],[102,1],[276,1]],[[3666,8304],[3,-452]],[[4215,8411],[0,1],[0,275],[0,70]],[[5038,7376],[-1,279],[0,100],[0,206],[0,2]],[[3382,9462],[-53,-12],[-347,2]],[[4534,268],[-41,-20],[-36,-40],[-70,-32],[-2,-59],[-55,-65],[-96,-49],[-50,3],[-20,28],[-73,-34],[-43,60],[-49,52],[2,47],[-31,23],[1,54],[-31,28],[15,38],[26,16],[-7,60],[-53,40],[-53,118],[11,19],[-22,108]],[[4541,457],[-47,-47],[64,-36],[20,-44],[-7,-24],[-37,-38]],[[4320,7376],[-1,349],[16,16],[43,-20],[28,36],[52,21],[5,12]],[[1801,3606],[1,208]],[[2361,8623],[292,-3],[236,-2],[22,-52],[-28,-52],[-36,-14],[-91,9],[-87,-29],[-38,-60],[25,-63],[63,-5],[34,82],[24,13],[38,-36],[164,-1]],[[2979,8410],[-1,-106],[19,0]],[[1800,3398],[-130,-1],[-203,0],[-211,0],[-68,0],[-206,-1]],[[660,3727],[83,-10],[18,54],[-39,9],[-78,-25],[-78,0],[12,90],[27,103],[15,20],[85,22],[11,-75],[25,-41],[29,-5],[32,56],[-41,43],[-3,27],[39,17]],[[3570,1952],[-455,-3],[-377,-1]],[[3393,8829],[-1,-176],[-102,0],[-35,-34],[-90,1],[-186,-2],[0,-208]],[[4216,8306],[-421,-2],[-26,0],[-103,0]]],"transform":{"scale":[0.0005093295617301635,0.00042107353969919565],"translate":[-91.654027,30.180296999999996]},"objects":{"cb_2019_28_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[7,8,9,10,11,12,13]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[14,-1,-7,15,16,17,18,19]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[20,21,22,23,24,25]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[26,27,28,29,-21,30]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[31,32,33,34,35]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[37,38,39,40,41,42]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[43,44,45,46,47,48,49]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[50,51,52,53,54]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[55,56,57,58,59]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[60,61,62,63,64,65]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[-59,66,-38,-43,67,68,-61,-66,69]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[70,71,72,73,74,75]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[-68,76,77,78,79,80]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[81,82,-2,-15,83,84]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[85,86,87,88,89,90,91]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[92,93,-80,94,-90,95]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[-54,96,97,98,99,100]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[101,102,103,104]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[105,106,107,108,109,110,111]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[112,-103,113,-72,114,115]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-42,116,117,118,119,120,-77]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-45,121,-75,122,123]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[124,125,126,127,-19,128]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[-63,129,130,131,132]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[133,134,135,136,137]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[138,139,140,141,142]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[143,144,145,-39,-67,-58]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[146,147,-107,148,149,-10,150]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-94,151,-130,-62,-69,-81]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[154,-35,155,156,157]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[158,159,160,161]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[162,163,164,165,166,167]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[168,169,170,-149,-106,-112,171]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[172,173,-73,-114,-102,-120,174]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[-109,175,176,-164,177,178,179]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[180,-49,181,-24,182,183]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[184,185,-159,186,187,188,189]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[190,-98,191,-156,-34,-13]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[192,-56,-60,-70,-65,193,194]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[195,196,197,-170,198,-88,199]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[200,-137,201,202,-86,-92,203]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[204,-11,-150,-171,-198,205]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[206,207,208,-17,209,210]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[211,-3,-83,212,213]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[214,215,-165,-177,216]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[217,-183,-23,218,219]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[-113,-116,220,-134,-138,221]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[222,223,-189,224,225]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[226,227,228,229,230,231,232,233]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[234,235,-91,-95,-79]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[-57,-193,-195,236,-161,237,-144]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[238,-28,239,-5,240]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-213,-82,-85,241,-225,-188,242]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[-99,-191,-12,-205,-206,-197,243]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-143,244,-167,245,-139]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[246,-51,-55,-101,247,-202,-136,248]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[-22,-30,249,-219]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-124,250,-227,-234,251,-46]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[252,-25,-182,-48,253,-207,-211,254]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-104,-222,-201,-204,-236,255]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[256,-157,-192,-97,-53,257]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-6,-240,-27,-31,-26,-253,-255,-210,-16]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[-105,-256,-235,-78,-121]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[-47,-252,-233,258,-208,-254]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-96,-89,-199,-169,-172,-111,259,-93]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[-160,-186,260,261,-145,-238]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[262,-117,-41,263,264,265]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-259,-232,266,-125,-129,-18,-209]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-251,-123,-74,-174,267,-228]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-84,-20,-128,268,-223,-226,-242]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[269,-8,-14,-33,270]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-119,271,-229,-268,-173,-175]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-152,-260,-110,-180,272,-131]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-262,273,274,-264,-40,-146]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-100,-244,-196,-200,-87,-203,-248]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-132,-273,-179,275,-141,276]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-168,-245,-142,-276,-178,-163]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-148,277,-215,-217,-176,-108]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[-224,-269,-127,278,-274,-261,-185,-190]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[-279,-126,-267,-231,279,-265,-275]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-280,-230,-272,-118,-263,-266]],"type":"Polygon","properties":{"COUNTYFP":"097"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/mt.topo.json b/app/assets/topojson/states/mt.topo.json new file mode 100755 index 00000000..1e4c7deb --- /dev/null +++ b/app/assets/topojson/states/mt.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[6695,2866],[3,0],[103,-1],[156,0],[0,-321],[2,-329],[-34,0],[0,-603],[1,-376],[-8,0],[0,-359]],[[6918,877],[-22,3],[-8,-63],[-25,-30],[-25,22],[-64,-27]],[[6774,782],[-272,-1],[-182,2],[0,161],[-166,0],[-255,5],[0,95],[-120,1],[-30,1],[0,191],[-35,1],[-1,196],[-212,0],[1,196],[-182,0],[-2,549],[-10,85],[1,47],[-62,110],[-49,8],[-57,-37],[-34,0],[-41,23],[-10,24],[-78,58],[-2,67],[-24,58],[16,22],[11,59],[0,124]],[[4979,2827],[128,81],[34,38],[41,13],[38,52],[-2,45],[15,43],[45,27],[34,-37],[402,14]],[[5714,3103],[32,3],[48,48],[-1,22],[37,55],[-10,15],[21,63],[52,26],[19,-6],[64,15],[44,-23],[49,20],[35,1],[30,-62],[33,6],[18,-28],[44,7],[53,-26],[2,-25]],[[6284,3214],[0,-26],[63,0],[0,-32],[61,0],[0,-65],[92,0],[0,-32],[30,0],[0,-33],[30,0],[0,-32],[31,0],[0,-33],[30,0],[0,-32],[31,1],[0,-33],[31,1],[12,-32]],[[10919,7283],[65,-6],[31,11],[57,-33],[50,10],[17,16],[26,-45],[50,-8],[28,41],[26,-30],[57,-16],[66,-33],[9,-29],[35,7],[20,29]],[[11456,7197],[-4,-117],[0,-482],[-31,-16],[-189,0],[-187,-3],[-1,-81],[-190,0],[0,-100],[0,-94],[-25,0],[-1,-190],[190,0],[-1,-134],[-3,-449],[-28,0],[-2,-195]],[[10984,5336],[-560,3]],[[10424,5339],[-270,1],[-292,0],[0,-129]],[[9862,5211],[-528,1]],[[9334,5212],[0,113],[-15,-1],[-1,81],[-46,0],[-16,48],[-47,0],[-8,65],[55,0],[2,80],[31,65],[31,0],[-1,353],[-1,293],[-171,-1],[0,37],[0,61],[-189,-1],[-1,97],[-188,0],[-1,194],[-123,-1],[-4,130]],[[8641,6825],[77,1],[50,40],[45,13],[99,86],[60,-2],[23,28],[60,31],[38,37],[58,11],[37,50],[-13,84],[25,86],[7,53],[-11,129],[14,19],[89,-12],[24,-16],[44,-1],[78,75],[37,1],[56,-9],[30,30],[73,-15]],[[9641,7544],[23,15],[88,-46],[77,-1],[39,41],[107,34],[45,40],[13,38],[65,4],[59,-9],[44,-25],[41,3],[99,44],[31,-17],[66,22],[39,-4],[46,-21],[-4,-43],[34,-44],[5,-39],[42,-2]],[[10600,7534],[103,-57],[55,-60],[-8,-43],[27,-39],[65,10],[38,-45],[39,-17]],[[5657,9205],[0,-4],[65,-9]],[[5722,9192],[16,-23],[60,-1],[84,-71],[59,37],[69,-29],[0,-99],[12,0],[84,-3],[192,0],[0,-96],[193,-1],[0,-290],[380,0]],[[6871,8616],[0,-195]],[[6871,8421],[1,-323]],[[6872,8098],[-540,-7],[-313,1],[1,130],[-95,0],[0,97],[-192,2],[0,97],[-128,1],[-283,2],[-550,2],[-95,-4],[-184,0]],[[4493,8419],[-56,22],[-15,19],[-41,-29],[-59,8],[-53,56],[-28,14],[-34,-16],[-33,39],[-11,64],[15,56],[-33,44],[-37,9],[-34,56],[-36,7],[-40,50]],[[3998,8818],[445,0],[692,0],[6,8],[1,379],[515,0]],[[3805,5454],[0,-129],[-97,0],[-9,-63],[-173,0],[0,-129],[-186,-1],[-50,6]],[[3290,5138],[-308,0],[-440,0]],[[2542,5138],[-38,18],[-98,-18],[-37,-25],[-26,-40],[-119,29],[-33,-3],[-20,-22],[-46,13],[-10,42],[-22,3],[-9,44],[28,28],[-3,45],[-32,43],[-42,13]],[[2035,5308],[0,23],[186,0],[0,193],[-25,0],[0,289],[29,0],[-1,65],[33,0],[-1,38],[34,-1],[25,-22],[51,-13],[0,35],[47,0],[0,32],[-94,0],[-1,99],[-122,-1],[1,62],[-31,0],[0,64],[-63,0],[0,32],[-32,0],[0,33],[1,32],[-61,0],[0,34],[-31,-1],[0,97],[-94,0],[0,33],[-32,0],[0,64]],[[1854,6495],[53,-20],[36,6],[42,-18],[32,44],[82,-13],[57,-25],[44,-6],[107,-77],[33,-2],[25,-25],[42,5],[63,-49],[40,2],[12,-29],[-12,-35],[91,-72],[57,-17],[27,31],[35,-15],[37,23]],[[2757,6203],[72,0],[304,1],[0,96],[166,0],[0,195],[-4,12],[-28,-5],[-41,36],[-18,44],[-9,105],[19,36],[7,47],[-30,55],[1,33],[-19,36],[-42,22],[-15,79],[41,18],[-19,43],[12,65],[-18,57],[2,52],[-28,4],[466,0]],[[3576,7234],[249,0]],[[3825,7234],[0,-566],[0,-373],[242,1],[0,-776]],[[4067,5520],[-169,0],[0,-66],[-93,0]],[[10550,3959],[215,0]],[[10765,3959],[476,1],[79,0],[0,230],[62,-1],[0,33],[62,-1],[0,32],[432,0],[0,98],[26,0],[0,64],[31,1],[0,32],[31,0],[0,32],[30,1],[0,32],[31,0],[0,33],[217,-1],[1,225]],[[12243,4770],[40,1],[24,-32]],[[12307,4739],[0,-32],[31,0],[0,-65],[31,0],[0,-65],[31,0],[1,-32],[31,0],[0,-65],[30,0],[0,-32],[31,0],[0,-97],[31,0],[0,-32],[31,0],[1,-65],[30,0],[0,-32],[31,0],[0,-65],[31,1],[0,-65],[31,0],[0,-33],[31,0],[-12,-50],[16,-25],[-21,-63],[5,-28],[-64,-119],[9,-14]],[[12643,3761],[-241,0],[0,-129],[-185,0],[0,-65],[-61,0],[0,-64],[-62,0],[0,-64],[-245,0],[0,-258],[-33,-3],[0,-225],[0,-364],[-183,1],[0,-65],[-182,0],[0,-65],[-191,0],[0,9],[-296,-1]],[[10964,2468],[-78,0],[-2,131],[-90,0],[-1,65],[-61,0],[7,82],[23,60],[-1,51],[-23,-7],[-67,-54]],[[10671,2796],[0,63],[-31,0],[0,32],[-30,18],[0,47],[-30,0],[0,194],[4,32],[0,391],[-30,0],[-5,162],[1,224]],[[10765,3959],[0,324],[-23,0],[-8,64],[-31,1],[-15,32],[0,65],[-14,32],[-31,0],[2,195],[-31,0],[2,84],[-37,1],[0,194],[-124,2],[0,97],[-31,0],[0,289]],[[10984,5336],[374,0],[174,11],[123,0],[520,3]],[[12175,5350],[21,-28],[-19,-65],[49,-76],[-11,-41],[-22,-16],[-3,-86],[-30,-43],[62,0],[-2,-225],[23,0]],[[10609,7954],[316,1],[68,-6],[4,82],[23,75],[56,-22],[173,-10],[28,0],[0,542],[33,0],[1,503],[96,-49],[0,325],[40,0],[0,387],[88,0],[0,20],[0,363],[34,-1],[0,192]],[[11569,10356],[391,1],[787,-1],[387,1]],[[13134,10357],[0,-194],[-39,0],[0,-769],[20,0],[0,-131],[-37,-4],[-23,17],[-37,-1],[0,-76],[-65,0],[1,-193],[61,-1],[0,-199],[-34,0],[-128,1],[0,-194],[-52,1],[0,-289],[0,-488],[-14,0],[-1,-399]],[[12786,7438],[-20,-34],[13,-31],[-26,-28],[4,-41],[-25,-21],[-71,4],[-32,42],[-69,1],[-40,15],[-27,-11],[-39,10],[-11,-45],[-37,1],[-35,-19],[-21,-47],[-33,-33],[-1,-30],[-78,-44],[-55,-16],[-30,-45],[-34,-27],[22,-46],[-23,-21],[4,-59],[-68,-12]],[[12054,6901],[0,83],[16,49],[-31,24],[-16,52],[-2,56],[-45,1],[-40,43],[-36,-17],[-50,16],[-27,22],[-21,-14],[-86,1],[-15,-20],[-46,-8],[-31,22],[-57,-17],[-20,12],[-46,-18],[-45,9]],[[10600,7534],[0,304],[9,116]],[[4845,3795],[0,172],[143,-1],[36,39],[24,48],[37,-20],[57,30]],[[5142,4063],[47,-9],[28,22],[31,-3],[-18,-39],[4,-80],[20,-40],[52,-43],[6,-38],[-22,-54],[26,-33],[26,-16],[9,-34],[-13,-28],[9,-76],[13,-21],[-3,-64],[40,-93],[-20,-38],[-18,-38],[6,-23],[37,-26],[199,-102],[20,-36],[57,-10],[36,-38]],[[4979,2827],[-15,19],[7,51],[-13,45],[-52,22],[-15,43],[-2,53],[-17,42],[-59,23],[-38,36],[-69,11],[-27,22],[-19,-20],[-37,47],[-27,-6],[-80,19],[-37,50],[-90,69]],[[4389,3353],[36,20],[55,4],[16,28],[71,48],[8,38],[46,10],[8,17],[-22,75],[-1,55],[25,25],[56,-13],[24,27],[-3,40],[25,45],[111,0],[1,23]],[[6871,8421],[349,2],[513,0],[0,193],[105,0]],[[7838,8616],[184,0],[9,0],[1,194],[286,0],[290,-1],[193,0],[385,0],[8,-188],[168,-1],[0,-165],[0,-32],[191,-1],[94,4]],[[9647,8426],[2,-587],[-8,-1],[0,-294]],[[8641,6825],[-630,-1]],[[8011,6824],[-2,67],[-190,-1],[1,178],[-137,-2],[-10,30],[-35,17],[-68,2],[-48,55],[-49,2],[-70,58],[19,63],[31,63],[59,98],[-360,-2],[-280,1]],[[6872,7453],[0,645]],[[17772,9542],[-1,-79],[2,-468]],[[17773,8995],[-315,0],[-473,0],[-72,0],[0,194],[-192,1],[0,193],[-320,0]],[[16401,9383],[0,155],[1,39],[-97,0],[0,581],[-29,0],[1,198]],[[16277,10356],[269,-1],[338,1],[507,1],[380,0],[-1,-340],[2,-475]],[[943,10358],[303,-2],[712,3]],[[1958,10359],[-18,-22],[21,-25],[59,-14],[-18,-43],[-32,-34],[13,-19],[10,-60],[-10,-34],[31,-54],[-4,-49],[-46,-23],[-14,-50],[63,-18],[61,-49],[44,-82],[-44,-25],[-45,-16],[-18,-34],[15,-32],[-17,-32],[54,-22],[25,-26],[-369,0],[-1,-190],[58,0],[0,-389],[2,-73],[0,-17],[1,-296],[-206,0],[-49,-1],[0,-193],[15,0],[-1,-271]],[[1538,8166],[-213,-1],[5,-49],[21,-26],[-16,-44],[-39,17],[-17,-118],[-30,1],[-29,-24],[-40,-7],[-46,-32],[-27,48],[-26,20],[-92,-39],[-27,19],[0,53],[-32,-6],[-11,-50],[-49,20],[-56,-24],[-38,-1],[-32,29],[-17,45],[27,84],[-20,68],[-46,26],[-40,61],[3,24],[-41,33],[7,31],[-20,102],[-74,96],[35,65],[-31,41],[-25,53],[-40,33],[-51,-10],[-42,-81],[-47,-25],[-76,-20],[-38,-44],[-42,3],[-30,-78],[-77,23],[-19,60],[8,44],[-48,22]],[[0,8608],[0,592],[0,692],[0,467],[943,-1]],[[9334,5212],[-91,-1],[-34,8],[-97,64],[-107,56],[-32,-1],[-58,-32],[-35,30],[-50,-6],[-44,-18],[-17,-44],[-46,-6],[-49,21],[-28,-38],[-93,4]],[[8553,5249],[-79,-77],[-72,38],[-52,-18],[-39,4],[-26,-16],[-38,21],[-4,27],[-35,26],[-27,0],[-55,76],[-3,55],[-84,2],[-43,65],[-5,49]],[[7991,5501],[24,31],[1,193],[-7,0],[0,194],[-7,92],[0,98],[-185,1],[-2,117],[7,78],[1,113],[-32,33],[-1,131],[24,0],[8,114],[190,0],[-1,128]],[[15552,5132],[53,0],[28,0],[0,-129],[63,0],[1,-65],[311,-2],[0,-65],[377,-2],[0,65],[186,0],[0,97],[186,0]],[[16757,5031],[1,-291],[-257,0],[1,-377],[29,0],[1,-394]],[[16532,3969],[-80,-1],[0,-780],[-63,0]],[[16389,3188],[-119,1],[-563,3],[-423,0],[-687,0]],[[14597,3192],[0,778],[57,0],[3,194],[-5,179]],[[14652,4343],[-1,400],[52,0],[0,22],[-1,754],[51,0],[0,32]],[[14753,5551],[0,32]],[[14753,5583],[376,1],[0,-64],[318,0],[0,-194],[61,0],[1,-194],[43,0]],[[9691,9490],[-1,675],[24,0],[0,194]],[[9714,10359],[558,-2],[451,-1],[474,0],[372,0]],[[9647,8426],[1,194],[-26,0],[0,161],[48,0],[0,226],[33,0],[0,129],[48,0],[0,162],[-48,0],[0,95],[-13,0],[1,97]],[[16389,3188],[0,-70],[0,-698],[-8,0],[0,-202],[-76,0],[0,-785]],[[16305,1433],[-493,0],[-380,0],[-418,0],[-27,-15],[-496,1]],[[14491,1419],[0,415],[-24,0]],[[14467,1834],[0,383],[65,0],[3,650],[3,254],[-4,71],[63,0]],[[1602,6592],[91,0],[0,-32],[94,0],[0,-65],[67,0]],[[2035,5308],[-37,-7],[-16,-37],[-43,-12],[-19,-33],[-53,34],[27,51],[7,52],[-63,53],[-32,2],[-54,70],[-31,-11],[-50,39],[-10,32],[-2,30],[-29,14],[25,35],[-8,46],[17,48],[-53,26],[-59,92],[-73,21],[-25,31],[-7,69],[-23,44],[-22,4],[-43,48],[-19,74],[-41,11],[-21,50],[-45,35],[-39,12],[-29,69],[-36,4],[-21,23],[14,37],[-11,34],[-26,18],[-10,51],[-53,7],[-39,18],[-40,-7],[-20,35],[-46,-4],[-14,20],[-92,27],[-30,107],[-39,19],[-4,26],[-61,33],[-35,-11],[-22,51],[-95,57],[-56,-4],[17,39],[83,35],[23,-9],[54,15],[15,44]],[[621,6965],[94,-19],[55,14],[30,38],[36,-51],[53,-12],[70,42],[70,-11],[17,-20],[55,1],[35,34],[49,-14],[53,-40],[29,-3],[54,-30],[11,-33],[42,-29],[49,16],[59,-40],[31,12],[20,-31],[47,-9],[19,-50],[3,-138]],[[7429,5909],[-59,-1],[-45,53],[38,35],[-10,61],[4,34],[-115,1],[0,-171],[-187,0],[-2,-24],[-375,-1],[0,-194],[-176,0]],[[6502,5702],[-195,1],[0,399],[1,81],[-127,-1],[-67,16],[-32,17],[-29,57],[-74,25],[-17,37],[-32,-9],[0,146],[-5,575]],[[5925,7046],[31,5],[41,-24],[113,-5],[1,237],[189,0],[190,0],[0,63],[0,130],[382,1]],[[7991,5501],[-39,3],[-28,45],[-28,-15],[-52,48],[-15,51],[2,31],[-66,12],[-29,29],[-48,17],[-2,53],[-41,25],[-39,52],[-123,54],[-54,3]],[[13134,10357],[516,0],[521,-1],[544,0]],[[14715,10356],[0,-198],[-59,0],[0,-193],[194,0],[0,-427],[0,-2],[2,-153],[319,0]],[[15171,9383],[-1,-768],[-58,0],[0,-466]],[[15112,8149],[-49,25],[-63,-39],[-23,21],[-58,6],[-47,39],[-28,-17],[21,-33],[-49,-6],[-21,46],[-45,2],[-10,-43],[-36,-15],[-18,64],[-64,-11],[-80,-3],[-69,45],[-38,-11],[-26,31],[-29,-21],[-39,2],[-13,34],[-31,6],[-35,-49],[-17,-55],[23,-101],[-7,-35]],[[14261,8031],[-50,29],[-56,-18],[-28,-27],[30,-39],[-11,-36],[-51,-29],[31,-28],[-47,-47],[18,-44],[-50,-21],[9,-27],[-20,-35],[-58,-18],[-18,-31],[-45,-1],[-9,-35],[-79,-6],[2,-32],[-35,-53],[-39,-6],[-37,25],[-72,2],[-41,-14],[-26,-43],[14,-35],[-15,-52],[-67,-21],[-109,10],[-19,-24],[-87,-2],[-65,15],[-66,-3],[-24,-13],[-109,-1],[-53,42],[-70,1],[-42,23],[-81,1]],[[7838,8616],[1,37],[-1,737],[9,0],[-1,776],[12,0],[-1,188]],[[7857,10354],[314,0],[533,2],[521,1],[489,2]],[[5925,7046],[-49,1],[-59,-18],[-38,19],[-79,-22],[-116,-3],[-61,84],[-37,17],[-30,-7],[-60,11],[4,29],[-39,84],[-66,25],[-30,-2],[-53,64],[-36,22],[-39,-42],[-53,5],[-45,-33],[-76,3],[-51,-11],[-57,-41],[-46,26],[-24,-6],[-58,49],[-31,64],[-53,87],[18,69],[-37,74],[16,86],[4,58],[-21,76],[-25,25],[-13,75],[-30,15],[-17,94]],[[4538,8023],[49,-20],[58,4],[41,87],[-18,75],[-16,23],[-41,13],[-23,33],[19,24],[-65,29],[-18,55],[-10,72],[-21,1]],[[9606,2880],[0,125],[0,15],[-2,161],[25,0],[-3,194],[63,-1],[-1,199],[124,2],[0,162],[9,27]],[[9821,3764],[1,195],[358,-1],[370,1]],[[10671,2796],[-27,5],[-45,-24],[-62,1],[-66,30],[-75,-34],[-16,-23],[-43,-17],[-89,8],[1,-142],[-94,0],[0,-131],[-49,0],[-195,0],[0,-33],[-61,0],[-31,0],[0,-32],[-30,0],[0,-33],[-61,1],[0,-33],[-30,0],[0,-32],[-31,0],[0,-32],[-30,-26],[-30,-7],[-9,-64],[-30,0],[0,-65],[-31,0],[1,-97],[-118,0],[0,-210],[-164,0]],[[9256,1806],[0,11],[-394,0]],[[8862,1817],[0,394],[197,0],[-1,387],[183,0],[0,97],[183,0],[0,96],[182,1],[0,88]],[[6774,782],[-22,-18],[26,-75],[-34,-50],[-11,-39],[-34,-48],[11,-52],[25,-21],[-9,-24],[38,-13],[3,-31],[-53,-11],[-12,24],[-94,33],[-38,-31],[-30,10],[-106,14],[-17,-36],[-45,-6],[-58,-38],[-29,0],[-25,-33],[-30,38],[-42,84],[-43,-14],[-73,-2],[-42,-46],[-82,24],[0,-40],[-55,18],[-47,-36],[-37,18],[-16,25],[-41,4],[-28,-19],[-56,23],[-11,46],[-41,16],[-43,-6],[-40,-34],[-10,-32],[-51,-8],[-7,-15],[3,-79],[-20,-62],[-24,-40],[-45,13],[-85,57],[-16,-18],[-95,30],[-53,-7],[-25,21],[-92,-10],[-37,27],[-45,14],[-30,-30],[-60,-14],[-26,-51],[-46,-48],[-16,-37],[26,-37],[13,-68],[-47,-42],[-54,48],[-32,44],[-41,31],[-30,10],[-80,81],[-3,40],[-29,54],[16,45],[-14,49],[-33,23],[14,37],[-43,31],[6,17],[-36,29],[56,66],[-14,32],[-10,13],[-3,66],[-20,10],[-30,51],[0,52],[-54,68],[9,29],[-71,32],[-43,48],[-43,11],[-13,20],[-49,-24],[-31,-28],[-58,-33],[-24,78],[-42,40],[-55,0],[-11,37],[-39,25],[-9,48],[-25,19],[9,32],[-29,33],[-10,38],[49,14],[32,28],[-12,221],[-49,9],[-3,25],[-53,40],[25,37],[-11,17],[-54,-8],[-40,41],[17,38],[-27,11],[-16,30],[4,38],[-67,65],[-31,63],[-31,19],[-20,30],[17,36],[-43,48],[-13,33],[-29,28],[-3,35],[16,26],[-7,82],[-22,23],[-37,9],[-14,109],[35,56],[-19,75],[-45,20],[-46,-6],[25,90],[30,47],[-15,46],[-53,22],[-27,25],[-36,-14],[-27,9],[13,49],[-36,32],[-28,84]],[[3126,2984],[42,45],[8,35],[-15,29],[28,54],[38,30],[22,-19],[9,-46],[28,-4],[38,27],[39,65],[50,51],[22,10],[25,42],[133,7],[40,21],[24,49],[70,12],[-4,78],[28,57]],[[3751,3527],[30,-6],[14,-49],[62,-122],[22,-63],[-2,-69],[51,-73],[50,-21],[-2,29],[25,75],[17,19],[41,-15],[15,27],[33,-1],[38,48],[31,60],[73,41],[118,-7],[22,-47]],[[10964,2468],[-55,-69],[-5,-92],[-21,-96],[0,-293],[891,7],[-35,-10],[-22,-26],[-22,-78],[-33,-25],[6,-57],[-18,-19],[-11,-55],[-42,-12],[-4,-36],[-43,-104],[-11,-56],[11,-15]],[[11550,1432],[-393,0],[-250,1],[-562,-2],[-59,15],[-294,-2],[-439,-5],[-297,-1]],[[9256,1438],[0,368]],[[12054,6901],[-1,-110],[-22,-11],[-9,-45],[-49,-50],[18,-24],[-18,-32],[29,-20],[-3,-44],[-21,-20],[11,-40],[-23,-53],[44,-72],[-12,-43],[23,-28],[-15,-72],[-4,-99],[15,-25],[1,-42],[20,-44],[-3,-78],[39,-37],[10,-30],[6,-21],[-32,-26],[-33,-102],[17,-14],[-35,-59],[9,-47],[39,-19],[24,-31]],[[12079,5563],[23,-14],[52,-92],[7,-91],[14,-16]],[[3751,3527],[-2,3]],[[3749,3530],[26,19],[29,-20],[31,50],[2,49],[24,-7],[63,44],[3,30],[27,10],[23,-24],[41,-5],[11,22],[75,67],[5,31],[0,171],[-16,0],[1,194],[367,1],[0,97]],[[4461,4259],[216,-2],[492,0]],[[5169,4257],[-53,-85],[31,-36],[-13,-29],[8,-44]],[[3290,5138],[14,-52],[22,-17],[-13,-91],[-36,-16],[11,-23],[-24,-54],[-7,-73],[-37,-14],[38,-135],[-12,-64],[46,-20],[65,-113],[-5,-46],[20,-39],[-12,-33],[-8,-41],[52,-36],[-36,-98],[-64,-28],[-9,-30],[57,-50],[-14,-61],[22,-18],[40,-71],[-27,-59],[-24,-26],[-24,-82],[40,-14],[31,28],[35,-12],[67,-8],[-6,-20],[33,-52],[7,-50],[23,-34],[48,11],[11,-45],[67,-18],[13,12],[55,-16]],[[3126,2984],[-35,-13],[-14,29],[-34,2],[-37,-24],[-12,-38],[18,-27],[-77,-79],[-21,-38],[-1,-32],[-23,-22],[-36,-6],[-21,-61],[-66,-14],[-34,-33],[-35,22],[-31,-1],[2,-45],[-21,-63],[-27,-37],[-82,-47],[-14,1],[-33,70],[-77,42],[-18,44],[-50,35],[-2,34],[-48,-11],[-44,34],[-37,-31],[-8,61],[29,53],[-37,54],[34,40],[26,-2],[35,46],[6,74],[-13,42],[-33,13],[-30,34],[4,35],[-33,33],[77,120],[7,41],[58,13],[47,25],[43,-23],[8,44],[23,23],[-10,42],[-26,23],[-27,55],[42,49],[-13,44],[-93,32],[-20,26],[21,21],[-10,39],[-40,3],[21,46],[35,21],[14,80],[-10,14],[-79,46],[-10,48],[17,44],[39,4],[20,-16],[44,30],[4,65],[-13,84],[-21,14],[-7,42],[65,40],[-8,50],[16,52],[11,13],[6,66],[-18,50],[55,53],[2,123],[-26,29],[2,51],[71,13],[7,99],[24,45],[-19,39],[32,48],[2,81],[-17,29]],[[16014,7659],[0,173],[59,0],[0,81],[1,362]],[[16074,8275],[31,34],[46,-20],[43,12],[42,-31],[41,30],[30,-32],[34,13],[12,36],[46,-2],[1,42],[53,-17],[19,33],[5,61],[45,28],[30,-15],[28,-42],[45,-13],[49,20],[42,-4],[20,-33],[73,16],[24,-34],[83,19],[-1,39],[25,26],[33,-36],[4,-39],[59,43],[24,-6],[25,-32],[36,27],[41,-5],[24,-55],[72,-40],[51,-19],[11,-44],[48,-8],[45,13],[66,-45],[67,14],[18,27],[31,-31],[51,44],[50,-123],[49,8],[32,-16]],[[17777,8118],[4,-299],[-1,-124],[-2,-289],[-2,-625]],[[17776,6781],[-128,1],[0,-97],[-376,-1],[-52,2]],[[17220,6686],[-137,0],[0,390],[-120,0],[0,161],[1,33],[-570,0],[0,194],[-380,1],[0,194]],[[4067,5520],[17,-56],[40,40],[33,-24],[-1,-28],[21,-40],[25,-10],[48,-40],[-3,-61],[72,-17],[25,-29],[80,41],[34,9],[1,-562],[3,-162],[0,-20],[-1,-302]],[[6739,5365],[50,-24],[14,-20],[3,-66],[14,-50],[42,-37],[6,-75],[48,13],[17,-24],[55,-5],[7,-39],[-14,-20],[22,-84],[-2,-25],[-26,-43],[70,-25],[21,-20],[11,-47],[19,2],[16,-135],[27,-21],[59,4],[23,37],[35,8],[76,-40],[61,-77],[-25,-63],[6,-41],[-37,-18],[-35,-58],[-13,-99],[27,-31],[45,-24],[25,-62],[-1,-62]],[[7385,4094],[-144,0],[0,-11],[-277,0],[-4,-146],[-73,-37],[11,-31],[-22,-15],[-27,-52],[7,-146],[-66,-15],[0,-58],[-47,-66],[-58,-22],[-21,-32],[-57,-7],[-31,-41],[-7,-31],[-55,-53],[-14,-39]],[[6500,3292],[-1,482],[-184,1],[1,98],[-4,95],[1,780],[-3,186]],[[6310,4934],[225,2],[-6,27],[2,348],[20,18],[23,60],[36,19],[113,-49],[16,6]],[[2933,10355],[556,-3],[124,2],[346,0],[542,0],[955,1],[254,0]],[[5710,10355],[0,-189],[6,0],[0,-596],[0,-180],[7,0],[-1,-198]],[[3998,8818],[-12,16],[-25,15],[-17,37],[69,69],[9,37],[-20,14],[-14,66],[-38,-15],[-47,8],[-72,54],[-28,33],[21,33],[-10,68],[9,95],[-63,27],[-10,30],[-45,26],[-79,-22],[-60,57],[-33,-33],[-24,17],[-42,3],[-63,44],[7,86],[29,41],[-21,48],[30,5],[25,55],[-17,51],[-36,23],[-6,28],[-28,18],[-16,61],[23,39],[-91,67],[-34,17],[-50,-42],[-52,26],[-12,-31],[-57,-39],[-70,35],[17,47],[-36,24],[-21,34],[-40,20],[66,43],[-17,56],[-25,28],[-7,37],[-32,81]],[[14440,7008],[0,-323],[188,1],[1,-388],[124,1]],[[14753,6299],[0,-716]],[[14753,5551],[-938,-1],[0,32],[-465,-1],[-642,0],[0,-18],[-629,0]],[[14261,8031],[90,0],[0,-198],[144,0],[0,-473],[-1,-285],[-54,0],[0,-67]],[[4923,5519],[84,6],[196,0],[0,-301],[185,1],[0,-98],[133,0],[11,-27],[22,-40],[8,-46],[-35,-67],[13,-58],[21,-40],[-18,-46],[6,-46],[-4,-89],[-24,-15],[15,-50]],[[5536,4603],[-39,-38],[-19,-42],[-80,3],[-33,-39],[0,-26],[-37,-16],[2,-36],[-72,18],[-8,-27],[-44,2],[-58,-76],[16,-19],[5,-50]],[[3825,7234],[208,0],[0,-10],[269,0]],[[4302,7224],[39,-56],[-10,-28],[2,-94],[13,-57],[33,-22],[49,18],[0,-689],[14,-6],[376,0],[-1,-479],[1,-292],[105,0]],[[7597,2216],[0,235],[0,153],[90,0],[1,146],[93,0],[-1,243],[0,141],[9,53],[1,265],[-6,187],[3,130],[0,211],[10,0],[0,114]],[[7797,4094],[555,-2],[0,-17],[188,0]],[[8540,4075],[0,-113],[-16,0],[0,-778],[107,0],[1,-84],[3,-173],[0,-326],[-2,-8],[0,-382],[-13,0],[0,-394],[22,0],[220,0]],[[9256,1438],[-300,2],[-155,0],[-115,-14],[-150,1],[-60,5],[-121,-1],[-57,-13],[-383,-3],[-127,20],[-378,0]],[[7410,1435],[0,162],[-2,229],[12,0],[0,200],[0,191],[177,-1]],[[6502,5702],[51,-24],[31,-25],[-9,-32],[-49,-26],[-5,-50],[63,-74],[45,0],[60,-12],[12,28],[41,-60],[-3,-62]],[[6310,4934],[-357,-1],[-7,-57],[-44,-44],[-32,-15],[-53,-5],[-16,12],[-77,-42],[-25,-34],[31,-33],[-11,-45],[-42,-1],[-7,-32],[-33,-31],[-41,-16],[-60,13]],[[4302,7224],[23,146],[-27,34],[-28,97],[2,23],[39,35],[24,-9],[60,18],[-5,41],[27,18],[9,71],[-13,47],[16,30],[-7,96],[-44,23],[9,50],[34,15],[62,5],[12,32],[43,27]],[[13743,2220],[58,-3],[0,125],[0,592],[3,8],[-176,0],[0,16],[-99,0],[0,233],[53,0],[0,97],[-92,0],[0,86]],[[13490,3374],[1,467],[0,128],[-99,0],[-3,340],[0,41],[-31,-2],[0,198],[-185,0],[0,162],[-31,0],[0,33],[-835,-2]],[[14467,1834],[-177,0],[0,-6],[-396,1],[-150,5],[-1,386]],[[9821,3764],[-279,0],[2,195],[-74,0],[0,194]],[[9470,4153],[372,1],[-1,344],[0,261],[22,-1],[-1,453]],[[6500,3292],[-31,-26],[-37,-58],[-32,-5],[-42,24],[-48,-26],[-26,13]],[[8553,5249],[1,-492],[-13,0],[-1,-601]],[[8540,4156],[0,-81]],[[7797,4094],[-412,0]],[[7410,1435],[-14,0],[2,-747],[1,-419],[-64,18],[-52,30],[-11,38],[10,34],[-28,6],[-12,25],[-33,19],[0,32],[-69,18],[-18,84],[29,16],[-70,95],[-42,84],[-62,69],[-26,-13],[-33,53]],[[1538,8166],[0,-33],[31,0],[0,-291],[190,0],[48,7],[15,0],[317,0],[0,-192]],[[2139,7657],[0,-97],[30,0],[1,-322],[346,0],[16,-38],[12,-67],[-47,-31],[-2,-45],[-28,-87],[19,-2],[30,35],[80,-4],[17,-36],[-14,-36],[-48,10],[0,-34],[-24,-34],[-1,-64],[-14,-40],[43,-55],[52,-21],[127,0],[0,-388],[23,0],[0,-98]],[[621,6965],[-45,-4],[-39,16],[-37,86],[-60,41],[-3,24],[97,96],[-13,18],[4,45],[-53,41],[-9,28],[20,89],[-13,23],[-78,56],[5,28],[-34,35],[-31,-13],[-33,73],[3,66],[-55,77],[-28,-14],[-27,32],[-68,119],[-26,12],[-70,126],[-28,10],[0,533]],[[14491,1419],[-455,2],[-643,3],[-118,1],[-63,7],[-528,4],[-210,-2],[-562,0],[-362,-2]],[[12643,3761],[128,0],[0,-194],[368,0],[0,-97],[184,1],[0,-97],[167,0]],[[1958,10359],[372,1],[333,-1],[270,-4]],[[3576,7234],[14,49],[3,82],[25,10],[12,44],[-9,86],[-44,-5],[-38,36],[14,45],[-4,41],[-27,20],[-16,49],[21,31],[-11,105],[14,38],[-10,30],[-69,45],[-42,81],[-37,11],[-62,57],[-28,-15],[-33,44],[-15,40],[9,25],[-20,39],[-18,20],[-214,-1],[2,-31],[-32,0],[-1,-32],[-41,0],[23,-65],[35,-15],[0,-55],[-106,0],[-382,-2],[-183,0],[0,-169],[21,-24],[1,-190],[-189,-1]],[[15112,8149],[65,34],[27,38],[46,-38],[45,14],[38,49],[42,7],[34,-13],[6,33],[66,36],[39,4],[42,-39],[24,18],[8,31],[30,22],[64,-19],[106,8],[28,-10],[49,9],[21,-30],[81,22],[50,0],[15,-56],[36,6]],[[16014,7659],[-190,0],[0,-386],[0,-196],[-64,-1],[0,-776]],[[15760,6300],[-632,-1],[1,-196],[-188,-1],[0,197],[-188,0]],[[15171,9383],[552,0],[678,0]],[[17773,8995],[2,-476],[2,-401]],[[9470,4153],[-115,0],[-245,0],[-570,3]],[[7072,9778],[0,-388],[-3,0],[0,-774],[-198,0]],[[5710,10355],[285,0],[354,-3],[386,-1],[342,0]],[[7077,10351],[-5,-185],[0,-388]],[[16757,5031],[1,97],[186,-1],[0,33],[0,32]],[[16944,5192],[280,0],[0,-32],[94,0],[-1,-65],[459,0]],[[17776,5095],[-1,-613],[1,-539],[-3,-279],[5,-264]],[[17778,3400],[-135,0],[0,194],[-286,-2],[-93,6],[0,188],[-185,0],[0,97],[-1,85],[-546,1]],[[17175,6607],[31,-3],[63,-65],[0,-32],[21,-32],[47,-32],[0,-65],[15,-48],[23,-32],[-1,-98],[16,0],[0,-211],[-32,0],[0,-81],[-47,-65],[-16,-65],[-31,-25],[-31,-40],[-1,-32],[-31,0],[0,-32],[-31,0],[-16,-32],[-31,0],[-16,-33],[-158,1]],[[16949,5585],[-600,1],[-28,0],[0,65],[-31,0],[0,33],[-31,31],[-189,0],[1,129],[-190,0],[0,259],[0,197],[-121,0]],[[17220,6686],[-3,-21],[-42,-58]],[[17776,6781],[-1,-405],[1,-197],[-1,-465],[1,-619]],[[16944,5192],[-1,328],[6,65]],[[7492,10352],[365,2]],[[7077,10351],[415,1]],[[14715,10356],[412,1],[708,-1],[442,0]],[[17781,2636],[2,-369],[0,-359],[1,-480],[-331,0],[-545,2],[-603,3]],[[17778,3400],[2,-294],[1,-470]]],"transform":{"scale":[0.0006752958277103015,0.00044818435654788585],"translate":[-116.04915499999998,44.357962]},"objects":{"cb_2019_30_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[6,7,8,9,10,11,12,13,14]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[15,16,17,18,19,20,21]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[22,23,24,25,26,27,28,29,30]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[31,32,33,34,35,36,37]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-33,38,-9,39,40]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[41,42,43,44,45,-7,-15,46]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[47,48,-4,49,50]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[51,52,53,-13,54,55,56,-19]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[57,58,59,60]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[61,62,63,64]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[-12,65,66,67,-55]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[68,69,70,71,72,73,74,75]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[76,77,-42,-47,-14,-54,78]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-72,79,80,81,82]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[83,-26,84,85]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[86,87,88,-56,-68,89]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-44,90,91,92,93,94]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-53,95,96,-77,-79]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-20,-57,-89,97,98]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[99,100,-38,101,102,103]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[-3,104,105,106,-50]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-102,-37,107,108,109]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-8,-46,110,111,-40]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-51,-107,112,113,114,115,-48]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-24,116,-113,-106,117]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[118,119,120,121,122]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-23,-31,123,-114,-117]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[124,125,126,127]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[128,129,-16,-22,130]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[131,132,-75,133,-111,-45,-95,134]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[135,136,-115,-124,-30,137,138]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[139,140,141,-103,-110,142,143]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-98,-88,144,-128,145,-136,-139,146]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[147,148,-34,-41,-112,-134,-74,-73,-83,149]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-10,-39,-32,-101,150,151]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-137,-146,-127,152,-5,-49,-116]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-67,153,154,-141,155,-125,-145,-87,-90]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-126,-156,-140,-144,156,-1,-6,-153]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-64,157,158,-27,-84,-86,159]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-148,-150,-82,160,-108,-36,161]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-63,162,-131,-21,-99,-147,-138,-29,163,-158]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-164,-28,-159]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-94,164,-119,165,166,-132,-135]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[167,-59,168,-120,-165,-93]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-66,-11,-152,169,-154]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[170,-17,-130,171,172]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[173,174,175,176,-70]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-149,-162,-35]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[177,178,-166,-123,179]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-180,-122,180,-175,181,-178]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[182,-96,-52,-18,-171,-173,183]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-179,-182,-174,-69,-76,-133,-167]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[-155,-170,-151,-100,-104,-142]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[-92,184,-60,-168]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[185,-80,-71,-177,186]],"type":"Polygon","properties":{"COUNTYFP":"011"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/nc.topo.json b/app/assets/topojson/states/nc.topo.json new file mode 100755 index 00000000..4adca11f --- /dev/null +++ b/app/assets/topojson/states/nc.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[15703,8308],[-1,117],[-1,108],[-2,163],[0,81],[10,42],[17,66],[-8,28],[21,49],[43,27],[63,83]],[[15845,9072],[359,4]],[[16204,9076],[79,-497],[20,-126],[28,-176],[-81,-134]],[[16250,8143],[-84,-107],[-50,1],[-58,1],[-90,-215],[-36,-24],[-165,39],[-29,-1]],[[15738,7837],[-32,26],[-1,194],[-2,232],[0,19]],[[11891,6965],[112,-5],[66,-4],[171,-10],[76,-4],[135,-7],[122,-6],[109,-5],[232,-12]],[[12914,6912],[-1,-190]],[[12913,6722],[-3,-86],[-4,-159],[-5,-218],[-8,-157],[-5,-92],[-12,-391]],[[12876,5619],[-52,-1],[-41,-1],[-257,-5],[-223,-5]],[[12303,5607],[-99,-2],[-22,0],[-131,-2],[-212,-6],[-172,-6],[-171,-4]],[[11496,5587],[5,187],[5,162],[0,11],[13,338],[5,124],[10,224],[1,8],[15,341]],[[11550,6982],[196,-9],[145,-8]],[[8396,7359],[57,13],[71,-37],[92,38],[75,-5],[19,-25],[109,12],[25,32],[53,15]],[[8897,7402],[69,-164],[-4,-85],[-2,-45],[-66,-229]],[[8894,6879],[-31,-108],[-18,-27],[-11,-16],[-30,-62],[-125,-168]],[[8679,6498],[-52,44],[-3,36],[-32,44],[-2,46],[-38,0],[-97,-17],[-35,2],[-55,-45],[-63,21],[-53,-38],[-28,6],[-52,-27],[-97,-6]],[[8072,6564],[6,14],[-32,89],[26,162],[-24,162],[31,195],[9,51]],[[8088,7237],[37,26],[52,10],[72,59],[110,20],[37,7]],[[21637,9099],[774,0],[431,0],[28,-170],[63,-281],[40,-198],[60,-226],[62,-197]],[[23095,8027],[-59,-15]],[[23036,8012],[-42,74],[19,62],[-25,81],[-56,6],[-31,41],[-17,62],[15,28],[62,-33],[-2,82],[-22,30],[8,33],[-50,42],[19,64],[-12,57],[-54,79],[-63,13],[-31,136],[-74,2],[-22,26],[-101,14],[-46,-2],[24,58],[-15,48],[-44,39],[-54,4],[-25,-20],[15,-54],[-37,-40],[22,-74],[53,-118],[61,-36],[48,2],[50,-125],[46,77],[35,9],[1,-87],[18,-36],[-19,-71],[48,-114],[28,-48],[19,-88],[17,-30],[70,-7],[-3,-86],[-19,-40],[15,-75],[41,-9],[36,-78],[-30,-10],[4,-56],[49,-46],[-2,-59],[63,-95],[-9,-65],[36,-65],[-29,-21],[-130,98],[-51,87],[11,107],[-38,82],[-91,95],[-32,107],[-74,46],[-26,-7]],[[22593,8108],[-5,42],[33,19],[2,38],[-50,16],[-12,62],[-77,9],[-6,42],[-50,36],[-43,70],[-41,17],[-34,-43],[-24,7],[-111,27],[-21,46],[-70,78],[-26,13],[-3,91],[-17,17],[-63,64],[-338,340]],[[14200,8058],[83,-1],[229,-4]],[[14512,8053],[-46,-323],[-4,-27],[-37,-264],[-13,-91],[-3,-23],[-75,-536]],[[14334,6789],[-177,-8],[-180,20],[-273,34]],[[13704,6835],[-23,49],[3,35],[-31,24],[10,17],[7,406],[0,1],[7,343],[4,357]],[[13681,8067],[281,-6]],[[13962,8061],[238,-3]],[[12485,8075],[48,-1],[177,-6],[230,-8]],[[12940,8060],[-12,-301],[-2,-87],[-5,-270],[-1,-110],[-2,-156],[-4,-224]],[[11550,6982],[5,175],[5,128]],[[11560,7285],[1,67],[6,232],[5,157],[2,100],[8,272]],[[11582,8113],[218,-8],[84,-3],[151,-7],[158,-8],[67,-3],[225,-9]],[[6228,7736],[124,226],[142,251]],[[6494,8213],[48,-20],[19,-55],[-40,-105],[-2,-57],[64,-91],[77,14],[73,-82],[16,-60],[24,-96],[12,-38]],[[6785,7623],[85,-39],[49,-40],[6,-36],[62,-32],[-27,-50],[-166,-305]],[[6794,7121],[-28,21],[-38,-4],[-35,26],[-69,5],[-31,56],[-49,23],[-120,-136]],[[6424,7112],[-36,-42],[-14,-30],[22,-38],[-74,-51]],[[6322,6951],[-141,103],[-39,74],[-29,81],[0,1],[11,37],[43,28],[-60,146],[-18,43],[-24,70],[-11,70]],[[6054,7604],[53,25],[20,46],[55,-21],[39,68],[7,14]],[[4831,5382],[12,-41],[-1,-24],[-38,-7],[-9,7],[6,12],[-12,40],[1,12],[-25,-1],[-1,0],[-33,-44],[-65,16],[-38,26],[-36,-25],[-83,64],[-53,15],[-21,-18],[-55,1],[-41,-22],[-79,-84]],[[4260,5309],[-28,7],[-71,49],[-13,60],[-35,44],[37,83],[18,109],[36,44],[-32,50],[32,40],[-50,80],[-41,23],[-11,43],[-28,57],[-88,-45],[-12,61],[-38,7],[-26,57],[-10,54],[-26,18],[11,17]],[[3885,6167],[100,78],[21,-26],[87,-26],[33,33],[66,9],[55,27],[14,28],[84,10],[21,52],[35,3],[46,-26],[22,38],[160,84],[3,2],[214,115],[14,3],[24,17],[103,-17],[32,37],[78,-3],[72,32]],[[5169,6637],[72,20],[54,-9],[35,-32],[29,-53],[-22,-30],[24,-64],[8,-65],[58,-51],[59,-12],[41,-52],[2,-34]],[[5529,6255],[-36,-27],[-17,-42],[39,-56],[-17,-47],[14,-47],[46,-73],[-43,-29],[-28,-59],[64,-64],[43,-41],[85,-23],[137,-85]],[[5816,5662],[-139,-27],[-34,-34],[24,-39],[-49,-102],[-24,-24],[-39,24]],[[5555,5460],[-163,99],[-33,3],[-19,-35],[-31,10],[-41,-36],[13,-54],[-43,9],[-94,26],[-82,-55],[-60,-43],[-171,-2]],[[13978,8433],[-2,-28],[-14,-344]],[[13681,8067],[-46,1],[-244,7],[-78,2],[-131,4],[-241,7]],[[12941,8088],[18,350],[6,124],[1,28],[9,179],[15,297]],[[12990,9066],[336,1],[341,0],[337,2]],[[14004,9069],[-13,-318],[0,-1],[-13,-317]],[[16021,3018],[-1,-32],[64,-92],[-1,-25],[62,-28],[9,-29],[51,-44],[-7,-37],[37,-41],[-23,-42],[50,-96],[95,-62],[43,-74],[-8,-28]],[[16392,2388],[-48,-52],[45,-60],[1,-41],[27,-28],[26,-25],[72,-16],[13,-37],[75,-38],[-67,-69],[-148,-152]],[[16388,1870],[-206,-104],[-89,14],[-86,-7],[-64,25],[-66,-3],[-150,76],[-140,70],[-112,36],[-26,33],[-121,66],[-52,29],[-64,-3],[-187,-12],[-159,-10],[-30,2],[-74,39],[-30,35]],[[14732,2156],[15,45],[46,20],[-28,68],[-11,94],[13,67],[34,22],[32,112],[5,64],[27,49],[4,63],[32,36],[2,49],[-44,67],[-43,28],[-45,63],[-4,38],[-36,87],[-50,128],[-32,43],[-6,35]],[[14643,3334],[160,41],[46,5],[71,7],[347,0],[86,0],[285,1],[47,-18],[58,34]],[[15743,3404],[4,-30],[64,-56],[34,-61],[21,-10],[33,-85],[46,-61],[28,-2],[48,-81]],[[14004,9069],[470,1],[120,0],[334,-1]],[[14928,9069],[4,-51],[-6,-265],[-1,-50],[-6,-308],[-2,-105],[-5,-249]],[[14912,8041],[-313,10],[-87,2]],[[5734,4544],[-204,16],[-104,-29],[-27,-22],[-81,25]],[[5318,4534],[18,294],[44,90],[38,6],[29,62],[1,20],[69,108],[50,95]],[[5567,5209],[60,32],[33,-24],[60,27],[53,-23],[36,41],[55,-4],[26,-29],[72,-39],[69,-93],[28,-48],[39,-37],[29,3],[37,-61],[1,-3],[28,-50],[77,-62],[15,-42],[72,-43],[14,-28],[2,-76],[-21,-51],[4,-82]],[[6356,4517],[-325,12],[-133,8],[-164,7]],[[15042,7424],[2,-70],[36,-26],[55,20],[34,-62],[20,1],[-37,-143],[-76,-118],[-47,-52],[-116,29],[-8,2],[-5,-16],[-62,-186],[-163,1],[-43,1]],[[14632,6805],[-298,-16]],[[14912,8041],[-2,-197],[-5,-286],[35,-23],[28,-46],[82,-2]],[[15050,7487],[-8,-63]],[[13432,6724],[305,1],[-35,43],[2,67]],[[14632,6805],[-9,-84],[-59,-167],[-14,-72],[-53,-188],[-41,-133],[-65,-223],[152,-59],[65,-30]],[[14608,5849],[-148,-208]],[[14460,5641],[-70,69],[-57,7],[-65,72],[-29,65],[-3,37],[-43,43],[-91,51],[-37,12],[-70,-15],[-43,-66],[-82,-81],[-17,-3],[-20,-15],[7,-50],[-113,38],[-11,-59],[-62,-68],[-33,5],[-63,60],[-37,-29],[14,-43],[-103,-42]],[[13432,5629],[-134,-3],[-107,-2],[-315,-5]],[[12913,6722],[296,1],[223,1]],[[12940,8060],[1,28]],[[16999,1642],[99,17],[-2,20],[71,122],[43,-48],[62,-11],[28,45],[48,10],[3,-36],[53,-3],[64,47],[34,2],[56,29],[48,-52],[-24,-19],[27,-56],[175,-198],[78,17]],[[17862,1528],[-80,-85],[-95,-132],[-101,-164],[-45,-73],[-78,-178],[-37,-88],[-118,-376],[-59,-143]],[[17249,289],[-30,142],[18,32],[28,186],[-2,109],[-13,182],[-45,103],[-13,68],[5,63],[-12,37],[12,104],[-8,11],[-42,39],[-58,118],[-55,28],[7,102],[-35,-12],[-7,41]],[[5555,5460],[-40,-82],[19,-43],[9,-102],[24,-24]],[[5318,4534],[-48,-36],[-30,27],[10,28],[-32,59],[-35,-37],[-44,-20],[-33,-87],[-21,-23],[-55,42],[-74,-19],[-20,-27],[-57,-4],[-52,-29],[-17,24],[-88,-61]],[[4722,4371],[-45,61],[-36,201],[-1,125],[-32,4],[16,94],[-23,1],[-1,51],[-76,85],[-264,316]],[[10847,3666],[37,397],[0,6],[44,477]],[[10928,4546],[36,43],[29,7],[35,-80],[-6,-18],[46,-85],[93,-2],[33,-19],[56,77],[58,-18],[32,32],[-12,35],[54,10],[2,-49],[40,-40],[49,-70]],[[11473,4369],[30,-111],[62,-25],[49,-43],[61,-14],[38,10],[26,46],[83,54],[60,-10],[33,-80],[10,-88],[69,-50],[14,-52],[-41,-35],[-19,-71],[87,-72],[8,-32],[-22,-75],[57,-118],[2,-57],[-80,-106],[-29,-16],[-24,-12],[-24,-58],[-14,-75],[-37,-41]],[[11872,3238],[-312,8],[-395,10],[-355,7]],[[10810,3263],[28,310],[9,93]],[[19955,2807],[-212,-46],[-213,-68],[-7,29],[88,38],[131,39],[33,-14],[179,30],[76,14],[27,18],[145,17],[45,27],[95,3],[70,-15],[56,11],[41,-8],[91,36],[31,-40],[-22,-19],[-134,13],[-194,-12],[-219,-32],[-107,-21]],[[19570,3254],[326,-8],[8,52],[195,41],[-2,28],[116,2],[141,3],[81,-1],[176,77],[27,101],[55,44],[27,85],[-67,68]],[[20653,3746],[1,37],[53,46],[71,21],[68,-13],[74,-29],[-3,46],[41,28],[143,23],[37,-68],[26,6],[-25,72],[32,109],[57,21],[-16,39],[19,61],[47,-61],[28,-1],[14,-100],[-27,-46],[12,-46],[29,2],[8,-82],[-13,-52],[12,-37],[53,43],[28,-51],[34,74],[90,5],[61,-38],[10,50],[-53,74],[-29,61],[-45,52],[9,19],[124,-54],[67,-37],[120,-30],[-4,-65],[-32,-20],[-69,70],[-48,-16],[45,-79],[30,-24],[-4,-65],[-92,-49],[-50,30],[-25,-28],[12,-59],[62,-12],[-47,-72],[-42,-39],[-51,-1],[-44,-54],[-45,30],[19,43],[-30,26],[-20,-84],[-5,-98],[-52,-11],[-36,-45],[-18,-25],[-59,-130],[-31,-29],[-30,9],[-50,-31],[17,-25],[26,-50],[-39,-39],[-29,3],[-46,-7],[-34,22],[-61,-13],[-17,32],[18,28],[-29,57],[20,54],[-41,-3],[-29,61],[-18,-4],[-18,-120],[-17,-22],[5,-61],[-13,-30],[21,-51],[-136,23],[-47,-4],[-15,20],[-58,0],[-55,18],[-290,27],[-136,-13],[-126,-30],[-18,-18],[-71,-6],[-91,-57],[-94,-10],[-57,-34],[-85,-21],[-56,34]],[[19475,2823],[22,39],[-4,59],[-43,77],[-6,64],[-29,35],[-42,19],[-40,49]],[[19333,3165],[12,29],[81,15],[42,-14],[23,31],[46,-12],[33,40]],[[21728,3498],[142,140],[84,112],[88,86],[74,86],[60,42],[8,31],[59,45],[35,83],[59,5],[45,-49],[-99,-60],[-60,-51],[-241,-228],[-154,-162],[-95,-87],[-5,7]],[[21507,3255],[-79,-99],[-82,-114],[-37,-48],[-152,-224],[-91,-174],[-29,-81],[-36,56],[44,8],[93,189],[-12,23],[23,18],[54,109],[87,75],[8,59],[17,46],[51,0],[-1,48],[31,35],[52,18],[47,68],[12,-12]],[[21004,2915],[76,-12],[-9,-26],[-58,7],[-9,31]],[[20899,2926],[70,-13],[14,-44],[47,-3],[33,-36],[-151,47],[-13,49]],[[20685,2845],[98,-20],[63,-34],[84,-33],[121,-68],[-15,-40],[-32,47],[-62,42],[-134,52],[-82,21],[-41,33]],[[16250,8143],[125,-19],[37,-5],[60,-8],[97,-30],[44,26],[29,-25],[79,-6],[8,-22],[8,-33],[46,-66],[61,-5],[57,26],[25,-18],[72,0],[43,-13],[21,-15]],[[17062,7930],[-124,-230],[-1,-2],[-174,-323],[-13,-24],[-168,-319],[-130,-263],[-64,-132]],[[16388,6637],[4,37],[-40,52],[-23,77],[-95,100],[-50,3],[-52,40],[-9,71],[-102,18],[-94,130],[-23,11],[-139,72],[-161,74]],[[15604,7322],[4,186],[6,27],[124,302]],[[18560,6576],[9,23],[63,-5],[36,67],[41,0],[18,26],[108,-46]],[[18835,6641],[174,-75],[83,-35],[-25,-38],[13,-34],[132,-26],[19,-30],[68,-30],[12,-22]],[[19311,6351],[11,-47],[-43,-5],[-22,-28],[3,-50],[63,-33],[-13,-86],[17,-93],[70,-45],[-4,-55],[59,-31],[41,-36],[-12,-31],[54,-10],[18,-56],[-44,-4],[-72,8],[-132,-117],[0,-59],[25,-15],[-18,-82],[0,-54],[-21,-53],[-26,-19],[6,-56]],[[19271,5294],[-28,-61],[-59,5],[-50,-69],[5,-66],[-60,-33],[-25,58],[-68,34],[-157,-173],[-81,22],[-23,18]],[[18725,5029],[-46,46],[-50,-12],[-18,62],[-40,11],[-3,61],[-58,68],[2,34],[-15,23]],[[18497,5322],[3,42],[-21,27],[-60,155],[-9,42],[6,42],[-44,-3],[-21,35],[-31,17],[-46,-3],[-35,56],[-60,52],[-46,11],[-69,85],[-72,89],[-36,20],[-29,74],[-39,17]],[[17888,6080],[96,76]],[[17984,6156],[228,169],[53,39],[120,82],[121,134],[54,-4]],[[11011,7237],[31,0],[47,0],[10,28],[0,74],[39,0],[134,-1],[288,-53]],[[11496,5587],[-313,-5]],[[11183,5582],[-3,39],[-36,53],[-8,50],[-26,20],[7,80],[-7,20],[-59,49],[-51,76],[-45,39],[-47,9],[-55,69],[-10,43],[-60,40],[-11,42],[27,42],[-21,51],[-26,7],[-71,-15],[-148,31],[-96,58]],[[10437,6385],[22,77],[-71,78],[34,53],[-7,30],[-26,54],[17,24],[32,-36],[35,34],[45,-19],[22,73],[71,-37],[18,65],[-11,30],[-67,36],[23,37],[49,1],[32,-22],[28,13],[-19,75],[15,64],[-17,37],[-7,70],[-44,35]],[[10611,7157],[157,73],[16,7],[135,0],[36,0],[52,0],[4,0]],[[13928,3394],[103,100],[242,235]],[[14273,3729],[16,-9],[211,-123],[59,-69],[31,-76],[-15,-21],[68,-97]],[[14732,2156],[-73,-76],[-134,-40],[-39,-25],[-30,-50],[8,-103],[-40,-12],[-42,-9],[-24,-51],[17,-40],[-26,-39],[-38,-2],[-26,-44],[-10,-84],[-40,4],[-49,-52]],[[14186,1533],[-102,106],[-225,236],[-224,239],[-245,266],[-146,150],[-113,115]],[[13131,2645],[351,480],[-34,77],[-30,65],[20,78]],[[13438,3345],[314,-12],[42,-1],[67,-3],[67,65]],[[15751,4773],[198,-27],[147,56],[155,52]],[[16251,4854],[107,-135],[56,-71],[229,-74],[-5,-49]],[[16638,4525],[1,-176],[-20,-75],[-3,-72],[32,-46],[7,-132],[27,-464],[-80,-306],[-58,-233],[129,-68],[41,-39],[58,39]],[[16772,2953],[-1,-51],[-114,-93],[-208,-331],[-57,-90]],[[15743,3404],[-49,44],[-27,49],[-10,24],[-50,33],[-4,53],[-42,5],[-28,65],[-31,5],[-29,36],[-35,14],[-40,50],[-66,80],[5,54],[-12,61],[-24,52],[-12,121],[-26,24],[55,62],[0,54],[35,42],[8,86],[-7,31],[4,104],[35,20],[-19,32],[39,50],[-1,58]],[[15412,4713],[88,93],[8,84],[117,61]],[[15625,4951],[77,-117],[49,-61]],[[9928,5588],[-111,-2],[-133,2]],[[9684,5588],[-6,129],[-43,212],[-6,30],[-37,188],[17,59],[35,127],[37,129],[40,139],[43,153]],[[9764,6754],[41,31],[65,-24],[22,-34],[78,3],[81,-75],[4,5],[18,-14],[63,-15],[42,-54],[55,-47],[37,-6],[32,-33],[21,30],[61,-29],[53,-107]],[[11183,5582],[-305,-4]],[[10878,5578],[-66,0],[-233,-3],[-150,1],[-95,1],[-129,1],[-70,1],[-207,9]],[[19590,7059],[-62,-63],[-20,26],[-64,-20],[-43,25],[-59,12],[-21,-27],[-72,27],[-13,41],[31,80],[-17,65],[-39,13],[13,33],[-29,29],[-36,1],[-119,61],[-50,38],[-69,35],[-25,53]],[[18896,7488],[39,60],[57,8],[69,29],[70,-7],[16,44],[-47,36],[2,46],[-35,12],[-7,40],[-48,58],[-18,0]],[[18994,7814],[-22,44],[17,54],[-13,35],[92,31],[95,1],[55,98]],[[19218,8077],[69,-12],[176,-5],[205,-5],[91,-3],[61,10],[39,-13],[74,11],[118,5],[481,3]],[[20532,8068],[-52,-49],[-23,-60],[-11,-213],[54,-148],[22,-26],[-13,-72],[14,-53],[47,-70],[20,-94],[40,-13],[11,-56],[-49,-53],[-53,-33],[-19,-70],[91,-3]],[[20611,7055],[-23,-65],[-26,-1],[-24,-19],[-30,-96],[-39,-60],[-41,-20]],[[20428,6794],[-55,-3],[-55,54],[-35,20],[-55,-10],[8,-91],[-23,-39],[-94,-103],[-58,0],[-18,40],[-1,40],[23,95],[-22,15],[-36,78],[-61,28],[-62,-65],[-70,-22],[-10,-36],[-44,-15],[-56,-9],[-42,13],[0,46],[35,18],[10,113],[-1,38],[-40,56],[-76,4]],[[17801,7500],[63,119],[15,108],[17,36]],[[17896,7763],[70,-17],[5,-37],[71,4],[33,-39],[15,-50],[115,-34],[85,-9],[51,-28],[14,-58],[-22,-57],[50,-66],[116,3],[99,-60],[-9,-16],[36,-33],[69,-1]],[[18694,7265],[-18,-21],[159,-276],[21,-38],[-5,-100],[-13,-26],[-3,-163]],[[17984,6156],[-26,48],[-120,141],[-19,66],[-32,111],[-35,148],[-45,30],[-164,102]],[[17543,6802],[32,81],[73,217],[37,119],[17,67],[99,214]],[[14552,4623],[40,5],[61,36],[48,-2],[35,49],[108,36],[62,5],[27,30],[108,-20],[77,23],[63,-34],[160,-26],[71,-12]],[[14273,3729],[4,4],[7,31],[-36,61],[-4,36],[-110,168],[1,40],[2,58],[-33,147],[-20,33],[-11,4],[41,162]],[[14114,4473],[5,60]],[[14119,4533],[229,65],[91,2],[113,23]],[[17204,5857],[217,1],[138,-3]],[[17559,5855],[-7,-362],[0,-4],[-4,-176],[60,-64],[12,-76],[-17,-46]],[[17603,5127],[-35,-55],[-13,-29],[-18,-371],[-1,-11],[-8,-175]],[[17528,4486],[-134,-53],[-22,-52],[-50,55],[-52,35],[-64,-27],[-67,16],[-16,45],[-29,-2],[-62,28],[-72,4],[-22,-15],[-67,-44],[-182,39],[-51,10]],[[16251,4854],[46,93],[37,0],[48,35],[44,-19],[62,43],[10,30],[95,7],[19,11],[54,12],[-25,56],[45,53],[-21,30],[-4,87],[82,187],[53,124],[33,77],[76,175]],[[16905,5855],[18,42],[161,-41],[41,0],[79,1]],[[9317,8043],[-4,-126],[-5,-128],[-6,-137],[-2,-47],[-5,-169]],[[9295,7436],[-43,1],[-212,9],[-32,-10],[-63,-19],[-48,-15]],[[8088,7237],[-22,47],[-22,48],[-115,63],[-33,69],[-67,46],[-45,-15],[-49,61],[-23,-20],[-85,50],[-47,-10],[-79,67]],[[7501,7643],[65,45],[57,40],[36,58],[84,136],[-17,27],[-41,107]],[[7685,8056],[34,56],[60,10],[80,72],[-7,41],[76,-29],[56,-2],[10,97],[-10,154],[11,16],[53,25],[99,-23],[41,0],[25,-33],[61,6],[21,17],[-5,18]],[[8290,8481],[27,-2],[144,110],[6,8],[67,105],[42,-45],[40,-13],[12,36],[91,47],[29,-23],[17,-51],[90,-23],[1,-60],[47,-67],[35,-7],[51,28],[74,76]],[[9063,8600],[68,-96],[49,-31],[51,-13],[39,-69],[59,-45],[-12,-303]],[[16392,1254],[12,22],[237,451]],[[16641,1727],[21,27],[92,10],[20,-26],[55,-27],[32,6],[20,-55],[112,-21],[6,1]],[[17249,289],[-43,-113],[-19,-176],[-97,39],[-38,43],[31,43],[-54,24],[-142,48],[-104,25],[-183,17],[-142,-6],[-20,9],[-210,-19],[-133,-23],[-44,2],[-347,-125],[-89,-48],[-292,311]],[[15323,340],[16,19],[-11,52],[54,28],[5,21],[-38,102],[64,44],[71,12],[32,38],[-10,34],[58,36],[17,59],[-15,51],[33,11],[-2,55],[16,49],[-6,66],[54,28],[27,40],[52,5],[27,-29],[125,-47],[33,-17],[55,52],[54,75],[48,36],[-13,56],[116,14],[207,24]],[[20623,8254],[-22,-10]],[[20601,8244],[-104,94],[-63,88],[-47,34],[-51,-3],[-72,15],[-65,37],[-104,29],[-124,55],[-46,52],[1,52],[-2,139],[30,20],[29,33],[16,58],[35,18],[4,40],[-41,39],[11,32]],[[20008,9076],[1,28],[434,-6],[330,2],[247,-2]],[[21020,9098],[136,-133]],[[21156,8965],[0,-141],[10,-32],[91,-273]],[[21257,8519],[-231,-70],[-55,-21]],[[20971,8428],[-30,-56],[-42,-3],[-21,-29],[-51,-3],[-72,19],[-7,-31],[-46,-24],[-29,7],[-15,-47],[-35,-7]],[[10539,7206],[72,-49]],[[9764,6754],[1,9],[18,303],[3,55],[18,300]],[[9804,7421],[79,-4],[229,-9],[224,-3]],[[10336,7405],[24,-11],[63,65],[29,-63],[30,-44],[64,-48],[13,-52],[-20,-46]],[[10878,5578],[-19,-37],[-130,-243],[-62,-117],[-63,-118],[-23,-43],[-108,-206],[-105,-199],[-59,-80],[3,-25]],[[10312,4510],[-122,78]],[[10190,4588],[-70,45],[-191,122],[-53,33],[-32,112],[-7,30],[-24,86],[-11,37],[-116,94],[-41,50],[-6,12],[-28,24],[29,47],[-30,90],[-59,175],[7,43]],[[9558,5588],[126,0]],[[14928,9069],[383,1],[391,-3],[143,5]],[[15604,7322],[-20,8],[-135,61],[-183,91],[-32,17],[-96,5],[-88,-17]],[[17528,4486],[175,-109],[53,-126],[5,-124],[5,-164],[40,-48]],[[17806,3915],[18,-13],[134,-102]],[[17958,3800],[-14,-9],[72,-103],[6,-57],[-40,-282],[-30,-135],[-7,-217],[-1,-48]],[[17944,2949],[-454,-2],[-198,-1],[-19,7],[-28,5],[-46,-27],[-18,13],[-50,-17],[-73,41],[-8,18],[-64,-16],[-85,3],[-129,-20]],[[16980,6536],[-3,-2],[-295,-140],[-45,-12],[-76,-39]],[[16561,6343],[-32,-9],[-32,38],[-2,43],[-39,-4],[-20,55],[-29,18],[9,56],[-28,95]],[[16388,6635],[0,2]],[[17062,7930],[63,-77],[32,-6],[9,55],[46,-47],[89,4],[-13,-50],[60,-14],[24,-43],[34,-22],[64,9],[91,-4],[35,-22],[44,23],[24,-12],[71,25],[13,28],[59,-35],[66,0],[23,21]],[[17543,6802],[-44,-99],[-78,41],[-113,-45],[-43,-22],[-285,-141]],[[10336,7405],[-28,25],[-25,131],[25,52],[50,26],[86,17],[45,53],[-8,68],[15,38],[-18,49],[1,2],[10,23],[-19,54],[39,32],[-14,46],[-41,39]],[[10454,8060],[2,67]],[[10456,8127],[301,-3],[212,-2],[56,-1],[89,-1],[170,-3],[298,-4]],[[21627,6217],[-241,15]],[[21386,6232],[1,298],[141,252],[-43,74],[-28,106],[37,67]],[[21494,7029],[48,26],[76,-2],[102,86],[160,48],[48,20],[67,1],[44,20],[43,3],[43,-18],[84,8],[105,-4],[102,-70],[26,-56],[-14,-69],[20,-36],[-42,-38],[-31,-53],[-16,-82],[-47,-57],[-4,-70],[39,-87],[-15,-156],[21,-78],[-34,-68],[16,-48],[31,-7],[19,-41],[-24,-76]],[[22361,6125],[-43,32],[-85,-18],[-75,36],[-19,35],[-47,39],[-66,-41],[-23,-119],[-39,-28],[-10,-89],[-53,-74],[-146,33],[-44,-12],[-33,16],[78,274],[-129,8]],[[7108,5852],[-3,-15]],[[7105,5837],[-37,4],[-43,84],[-32,-15],[-51,38],[-37,-20],[-16,-47],[-60,1],[-12,-45],[-69,-17]],[[6748,5820],[-100,398],[-22,88],[-149,142],[-169,152],[36,48],[40,-7],[51,61],[56,38],[3,38],[31,79],[-16,56],[6,18],[-49,87],[8,20],[-50,74]],[[6794,7121],[0,-2],[20,-37],[56,-13],[10,-44],[53,-27],[67,-92],[6,-24],[51,-53],[110,-51],[81,-39],[24,-61],[54,-36],[50,-14],[97,-127],[24,-1],[119,12],[26,-1],[128,16],[10,-37],[91,-30],[25,-23],[60,-3],[36,34]],[[7992,6468],[-187,-302],[-34,-41],[-83,-97],[-83,-97],[-77,-134]],[[7528,5797],[-6,-13]],[[7522,5784],[-96,-19],[-20,30],[-46,13],[-26,-15],[-111,-18],[-60,17],[-55,60]],[[20428,6794],[-49,-27],[-28,-64],[20,-37],[-48,-44],[-8,-28],[26,-52],[-69,-144],[-35,-55],[-43,-36]],[[20194,6307],[-42,-23],[-229,-125],[-103,-57],[-132,68],[-93,53],[-237,141],[-22,7],[-25,-20]],[[18694,7265],[171,201],[31,22]],[[9295,7436],[206,-6],[139,-4],[164,-5]],[[9558,5588],[-134,13],[-110,9],[-87,8],[-110,-89]],[[9117,5529],[-40,35],[17,55],[-11,107]],[[9083,5726],[23,115],[48,33],[-27,47],[43,60],[-62,61],[-22,45],[-21,56],[-40,36],[-35,68],[-30,28],[-33,8],[-49,-16],[-66,8],[-25,98],[-56,69],[-52,56]],[[6748,5820],[-41,-64],[-9,-46],[-93,0],[-48,-1],[-70,-28],[-33,8],[-94,-33],[-80,69],[-14,17],[-49,-44],[-52,-20],[-151,-3],[-148,-46],[-12,8],[-1,1],[-37,24]],[[5529,6255],[49,-17],[39,44],[89,48],[24,23],[19,5],[27,62],[20,10],[49,78],[-25,26],[26,48],[28,8],[38,65]],[[5912,6655],[89,65],[12,32],[61,-13],[69,16],[49,48],[20,59],[25,0],[43,-37],[47,37],[-5,89]],[[1721,4977],[-28,-89],[41,-61]],[[1734,4827],[-61,-104]],[[1673,4723],[-28,31],[-58,-43],[-57,-6],[-48,9],[-59,39],[-73,-24],[-25,20],[-113,-40],[-54,-37],[-28,6],[-83,-41],[-89,-17],[-106,80],[-12,52],[3,54],[-52,64]],[[791,4870],[21,31],[-38,55],[16,52],[-24,49],[40,21],[43,62],[-2,60],[-26,29],[9,43],[60,88],[52,37],[33,51],[22,-12]],[[997,5436],[23,-33],[45,-1],[37,49],[109,-16],[24,-41],[54,17],[22,-15],[87,7],[11,16],[70,-41],[48,-6],[64,19],[69,-12],[134,-38],[35,-1],[5,38],[66,-25],[23,-30],[66,26],[9,-85],[-29,-109],[-56,-66],[-20,-41],[-106,-32],[-66,-39]],[[18497,5322],[-16,-38],[-30,-13],[-47,33],[-50,-24],[-34,-62],[-131,-74],[-47,19],[-54,-42],[-29,-42],[-63,-5],[-50,-18],[-40,61],[-9,38],[-118,-17],[-99,-15],[-77,4]],[[17559,5855],[44,-6],[12,9],[131,100],[142,122]],[[2294,5859],[46,39],[27,46],[36,-6],[107,51],[11,28],[59,17],[41,71],[45,19],[60,-36],[42,10],[22,57],[48,23],[43,49]],[[2881,6227],[109,-12],[21,-37],[63,-34],[-49,-71],[68,-61],[3,-66],[-26,-48],[9,-46],[41,-19],[28,-90],[-40,-48],[-7,-54],[-33,-25]],[[3068,5616],[-65,17],[-16,23],[-54,-6],[-76,-60],[-46,-25],[-10,-34],[-53,-35],[-36,-44],[-73,27],[-18,-18],[-32,-139],[8,-50],[33,-19],[7,-58],[39,-118],[-12,-36],[-10,-41]],[[2654,5000],[-67,-17],[-96,6],[-30,-37],[-64,25],[-47,-33],[-10,-39],[-42,-18],[-42,27],[-30,-20],[-223,-27],[-249,-29],[-20,-11]],[[997,5436],[43,36],[68,16],[28,69],[51,69],[27,13],[65,-6],[62,15],[62,60],[61,30],[22,39],[59,-3],[39,14],[33,-12],[44,22],[209,-2],[75,35],[54,-52],[43,11],[123,-1],[60,-9],[35,17],[34,62]],[[1673,4723],[34,-37],[-18,-41],[-70,-52],[-17,-30],[44,-39],[-50,-35],[-19,-77]],[[1577,4412],[-21,16],[-73,-16],[-132,-57],[-53,16],[-58,-38],[-3,-42],[-52,-47],[-66,-93],[-52,-38],[-97,-71],[17,-65],[-40,-47],[-90,-62],[-2,-22]],[[855,3846],[-569,1],[-286,2],[30,283],[35,322],[20,192],[81,55],[99,91],[32,-10],[35,-75],[29,-13],[48,20],[172,19],[24,-14],[45,46],[69,24],[72,81]],[[2791,3877],[-213,-5],[-312,-6]],[[2266,3866],[-10,17],[-82,2],[-27,34],[16,30],[-45,57],[-53,12],[-25,42],[12,28],[-62,75],[-4,33],[-84,48],[-6,68],[-33,-4],[-53,35],[19,33],[-21,30],[-36,-14],[-20,24],[-70,-12],[-41,6],[-33,-34],[-31,36]],[[2654,5000],[45,-79],[29,-86],[-7,-46],[44,-42],[20,-74],[38,-19],[84,11],[8,26],[51,-2],[20,-51],[-17,-104],[-4,-55],[3,-53],[28,-6],[60,-77],[36,-89],[67,-33],[25,-71],[-78,-31],[25,-41],[40,-10],[41,-66],[18,-61],[47,-20],[1,-31]],[[3278,3890],[-487,-13]],[[1630,3846],[-195,0],[-183,-1],[-397,1]],[[2266,3866],[-370,-5],[0,-18],[-266,3]],[[18866,2305],[-195,-110],[-140,-84],[-149,-104]],[[18382,2007],[-39,57],[-54,47],[-42,-4],[-19,29],[-118,364],[-134,363],[-32,86]],[[17958,3800],[97,36],[166,-21],[202,-29],[137,-76],[96,-54],[135,-75],[4,50],[91,52],[172,-45],[53,-86],[30,-6],[32,-37],[66,-152],[-3,-24],[61,-17],[-45,-69],[56,-46],[25,-36]],[[19475,2823],[-58,-11],[-8,-32],[-112,-88],[-68,-33],[-19,-37],[-84,-85],[26,-20],[-69,-49],[-77,-67],[-100,-76],[-40,-20]],[[19350,8478],[77,242],[-16,59],[67,75],[51,-18],[62,25],[9,40],[-49,28],[8,38],[-29,23],[-41,-5],[-35,20],[-73,8],[-4,39],[-40,32]],[[19337,9084],[32,-7],[156,2],[483,-3]],[[20601,8244],[8,-47]],[[20609,8197],[-41,-92],[-36,-37]],[[19218,8077],[82,238],[50,163]],[[9016,5018],[61,36],[62,22],[9,29],[-73,43],[-28,-36],[-37,38],[86,59],[1,23]],[[9097,5232],[-11,110],[44,84],[-25,38],[12,65]],[[10190,4588],[-211,-210],[-209,-207],[-62,-60],[-14,-14],[-22,-21],[-29,-28],[-40,-38],[-100,-29],[-63,-58],[-34,-30]],[[9406,3893],[-30,44],[-52,74],[-38,57],[-96,127],[-40,54],[-146,-110],[-141,-101],[-44,60],[1,79],[14,34],[40,21],[12,38],[-17,42],[-31,16],[21,61]],[[8859,4389],[49,-1],[51,28],[8,93],[-7,77],[-24,56],[16,82],[-15,33],[8,66],[27,91],[21,27],[11,25],[20,41],[-8,11]],[[19907,4886],[30,-28],[126,-117]],[[20063,4741],[-28,-60],[-71,-19],[-28,-57],[-54,-52],[-20,-63],[0,-52],[-47,-30],[32,-71],[68,-29],[38,-45],[-6,-74],[15,-32],[-8,-61],[-34,-35]],[[19920,4061],[-11,19],[-53,-2],[-69,68],[-88,189],[-34,31],[-45,14],[19,-65],[49,-54],[-4,-29],[6,-34],[47,-40],[5,-41],[68,-82],[26,-116],[25,-40],[38,-26],[56,-55],[108,-52],[18,-32],[56,-2],[45,-35],[66,13],[44,-6],[136,-79],[92,41],[51,88],[82,12]],[[19570,3254],[84,84],[-167,-19],[10,344],[5,330],[-18,52],[2,69],[-18,23],[-39,-6],[-46,-54],[-46,31],[-40,-24],[-27,28],[3,48],[-56,35],[-121,73],[-74,45],[-156,97],[-305,213],[-59,34]],[[18502,4657],[25,35],[83,35],[22,34],[-33,58],[-8,89],[26,32],[-1,56],[55,27],[54,6]],[[19271,5294],[622,-395],[14,-13]],[[15323,340],[-399,420],[-334,351],[-162,168],[-242,254]],[[16388,1870],[54,-79],[66,-23],[4,-38],[47,-18],[82,15]],[[17062,7930],[167,308],[24,82],[9,31],[55,182],[0,142],[-19,24],[20,38],[7,104],[26,102]],[[17351,8943],[112,8],[106,-20],[80,-32],[41,-32],[62,-9],[55,25],[57,2],[77,-26],[87,8],[26,-22],[38,-100],[42,-29],[160,-76],[17,-68],[-5,-39],[-2,-28],[-89,-80],[-16,-43],[39,-78],[41,-30],[41,-6],[124,17],[66,39],[67,16],[87,-110],[11,-96],[57,-34],[33,-35],[-28,-102],[96,-71],[61,1],[53,-79],[47,0]],[[22849,7173],[76,-24],[73,-37],[10,-45],[63,-42],[0,-47],[57,-103],[32,-16],[-6,-111],[46,-46],[12,-106],[-17,-22],[3,-119],[-9,-49],[34,-34],[1,-83],[21,-19],[2,-51],[-42,-41],[-26,61],[-67,20],[-34,-69],[36,-32],[-7,-38],[45,-52],[27,7],[23,-73],[-27,-24],[-16,-50],[-93,-37],[24,-56],[-128,-30],[-39,1],[-55,53],[-9,44],[-48,12]],[[22811,5915],[5,74],[-33,56],[-33,91],[-302,0]],[[22448,6136],[36,84],[-4,105],[29,57],[20,102],[-2,50],[-28,84],[49,88],[-33,78],[21,29],[-15,62],[63,42],[40,64],[71,52],[-69,81],[99,46],[124,13]],[[23445,7231],[200,-442],[48,-138],[52,-117],[-81,40],[-35,80],[15,18],[-50,55],[-36,99],[-56,61],[29,43],[-9,71],[-78,128],[-61,23],[-10,43],[-31,40],[-40,-6],[-39,30],[-44,1],[1,62],[45,13],[11,45],[-23,31],[-60,-25],[-11,52],[4,63],[-33,159],[17,73],[-31,76],[-1,38],[-40,133],[-35,-2],[-27,34]],[[23095,8027],[38,-91],[57,-169],[54,-136],[58,-122],[104,-192],[39,-86]],[[23221,7033],[23,13],[74,-9],[85,-59],[-7,-44],[46,-2],[47,-76],[29,-90],[-8,-30],[15,-107],[-27,-21],[-39,31],[-79,16],[22,51],[-2,81],[-33,66],[-23,6],[-44,59],[-12,46],[-59,34],[-8,35]],[[23154,4535],[50,27],[39,3],[44,31],[44,68],[49,-40],[72,32],[61,62],[57,34],[6,41],[42,-21],[114,33],[40,-8],[21,102],[-5,120],[9,68],[35,51],[15,57],[20,190],[11,163],[-12,58],[14,62],[18,15],[20,176],[-7,118],[-25,54],[-41,119],[-9,83],[-22,30],[-29,126],[36,0],[51,-154],[29,-124],[36,-231],[0,-119],[-47,-249],[-18,-277],[-54,-254],[-31,-193],[-21,-81],[-8,-77],[-37,32],[-97,17],[-66,-9],[-127,-35],[-273,-116]],[[23158,4519],[-4,16]],[[16671,6137],[69,-222],[165,-60]],[[15625,4951],[23,62],[-14,34],[-88,77],[-18,69],[-56,46],[-10,54],[-23,43],[-20,31],[-35,62],[-62,49],[1,33],[-32,45],[-36,0],[-34,26],[-6,39],[-50,13]],[[15165,5634],[39,35],[139,135],[206,198],[96,93],[155,150],[37,14],[367,247],[184,129]],[[16561,6343],[42,-19],[39,-39],[2,-51],[27,-97]],[[14460,5641],[0,-1],[-288,-358],[-1,-1],[-97,-121],[-192,-240]],[[13882,4920],[-104,58],[-139,97],[5,30],[-48,129],[-27,8],[-54,61],[-25,7],[5,39],[-77,100],[9,43],[44,69],[-39,68]],[[8247,4429],[-159,8]],[[8088,4437],[12,88],[-1,173],[6,65],[-85,57],[-5,57],[-26,57],[22,65],[-114,76],[-153,224]],[[7744,5299],[255,-11],[193,-9],[194,-10],[9,0],[325,-15],[28,-1],[349,-21]],[[8859,4389],[-180,17],[-192,11],[-240,12]],[[14119,4533],[-114,65],[-37,9],[-5,48],[-31,42],[-77,32],[-79,60],[106,131]],[[14608,5849],[157,-61],[19,-8],[191,-75],[190,-71]],[[20611,7055],[83,-35],[59,16],[87,0],[93,19],[49,-6],[130,31],[47,33],[44,4],[41,24],[160,47],[41,-35],[27,-57],[-23,-14],[31,-47],[14,-6]],[[21386,6232],[-339,23],[-75,2],[-211,1]],[[20761,6258],[-210,1],[-107,0],[-243,1],[-7,47]],[[18502,4657],[-145,47],[53,-235],[-60,-82],[-13,-17],[-51,-69],[-120,-162],[-9,-11],[-351,-213]],[[8447,5754],[292,-13],[16,0],[328,-15]],[[7744,5299],[-70,173],[-85,175],[10,90],[-17,27],[-60,20]],[[7528,5797],[262,-11],[116,-5],[278,-14],[128,-6],[122,-6],[13,-1]],[[6785,7623],[83,9],[283,28],[31,-8],[23,-6],[130,-1],[166,-2]],[[8072,6564],[-38,-16],[-42,-80]],[[4260,5309],[-40,-69],[-75,-72],[-26,-74],[-47,-49],[-46,-86],[-121,-14],[-14,-10],[-48,-21],[-58,-45]],[[3785,4869],[-17,36],[-64,14],[-37,28],[-1,61],[-69,115],[-43,33],[-58,19],[-43,38],[-1,68],[-97,68],[1,43],[-32,33],[-48,23],[-77,0],[4,50],[-14,48],[-54,13],[-10,42],[-57,15]],[[2881,6227],[0,68],[40,35],[115,-4],[34,15],[42,54],[29,63],[106,5],[56,30],[56,48],[114,-7],[120,-45],[79,60]],[[3672,6549],[28,-53],[7,-123],[37,18],[50,0],[27,-57],[-8,-39],[32,-42],[-1,-60],[41,-26]],[[12392,5193],[68,-293],[-5,-85],[18,-42],[19,-40],[69,-22],[22,-81],[15,-90],[59,-60],[61,-42]],[[12718,4438],[-22,-4],[-53,-16],[-84,59],[-67,10],[-42,-18],[-54,18],[-43,-18],[-51,14],[-42,-5],[-76,15],[-63,-10],[-43,23],[-128,-75],[-30,3],[-93,6],[-14,-23],[-91,3],[-106,-70],[-143,19]],[[11473,4369],[50,70],[7,56],[-22,69],[-42,92],[-35,25],[-20,64],[16,57],[-4,51],[37,72],[-5,43],[43,74],[-1,46],[37,35],[-19,46],[-41,47],[-51,23],[1,60],[-37,77],[-4,56],[-85,52],[-59,1],[-35,31],[-21,66]],[[12303,5607],[10,-120],[34,-107],[28,-118],[17,-69]],[[4143,7086],[14,45],[-6,77],[25,41],[71,20],[94,76],[71,33],[14,25],[139,66],[40,-38],[42,-61],[0,-40],[-36,-80],[22,-28],[-9,-84],[88,-10],[54,-34],[22,34],[50,27],[69,18]],[[4907,7173],[24,-69],[42,-21],[-45,-86],[12,-57],[50,4],[29,-31],[42,-11],[18,-31],[7,-28],[43,-33],[16,-35],[-6,-53],[16,-79],[14,-6]],[[3672,6549],[3,29],[43,81],[37,40],[42,17],[-11,90],[52,14],[13,26],[-46,147],[39,22],[17,49],[50,26],[59,-13],[71,-65],[12,-26],[51,28],[-8,26],[47,46]],[[7081,5234],[-5,-145],[-109,-327],[-44,-126],[-24,-142]],[[6899,4494],[-242,10],[-301,13]],[[7105,5837],[-5,-217],[-19,-386]],[[10468,8672],[-1,-60],[-6,-224],[-5,-261]],[[10454,8060],[-39,62],[-44,-13],[-49,9],[-89,-1],[-6,66],[-31,25],[-60,-15],[-61,-38],[-74,48],[-23,-37],[-39,-1],[-15,-56],[-57,-17],[-28,49],[-33,4],[-102,1],[-32,36],[-28,-49],[-47,40],[-24,-11],[-3,-53],[-47,-27],[-31,21],[-110,-45],[-65,-15]],[[9063,8600],[54,57],[-71,116],[28,21],[98,139],[23,131],[45,72]],[[9240,9136],[213,-6],[319,8],[111,-8],[413,-21],[191,-10]],[[10487,9099],[-11,-255],[-3,-68],[-5,-104]],[[3785,4869],[5,-71],[-35,-140],[-75,-46],[-24,-70],[-49,-24],[-5,-44],[20,-23],[-42,-14],[5,-33],[38,-18],[-8,-57],[-101,-120],[-64,-61],[-28,-79],[46,-39],[53,-18],[27,-31]],[[3548,3981],[-270,-91]],[[6494,8213],[27,50],[57,25],[80,86],[66,42],[54,12],[33,24],[33,-34],[26,2],[38,-33],[55,-3],[23,17],[78,-24],[-28,40],[-46,107],[16,39]],[[7006,8563],[210,-120],[40,-27],[20,-23],[104,-123],[64,-106],[39,13],[178,-118],[24,-3]],[[4907,7173],[122,102],[118,218]],[[5147,7493],[44,30],[55,-37],[54,25],[40,-6],[24,-80],[-10,-60],[32,-18],[21,-12],[27,47],[31,2],[28,-41],[56,-46],[-14,-39],[94,7],[14,29],[51,12],[50,-15],[-22,-30],[34,-73],[-4,-76],[18,-53],[44,-50],[58,14],[-18,-41],[33,-48],[-16,-45],[9,-51],[-2,-48],[16,-70],[-9,-59],[27,-6]],[[20595,3959],[-34,-56],[-50,-9],[-74,-32],[-37,-52],[-81,-28],[-53,8],[-125,103],[-21,4],[-71,75],[-64,14],[-30,49],[-35,26]],[[20063,4741],[133,-125],[19,0],[177,20],[382,43],[55,148],[-18,70],[4,96],[17,22]],[[20832,5015],[36,-13],[144,-18],[55,-21],[108,-21],[-40,-26],[17,-49],[-15,-40],[50,-1],[-17,-44],[7,-55],[-54,-30],[28,-51],[-33,-10],[-64,29],[-73,9],[-11,-35],[56,-17],[56,-55],[-22,-58],[-58,17],[-72,37],[-71,-12],[-31,-59],[-58,-35],[1,-29],[54,8],[37,-29],[36,0],[18,66],[42,-26],[60,-71],[-40,-69],[-33,-88],[-52,-9],[-24,-74],[-88,-42],[-120,-105],[-66,-30]],[[11709,9072],[429,0],[603,-4],[249,-2]],[[11582,8113],[5,247],[1,48],[8,346],[7,318]],[[11603,9072],[106,0]],[[21156,8965],[146,-144],[72,-39],[43,-6],[68,-48],[5,-30],[60,-33],[60,-14],[63,-76],[23,-27],[88,-8],[22,-69],[34,26],[65,-100],[1,-50],[58,4],[-45,-77],[30,-46],[18,2]],[[21967,8230],[6,-36],[45,-60],[44,3],[52,-40],[8,-40],[38,-72],[107,-66],[30,-106],[26,-63],[-33,-30],[-147,-31],[-55,-3],[-55,-22],[-57,6],[-52,41],[-57,70],[-19,41],[-35,15],[-3,33],[-66,20]],[[21744,7890],[-35,87],[-45,17],[-38,62],[-36,12],[-120,50],[-17,58],[-33,53],[-4,5],[-2,13],[-16,15],[-124,209],[-17,48]],[[8022,9083],[69,-110],[12,-55],[70,-101],[64,-63],[25,-64],[-6,-87],[55,-40],[-2,-57],[-19,-25]],[[7006,8563],[-27,12],[-5,62],[53,32],[17,49],[-1,67],[53,36],[-5,95],[0,29],[-29,106],[51,66],[-3,43],[29,41],[5,24],[207,-4],[177,-18],[125,-9],[35,5],[112,-13],[220,-6]],[[8020,9180],[2,-97]],[[14114,4473],[-38,-13],[-83,-4],[-68,40],[-25,40],[-93,4],[-50,56],[-42,7],[-28,-33],[-41,-12],[-107,-89],[-67,-38],[-24,-30],[-98,-116],[-133,-154],[-78,-97]],[[13139,4034],[-50,46],[-65,24],[-131,7],[-42,-9],[-29,21],[-18,47],[21,60],[3,68],[-41,57],[-55,33],[-9,26],[-5,24]],[[13438,3345],[27,69],[-28,92],[-12,179],[-39,77],[-85,110],[-46,26],[-42,56],[-49,25],[-25,55]],[[10928,4546],[-53,-8],[-21,-35],[-97,-30],[-47,-31],[-36,50],[-47,-47],[-66,-7],[-41,13],[-32,-22],[-82,21],[-94,60]],[[13139,4034],[-38,-27],[-110,-36],[-21,-18],[-86,-49],[-39,-33],[2,-52],[-30,-24],[-21,-59],[10,-65],[48,-59],[-17,-49],[-123,-126],[-29,-46],[25,-43],[-15,-42],[-31,-5],[-54,-35],[-92,-12],[-12,-22]],[[12506,3232],[-218,4],[-262,-2],[-154,4]],[[18382,2007],[-174,-134],[-193,-186],[-95,-83],[-58,-76]],[[22593,8108],[38,-112],[-29,-82],[53,-58],[52,-27],[-59,-24],[-152,42],[-59,28],[-24,52],[-44,31],[-23,68],[-83,22],[-7,35],[-50,35],[-13,45],[-77,54],[-79,13],[-21,32],[-49,-32]],[[21020,9098],[206,2],[411,-1]],[[21744,7890],[-10,-34],[85,-74],[27,-71],[46,-65],[50,-31],[-36,-44],[-120,35],[-139,62],[-37,34],[-98,17],[-38,-6],[-55,88],[-119,92],[-49,-7],[-5,-13],[166,-157],[67,-72],[68,11],[19,-40],[64,-28],[-21,-53],[-63,13],[-175,-45]],[[21371,7502],[-92,2],[-41,39],[-53,19],[-38,-29],[-62,43],[-72,-4],[-54,24],[-24,28],[-10,96],[-26,246],[-5,105],[41,42],[20,120],[-8,55],[18,41],[6,99]],[[10810,3263],[-338,7],[-591,9],[-359,3],[41,385],[-157,226]],[[20761,6258],[96,-118],[-12,-78],[49,-88],[48,-50],[52,-31],[46,-4],[-13,-42],[107,-43],[20,9],[62,-51]],[[21216,5762],[-32,-24],[-9,-37],[-32,-20],[-34,11],[-50,-14],[-94,7],[-54,20],[-47,-3],[-38,-24],[-56,-56],[53,-96],[46,-19],[-26,-88],[9,-41],[30,-23],[6,-66],[23,-32],[12,-67],[-190,53],[-52,58],[-37,-15],[-81,42],[-89,-6],[-42,-26],[-27,26],[-107,46],[-23,39],[-37,-14],[-104,33],[-65,8],[-34,-2],[-139,79],[-58,1],[-78,82],[-5,20],[-82,71],[-30,5],[78,-101],[-53,5],[20,-50],[81,-57],[49,-11],[32,-46],[23,-84],[111,50],[46,-44],[85,-37],[87,-3],[57,-52],[4,-28],[58,-31],[74,1],[10,-27],[84,-27],[50,0],[69,-42],[34,-43],[82,-33],[14,11],[80,-1],[14,-25]],[[5147,7493],[20,36],[146,108],[50,-2],[50,20],[57,43],[85,-21],[54,15],[57,61],[53,23],[76,-50],[78,25],[31,-70],[18,-76],[66,7],[66,-8]],[[16365,9077],[179,0],[251,-1],[159,1],[397,2]],[[17351,9079],[0,-124],[0,-12]],[[16204,9076],[161,1]],[[23158,4519],[-4,16]],[[22442,4125],[41,32],[39,60],[-8,62],[30,14],[52,-17],[227,124],[14,-17],[-138,-76],[-122,-84],[-99,-90],[-36,-8]],[[22361,6125],[-6,-43],[40,-22],[37,25],[16,51]],[[22811,5915],[-42,-26],[30,-43],[-56,-59],[-43,-12],[19,-57],[-84,-28],[-37,-34],[-15,-108],[-70,-31],[-20,-71],[-52,-74],[2,-69],[-38,-35],[-32,67],[-48,10],[-5,-68],[-28,-14],[6,-39],[-40,-22],[34,-69],[-55,-3],[-13,-29],[-45,-20],[-49,9],[-15,-46],[-54,-21],[-49,31],[-36,-18],[-90,-4],[-28,62],[-32,26],[-45,-6],[18,-50],[-40,-34],[-102,51],[-8,49],[-39,9],[-8,47],[-51,21],[-34,-30],[37,-90],[6,-49],[-102,-2],[6,56],[-94,-40],[-2,98],[83,-25],[37,-23],[18,42],[-51,42],[-42,50],[29,47],[-9,35],[-39,15],[-94,-106],[-116,20],[30,-103],[-72,27],[-38,52],[-59,13],[-22,32],[20,73],[-52,15],[-35,42],[53,39],[-46,47],[1,55],[-67,59],[137,2],[56,-19],[67,2],[58,50],[6,67],[29,45],[-34,17]],[[10487,9099],[393,-22],[329,-3],[394,-2]],[[17351,9079],[405,3],[439,-1],[239,-1],[341,0],[389,-1],[173,5]],[[8020,9180],[124,1],[287,-9],[376,-18],[157,-11],[276,-7]],[[13131,2645],[-117,120],[-460,467],[-48,0]],[[4439,4316],[-43,-43],[15,-32],[-71,-41],[-31,4],[-31,-49],[-36,1],[-16,-40],[-53,-13],[3,58],[-19,14],[-308,-99],[-301,-95]],[[4722,4371],[-65,-20],[-31,4],[-73,-29],[-70,-41],[-44,31]],[[21371,7502],[10,-25],[-62,-40],[-68,-75],[-11,-32],[-85,-23],[-61,-37],[-85,13],[-94,1],[-35,42],[-27,41],[-9,64],[-26,1],[-52,-59],[-45,-6],[-65,28],[-42,76],[3,145],[-38,2],[-16,83],[-29,44],[7,179],[22,75],[41,45],[11,35],[52,84],[-58,34]],[[8088,4437],[-685,32],[-504,25]]],"transform":{"scale":[0.0003701375276768184,0.00029755728997289953],"translate":[-84.32186899999999,33.843151]},"objects":{"cb_2019_37_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"COUNTYFP":"181"}},{"arcs":[[5,6,7,8,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[12,13,14,15,16,17]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[18,19,20,21]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[22,23,24,25,26,27]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[28,29,-6,-12,30,31,32]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[33,34,35,36,37,38,39]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[40,41,42,43,44,45,46]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[47,-27,48,49,50,51]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[52,53,54,55,56,57]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-52,58,59,60,-23,-28,-48]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[61,62,63,64]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[65,66,-24,-61,67,68]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[69,-25,-67,70,71,72,73,-8,74]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-49,-26,-70,-75,-7,-30,75]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[76,77,78]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[-41,-47,79,-63,80,81]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[82,83,84,85,86]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[[87]],[[88,89,90,91]],[[92]],[[93]],[[94]],[[95]],[[96]]],"type":"MultiPolygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-4,97,98,99,100]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[101,102,103,104,105,106,107,108]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[109,-31,-11,110,111,112,113]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[114,115,-56,116,117,118,119]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[120,121,122,123,-53,-58,124,125,126]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[127,128,129,-112,130,131]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[132,133,134,135,136,137,138]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[139,140,141,-102,-109,142,143]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[144,-125,-57,-116,145,146,147]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[148,149,150,151,-122,152,153]],"type":"Polygon","properties":{"COUNTYFP":"191"}},{"arcs":[[154,155,-13,-18,156,157,158,159,160]],"type":"Polygon","properties":{"COUNTYFP":"193"}},{"arcs":[[161,162,-79,163,164]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[165,166,167,168,169,170,171]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[172,-113,-130,173,174,175]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-132,176,177,178,179,-128]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-60,180,-1,-5,-101,181,-68]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-123,-152,182,183,184,185]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[186,187,188,-99,189,-140,-144,190]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[-110,-114,-173,-176,191,192,193,-32]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[194,195,196,197]],"type":"Polygon","properties":{"COUNTYFP":"177"}},{"arcs":[[198,199,200,-37,201,202,203,204]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-133,-139,205,206,-103,-142,207]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-156,208,-174,-129,-180,209,210,211,-15,-14]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[-201,212,-45,213,214,-38]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[215,216,217,218,219]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[-107,220,-150,221]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[222,223,224,225,-216,-220,226]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[-218,227,228,229]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[230,231,-228,-217,-226,232,233]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[234,-229,-232,235]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[236,237,-185,238,-91,239]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[240,241,-167,242,243,-136,244]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[245,246,-210,-179,247,248,249]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[250,251,252,-89,253,254,-105,255]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[-165,256,-117,-55,257,-162]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-141,-190,258,259,-134,-208]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[[260,261,262]],[[263,-20,264]],[[265]],[[266,267]]],"type":"MultiPolygon","properties":{"COUNTYFP":"055"}},{"arcs":[[268,-153,-121,-127,269,270,-188,271]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[-187,-191,-143,-108,-222,-149,-154,-269,-272]],"type":"Polygon","properties":{"COUNTYFP":"195"}},{"arcs":[[-73,272,273]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[274,275,276,-246,-250,277]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-270,-126,-145,-148,278,-273,-72,279]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-206,-138,280,-196,281,282]],"type":"Polygon","properties":{"COUNTYFP":"187"}},{"arcs":[[-221,-106,-255,283,-183,-151]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-271,-280,-71,-66,-69,-182,-100,-189]],"type":"Polygon","properties":{"COUNTYFP":"183"}},{"arcs":[[284,-211,-247,-277,285,-204,286]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-202,-36,287,-157,-17,288]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-42,289,290,-224,291,292]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[293,294,295,-111,-10,296]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[297,298,-43,-293,299]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[300,301,-64,-80,-46,-213,-200,302]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[303,-193,304,-161,305,306,307]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[-291,308,309,-233,-225]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[-158,-288,-35,310,311]],"type":"Polygon","properties":{"COUNTYFP":"189"}},{"arcs":[[-44,-299,312,313,-214]],"type":"Polygon","properties":{"COUNTYFP":"199"}},{"arcs":[[314,-252,315,316]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[317,-50,-76,-29,-33,318,319]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[320,321,322,-170]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[323,-159,-312,324,325]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-9,-74,-274,-279,-147,326,327,-294,-297]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[-146,-115,-120,328,-327]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-296,-84,329,-177,-131]],"type":"Polygon","properties":{"COUNTYFP":"167"}},{"arcs":[[-85,-295,-328,330,331]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[-124,-186,-238,332,-77,-163,-258,-54]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[-22,333,-321,-169,334]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-323,335,336,-171]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[-287,-203,-289,-16,-212,-285]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-83,-87,337,-248,-178,-330]],"type":"Polygon","properties":{"COUNTYFP":"179"}},{"arcs":[[-104,-207,-283,338,339,-316,-251,-256]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-314,340,-39,-215]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[341,342,-259,-98,-3,343]],"type":"Polygon","properties":{"COUNTYFP":"185"}},{"arcs":[[[345]],[[-282,-195,-198,346,-262,347,-339]]],"type":"MultiPolygon","properties":{"COUNTYFP":"095"}},{"arcs":[[-319,-194,-304,-308,348]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[349,-241,-245,-135,-260,-343]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-305,-192,-175,-209,-155]],"type":"Polygon","properties":{"COUNTYFP":"197"}},{"arcs":[[350,-306,-160,-324,-326]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-119,351,-331,-329]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[352,-309,-290,-82,353]],"type":"Polygon","properties":{"COUNTYFP":"175"}},{"arcs":[[-254,-92,-239,-184,-284]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[-337,354,-243,-166,-172]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-301,-303,-199,-205,-286,-276,355]],"type":"Polygon","properties":{"COUNTYFP":"045"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/nd.topo.json b/app/assets/topojson/states/nd.topo.json new file mode 100755 index 00000000..6a5f2f83 --- /dev/null +++ b/app/assets/topojson/states/nd.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[361,5793],[-188,0],[-171,1]],[[2,5794],[-1,187],[-1,186],[0,187],[0,226],[272,-1],[189,0],[188,-1],[189,0],[189,1],[189,0],[189,0],[189,0]],[[1594,6579],[-1,-225],[0,-1],[0,-187],[-1,-186],[78,0],[0,-187]],[[1670,5793],[-186,0],[-188,-1],[-47,1],[-15,0],[-125,0],[-187,0],[-187,1],[-188,-1],[-186,0]],[[8926,2802],[183,-1]],[[9109,2801],[1,-187],[0,-187],[-1,-187],[35,0],[0,-86],[0,-8],[1,-39],[-1,-6],[0,-49],[0,-187],[0,-187],[0,-186]],[[9144,1492],[-146,0],[-35,0],[-145,1],[-36,0],[-144,0]],[[8638,1493],[-38,1],[-142,0],[-39,0],[-141,0],[-40,0],[-140,0],[-42,0]],[[8056,1494],[0,187],[1,187]],[[8057,1868],[-1,188],[-1,186],[-39,0],[0,187],[0,187],[0,23],[0,23],[0,140]],[[8016,2802],[182,1],[1,0],[179,1],[182,0],[183,-2]],[[8743,2802],[182,0],[1,0]],[[356,1491],[0,-191],[-17,0],[-334,1]],[[5,1301],[0,190],[-1,373],[1,379],[0,186],[0,187],[0,133],[0,246]],[[5,2995],[182,-1],[183,0],[179,-1]],[[549,2993],[-1,-438],[0,-312],[83,0],[1,-84],[-1,-295],[0,-373]],[[631,1491],[-180,0],[-95,0]],[[5715,4105],[185,0],[184,0]],[[6084,4105],[185,0],[185,-1],[185,0]],[[6639,4104],[185,0]],[[6824,4104],[0,-186],[0,-187],[45,0],[0,-183]],[[6869,3548],[0,-187],[-1,-185],[1,-188]],[[6869,2988],[-128,0],[-56,0],[-125,0]],[[6560,2988],[-60,0],[-122,0],[-60,1],[-123,0],[-61,0],[-123,0],[-60,0],[-119,0],[-65,0]],[[5767,2989],[0,186]],[[5767,3175],[0,187],[0,187],[1,183],[-53,0],[0,187],[0,186]],[[4638,1846],[1,28],[-22,30],[-17,19],[-18,20],[-25,54],[-40,67],[-7,20],[5,36],[-6,61],[-35,29],[-8,18],[4,21]],[[4470,2249],[1,2],[10,15],[47,26],[20,27],[2,55],[-5,14],[-59,63],[-18,36],[-3,65],[-7,34],[-30,38]],[[4428,2624],[219,-1],[27,1],[3,-1],[27,1],[4,0],[30,0],[1,187],[0,179],[109,0]],[[4848,2990],[74,0],[110,-1],[72,0],[182,0],[113,0],[70,0],[114,0],[69,0]],[[5652,2989],[0,-182],[-1,-186],[-1,-187],[0,-187],[56,0],[-1,-188],[-2,-187],[-3,-186],[0,-20],[-2,-167]],[[5698,1499],[-181,1],[-181,0],[-181,1],[-181,1],[-110,0]],[[4864,1502],[3,33],[26,34],[3,21],[-18,9],[-34,-13],[-52,-35],[-30,-2],[-16,12],[6,48],[-12,17],[-43,-13],[-15,11],[-13,52],[28,9],[6,19],[-8,17],[-37,-3],[-18,4],[-24,26],[-7,31],[29,67]],[[2419,5606],[187,0]],[[2606,5606],[188,0],[187,0],[0,-187],[-1,-187],[74,0],[0,-190],[0,-1],[0,-185]],[[3054,4856],[0,-187],[0,-186],[73,0],[-1,-191],[0,-186]],[[3126,4106],[-184,0],[-185,0],[-184,0],[-185,0],[0,-193]],[[2388,3913],[-16,-10],[-26,-2],[-26,15],[-38,4],[-19,8],[-32,30],[-38,10],[-58,-7],[-90,56],[-25,38]],[[2020,4055],[-9,13],[-7,37],[-2,60],[7,16],[7,52],[41,59],[55,48],[18,27],[20,48],[-2,15],[-59,28],[-7,17],[-1,38],[-12,19],[-45,-19],[-22,4],[-19,25],[6,17],[0,39],[-19,12],[-38,12],[-43,1],[-35,10],[23,16],[6,34],[-10,16],[-31,14],[-27,-19],[-31,-6],[-31,10]],[[1753,4698],[0,158],[0,187]],[[1753,5043],[0,190],[-82,0],[-1,186],[0,187]],[[1670,5606],[188,0],[186,0],[1,0],[187,0]],[[2232,5606],[187,0]],[[7932,4478],[148,0],[1,187],[0,186],[186,1]],[[8267,4852],[186,-1],[187,0],[186,0]],[[8826,4851],[0,-186],[-1,-187],[31,0],[0,-33],[0,-31],[0,-125],[0,-187],[0,-186],[0,-187]],[[8856,3729],[-139,0],[-7,0]],[[8710,3729],[-24,1],[-15,0],[-145,0],[-40,0],[-149,0],[-35,0],[-149,0],[-36,0],[-148,0]],[[7969,3730],[-37,0],[0,186],[5,36],[0,68],[-5,11],[0,72]],[[7932,4103],[0,148]],[[7932,4251],[0,38],[0,189]],[[2804,1680],[332,0],[211,0],[0,-186],[121,0],[237,-1],[229,0],[15,-6],[0,-363],[0,-187],[180,0],[180,0],[0,-186],[33,-1]],[[4342,750],[-17,-18],[-11,13],[-16,-24],[-45,9],[-6,-37],[-18,-2],[-3,-17],[9,-40],[-21,-25],[-17,-16],[-24,-4],[-1,-13],[-43,-20],[-25,-6],[-7,-64],[-23,-11],[-22,-33],[-34,0],[-36,-13],[-24,-3],[-15,-60],[-23,-12],[-9,-19],[-26,-4],[-15,-31],[-46,10],[-30,-19],[-35,-31],[-50,-12],[-2,16],[-43,-35],[7,-35],[-11,-5],[-14,9],[-31,-3],[6,-20],[-21,-1],[-17,-15],[-26,31],[-27,-24],[-27,14],[-22,38],[-31,-20],[-12,-22],[-24,-8],[-66,26],[-16,23],[-30,12],[-28,-19],[-13,13],[-50,-18],[-18,14],[-23,-8],[-6,23],[-5,63],[-18,-19],[-17,-3],[-4,11],[-27,2],[1,-27],[-22,12],[-24,-12],[-24,18],[-21,-31],[-49,-7],[-9,13]],[[2945,254],[0,140],[0,186]],[[2945,580],[0,168],[-70,0],[-1,187],[-1,186],[-2,188],[-2,185],[-66,0]],[[2803,1494],[1,186]],[[9213,1],[-179,0],[-178,0],[-181,1]],[[8675,2],[0,186],[1,187],[1,186],[0,185]],[[8677,746],[140,-1],[40,1],[141,0],[38,0],[142,0],[37,0],[144,0],[36,0],[145,0],[31,-1],[149,1]],[[9720,746],[31,0],[0,-187],[0,-187],[-1,-187],[0,-53],[45,-9],[0,-123]],[[9795,0],[-180,0],[-182,0],[-220,1]],[[8418,5599],[-188,1]],[[8230,5600],[-187,0],[-1,0],[-187,0],[-187,1],[-188,0],[-187,0]],[[7293,5601],[0,125],[0,62],[1,31],[-1,156],[-42,0],[-1,186]],[[7250,6161],[0,187],[0,108],[0,1],[0,8],[1,3],[0,112]],[[7251,6580],[188,0],[189,0],[189,0],[188,1],[190,0],[189,0],[7,0],[368,0]],[[8759,6581],[-1,-112],[2,-106],[0,-16],[-1,-187],[1,-186],[31,0],[1,-189],[0,-186]],[[8792,5599],[-1,0],[-186,0],[-187,0]],[[10382,2236],[-5,-12],[19,-15],[16,-26],[-6,-8],[7,-8],[9,-7],[0,-27],[43,13],[4,-15],[-9,-49],[-12,-3],[-1,-31],[7,-25],[-18,-14],[7,-29],[-8,-44],[-28,-54],[4,-33],[7,-16],[10,-8],[-13,-17],[30,-20],[-12,-28],[-2,-26],[9,-28],[-4,-29],[-10,-25],[6,-22],[-17,-33],[-4,-39],[13,-25],[-11,-40]],[[10413,1493],[-37,-1],[-147,0],[-152,0],[-29,0],[-150,-1],[-31,0],[-146,-1]],[[9721,1490],[-35,0],[-147,1],[-34,0],[-146,0],[-34,0],[-21,0],[-44,0],[-7,0],[-30,0],[-45,1],[-34,0]],[[9109,2801],[184,-2],[182,0]],[[9475,2799],[182,0],[183,0],[182,0],[91,0],[6,0],[7,0],[79,0],[158,-1]],[[10363,2798],[-14,-15],[15,-12],[-5,-24],[10,-47],[-4,-20],[12,-20],[-2,-41],[-22,-9],[11,-3],[13,-39],[-3,-17],[12,-31],[0,-65],[-18,-9],[13,-24],[-6,-17],[10,-20],[-23,-77],[15,-26],[5,-46]],[[5715,4105],[-185,1]],[[5530,4106],[1,186],[0,188],[-57,0],[0,187],[0,187],[0,187]],[[5474,5041],[0,189],[-57,0],[1,186],[-1,187]],[[5417,5603],[188,0]],[[5605,5603],[188,0],[343,0],[407,0]],[[6543,5603],[-1,-187],[1,-187]],[[6543,5229],[-136,1],[-52,0],[-135,0],[-53,0],[-133,0],[0,-191],[-1,-187],[0,-186],[0,-187],[51,0],[0,-187],[0,-187]],[[563,2993],[-14,0]],[[5,2995],[2,415],[1,480],[1,128],[1,119],[-3,288]],[[7,4425],[32,-15],[23,-48],[19,8],[15,31],[21,1],[35,-21],[33,-43],[46,13],[27,24],[7,32],[12,16],[-12,29],[11,13],[39,-32],[5,-28],[12,-11],[29,37],[8,31],[-1,23],[-8,24],[3,26],[17,26],[20,-7],[33,-33],[30,17],[22,20],[2,16],[-44,38],[5,26],[33,33],[26,16],[29,9],[38,-20],[22,-4],[30,25],[13,19],[20,5],[6,-21],[-32,-22],[0,-10],[27,-32],[30,-14],[28,-1],[-4,-21],[-31,-28],[-17,-23],[0,-21],[22,-18],[54,0],[19,-25],[25,-39],[24,1],[13,12],[23,27],[45,24],[72,-23],[46,15],[53,21],[26,-5],[11,8],[9,32],[25,9],[30,-5],[19,32],[-39,37],[22,36],[30,36],[21,20],[65,2],[36,15],[35,7],[22,-7],[7,-39],[26,16],[60,7],[26,-8],[22,9],[52,3],[28,-11],[14,-19],[31,-4],[46,31],[14,2],[36,-15],[17,-14]],[[2020,4055],[-1,-322],[-203,0],[-453,1],[1,-195],[-1,-145],[1,-402]],[[1364,2992],[-130,0],[-447,0],[-224,1]],[[8979,5599],[-187,0]],[[8759,6581],[188,0],[188,0],[188,0],[190,0],[282,0],[3,-16],[-17,-22],[0,-18],[0,-18],[13,-4],[-7,-36],[26,-32],[-5,-23],[12,-11],[5,-30],[19,-9],[-10,-17],[4,-22],[26,-17],[10,-48],[0,-25],[-16,-11],[10,-18],[-16,-17],[43,-13],[-6,-32],[9,-13],[-1,-28],[17,-24],[-13,-18],[24,-15],[-6,-28],[8,-24],[19,-19],[19,-21],[-14,-13],[26,-44],[3,-47],[-12,-24],[-8,-38],[-25,-1],[16,-17],[-19,-18],[-15,-32],[1,-32],[-13,-34],[-27,-6],[7,-17],[28,0],[8,-12],[-36,-5],[7,-14]],[[9892,5598],[-168,0],[-181,1],[-189,0],[-141,0],[-16,0],[-31,0],[-187,0]],[[7969,3730],[0,-183]],[[7969,3547],[-184,0],[-184,1],[-183,-1],[-182,0],[-184,1],[-183,0]],[[6824,4104],[185,1],[99,1],[85,-2],[188,1],[185,1],[92,0],[31,0],[62,-1],[154,0],[27,-2]],[[9595,3729],[-151,0]],[[9444,3729],[-34,0],[-150,0],[-35,0],[-148,0],[-36,0],[-148,0],[-37,0]],[[8826,4851],[186,0]],[[9012,4851],[186,0],[187,0],[187,1],[186,-3],[162,0]],[[9920,4849],[-12,-22],[8,-45],[24,0],[6,-12],[-32,-25],[27,-8],[-4,-18],[12,-35],[-3,-22],[20,-4],[14,-41],[3,-31],[15,-28],[17,-12],[10,-54],[-5,-17],[11,-45],[15,-23],[-11,-52],[9,-29],[27,-23],[1,-20],[26,-22],[4,-27],[-15,-26],[0,-23],[14,-28],[8,-2],[6,-14],[11,-11],[6,-28],[17,-33],[4,-57],[31,-25],[3,-38],[30,-17],[-4,-15],[12,-20],[-5,-28],[19,-32],[17,-61],[12,-10],[4,-31],[14,-6]],[[10286,3729],[-109,0],[-26,0],[-157,0],[-13,0],[-3,0],[-12,0],[-4,0],[-152,0],[-30,0],[-154,0],[-31,0]],[[4235,4108],[185,0]],[[4420,4108],[184,-1],[185,-1],[185,0]],[[4974,4106],[0,-186],[0,-1],[0,-186],[-125,0],[-1,-183],[0,-186],[0,-1],[0,-186],[0,-187]],[[4428,2624],[-25,35],[-14,46],[0,19],[24,65],[-2,34],[-34,44],[-17,11],[-47,29],[-61,16],[-50,-7],[-33,-16],[-50,-11],[-8,-10],[-3,-33],[-10,-26],[-29,0],[-60,35]],[[4009,2855],[-38,29],[-51,20],[-38,9],[-3,40],[-13,30],[-5,87],[-16,14],[-33,40],[-12,26],[-14,71],[-36,50],[-4,40],[23,30],[28,22],[25,13],[24,24],[-2,18],[-35,23],[-30,36],[-27,20],[-26,-2],[-36,-16],[-28,2],[-20,-12],[-53,-18],[-26,-13],[-63,-17],[-43,0],[-33,13],[-47,9],[-23,-4],[-41,-17],[-69,-49],[-28,-18],[-38,-5],[-45,18],[-36,3],[-45,39],[-33,22],[-23,9],[-40,3],[-40,-7],[-20,17],[15,34],[-21,28],[-37,-7],[-20,9],[-71,-9],[-49,-9],[-35,6],[-31,14]],[[2647,3520],[-37,51],[-30,25],[-19,30],[3,24],[-4,48],[5,41],[-1,108],[-30,23],[-10,34],[26,5],[17,13],[1,42],[-41,13],[-67,29],[-32,-23],[-25,-58],[-15,-12]],[[3126,4106],[186,0],[184,0]],[[3496,4106],[185,1],[184,0],[185,0],[185,1]],[[9721,1490],[0,-185],[0,-186],[0,-1],[-1,-184],[0,-1],[0,-187]],[[8677,746],[-40,0]],[[8637,746],[0,187],[1,187],[1,186],[-1,187]],[[7198,1121],[0,186],[0,2],[0,183]],[[7198,1492],[132,1],[46,0],[136,1],[45,0],[136,0],[43,0],[139,0],[42,0],[139,0]],[[8637,746],[-138,0],[-43,0],[-131,1],[-48,0],[-131,0],[-49,0],[-132,0],[-48,0],[-135,-1],[-45,0],[-134,0],[-46,1],[-135,0],[-45,0],[-131,0]],[[7246,747],[-49,0]],[[7197,747],[0,187],[1,187]],[[2606,5606],[0,187],[1,186],[116,0],[1,187],[44,0],[143,0]],[[2911,6166],[1,-187],[69,0],[119,0],[69,0],[-1,-186],[0,-187],[0,-187],[1,0],[186,0],[188,0],[187,-1],[188,0],[187,0],[188,-1]],[[4293,5417],[-1,-187],[66,0],[0,-188],[0,-187],[-1,-187],[0,-186],[64,0],[-1,-189],[0,-185]],[[6560,2245],[50,-1],[-1,-188],[-1,-186],[-1,-188],[-2,-187]],[[6605,1495],[-8,0],[-172,1],[-126,1],[-57,0],[-126,0],[-55,1],[-125,0]],[[5936,1498],[-55,1],[-127,0],[-56,0]],[[5652,2989],[115,0]],[[6560,2988],[0,-184],[0,-1],[0,-186]],[[6560,2617],[0,-187],[0,-185]],[[4342,750],[12,32],[20,17],[-20,27],[18,8],[13,-17],[16,7],[7,23],[31,22],[-4,17],[28,5],[-2,39],[25,30],[9,27],[56,30],[-5,-36],[21,-6],[9,20],[46,-23],[32,-7],[6,12],[24,1],[19,2],[6,14],[24,-5],[24,12],[7,-24],[15,0],[42,17],[8,25],[17,6],[12,-13],[56,27],[25,-5],[14,27],[14,-3]],[[4967,1058],[14,-26],[30,-73],[12,-39],[3,-74],[-14,-45],[-31,-58],[1,-19],[31,-57],[-3,-26],[-24,-55],[-23,-27],[-32,-55],[-16,-39],[-4,-18],[4,-35],[16,-27],[2,-36],[-5,-21],[4,-34],[9,-27],[51,-76],[16,-31],[17,-13],[27,-8],[35,-71],[-8,-50]],[[5079,18],[-429,1],[-417,0],[-244,1],[-214,-1],[-376,1],[-276,0],[-179,0]],[[2944,20],[1,186],[0,48]],[[8675,2],[-238,0],[-120,1],[-179,0],[-179,2],[-179,2],[-179,1],[-30,0],[-15,0],[-133,1],[-180,1]],[[7243,10],[1,187],[1,187],[1,186],[0,177]],[[6543,5229],[48,0],[139,0],[47,0],[140,0],[46,0]],[[6963,5229],[0,-191],[0,-16],[1,-25],[0,-146],[0,-85],[10,-14],[26,-3],[36,-19],[15,11],[24,-32],[19,-45],[56,1],[0,-185],[14,0],[15,35],[36,28],[34,-3],[-4,-17],[14,-51],[9,-5],[-1,-30],[9,-13],[40,16],[20,-3],[16,-10],[19,18],[-5,27],[15,9],[29,-28],[9,34],[28,26],[40,25],[15,29],[20,-4],[35,-74],[5,-53],[28,-1],[15,-16],[4,-24],[-13,-18],[-29,-2],[-2,-31],[15,19],[24,8],[26,20],[18,37],[36,12],[38,-6],[12,-18],[-10,-25],[15,-43],[46,-43],[-2,-13],[-3,-23],[9,-15],[62,-3],[81,0]],[[8016,2802],[0,185],[-46,0]],[[7970,2987],[-1,187],[0,186],[0,187]],[[8710,3729],[-1,-184],[-1,-186],[0,-186],[-1,-187],[37,0],[-1,-184]],[[6869,2988],[55,0],[128,0],[53,0],[130,0],[53,0],[131,0],[50,0],[134,-1],[48,0],[135,0],[47,0],[137,0]],[[7198,1492],[-50,1],[-86,0],[-29,0],[-15,1],[-50,0],[-182,1],[-181,0]],[[8267,4852],[1,187],[0,188],[-38,0],[0,186],[0,187]],[[9892,5598],[27,-13],[-16,-15],[5,-59],[25,-21],[-11,-16],[-25,-7],[22,-39],[19,-15],[6,-49],[-20,0],[-7,-34],[17,-24],[-24,-21],[-20,-5],[7,-19],[19,-9],[7,-24],[-23,-3],[0,-11],[27,-24],[-4,-18],[19,-13],[-11,-22],[-6,-34],[36,-31],[-18,-12],[13,-24],[-13,-10],[1,-50],[-28,-15],[5,-51],[23,-10],[-23,-32],[-1,-19]],[[2647,3316],[0,-326],[88,1],[0,-279],[-1,-404]],[[2734,2308],[-486,0],[-60,0],[0,-62],[-469,-1],[-212,0],[-48,-1]],[[1459,2244],[0,218],[0,403],[1,127],[-96,0]],[[2647,3520],[0,-204]],[[2347,6577],[188,0],[100,0],[277,1]],[[2912,6578],[0,-226],[-1,-186]],[[1670,5606],[0,187]],[[1594,6579],[189,-1],[188,0],[164,0],[40,0],[172,-1]],[[5605,5790],[0,-187]],[[5417,5603],[-186,-1],[-1,188],[-187,1],[-187,0],[-70,0],[-117,0],[-188,0],[-1,0],[-187,0],[0,-187]],[[4293,5604],[-188,0],[-187,1],[-188,0],[1,187],[0,187],[-66,0],[0,93],[0,16],[0,77],[0,1],[1,185],[0,1],[-1,227]],[[3665,6579],[189,0],[188,0],[189,-1],[207,1],[169,0],[190,0],[189,0],[189,0],[188,-1],[189,0]],[[5552,6578],[0,-228],[0,-186],[0,-94],[0,-94],[54,0],[0,-69],[0,-23],[-1,-94]],[[6963,5229],[142,0],[46,0],[142,-1],[0,187],[0,186]],[[6543,5603],[0,186],[0,186],[-47,0],[0,186],[0,187],[0,230]],[[6496,6578],[188,0],[190,1],[186,0],[191,1]],[[3288,6578],[189,0],[188,1]],[[4293,5604],[0,-187]],[[2912,6578],[188,0],[188,0]],[[10462,2],[-187,-1],[-180,0],[-120,1],[-180,-2]],[[10413,1493],[28,-13],[9,-45],[37,-60],[4,-18],[-8,-38],[12,-19],[-4,-31],[14,-32],[-7,-21],[17,-63],[20,-15],[1,-18],[-12,-17],[6,-5],[-3,-14],[36,-38],[6,-28],[11,-3],[23,-71],[13,-11],[19,-16],[33,-45],[30,-26],[4,-25],[-6,-36],[8,-52],[-6,-31],[9,-9],[12,-22],[-19,-10],[0,-17],[2,-6],[15,-48],[-6,-30],[3,-36],[13,-6],[5,-36],[-5,-26],[16,-33],[8,-50],[12,-53],[-3,-41],[-14,-29],[-17,-53],[6,-22],[5,-114],[13,-38],[-3,-23],[-109,1],[-179,1]],[[5530,4106],[-186,-1],[-184,1],[-1,0],[-92,0],[-16,0],[-77,0]],[[7,4425],[-1,61],[-1,186],[0,186],[-1,187],[-1,189],[-1,187],[-1,186],[1,187]],[[2407,21],[-179,1],[-179,0],[-179,-1],[-178,0],[-179,1]],[[1513,22],[0,186],[0,187],[0,186],[0,161]],[[1513,742],[102,2]],[[1615,744],[76,0],[104,0],[77,1],[103,1],[74,0],[106,1],[73,0],[0,-166],[180,0],[179,0],[178,-1],[180,0]],[[2944,20],[-179,1],[-178,0],[-180,0]],[[2335,1492],[180,1],[174,1],[114,0]],[[1615,744],[-2,187],[1,186],[-1,183],[0,4],[-3,188]],[[1610,1492],[48,0],[133,0],[180,0],[171,0],[9,0],[184,0]],[[9475,2799],[0,184],[-33,0],[0,186],[1,187],[1,187],[0,186]],[[10286,3729],[0,-41],[16,-52],[-6,-18],[32,-21],[11,-42],[-3,-13],[-24,-41],[27,-29],[-28,-51],[29,-66],[-21,-18],[16,-27],[-12,-9],[10,-24],[-12,-52],[9,-29],[-3,-28],[26,-27],[-7,-65],[-10,-17],[16,-41],[14,-5],[-9,-30],[-14,-19],[22,-19],[-18,-30],[6,-34],[-8,-9],[18,-74]],[[895,740],[-98,1],[-83,0],[-96,0],[-83,0],[-96,0],[-84,0],[-179,0],[-8,0],[-23,0],[-140,0]],[[5,741],[0,186],[-1,37],[1,337]],[[631,1491],[444,1],[98,-1]],[[1173,1491],[82,1],[355,0]],[[1513,742],[-78,-2],[-101,0],[-80,0],[-99,0],[-80,0],[-99,0],[-81,0]],[[7197,747],[-130,0],[-54,0],[-157,1],[-106,0],[-2,0],[-8,-1],[-1,1],[-3,0],[-3,0],[-77,0],[-516,-2],[-151,1]],[[5989,747],[-55,0],[0,218],[1,342],[0,2],[1,189]],[[4009,2855],[0,-51],[-244,1],[-381,-1],[-104,0],[1,-558]],[[3281,2246],[-476,0]],[[2805,2246],[-71,0],[0,62]],[[1513,22],[-187,0],[-172,0],[-178,0],[-179,0],[-179,0],[-179,0],[-434,0],[-2,118],[1,255],[1,186],[0,160]],[[5989,747],[0,-49],[-1,-310],[-1,-374]],[[5987,14],[-418,2],[-177,2],[-313,0]],[[4967,1058],[-10,24],[-1,26],[16,89],[12,28],[22,14],[25,28],[2,18],[-61,85],[8,16],[23,-5],[6,20],[-10,14],[-83,39],[-52,48]],[[6615,11],[-210,2],[-232,0],[-186,1]],[[7243,10],[-362,1],[-266,0]],[[5552,6578],[313,0],[442,0],[189,0]],[[1173,1491],[1,575],[0,178],[285,0]],[[2805,2246],[-2,-2],[1,-564]],[[3972,2245],[498,4]],[[3281,2246],[156,0],[326,0],[209,-1]]],"transform":{"scale":[0.0006962955495679647,0.00046580912795707286],"translate":[-104.04873599999999,45.9350721289145]},"objects":{"cb_2019_38_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[4,5,6,7,8,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[12,13,14,15,16]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[17,18,19,20,21,22,23,24,25]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[26,27,28,29,30,31,32]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[33,34,35,36,37,38,39,40,41,42]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[43,44,45,46,47,48,49,50]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[51,52,53,54,55]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[56,57,58,59,60]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[61,62,63,64,65,66,67]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[68,69,70,-6,71,72,73]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-18,74,75,76,77,78,79,80]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[81,-15,82,83,-39,84,85]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[86,-67,87,88]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-49,89,90,-21,91]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[92,93,-46,94,95,96,97]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[98,99,100,-29,101,102,103,-37,104,105]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-7,-71,106,-59,107,108]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[109,110,-8,-109,111,112,113]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-35,114,115,116,-99,-106,-105,-36]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[117,118,119,-31,120,-24,121,122]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-53,123,124,125,126]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-112,-108,-58,127,128]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-19,-81,129,130,-50,-92,-20]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-11,131,132,-90,-48,133]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-122,-23,134,-132,-10,-9,-111,135,-118,-123]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-45,136,-62,-68,-87,-89,137,-96,-95]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[138,139,140,-85,-38,-104,141]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[142,143,-115,-34,-43,-42,144,-3,145]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[146,-78,147,148,149,150]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-131,151,-63,-137,-44,-51]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-64,-152,-130,-80,152,153,-65]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[154,-149,155,-116,-144,156]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[157,-60,-107,-70,158]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-100,-117,-156,-148,-77,-76,159]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[-4,-145,-41,-40,-84,160,-1]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[161,162,163,164,-54,-127,165]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[166,-55,-165,167,168]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-73,169,-93,-98,170]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[171,172,-13,-17,173,174,-168,-164,175]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-30,-101,-160,-75,-26,-25,-121]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-134,-47,-94,-170,-72,-5,-12]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-119,-136,-110,-114,176,177]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-103,178,179,180,-139,-142]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-163,181,-172,-176]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-32,-120,-178,182,183,-125,184]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[185,-183,-177,-113,-129,186]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-79,-147,-151,187,-153]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[-169,-175,188,-140,-181,189,-56,-167]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-91,-133,-135,-22]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-82,-86,-141,-189,-174,-16]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[190,-27,-33,-185,-124,-52,-190,-180,191]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-179,-102,-28,-191,-192]],"type":"Polygon","properties":{"COUNTYFP":"065"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ne.topo.json b/app/assets/topojson/states/ne.topo.json new file mode 100755 index 00000000..3d86708b --- /dev/null +++ b/app/assets/topojson/states/ne.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[6359,333],[0,-164],[3,-165]],[[6362,4],[-163,-1],[-163,0],[-325,0],[-162,0]],[[5549,3],[0,164],[-2,166],[0,167],[-4,164]],[[5543,664],[148,2]],[[5691,666],[20,0],[143,0],[19,0],[144,0],[19,0],[143,0],[18,0],[145,0]],[[6342,666],[17,0]],[[6359,666],[-1,-166],[1,-167]],[[10268,1323],[0,165],[1,165],[0,164],[0,1],[-1,165]],[[10268,1983],[4,0]],[[10272,1983],[162,0],[2,0],[162,-1],[4,0],[165,0],[1,0],[143,-1],[0,-55]],[[10911,1926],[0,-110],[0,-165]],[[10911,1651],[0,-165]],[[10911,1486],[0,-165],[0,-165],[0,-165]],[[10911,991],[-156,2],[-162,-1],[-163,0],[-164,1]],[[10266,993],[0,82],[-2,83],[0,165]],[[10264,1323],[4,0]],[[10779,3467],[1,-165]],[[10780,3302],[-6,0],[-161,1],[-6,0],[-76,0],[-86,0],[-3,0],[-164,1],[-3,0]],[[10275,3304],[-164,0]],[[10111,3304],[1,165],[0,165],[0,110],[0,55],[0,164]],[[10112,3963],[2,0],[165,0],[3,0],[112,0]],[[10394,3963],[53,-1],[59,0],[107,0],[61,0],[105,0],[1,-141]],[[10780,3821],[-1,-25],[1,-164],[-1,-165]],[[9610,829],[0,165],[0,165],[0,165]],[[9610,1324],[164,0],[1,0],[163,0],[1,0],[162,-1],[3,0],[160,0]],[[10266,993],[-2,-166],[1,-164],[-4,0]],[[10261,663],[-160,0],[-3,0],[-161,0],[-1,0],[-163,1]],[[9773,664],[-163,0]],[[9610,664],[0,165]],[[9611,4128],[0,165],[0,165]],[[9611,4458],[167,0],[168,-1],[168,0]],[[10114,4457],[1,-165],[167,0],[113,0]],[[10395,4292],[-1,-82],[0,-82],[0,-165]],[[10112,3963],[-166,0],[-3,0],[-165,0],[-1,0],[-167,1]],[[9610,3964],[1,164]],[[11968,497],[82,0],[171,-1]],[[12221,496],[52,-24],[33,1],[23,-13],[11,-28],[-18,-68],[18,-31],[48,-32],[8,-39],[17,-14],[29,-8],[8,-23],[-2,-12],[-23,-31],[1,-33],[-17,-29],[12,-39],[15,-15],[29,-7],[27,9],[25,-6],[15,-18],[34,-18],[6,-18],[-223,0],[-136,0],[-163,1],[-163,0],[-162,0],[-163,0]],[[11562,1],[0,165],[1,124],[0,41],[0,165]],[[11563,496],[161,-1],[164,1],[80,1]],[[9119,1324],[163,1],[1,0],[163,-1],[164,0]],[[9610,664],[-163,1],[-1,0],[-163,-1],[-93,1],[-71,0],[-159,-1]],[[8960,664],[-5,0]],[[8955,664],[0,165],[0,165],[0,165],[-1,165]],[[8954,1324],[163,0],[2,0]],[[8952,1984],[164,0],[27,0],[138,0],[27,0],[110,0],[28,0],[165,1]],[[9611,1985],[0,-165],[0,-166],[-1,-165],[0,-165]],[[8954,1324],[-1,0]],[[8953,1324],[0,165],[-1,165],[0,165],[0,165]],[[7792,1984],[-127,0]],[[7665,1984],[-39,0]],[[7626,1984],[0,165],[1,110],[2,138],[0,165],[3,81]],[[7632,2643],[83,0],[192,0],[47,0],[172,-1],[157,0]],[[8283,2642],[7,0]],[[8290,2642],[0,-216],[0,-223],[0,-55],[0,-151],[0,-14]],[[8290,1983],[-131,0],[-91,1],[-74,0],[-165,0],[-37,0]],[[5691,666],[0,166],[163,-1],[0,165],[-1,165],[1,166]],[[5854,1327],[143,0],[19,0],[162,0],[82,0],[80,-29]],[[6340,1298],[0,-137],[-1,-165],[0,-166],[3,-164]],[[7334,664],[-163,1],[-2,0],[-162,0]],[[7007,665],[0,165],[0,165],[0,257]],[[7007,1252],[52,-6],[40,-5],[42,3],[29,-2],[46,-5],[53,-1],[34,9],[32,-4],[53,-3],[68,12],[58,29],[33,2],[18,9],[45,7],[16,9],[35,2]],[[7661,1308],[0,-149],[1,-165],[0,-165],[0,-165]],[[7662,664],[-4,0]],[[7658,664],[-160,0],[-3,0],[-161,0]],[[2878,1903],[328,-2],[27,0],[179,1],[96,-1],[194,1],[50,0],[114,1],[164,0]],[[4030,1903],[1,-54],[2,-141],[0,-385]],[[4033,1323],[-140,0]],[[3893,1323],[-216,1],[-108,2],[-82,1],[-274,-2],[-139,0],[-196,-3]],[[2878,1322],[0,139],[0,439]],[[2878,1900],[0,3]],[[9777,2810],[0,-165],[-1,-21]],[[9776,2624],[-50,31],[-24,1],[-46,-18],[-45,9]],[[9611,2647],[-25,-6],[-17,-16],[-41,-14],[-35,-16],[-38,-7],[-28,1],[-38,-7],[-69,-47],[-40,-8]],[[9280,2527],[0,117],[-152,0]],[[9128,2644],[0,50],[0,114],[0,3],[1,83],[-16,0],[-166,-1]],[[8947,2893],[-2,149],[0,14],[0,83],[1,164]],[[8946,3303],[66,0],[10,0],[7,0],[7,0],[74,0],[2,0],[165,1],[1,0],[166,0],[167,0]],[[9611,3304],[166,0]],[[9777,3304],[0,-165],[0,-165],[0,-164]],[[11570,2011],[-41,10],[-32,-2],[-25,-13],[-38,-9],[-30,-29],[-34,-39],[-20,-8],[-73,-34],[-34,10],[-12,24],[-14,10],[-47,6],[-20,9],[-31,35]],[[11119,1981],[-9,28],[-21,43],[10,32],[31,28],[-12,34],[5,22],[-16,88]],[[11107,2256],[26,0],[108,0],[40,1],[82,0],[15,0],[28,0],[13,0],[49,0],[20,0],[15,0],[41,0],[6,0],[14,0],[124,1]],[[11688,2258],[3,-4],[16,-9],[65,8],[21,-7],[13,-19],[-17,-18],[-27,5],[-17,-25],[2,-20],[18,-34],[5,-16],[5,-56],[-22,-35],[-2,-31]],[[11751,1997],[-14,9],[-37,3],[-48,-4],[-18,6],[-30,-16],[-34,16]],[[11403,1486],[165,0],[82,0],[166,0]],[[11816,1486],[-4,-14],[-23,-21],[-24,-11],[-20,-22],[-8,-31],[9,-27],[43,-28],[11,-42],[11,-11],[3,-3],[18,-11],[48,-15],[26,-38],[2,-28],[25,-27],[-1,-33],[-22,-18],[-9,-19],[16,-48],[-8,-22],[18,-20],[28,-4],[22,8],[18,-8]],[[11995,993],[-106,-1],[-164,-1],[-162,1],[-82,0]],[[11481,992],[-80,0],[-163,-1],[-137,0],[-26,0],[-164,0]],[[10911,1486],[163,0],[164,0],[165,0]],[[6928,4396],[0,138],[0,81],[-15,0],[0,83],[0,82],[-2,247],[0,83],[0,165],[-15,0],[-1,41]],[[6895,5316],[45,19],[26,16],[42,13],[36,23],[37,5],[45,22],[24,6],[33,6],[51,41],[56,23],[40,-4],[22,-27],[17,-9],[37,-38],[3,-3],[26,-23],[60,8],[31,-29],[21,-8],[32,1],[26,3],[79,-47],[49,-1],[11,6],[4,2],[36,-6],[14,-14],[37,-14],[28,-18],[55,2],[7,-3],[14,-8],[59,-4],[39,-12],[42,6],[16,11],[36,-2],[54,-13],[28,6],[51,-18]],[[8264,5234],[0,-1],[0,-146],[-1,-138],[1,-82],[-1,-83],[0,-165],[8,0]],[[8271,4619],[0,-165],[-1,-164],[0,-166],[0,-164]],[[8270,3960],[-252,-1],[-250,0],[-160,0]],[[7608,3959],[-179,0],[-152,-1],[-15,1],[-166,-1],[-151,0]],[[6945,3958],[-17,0]],[[6928,3958],[0,164],[0,53],[0,111],[0,110]],[[11483,662],[-1,165],[-1,165]],[[11995,993],[2,-4],[16,13],[4,54],[32,11],[29,-47],[-14,-39],[-55,-23],[7,-22],[-2,-28],[13,-26],[23,-16],[19,-28],[3,-25],[-8,-25],[25,-55],[8,-43],[17,-21],[6,-23],[-16,-22],[-29,-13],[-5,-22],[17,-10],[51,16],[41,-27],[19,-1],[22,-15],[-4,-39],[5,-17]],[[11563,496],[-81,1]],[[11482,497],[-1,165],[2,0]],[[7632,2643],[-10,0]],[[7622,2643],[1,164],[0,164],[-1,164],[0,1],[-1,163]],[[7621,3299],[323,0],[9,0],[324,2]],[[8277,3301],[7,0],[0,-275],[0,-55],[0,-164]],[[8284,2807],[-1,-165]],[[8791,664],[-158,1],[-6,0],[-156,-1],[-7,0],[-155,0]],[[8309,664],[-6,0]],[[8303,664],[0,165],[-1,164],[0,1],[0,165],[1,165]],[[8303,1324],[162,0],[159,0],[4,0],[163,0],[162,0]],[[8955,664],[-164,0]],[[6718,1260],[69,13],[42,-14],[39,-5],[32,3],[13,-7],[94,2]],[[7007,665],[-163,0],[-14,0],[-149,0],[-15,0],[-145,0],[-162,1]],[[6340,1298],[30,3],[52,-16],[66,4],[15,-9],[93,-1],[30,6],[39,-13]],[[6665,1272],[53,-12]],[[9610,3964],[-84,-1],[-83,0],[-168,-1],[-167,0],[-168,-1]],[[8940,3961],[0,165],[0,165],[0,165],[0,165]],[[8940,4621],[165,0],[3,0],[166,1],[2,0],[166,1]],[[9442,4623],[1,0],[169,0],[0,-102],[-1,-22],[0,-41]],[[2856,3809],[84,-1],[3,166]],[[2943,3974],[217,-4],[184,-2],[125,1],[307,-3]],[[3776,3966],[1,-175],[0,-487]],[[3777,3304],[-308,-1],[-308,0],[-188,0]],[[2973,3303],[-119,-1],[2,246],[-1,6],[1,255]],[[1149,2726],[166,1],[199,-1],[80,1],[276,1],[167,0]],[[2037,2728],[0,-83],[39,0],[-1,-329]],[[2075,2316],[0,-153],[0,-176],[-15,0],[-1,-86]],[[2059,1901],[-165,-1],[-327,0],[-493,-1],[-109,1]],[[965,1900],[0,86],[9,0],[0,487],[-2,21],[0,150]],[[972,2644],[10,0],[2,81]],[[984,2725],[165,1]],[[8290,1983],[7,0],[-1,-164],[0,-163],[0,-9]],[[8296,1647],[0,-91],[0,-232]],[[8296,1324],[-137,0],[-6,0],[-159,0],[-6,0],[-162,1],[-161,0]],[[7665,1325],[0,25],[0,12],[0,293],[0,83],[0,82],[0,164]],[[6960,2806],[0,-81],[-1,-82],[14,0]],[[6973,2643],[-1,-165],[0,-55],[-2,-219],[-4,-219]],[[6966,1985],[-314,-1]],[[6652,1984],[-12,0],[-232,0],[-100,0],[-147,0],[-183,1],[-144,0],[-102,0],[-227,-1]],[[5505,1984],[-20,0],[1,219],[1,26],[3,193],[-2,111],[0,108],[-22,0]],[[5466,2641],[-2,122],[0,207],[0,110],[2,218]],[[5466,3298],[355,-2],[60,2],[232,1],[52,0],[112,0]],[[6277,3299],[186,1],[165,1],[91,0],[61,0],[15,0],[151,-1]],[[6946,3300],[14,0]],[[6960,3300],[0,-164],[0,-164],[0,-165],[0,-1]],[[9442,4623],[0,165],[0,165],[0,165],[0,39],[0,1],[0,125],[1,-1],[0,95],[0,26]],[[9443,5403],[61,-8],[36,38],[58,-2],[14,-14],[38,-3],[49,22],[24,-23],[32,-6],[28,6],[42,-18],[1,-31],[12,-39],[14,-7],[52,-8],[33,-28],[9,-22],[34,-10],[57,5],[28,-4],[52,-16]],[[10117,5235],[1,-119],[0,-165],[0,-164],[0,-165],[-3,0],[-1,-165]],[[9776,2624],[39,-1],[39,4],[34,-17],[54,12],[45,9],[22,9],[49,38],[52,1],[32,13],[49,41],[63,27],[21,1]],[[10275,2761],[0,-6]],[[10275,2755],[0,-112],[-3,0],[0,-28],[-1,-137],[1,-165],[-1,-165],[1,-165]],[[10268,1983],[-162,0],[-2,0],[-163,1],[-1,0],[-164,0]],[[9776,1984],[-165,1]],[[9611,1985],[0,165],[0,165],[0,82],[0,83],[0,167]],[[8290,2642],[19,0],[-2,-245],[144,1],[83,-1],[22,-1],[0,28],[70,0],[0,27],[156,1],[67,0],[0,28],[99,0],[110,1],[68,1],[2,162]],[[9280,2527],[0,-30],[-47,-20],[-17,6],[-23,-10],[-40,-32],[-45,-47],[-43,-27],[-26,-26],[-50,-79],[-28,-25],[-7,-6],[-5,-7]],[[8949,2224],[-27,-44],[-55,-67],[-117,-55],[-11,6],[-37,-20],[-15,-10],[-22,-37],[-40,-30],[-31,-36],[-24,-18],[-33,-17],[-45,-30],[-29,-50],[-58,-41],[-29,-35],[-13,-9],[-56,-64],[-11,-20]],[[8769,5249],[24,13],[20,20],[26,24],[24,34],[18,58],[1,21],[43,17],[24,2],[16,-13],[62,-23],[77,-4],[49,-10],[57,10],[38,17],[25,3],[59,-20],[43,5],[39,16],[29,-16]],[[8940,4621],[-4,0],[-164,-1],[-6,0],[-161,0],[-8,0],[-159,0],[-8,0],[-159,-1]],[[8264,5234],[-8,45],[1,185]],[[8257,5464],[43,-14],[31,-1],[55,-41],[44,-21],[26,-9],[34,6],[27,-36],[31,-20],[18,-22],[46,-34],[4,-16],[18,-8],[18,-8],[50,-2],[33,13],[34,-2]],[[10117,5235],[49,-2],[19,-12],[11,-26],[-4,-38],[21,-2],[36,21],[25,6],[12,-7],[17,-9],[38,-8],[24,-17],[54,-15],[6,-10],[-1,-51],[31,-16],[24,-3],[52,9],[44,-14],[14,-12],[-7,-21],[-21,-31],[-6,-33],[7,-17],[30,-40],[39,-22],[29,-28],[10,-52]],[[10670,4785],[-131,1],[1,-166],[-6,0],[0,-81],[-1,-221]],[[10533,4318],[1,-26],[-84,0],[-55,0]],[[6928,3958],[-178,-2],[-138,-1],[-19,0],[-280,-1]],[[6313,3954],[-1,165],[0,165],[-1,331],[-18,0],[0,191],[-2,138],[0,233]],[[6291,5177],[25,8],[75,-26],[38,5],[32,-3],[31,-9],[56,25],[25,4],[16,10],[11,25],[37,4],[31,35],[18,-1],[35,20],[60,-4],[52,30],[37,-2],[25,18]],[[5466,2641],[-143,0],[-78,0],[-138,0],[-305,1]],[[4802,2642],[-1,163],[-1,165],[4,328]],[[4804,3298],[162,1],[156,-2],[324,1]],[[5446,3298],[20,0]],[[4736,165],[0,-161]],[[4736,4],[-161,0],[-164,0],[-162,0],[-162,1],[-165,0]],[[3922,5],[2,48],[-1,116],[-1,165],[0,83],[0,82],[0,126],[3,40]],[[3925,665],[161,0],[135,0],[28,0],[135,-1],[27,1],[137,-3],[26,0],[136,0]],[[4710,662],[27,1]],[[4737,663],[-2,-162]],[[4735,501],[-2,-169],[4,-36],[-1,-131]],[[10780,3302],[131,0],[28,0],[-1,-111]],[[10938,3191],[1,-54],[0,-111],[0,-55],[0,-82],[14,0],[0,-55],[13,0],[0,-28],[28,0],[1,-27],[27,-1],[0,-27],[28,-1],[0,-27],[55,0],[0,-82]],[[11105,2641],[-194,0],[-10,0]],[[10901,2641],[-19,0],[-29,6],[-8,15],[-71,48],[-15,7],[-93,2],[-58,-16],[-28,0],[-24,9],[-31,28],[-21,8],[-40,1],[-22,-11],[-42,-8],[-27,11],[-74,14],[-24,0]],[[10275,2761],[0,74],[0,138],[0,165],[0,166]],[[10261,663],[-1,-165],[0,-165],[-1,-165],[1,-165]],[[10260,3],[-162,0],[-162,0],[-164,0],[-163,1]],[[9609,4],[0,165],[0,165],[1,165],[0,165]],[[10533,4318],[141,-1],[56,0],[56,1],[95,-2],[184,-1]],[[11065,4315],[36,-32],[2,-36],[9,-20],[-18,-21],[-29,-7],[-4,-14],[17,-31],[0,-47],[40,-38],[14,-27],[44,-17],[18,-37],[-18,-56],[9,-51]],[[11185,3881],[-52,-1],[-1,-60],[-53,1],[-56,1],[-111,1],[-132,-2]],[[11401,498],[81,-1]],[[11562,1],[-163,0],[-162,0],[-326,1]],[[10911,2],[0,165],[0,165],[0,165]],[[10911,497],[163,1],[164,-1],[163,1]],[[11185,3881],[24,-18],[26,6],[18,-11],[3,-24],[-22,-19],[-2,-25],[13,-9],[36,28],[26,-6],[7,-12],[-13,-29],[12,-15],[40,7],[38,-16],[-20,-65],[10,-20],[-4,-20],[-28,-12],[-4,-16],[21,-32],[4,-25],[13,-16],[28,-16],[11,-27],[-4,-21],[5,-17],[54,-32],[5,-28],[-16,-21],[-1,-31],[-9,-15],[-29,-18],[3,-30],[33,-19],[5,-31],[-21,-8],[-21,4],[-18,-10],[-5,-22]],[[11403,3190],[-160,1],[-165,0],[-140,0]],[[5363,1327],[143,0]],[[5506,1327],[20,0],[144,0],[20,0],[164,0]],[[5543,664],[-22,-1],[-139,0],[-24,1],[-138,1],[-26,0],[-134,-1],[-27,0],[-139,-1],[-23,0],[-134,0]],[[4710,662],[-3,49],[-2,118],[-3,167],[1,166]],[[4703,1162],[3,131],[3,34]],[[4709,1327],[158,0],[149,0],[20,0],[142,0],[21,1],[164,-1]],[[8940,3961],[1,-72],[0,-1],[0,-28],[0,-3],[0,-59],[1,-165]],[[8942,3633],[-167,-1],[-111,-1],[-55,0],[-166,0],[-166,-1]],[[8277,3630],[0,165],[1,165],[-8,0]],[[9610,3964],[1,-165],[0,-165],[0,-165],[0,-165]],[[8946,3303],[-2,0],[-1,110],[0,54],[-1,166]],[[5549,3],[-163,0],[-163,0],[-162,1],[-162,0],[-163,0]],[[7665,1325],[-4,-17]],[[6665,1272],[1,54],[-14,0],[-1,165],[1,136],[1,28],[0,145],[-1,184]],[[6966,1985],[15,0],[265,0],[90,-1],[290,0]],[[10911,2],[-163,0],[-162,0],[-163,1],[-163,0]],[[10911,991],[0,-165],[0,-55],[0,-109],[0,-165]],[[1048,5688],[466,0],[299,-1]],[[1813,5687],[-1,-295],[1,-112],[27,0],[0,-93],[1,-316],[0,-83],[-1,-163]],[[1840,4625],[-326,-4],[-164,0],[-475,-1]],[[875,4620],[-51,0],[0,137],[0,112],[0,218],[0,192],[-33,0],[-3,409]],[[788,5688],[260,0]],[[3925,665],[-28,-1]],[[3897,664],[-1,247],[-2,246],[-1,166]],[[4033,1323],[23,0],[107,1],[217,3],[145,0],[20,0],[164,0]],[[8960,334],[0,28],[0,302]],[[9609,4],[-204,0],[-446,0]],[[8959,4],[1,165],[0,165]],[[7456,2643],[-43,0],[-122,0],[-166,0],[-152,0]],[[6960,3300],[165,-1],[35,0],[35,0],[167,0],[12,0],[237,0]],[[7611,3299],[10,0]],[[7622,2643],[-166,0]],[[9777,3304],[1,0],[166,0]],[[9944,3304],[166,0],[1,0]],[[7611,3299],[-2,190],[0,139],[0,164],[-1,167]],[[8277,3630],[0,-165],[0,-164]],[[6895,5316],[0,185],[5,5],[-1,177]],[[6899,5683],[340,1],[226,-1],[141,1],[141,0],[172,0],[67,0],[11,-39],[34,-58],[39,-36],[19,7],[121,-59],[24,-27],[23,-8]],[[4166,2644],[192,0],[111,-1],[191,-1],[142,0]],[[5505,1984],[0,-166],[0,-56],[1,-271],[0,-164]],[[4030,1903],[0,82],[-29,0],[0,252],[1,407]],[[4002,2644],[135,0],[29,0]],[[4139,3303],[70,0],[262,-5],[145,1]],[[4616,3299],[188,-1]],[[4002,2644],[-198,1]],[[3804,2645],[1,329],[0,330]],[[3805,3304],[48,1],[286,-2]],[[2436,5686],[397,0]],[[2833,5686],[-2,-241],[-1,-165],[26,0],[0,-302],[0,-18],[0,-328],[41,0],[-1,-330],[-2,-327],[49,-1]],[[2856,3809],[-248,-2],[-347,-2],[-283,-4]],[[1978,3801],[-29,-1]],[[1949,3800],[-6,88],[-1,79],[-57,-1],[1,162],[-7,137],[-1,124],[-1,69],[-5,9],[3,158],[-35,0]],[[1813,5687],[141,0],[298,-1],[184,0]],[[6946,3300],[-1,329],[0,165],[0,164]],[[8949,2224],[1,-240],[2,0]],[[8303,1324],[-7,0]],[[11119,1981],[-43,0],[-1,-56],[-164,1]],[[10901,2641],[16,-24],[50,-27],[15,-21],[11,-40],[-1,-37],[35,-26],[18,-18],[29,-50],[-1,-17],[-21,-42],[6,-28],[15,-28],[34,-27]],[[3897,664],[-163,0],[-328,-1],[-134,0],[-165,-1],[-229,0]],[[2878,662],[0,358],[0,302]],[[8309,554],[0,110]],[[8959,4],[-325,0],[-325,1]],[[8309,5],[0,164],[0,385]],[[2625,2316],[247,0]],[[2872,2316],[0,-330],[6,0],[0,-83]],[[2878,1900],[-299,0],[-328,0],[-192,1]],[[2075,2316],[239,0],[63,0],[221,0],[27,0]],[[8303,664],[-150,0],[-164,0],[-164,0],[-163,0]],[[11130,2641],[164,0],[115,0],[23,0],[64,0],[6,0],[69,0],[96,0]],[[11667,2641],[12,-35],[-2,-19],[-37,-29],[5,-18],[39,-34],[54,-6],[15,-12],[9,-32],[-15,-27],[-29,-15],[-15,11],[12,27],[-2,14],[-31,-5],[-2,-32],[21,-19],[-10,-24],[14,-39],[-5,-29],[-18,-39],[6,-21]],[[11105,2641],[25,0]],[[984,2725],[3,118],[-1,87],[-3,209],[-1,82]],[[982,3221],[0,84],[11,0],[0,138],[2,26],[-3,328]],[[992,3797],[140,-2],[36,2],[157,0],[281,-3],[106,-2],[122,3],[115,5]],[[1978,3801],[1,-27],[-3,-319],[1,-51],[6,-45],[13,-54],[41,-1],[-1,-77],[0,-199],[1,-300]],[[8947,2893],[-80,-1],[0,-27],[-85,0],[-84,-2],[-55,0],[0,-27],[-29,-1],[-55,0],[0,-28],[-110,0],[-165,0]],[[511,3795],[170,2],[172,2],[84,-1]],[[937,3798],[55,-1]],[[982,3221],[-165,1],[-164,-2],[-224,-1],[-139,0],[-289,0]],[[1,3219],[0,355],[0,198],[0,22]],[[1,3794],[259,-2],[112,2],[139,1]],[[3922,5],[-296,0],[-405,0],[-343,1],[-1,275],[1,381]],[[4187,5683],[141,0],[196,0],[338,0],[286,2],[177,-1],[217,0]],[[5542,5684],[1,-163],[-1,-126]],[[5542,5395],[0,-42],[0,-81],[22,0],[0,-428],[0,-231],[22,0],[0,-508],[0,-151]],[[5586,3954],[-143,0]],[[5443,3954],[-26,1],[-129,1],[-375,0],[-253,2],[-49,0]],[[4611,3958],[-61,2],[-691,6],[-62,0],[-21,0]],[[2833,5686],[335,0],[195,-6],[128,0],[179,1],[517,2]],[[7658,664],[0,-111],[0,-54],[1,-330],[-1,-165]],[[7658,4],[-325,0],[-163,0],[-163,0]],[[7007,4],[0,165],[0,165],[0,165],[0,166]],[[7007,4],[-162,0],[-162,0],[-163,0],[-158,0]],[[8309,5],[-325,-1],[-326,0]],[[11751,1997],[25,-27],[3,-26],[-14,-31],[9,-22],[43,-28],[7,-20],[-6,-26],[-11,-35],[6,-35],[32,-35],[3,-36],[-19,-17],[-22,-7],[-10,-33],[15,-36],[-10,-33],[0,-26],[14,-38]],[[2872,2316],[1,147],[0,182],[101,-1]],[[2974,2644],[366,1],[330,0],[134,0]],[[369,2641],[329,1],[97,2],[76,-2],[101,2]],[[965,1900],[-219,-1],[-329,0],[-205,-1],[-212,0],[0,296],[2,447]],[[2,2641],[367,0]],[[11554,2809],[17,-18],[31,-5],[25,-12],[28,5],[19,-4],[18,-23],[0,-14],[-18,-28],[3,-44],[-10,-25]],[[11403,3190],[9,-22],[22,-19],[7,-26],[-8,-23],[-19,-22],[-5,-26],[11,-25],[38,-26],[3,-17],[-19,-35],[-3,-19],[6,-22],[55,-48],[25,1],[14,59],[11,9],[28,-11],[10,-52],[-33,-37],[-1,-20]],[[5443,3954],[-1,-26],[3,-374],[-1,-65],[2,-191]],[[4616,3299],[-4,441],[-1,52],[0,166]],[[937,3798],[0,165],[-61,0],[0,83],[0,83],[0,81],[-1,410]],[[11004,4592],[-21,-28],[-2,-27],[9,-33],[-9,-22],[-4,-25],[14,-26],[34,-22],[21,-29],[2,-36],[17,-29]],[[10670,4785],[8,-20],[32,-18],[28,7],[38,24],[24,-3],[29,-27],[7,-20],[21,-22],[37,-5],[43,20],[25,-2],[46,-10],[15,-18],[8,-44],[-6,-27],[-21,-28]],[[6094,5199],[57,-14],[32,4],[12,-5],[47,-14],[49,7]],[[6313,3954],[-36,0]],[[6277,3954],[-91,-1],[-320,0],[-74,0],[-206,1]],[[5542,5395],[15,-16],[54,-10],[23,-21],[-1,-24],[25,-6],[6,-11],[83,-27],[69,6],[31,-15],[25,-16],[24,1],[78,-14],[51,7],[11,-31],[25,3],[33,-22]],[[6277,3954],[1,-393],[-1,-262]],[[1,3794],[0,492],[0,453],[0,284],[0,199],[0,466],[89,2],[95,-1],[159,0],[282,-1],[162,0]],[[2973,3303],[1,-460],[0,-199]],[[3777,3304],[28,0]],[[5880,5684],[162,-1],[260,0],[285,0],[312,0]],[[5542,5684],[338,0]],[[2,2641],[-1,324],[0,254]]],"transform":{"scale":[0.0006956111994909327,0.000527538312829526],"translate":[-104.053514,39.999998]},"objects":{"cb_2019_31_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[7,8,9,10,11,12,13,14,15]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[16,17,18,19,20,21,22]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[23,24,-15,25,26,27,28]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[29,30,31,32,-21,33,34]],"type":"Polygon","properties":{"COUNTYFP":"179"}},{"arcs":[[35,36,37,38]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[39,-24,-29,40,41,42,43]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[44,45,-40,-44,46,47]],"type":"Polygon","properties":{"COUNTYFP":"185"}},{"arcs":[[48,49,50,51,52,53,54]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-5,55,56,57]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[58,59,60,61,62,63]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[64,65,66,67,68,69]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[70,71,72,73,74,75,76,77,78]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[79,80,81,82,83]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[84,85,86,87,-13,88]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[89,90,91,92,93,94,95,96]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[97,-87,98,-36,-39,99,100]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[-52,101,102,103,104,105]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[106,107,108,109,-47,-43,110]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[111,-60,112,-6,-58,113,114]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[-30,-35,115,116,117,118]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[119,120,121,122,123]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[124,125,126,127,128,129,130]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-55,131,132,133,134,-49]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[135,136,137,138,139,140,141,142,143,144]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-119,145,146,147,-31]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-72,148,149,150,-9,151,152,153]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-54,154,-74,155,156,-132]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[157,-146,-118,158,-92,159,160]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-148,161,162,163,-32]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-90,-97,164,165,166]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[-141,167,168,169,170]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[171,172,173,174,175,176,177]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-8,-16,-25,-46,-153,-152]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[-18,178,179,180,181,-150,182]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[-27,183,184,185,-28]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[-22,-33,-164,186,187,188]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[189,-100,-38,190,191,192]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[-189,193,194,-179,-17,-23]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[195,196,-56,-4,197,-176,198,199,200]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-93,-159,-117,201,202,203]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-202,-116,204,-77,205]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[-3,206,-172,-178,-177,-198]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[-135,207,-61,-112,-115,208,-138,209,-50]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-192,210,-184,-26,-14,211]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[212,213,214,215,216]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-175,217,218,-67,219,-200,-199]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[220,-41,-186,221,222]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[223,-136,-145,224,225,-103,226]],"type":"Polygon","properties":{"COUNTYFP":"175"}},{"arcs":[[-149,-71,-79,227,228,-19,-183]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-104,-226,229,-94,-204,230]],"type":"Polygon","properties":{"COUNTYFP":"183"}},{"arcs":[[-91,231,232,-160]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[233,-168,-140,234,-196,-201,-220,-66,235,236]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[237,238,-169,-234,-237,239,240,241]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[242,243,-120,244,245,246,-214,247]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[-225,-144,248,-95,-230]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-139,-209,-114,-57,-197,-235]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-157,249,-48,-110,250,-133]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-81,251,-10,-151,-182,252]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[-68,-219,253,254]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-45,-250,-156,-73,-154]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[255,-107,-111,-42,-221,-223,256,257]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[258,259,-70,260,-127,261]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[-109,262,-62,-208,-134,-251]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-20,-229,-228,-78,-205,-34]],"type":"Polygon","properties":{"COUNTYFP":"167"}},{"arcs":[[263,264,-82,-253,-181,265]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-125,-131,266,267,268,-246,269]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[-203,-206,-76,270,-105,-231]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[271,272,-268,273,274,275]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[-254,-218,-174,276]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[277,278,279,280,281,282,-121,-244,283]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-271,-75,-155,-53,-106]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[-59,-64,284,285,286]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[-193,-212,-88,-98,-101,-190]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[-51,-210,-137,-224,-227,-102]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[-7,-113,-287,287,-1]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-258,288,-285,-63,-263,-108,-256]],"type":"Polygon","properties":{"COUNTYFP":"181"}},{"arcs":[[-85,-89,-12,-11,-252,-80,-84,289]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-65,-260,290,291,-240,-236]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[292,-129,293,294]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[295,-264,-266,-180,-195,296]],"type":"Polygon","properties":{"COUNTYFP":"177"}},{"arcs":[[-282,297,-170,-239,298]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[-247,-269,-273,299,-215]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[300,-187,-163,301]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[302,-166,303,304,-280,305]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-142,-171,-298,-281,-305,306]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-300,-272,-276,307,-216]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[-304,-165,-96,-249,-143,-307]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[-245,-124,308,-291,-259,-262,-126,-270]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-123,309,-241,-292,-309]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[310,-232,-167,-303,-306,-279,311]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[-283,-299,-238,-242,-310,-122]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-274,-267,-130,-293,-295,312]],"type":"Polygon","properties":{"COUNTYFP":"007"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/nh.topo.json b/app/assets/topojson/states/nh.topo.json new file mode 100755 index 00000000..28d73f9e --- /dev/null +++ b/app/assets/topojson/states/nh.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[2455,1146],[26,-28],[57,-35],[5,-20],[32,-12],[12,-26],[-15,-54],[-20,-97],[20,-47]],[[2572,827],[-40,7],[-23,-4],[2,-58],[-21,-27],[-87,19],[-69,-15],[-47,-1],[-90,-1],[69,110],[-150,120],[-9,7],[-168,139]],[[1939,1123],[16,19]],[[1955,1142],[43,45],[71,91],[-22,133],[-25,178],[42,47]],[[2064,1636],[52,65],[24,-128],[65,40],[44,5],[20,-91],[92,113]],[[2361,1640],[12,-44],[-23,-63],[14,-38],[-1,-55],[-38,-47],[2,-68],[27,-69],[44,-12],[31,-33],[26,-65]],[[1616,4500],[-54,0],[15,55],[-11,54],[45,28],[30,54],[29,23],[-11,31],[57,124],[-34,57],[26,19],[29,-15],[70,74],[78,56],[28,-16],[2,-31],[52,-54],[37,9],[37,-25],[23,17],[43,-12],[53,112],[21,7],[10,-114],[26,-451],[5,-81],[15,-213],[4,-67],[13,-231],[8,-192],[15,-331],[9,-194],[4,-108]],[[2290,3085],[-51,-3],[4,-89],[-84,-4],[-214,16],[-26,-32],[-62,-175],[-7,-47],[-24,-42],[-30,1],[0,61],[-18,78],[-27,20],[-15,10],[-16,69],[-31,-5]],[[1689,2943],[-41,72],[-39,21],[-56,6],[-101,-16],[-17,97],[-148,62],[-15,-9],[-102,144]],[[1170,3320],[86,11],[69,58],[33,70],[59,17],[39,100],[-37,34],[11,20],[47,0],[36,42],[-33,58],[-2,48],[-42,34],[5,30],[-63,134],[35,53],[34,29],[6,53],[34,48],[9,55],[35,28],[39,55],[-28,35],[-1,31],[1,31],[-34,49],[11,30],[34,17],[28,-14],[35,24]],[[1917,1076],[-28,-63],[-55,-109],[-57,-117],[-52,-119],[-1,-61]],[[1724,607],[-86,21],[-7,46],[-28,-17],[-23,32],[-35,-4],[-7,37],[-183,-28],[-40,191],[-96,-25],[-115,-30],[-68,-18],[-85,179],[-142,-37]],[[809,954],[-48,67],[-5,62],[-30,1],[-37,131],[17,31],[43,81],[4,60],[-16,24],[6,34],[63,-8],[31,55],[82,124]],[[919,1616],[6,10],[58,79],[41,45],[22,26],[47,-130],[30,29],[30,-13],[24,29],[50,-8]],[[1227,1683],[31,-50],[23,-38],[20,-34],[58,-17],[21,-43],[6,-50],[28,-17],[46,33],[31,0],[115,-79],[25,-17],[157,-109],[167,-120]],[[1939,1123],[-22,-47]],[[1689,2943],[-16,-2],[20,-85],[38,-23],[16,-71],[-7,-41],[22,-57],[29,1],[-54,-90],[6,-41],[26,-166],[-301,-44],[6,-36],[25,-153],[17,-61],[1,-7]],[[1517,2067],[15,-123],[-89,-11],[-99,-15],[-12,-102],[7,-22],[-54,-50],[-37,11],[-27,-23],[23,-21],[-17,-28]],[[919,1616],[-196,29],[-3,18],[-32,-47],[-43,18],[20,30],[-96,40],[-55,21],[-180,29]],[[334,1754],[-7,28],[29,52],[14,49],[0,51],[4,20],[47,61],[57,27],[41,44],[1,30],[29,36],[4,57],[-9,43],[28,32],[27,56],[44,34],[5,54],[28,20],[-23,24],[-4,48],[18,36],[38,34],[64,113],[-18,16],[-6,45],[20,69],[-40,67],[19,54],[8,40],[-30,64],[14,29],[32,23],[6,43],[34,4],[38,27],[82,3],[40,19],[48,-20],[85,41],[-3,46],[35,36],[37,11]],[[2572,827],[55,-45],[67,-50],[46,3],[-8,-49],[-56,-114],[-30,-43],[-20,-33],[-43,-122],[-7,-33],[-46,-23],[-56,43],[-42,7],[-77,-34],[-46,-9],[-50,-10],[-33,-50],[-16,-53],[-76,22],[-25,8],[-50,-26],[-30,-34],[7,-103],[-63,18],[-32,-8]],[[1941,89],[-21,25],[-36,9],[-99,23],[-20,25],[6,27],[-40,48],[-59,2],[-22,128],[-14,77],[113,18],[-3,15],[-22,121]],[[330,905],[-65,-10],[6,-50],[-88,7],[-1,47],[-29,3]],[[153,902],[21,80],[4,109],[20,9],[39,97],[-17,48],[23,33],[-33,15],[25,129],[6,70],[17,55],[-23,50],[24,42],[-4,42],[15,33],[64,40]],[[809,954],[-41,-11],[20,-43],[-22,-61]],[[766,839],[-208,6],[33,97],[-94,-14],[-63,-9],[-104,-14]],[[1517,2067],[136,-127],[142,-129],[1,-1],[4,-4],[85,-74],[38,-34],[87,-23],[54,-39]],[[1941,89],[-33,-33],[-39,-56],[-137,4],[-68,2],[-163,5],[-131,4],[-104,3],[-155,5],[-183,7]],[[928,30],[-23,148],[-45,2],[-14,86],[-9,61],[-16,105],[-3,21],[-4,26],[-83,2],[1,41],[4,77],[1,26],[24,123],[5,91]],[[2290,3085],[15,-419],[10,-280],[2,-93],[5,-166],[12,-209],[12,-222],[32,-37],[-17,-19]],[[0,313],[3,52],[32,25],[7,71],[-8,40],[20,16],[66,17],[19,21],[2,73],[-11,63],[48,66],[-12,27],[15,37],[-35,52],[7,29]],[[928,30],[-222,7],[-185,7],[-182,6],[-185,8],[-32,37],[-27,52],[-27,14],[-45,48],[-23,104]]],"transform":{"scale":[0.0006745673618520342,0.0005147939609236232],"translate":[-72.55505703060089,42.69699]},"objects":{"cb_2019_33_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[6,7,8,9]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[10,11,12,13,14,-3,15]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-9,16,17,-14,18,19]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-2,20,21,-11,-16]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[22,23,-19,-13,24,25]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-15,-18,26,-4]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-12,-22,27,28,-25]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-17,-8,29,-5,-27]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[30,-23,-26,-29,31]],"type":"Polygon","properties":{"COUNTYFP":"005"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/nj.topo.json b/app/assets/topojson/states/nj.topo.json new file mode 100755 index 00000000..8734e991 --- /dev/null +++ b/app/assets/topojson/states/nj.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[4779,4483],[-14,-70],[-23,-122],[-19,-99],[-16,-83],[-11,-81],[-5,-44],[-7,-44],[-17,-94],[-47,-440],[-19,-123],[-6,-19],[1,-27],[-49,-70],[-49,-109],[-48,-101],[-37,-61],[-43,-69],[-40,-66],[-147,-254],[-62,-90],[-111,-136],[-33,-14],[-96,-9]],[[3881,2258],[-87,-3],[-84,-28],[-66,154],[-46,47],[-3,29]],[[3595,2457],[4,51],[48,8],[33,93],[2,692],[-2,5],[-84,188],[-54,127],[-114,263],[-83,198],[-30,71],[-69,177],[-38,83],[-40,83]],[[3168,4496],[81,44],[182,149],[36,31],[161,141],[457,-21],[6,-71],[34,-20],[22,-50],[-3,-60],[58,-26],[71,13],[131,-21],[19,-29],[75,71],[71,75],[28,-36],[15,-79],[25,-37],[2,-2],[67,-16],[26,29],[55,14],[15,-10]],[[4802,4585],[-23,-102]],[[1982,7125],[-119,-156],[-43,-23],[-7,-3],[-60,-45],[-45,3],[-85,-62],[-86,-48],[-25,-25],[-95,-71],[2,-9],[-4,-3],[-106,-37],[-58,-46],[-3,-26],[-56,-65],[-30,-10]],[[1162,6499],[-34,90],[40,39],[-7,44],[-31,43],[31,58],[39,38],[-7,30],[-52,8],[-22,40],[19,59],[39,73],[0,47],[-34,56],[60,49],[18,53],[117,-16],[36,51],[37,12],[35,69],[51,66],[-14,31],[-29,34],[21,32],[86,1],[38,58],[-7,37],[-70,86],[-10,71],[-51,40],[-70,113],[-6,52],[-45,18],[10,79],[68,50],[107,51],[151,88],[44,105],[96,50],[49,59]],[[1865,8463],[87,-98],[166,-193],[21,-24],[62,-71],[118,-138],[99,-113],[69,-80]],[[2487,7746],[-118,-112],[-10,-108],[-37,-24],[11,-45],[-40,-31],[-61,-97],[-124,-64]],[[2108,7265],[-47,-28],[6,-34],[-85,-78]],[[1957,2452],[82,88],[86,92],[22,24]],[[2147,2656],[57,61],[186,199],[201,215]],[[2591,3131],[39,-30],[151,-121],[25,-29],[31,-105],[-4,-100],[36,-24],[86,5],[101,-57],[33,-46],[75,-6],[39,-50],[4,-39],[38,-22],[71,-2],[37,-48],[46,-7],[55,2],[8,-29],[54,-21],[13,32],[66,23]],[[3881,2258],[45,-89],[-3,-39],[-47,-75],[6,-18],[-8,-40],[-121,-147],[-124,-123],[-19,-38],[-162,-69],[-83,-49],[-78,-56],[-62,-53],[-20,1],[-23,-7]],[[3182,1456],[-62,-8],[-57,42],[-39,-18],[-61,-46],[-25,-2],[-44,12],[-57,-25],[-11,32],[-44,-4],[-75,-29],[-101,36],[-65,-14],[-102,48],[-50,5],[-78,-12],[-39,37],[-74,35]],[[2198,1545],[-12,57],[41,165],[-19,55],[15,52],[-11,49],[2,13],[-128,112],[-237,207],[-41,37]],[[1808,2292],[149,160]],[[4403,6709],[75,113]],[[4478,6822],[70,104],[-8,37],[-14,41],[14,63],[-62,17],[-33,-27],[-40,0],[-19,50],[4,29],[51,98],[3,26]],[[4444,7260],[54,-35],[62,-2],[39,-18],[24,-41],[2,63],[22,32],[4,5],[66,71],[50,7],[42,23],[56,38],[49,-57],[12,-8],[30,-34]],[[4956,7304],[-21,-38],[-4,-7],[-27,-46],[-39,-70],[-21,-102],[-13,-82],[-28,3],[-56,-56],[-46,-113],[-14,-24],[-72,-46],[-108,-19],[-104,5]],[[4057,8177],[63,155],[5,11],[118,273]],[[4243,8616],[338,-182],[101,-55],[186,-103],[60,-33],[110,-61],[62,-35],[54,-30],[88,-34],[-8,-60],[-73,-267],[-22,-71],[-68,-144],[-18,-41],[-29,-82],[-68,-114]],[[4444,7260],[25,74]],[[4469,7334],[30,57]],[[4499,7391],[19,10],[7,45],[2,50],[6,25],[37,39],[-33,53],[-37,40],[4,28],[-14,11],[2,99],[-32,28],[-18,47],[6,27],[16,70],[-25,19],[-69,23],[-65,6],[-64,6],[-39,4],[-76,42],[-57,86],[-12,28]],[[4859,4841],[-31,-114],[-19,-81],[-7,-61]],[[3168,4496],[-110,231]],[[3058,4727],[-84,173],[48,16],[18,-28],[40,22],[58,20],[61,104],[194,102],[-11,41]],[[3382,5177],[75,-9],[167,87],[46,25],[-2,34],[52,66],[79,77],[79,76],[206,199],[44,46],[0,88],[37,54],[44,34]],[[4209,5954],[54,-51],[54,32],[23,41],[49,-36],[52,5],[47,27],[55,-38],[126,-52],[88,-58],[147,-29],[19,31],[12,92],[-34,24],[-12,60],[14,47],[49,-86],[11,-110],[25,-105],[10,-109],[-3,-101],[-8,-92],[-8,-89],[-30,-154],[-20,-89],[-5,-17],[-3,-10],[-15,-52],[-9,-35],[-14,-49],[-4,-31],[-20,-79]],[[1702,2383],[-49,43],[-86,76]],[[1567,2502],[-80,70],[-148,131],[-207,183],[-53,-14],[-53,-8],[-45,15],[-10,44],[-34,20],[-78,-7],[-27,24],[-76,20],[-129,86],[-51,52],[-5,76],[-24,4],[-52,139],[-10,54]],[[485,3391],[-30,22],[77,52],[141,113],[48,19],[184,0],[48,12],[85,24],[94,58],[35,30],[136,15],[19,14]],[[1322,3750],[38,-29],[21,-32],[18,-43],[37,-21],[61,-61],[4,-53],[-19,-26],[41,-60],[-36,-99],[72,19],[41,-17],[33,-75],[58,-57],[-6,-62],[27,-18]],[[1712,3116],[51,-23],[18,-38],[69,-32],[39,4],[72,-32],[87,-116],[-5,-46],[24,-85],[44,-62],[36,-30]],[[1808,2292],[-106,91]],[[1865,8463],[-78,-8],[30,62],[57,24],[60,58],[69,35],[56,69],[18,41],[55,57],[34,85],[38,70],[-26,28],[33,83],[66,118],[45,58],[92,65],[1,46],[65,11],[58,82],[101,5],[82,39],[144,-82],[354,-202],[249,-143],[284,-174]],[[3752,8890],[-173,-169],[-64,-81],[-125,-141],[-65,-69]],[[3325,8430],[-103,-107],[-248,-265],[-82,-99],[14,-89],[-55,-64],[2,-18],[-76,-43],[-19,-2],[-29,-11],[-66,-19],[-21,42],[-88,26],[-67,-35]],[[2800,989],[-141,-248],[28,-59],[-99,-110],[-30,-50],[-101,-153],[-29,-21],[6,-68],[-45,-51],[-64,-45],[-81,-71],[-69,-57],[-49,-2],[-72,-40],[-84,-14],[-16,11],[-66,-2],[-39,37],[28,86],[-3,26],[28,126],[61,148],[101,189],[35,101],[17,178],[-17,22],[-23,35],[-47,16]],[[2029,973],[-24,44],[-10,117],[13,25],[79,39],[45,286],[66,61]],[[3182,1456],[-12,-57],[-26,-34],[-61,-28],[-106,-102],[-107,-146],[-12,-34],[-58,-66]],[[3112,7137],[-150,-43],[-40,-11],[-82,-23],[-70,-20],[-145,-42]],[[2625,6998],[-86,46],[-128,36],[-96,8],[-63,63],[-144,114]],[[3325,8430],[36,-30],[12,-51],[-23,-14],[-21,-76],[35,-19],[46,41],[92,26],[18,-37],[40,-53],[-5,-44],[20,30],[55,-14],[20,-27],[110,-24],[6,8],[40,-36],[69,-11],[89,8],[8,-77],[50,-14],[14,-99],[-16,-70],[-22,-31],[21,-46],[50,-36],[-17,-40]],[[4052,7694],[-64,32],[-83,-9],[-13,21],[-36,-13],[-17,-65],[11,-82],[46,-15],[-26,-57],[3,-14],[-1,-28],[-16,-79],[-48,-25],[-49,-65],[-24,-76],[18,-58],[7,-44],[-22,-40]],[[3738,7077],[-39,-59],[-20,3],[-2,-28],[-117,-74],[-48,-44],[-55,-56]],[[3457,6819],[-27,-22],[-107,-33],[-29,-39],[-32,-2],[-21,72],[17,85],[34,33],[-56,86],[5,27],[-60,56],[-4,25],[-19,43],[-46,-13]],[[2654,4778],[25,34],[-9,81],[34,11],[78,-43],[-5,-21],[48,-9],[74,-41],[47,-46],[88,-19],[24,2]],[[2591,3131],[-113,81],[-58,81],[-75,56],[-90,17],[-64,-17],[-40,-16],[-59,8],[-24,29],[-18,73],[-60,251],[-11,47],[-59,48],[-24,63],[-18,23],[-67,28],[27,48],[-59,-1],[-65,29],[5,29],[-18,52],[17,50],[-15,34],[-39,16],[-92,-6]],[[1572,4154],[41,72],[52,24],[53,16],[74,63],[23,21],[50,43],[108,63],[61,6],[45,11],[59,22],[64,24],[17,32],[52,30],[30,77],[39,28],[107,-27],[20,16],[53,36],[55,4],[31,26],[30,33]],[[2636,4774],[18,4]],[[4499,7391],[-103,70],[-63,42],[-47,33],[-23,15],[-111,76],[-20,2],[-26,8],[-54,57]],[[3752,8890],[275,-159],[216,-115]],[[1487,6361],[-53,48],[-103,28],[-68,-41],[-54,-1],[-59,44],[12,60]],[[2625,6998],[30,-76],[-22,-118],[-25,-16],[36,-45],[-14,-29],[-8,-56],[42,-7],[33,-37],[-60,-80],[-10,-47],[38,-17],[-37,-71],[-57,-48],[-103,-193],[-71,44],[49,-109],[96,-221],[12,-28]],[[2554,5844],[-190,-29],[20,-124],[-89,-11],[-124,-17],[43,-121],[-240,-29],[-31,6]],[[1943,5519],[-12,57],[-26,82],[-39,83],[-58,31],[-35,19],[-90,-28],[-61,36],[-46,21],[-37,145],[24,104],[-8,138],[-3,76],[-65,78]],[[1371,4042],[68,37],[84,22],[49,53]],[[1322,3750],[33,75],[-19,78],[4,105],[31,34]],[[4134,6531],[51,-4],[55,15],[23,-35]],[[4263,6507],[-30,-112],[-42,-14],[-77,-34],[-2,-50],[12,-65],[-62,-112],[4,-56],[30,-66],[113,-44]],[[3382,5177],[9,80],[-22,13],[-57,17],[-59,45],[-81,-10],[-51,37],[-17,4],[-34,43],[-60,37],[-61,13],[-24,72],[18,86],[13,33]],[[2956,5647],[56,28],[46,52],[12,96],[166,88],[132,130],[34,37],[59,28],[-22,69],[-47,12],[-42,67],[-65,62],[-13,42],[-21,15],[8,40],[38,48],[106,42],[47,25]],[[3450,6528],[26,-12],[57,5],[133,14],[113,12],[64,7],[112,11],[-8,-31],[46,-34],[98,21],[6,19],[37,-9]],[[4478,6822],[-54,45],[-48,11],[-102,-8],[-24,16],[-12,40],[-49,29],[-50,11],[-36,9],[-92,34],[-38,-28],[-111,21],[-75,57],[-49,18]],[[1215,2304],[282,-238],[34,109],[-21,64],[24,89],[-7,79],[40,95]],[[2029,973],[-152,57],[-127,-5],[-71,11],[8,35],[-23,80],[-55,-31],[-144,-12],[-45,21],[-32,-21],[-29,-85],[-46,-14],[-78,65],[13,43],[-23,79],[-40,46],[-28,-3],[-44,67],[-112,44],[10,41],[-42,62],[-83,19],[-32,-53],[-85,74],[-58,136],[-52,18],[-22,-23],[-80,40],[-37,37],[-15,61],[-25,6]],[[480,1768],[-18,13]],[[462,1781],[-13,12]],[[449,1793],[24,29],[-30,61],[24,39],[-15,55],[21,34],[5,61],[25,14],[100,-22],[52,58],[29,74],[52,-7],[58,49],[39,37],[78,80],[100,109],[58,-46],[146,-114]],[[3469,6540],[-19,-12]],[[2956,5647],[-7,42],[-99,26],[-62,-26],[-152,-36],[-82,191]],[[3457,6819],[39,-72],[60,38],[31,-28],[52,35],[-16,-87],[-17,-13],[-30,-79],[-47,-44],[-60,-29]],[[2636,4774],[-1,40],[-47,67],[-46,23],[-62,124],[-75,55],[-74,35],[-74,48],[-45,106],[-36,68],[-60,59],[-66,26],[-107,94]],[[259,3094],[17,73],[22,57],[3,28],[81,92],[103,47]],[[449,1793],[-34,2],[-46,56],[-72,143],[-24,-7],[-82,46],[-30,40],[-88,6],[-20,39],[0,102],[46,15],[2,136],[-20,21],[72,107],[-2,36],[-132,97],[-19,86],[11,42],[66,48],[65,84],[17,101],[18,16],[82,85]],[[480,1768],[-18,13]],[[4403,6709],[-65,7],[-61,-57],[-17,-104],[3,-48]]],"transform":{"scale":[0.00031774799694772886,0.0002559165525234428],"translate":[-75.559614,38.928519]},"objects":{"cb_2019_34_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[5,6,7,8,9]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[10,11,12,-2,13,14,15,16]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[17,18,19,20]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[21,22,-20,23,24,25]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[26,-4,27,28,29,30]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[31,32,33,34,35,-11,-17,36]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-8,37,38,39]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[40,41,-15,42]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[43,44,-9,-40,45,46,47,48]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[49,-28,-3,-13,50,51,52]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-26,53,-46,-39,54,-22]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[55,-6,-10,-45,56,57,58]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[59,-51,-12,-36,-35,60]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[61,62,-30,63,64,65]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-54,-25,-24,-19,66,-47]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[67,-32,-37,-16,-42,68,69,70,71]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[72,-65,73,-57,-44,-49,74]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-29,-50,-53,75,-58,-74,-64]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[76,-33,-68,-72,77]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-66,-73,-75,-48,-67,-18,79,-62]],"type":"Polygon","properties":{"COUNTYFP":"039"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/nm.topo.json b/app/assets/topojson/states/nm.topo.json new file mode 100755 index 00000000..9983b40e --- /dev/null +++ b/app/assets/topojson/states/nm.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[5070,2489],[350,1],[237,1],[365,1],[285,0]],[[6307,2492],[0,-343],[0,-322],[0,-11],[110,0],[0,-178],[0,-619]],[[6417,1019],[-363,0],[-368,0],[-243,0],[-381,1]],[[5062,1020],[0,386],[-4,0],[-1,407]],[[5057,1813],[12,31],[0,645],[1,0]],[[1264,1808],[-275,0],[-1,-473],[0,-194],[16,0],[-1,-329]],[[1003,812],[-370,-1],[0,177],[0,153],[-16,0],[1,291],[0,341],[0,34],[-132,0],[0,133],[-248,0],[-2,265],[-232,1]],[[4,2206],[-1,303],[1,355]],[[4,2864],[109,-2],[165,2],[193,1],[140,-3],[112,-10],[292,0],[249,0]],[[1264,2852],[164,-2],[27,-22],[-13,-22],[0,-55],[7,-43],[13,-59],[-18,-18],[-7,-30],[11,-16],[1,-49],[21,-46],[59,-17],[11,-16],[7,-48],[-16,-21],[7,-66],[17,-11],[17,-33],[-6,-30],[11,-26],[23,-15],[5,-36],[-6,-29],[9,-22],[-15,-45],[3,-47],[-9,-52],[19,-7],[131,-26]],[[1737,1943],[-380,-2],[0,-132],[-93,-1]],[[6818,5326],[0,-67],[-127,1],[0,-96],[-1,-38],[-252,2],[-1,-133],[-38,-1]],[[6399,4994],[-254,1]],[[6145,4995],[-217,0],[0,266]],[[5928,5261],[-1,139],[4,128],[1,286]],[[5932,5814],[323,187],[0,-34],[265,-2],[0,147],[0,80]],[[6520,6192],[299,0],[11,11],[1,390],[5,0],[0,133]],[[6836,6726],[402,0]],[[7238,6726],[-1,-526],[0,-323],[-1,-350]],[[7236,5527],[-291,1],[0,-137],[-43,1],[-84,0],[0,-66]],[[1611,3273],[317,-1],[246,3],[30,0],[567,-4],[332,0],[0,7],[122,-1]],[[3225,3277],[1,-136],[32,0]],[[3258,3141],[6,-515]],[[3264,2626],[-495,-264],[-164,-87],[0,-58],[0,-9],[-496,1],[0,-266]],[[2109,1943],[-372,0]],[[1264,2852],[0,423],[74,-6],[273,4]],[[938,7127],[127,1],[434,-2],[216,-2]],[[1715,7124],[383,-3],[0,-394],[0,-239],[3,-251],[-5,1],[1,-174]],[[2097,6064],[-260,-3],[-125,1],[1,67],[-126,0],[-2,-66],[-309,0],[-174,2],[-402,0],[-1,-264],[1,-266],[-41,0],[-418,1],[-236,0]],[[5,5536],[0,329],[-1,287],[1,454],[0,522]],[[5,7128],[291,0],[518,-1],[124,0]],[[3173,4492],[0,-24],[378,0],[212,0]],[[3763,4468],[2,-133],[-1,-356],[1,-174],[-154,0],[0,-267],[-128,3],[-132,12],[-127,0],[1,-276]],[[1611,3273],[1,399],[-1,111],[-4,22],[0,663],[-11,0],[0,281],[-2,92],[2,113]],[[1596,4954],[20,-1],[20,3],[170,-1],[264,1],[156,-1]],[[2226,4955],[359,2],[26,-1],[102,-55],[36,-19],[317,-113],[58,-31],[48,4]],[[3172,4742],[1,-250]],[[4424,7967],[26,9],[7,21],[-30,55],[28,44],[-15,26],[-8,40],[22,26],[31,1],[16,38],[30,7],[24,-16],[46,10],[8,49],[-14,53],[13,49],[-6,38],[36,104],[-44,71],[0,30],[19,20]],[[4613,8642],[101,1],[164,-3],[428,0],[25,1],[344,-1],[399,4]],[[6074,8644],[0,-456],[-1,-198],[0,-401],[-1,-133]],[[6072,7456],[-514,1]],[[5558,7457],[-366,0],[-151,-1],[0,67],[-28,0],[-390,0],[-155,0]],[[4468,7523],[16,24],[-10,37],[8,54],[-8,55],[13,24],[-18,87],[-16,-4],[32,87],[-21,17],[-4,32],[-36,31]],[[3633,7623],[-26,-34],[4,-15],[185,-77],[51,-23],[114,-152],[31,-46],[248,-133]],[[4240,7143],[-8,-33],[-43,-28],[-72,10],[-16,-26],[-17,-6],[-24,15],[-34,1],[-12,15]],[[4014,7091],[1,36],[-326,0],[-66,0],[-14,-25],[0,-84],[-231,0]],[[3378,7018],[-3,54]],[[3375,7072],[1,54],[-99,-1],[-63,-1],[-21,2],[-522,-4],[-63,0],[0,332],[-129,0],[-315,0],[-61,-3],[-129,5],[-78,0],[-178,3]],[[1718,7459],[0,56],[-2,143],[2,66],[-3,65],[4,365],[4,0],[2,197],[22,17],[1,28],[23,2],[29,34],[31,6],[9,22],[21,-1],[65,44],[-7,75],[32,26],[12,46]],[[1963,8650],[269,0],[255,0],[130,0],[9,-12],[305,1],[247,2],[253,0],[235,2]],[[3666,8643],[2,-29],[21,-55],[2,-31],[17,-52],[-3,-74],[-12,-40],[5,-67],[-1,-82],[12,-47],[-1,-77],[19,-87],[1,-56],[18,-79],[2,-38],[-20,-66],[4,-68],[-14,-37],[-50,-29],[-35,-6]],[[2097,6064],[85,0],[50,-132]],[[2232,5932],[157,-400]],[[2389,5532],[-164,1],[-2,-533],[3,-45]],[[1596,4954],[-404,2],[-394,-1],[-464,1],[-329,-1]],[[5,4955],[0,426],[0,155]],[[5558,7457],[0,-63],[38,-33],[-19,-18],[13,-18],[14,-50],[20,-35],[2,-41],[17,-8],[0,-47],[31,-20],[-19,-27],[34,-34],[-31,-30],[3,-61],[-19,-13],[-29,-52],[29,-29],[-14,-24],[19,-61],[-10,-6]],[[5637,6787],[-18,-1],[-194,3],[0,5],[-381,-9],[-174,-11],[-25,-24],[-36,38],[-18,4],[-45,38],[-48,2],[-33,26],[-50,5],[-25,15],[-130,48],[-213,0],[-236,1]],[[4011,6927],[3,164]],[[4240,7143],[28,12],[21,26],[32,62],[52,82],[6,38],[-9,20],[30,33],[5,37],[-9,22],[16,34],[56,14]],[[5,7128],[0,403],[1,397],[0,369],[0,351],[481,1],[478,-1],[243,2],[321,0],[434,0]],[[1718,7459],[-3,-335]],[[3666,8643],[347,0],[327,1],[273,-2]],[[5007,4144],[-1,-341],[4,-3],[-2,-521],[0,-126],[9,-44],[0,-97],[-23,0],[-2,-255],[-121,0],[0,-7],[-123,-4],[-251,1]],[[4497,2747],[-1,265],[-123,-1],[-369,-1],[-1,131],[-69,0],[-178,-1],[-171,-1],[-327,2]],[[3763,4468],[523,0],[215,0],[0,133]],[[4501,4601],[508,0]],[[5009,4601],[-2,-395]],[[5007,4206],[0,-62]],[[3375,6903],[0,-25]],[[3375,6878],[0,25]],[[3375,7072],[-19,10],[-44,1],[-18,-32],[-84,1],[-17,11],[0,-202],[-2,-31],[53,13],[90,-37],[20,-19],[18,-36]],[[3372,6751],[3,-157],[-1,-320],[0,-212],[4,0],[2,-135]],[[3380,5927],[-259,3],[-175,0],[-43,-23],[-25,23],[-123,0],[-404,1],[-119,1]],[[6072,7456],[0,-66],[259,-1],[0,-135],[517,1],[0,-133],[-12,0],[0,-396]],[[6520,6192],[0,50],[-104,1],[-250,473],[-55,105],[-54,-31],[-103,1],[-317,-4]],[[4,2864],[-1,306],[1,329],[0,506],[0,321],[1,336],[0,293]],[[6365,2759],[-1,-267],[-57,0]],[[5057,1813],[-358,1],[0,-3],[-247,0],[3,131],[1,357],[-2,188],[44,0],[0,62],[-1,198]],[[5007,4206],[129,-1],[0,-134],[264,-3],[301,-3],[194,-1],[1,134],[252,-1]],[[6148,4197],[126,-1],[0,-401],[150,1],[-2,-249],[252,1],[-1,-133]],[[6673,3415],[-254,-1],[0,-265],[-54,-1],[0,-355],[0,-34]],[[2916,1004],[-11,-20],[17,-25],[0,-54],[-25,-47],[19,-17],[-8,-26],[41,-41],[-4,-18],[34,-26],[36,-5],[19,-36],[-565,0],[-357,0]],[[2112,689],[-1,451],[-1,215],[0,35],[0,382],[-1,171]],[[3264,2626],[0,-144],[-44,-1],[1,-73],[-1,-532],[0,-264],[0,-469],[0,-122]],[[3220,1021],[-291,-1],[-13,-16]],[[5932,5814],[0,113],[-277,0],[-332,1],[-328,0],[-467,0],[0,-266]],[[4528,5662],[-472,-1],[-38,0]],[[4018,5661],[-2,401],[-2,0],[0,380],[-1,206],[-3,69],[1,210]],[[5062,1020],[-369,0],[-384,0],[-311,1],[-475,2],[-303,-2]],[[4018,5661],[-380,-1],[-258,-2]],[[3380,5658],[0,269]],[[3372,6751],[33,18],[52,63],[10,29],[-41,2],[-23,-1],[-28,16]],[[3375,6903],[3,115]],[[3380,5658],[0,-132],[114,0],[0,-127],[-47,-1],[-222,2],[-47,-1]],[[3178,5399],[0,30],[-21,21],[-309,4],[-42,-55],[-55,0],[-311,0],[-1,2],[-50,131]],[[7236,5527],[0,-461],[-1,-533]],[[7235,4533],[-332,1],[-507,0],[1,333],[2,127]],[[7235,4243],[0,-210],[-6,-349],[-5,-268]],[[7224,3416],[-551,-1]],[[6148,4197],[0,271],[-4,0],[1,527]],[[7235,4533],[0,-290]],[[3178,5399],[-63,0],[-3,-190],[0,-114],[0,-1],[2,-94],[-8,0],[2,-133],[64,0],[0,-125]],[[5621,5128],[53,0],[0,132],[254,1]],[[5009,4601],[0,360],[0,33],[538,1],[0,132],[74,1]],[[4501,4601],[1,397],[27,-1],[-1,587],[0,78]],[[1003,812],[0,-67],[11,-56]],[[1014,689],[0,-260],[0,-427],[-601,-1],[-98,-1],[-315,0],[0,225],[1,239],[1,434],[0,257],[1,515],[1,536]],[[2112,689],[-414,0],[-271,0],[-413,0]],[[6074,8644],[329,3],[316,1],[566,2],[0,-496],[0,-267],[-48,0],[0,-278],[1,-401],[0,-482]],[[7210,2392],[0,-515],[0,-347],[0,-510],[-316,-1],[-477,0]],[[7224,3416],[-6,-368],[-5,-288],[-3,-215],[0,-153]]],"transform":{"scale":[0.0008301954701441314,0.0006552339884393061],"translate":[-109.05017300000002,31.332365]},"objects":{"cb_2019_35_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[5,6,7,8,9,10]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[11,12,13,14,15,16,17,18,19]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[20,21,22,23,24,-10,25]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[26,27,28,29,30]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[31,32,-21,33,34,35,36]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[37,38,39,40,41,42]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[43,44,45,46,47,48,49,50]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-29,51,52,53,-35,54,55]],"type":"Polygon","properties":{"COUNTYFP":"006"}},{"arcs":[[-42,56,57,58,-45,59]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-31,60,-49,61,-27]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-60,-44,-51,62,-38,-43]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[63,64,-22,-33,65,66,67,68]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-48,71,72,73,-52,-28,-62]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-41,74,-17,75,-57]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-9,76,-55,-34,-26]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[77,-1,-5,78,-64,-69,79,80,81]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[82,83,-24,84,85]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-58,-76,-16,86,87,88]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-79,-4,89,-85,-23,-65]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-46,-59,-89,90,91,-73,92,-70,93]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[-47,-94,-71,-93,-72]],"type":"Polygon","properties":{"COUNTYFP":"028"}},{"arcs":[[-74,-92,94,95,-53]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-20,96,97,-12]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[98,99,-81,100,-13,-98,101]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-96,102,-36,-54]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[103,-14,-101,-80,-68,104]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-87,-15,-104,-105,-67,105]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-7,106,107]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-11,-25,-84,108,-107,-6]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-95,-91,-88,-106,-66,-32,-37,-103]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[109,-18,-75,-40]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[110,-2,-78,-82,-100,111]],"type":"Polygon","properties":{"COUNTYFP":"025"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/nv.topo.json b/app/assets/topojson/states/nv.topo.json new file mode 100755 index 00000000..bb54f7fc --- /dev/null +++ b/app/assets/topojson/states/nv.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[2718,3606],[90,-87],[78,-75],[0,-22],[26,-3],[54,-53],[-1,-308],[0,-333],[0,-514]],[[2965,2211],[-220,174],[-129,105],[-222,174],[-160,129],[-402,313],[-185,143]],[[1647,3249],[80,-3],[122,120],[245,230],[322,302]],[[2416,3898],[256,-248],[46,-44]],[[2572,5612],[143,335],[109,254]],[[2824,6201],[56,131],[238,1],[1,401]],[[3119,6734],[450,0]],[[3569,6734],[0,-60],[-10,-1],[1,-430],[2,-92],[-1,-198],[-3,-109],[-2,-150],[10,-2],[0,-133],[-1,-359],[-2,-291],[-4,-2],[0,-221],[-4,-17]],[[3555,4669],[-157,1],[-445,2],[-162,0],[-304,-50],[-159,-29]],[[2328,4593],[-18,17],[-11,42],[22,34],[40,17],[23,30],[2,21],[-13,50],[-21,34],[-10,53],[13,28],[56,2],[22,41],[30,5],[24,56],[38,30],[-3,17],[109,31],[10,42],[-5,18],[18,38],[-24,13],[22,35],[-21,27],[11,40],[-21,14],[10,43],[-3,45],[17,14],[11,54],[-17,59],[-24,13],[-43,56]],[[1964,7853],[520,1],[447,2],[188,-1]],[[3119,7855],[0,-280],[0,-367],[0,-474]],[[2824,6201],[1,169],[-10,8],[-350,1],[0,163],[0,32],[-372,0],[-261,-1],[-372,-1],[-188,0],[0,117],[-91,1],[-455,-1]],[[726,6689],[-21,0],[-1,308],[26,0],[2,202],[-21,0],[3,198],[-6,-1],[0,299],[3,154]],[[711,7849],[338,0],[318,-2],[204,4],[393,2]],[[5225,3465],[0,462],[0,199]],[[5225,4126],[41,0],[234,0],[718,0]],[[6218,4126],[0,-199],[1,-264],[-1,-297],[1,-198],[-3,-87],[-1,-308],[2,-267],[1,-439]],[[6218,2067],[-479,1],[-265,0],[0,11],[-202,-1],[-819,0],[0,-12],[-163,0]],[[4290,2066],[2,22],[-1,167],[-1,409],[2,378],[2,380],[931,1],[0,42]],[[4218,5754],[136,0]],[[4354,5754],[-5,-33],[13,-40],[1,-44],[-9,-32],[22,-52],[-4,-18],[24,-89],[-18,-32],[2,-71],[-24,-36],[10,-49],[-4,-45],[15,-59],[-26,-41],[7,-22],[-11,-29],[-29,-27],[-6,-24],[-33,-1],[0,-96],[0,-244]],[[4279,4670],[-342,0],[-382,-1]],[[3569,6734],[298,-1],[150,0],[0,-6],[0,-368],[67,-246],[97,-359],[37,0]],[[5225,4126],[-130,76],[-495,286],[-321,182]],[[4354,5754],[277,1],[339,-7],[398,0],[149,-1],[91,-1],[279,-3],[335,-1]],[[6222,5742],[-1,-401],[0,-292],[-2,-555],[-1,-368]],[[6228,7424],[-1,-444],[-1,-312],[-1,-242],[-3,-368],[0,-316]],[[3119,7855],[409,-2],[307,0],[483,-1],[143,1],[438,-1],[294,-1],[62,3],[173,4],[218,-8],[581,-1],[2,-122],[-1,-303]],[[4290,2066],[1,-178],[1,-314],[-1,-260],[52,-2],[0,-232]],[[4343,1080],[-359,298],[-312,258],[-232,189],[-303,247],[-172,139]],[[2416,3898],[-344,327],[-183,172],[0,91],[346,83]],[[2235,4571],[93,22]],[[6218,2067],[1,-173],[6,-348],[-2,-119],[2,-89],[-26,-18],[-30,-61],[-22,-11],[6,-21],[-24,-42],[-3,-22],[-79,-25],[-26,-1],[-27,16],[-6,19],[-44,23],[6,18],[-68,68],[-45,2],[-30,-22],[-26,15],[-31,-13],[-10,26],[-66,1],[-48,-23],[-15,13],[-53,-37],[-56,-5],[-20,-22],[34,-65],[-19,-16],[0,-42],[29,-49],[13,-34],[39,-31],[-45,-28],[11,-19],[-17,-29],[14,-18],[3,-38],[-10,-50],[23,-25],[-6,-43],[37,-45],[-17,-31],[13,-55],[-21,-24],[0,-26],[27,-68],[26,-22],[32,-95],[-1,-32],[10,-39],[8,-59],[11,-29],[-4,-50],[-27,-20],[-22,0],[-24,-28],[40,-24],[-2,-18],[-32,-34],[4,-30],[-322,279],[-344,294],[-240,203],[-175,150],[-185,154]],[[926,5005],[1,66],[29,0],[0,97],[13,35],[-1,96],[-35,-36],[-53,-40],[-28,-4]],[[852,5219],[0,33],[20,0],[-1,121],[-19,25],[-20,-1],[0,101],[-18,0],[1,112]],[[815,5610],[569,-1],[515,4],[270,1],[403,-2]],[[2235,4571],[-395,0],[-182,0],[-351,1]],[[1307,4572],[0,42],[-40,0],[-1,33],[-78,63],[-24,1],[0,33],[-79,65],[-23,0],[-19,34],[-39,16],[-19,33],[-59,32],[0,81]],[[546,4866],[92,140],[6,9],[110,171]],[[754,5186],[26,31],[72,2]],[[1307,4572],[-184,-1],[-3,-5],[-86,-141],[1,-104],[117,1],[0,-98],[-5,-6],[1,-273],[-1,-114],[-261,0]],[[886,3831],[-179,135]],[[707,3966],[-1,128],[-19,0],[-3,90],[-59,5],[3,85],[-19,16],[0,24],[-19,9],[19,33],[1,81],[19,0],[1,33],[56,0],[39,8],[-1,104],[-88,2],[-153,1],[-9,0]],[[474,4585],[-10,56],[-12,12],[10,55],[-89,-1],[-36,16],[-31,47]],[[306,4770],[68,17],[172,79]],[[1647,3249],[-386,297],[-375,285]],[[718,5170],[-54,-22],[-45,3],[-57,-7],[-2,-16],[-65,-4],[-63,-24],[-32,-38],[-44,-3],[-25,13],[-8,0],[0,-81],[43,0],[-2,-26],[-21,-23],[-9,-31],[28,-51],[-20,1],[0,-57],[-36,-34]],[[306,4770],[-42,-7],[-48,-33],[-47,-16],[-41,-40],[-127,0]],[[1,4674],[-1,121],[3,213],[1,96],[0,195],[3,226],[3,380],[0,267],[-4,419],[0,349],[0,355],[1,133],[-1,422],[129,3],[576,-4]],[[726,6689],[-2,-201],[-1,-295],[-27,-1],[1,-231],[-1,-173],[-1,-179],[120,1]],[[754,5186],[-36,-16]],[[2,4615],[147,0],[106,1],[9,-30],[4,-2],[206,1]],[[707,3966],[-343,255],[-128,95],[-67,51],[-165,121],[-2,127]],[[2,4615],[-1,59]]],"transform":{"scale":[0.0009577252235431048,0.0008908074573682866],"translate":[-120.00531841745,35.001857]},"objects":{"cb_2019_32_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[4,5,6,7,8,9]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[10,11,-6,12,13,14]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[15,16,17,18,19]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[20,21,22,-8,23]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-17,24,-22,25,26]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[27,-26,-21,-24,-7,-12,28]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-23,-25,-16,-20,29,30,-1,-4,31,32,-9]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-19,33,-30]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[34,35,36,-10,-33,37,38]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[39,40,-35,-39,41,42,43,44,45]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-42,-38,-32,-3,46]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[47,48,49,-14,50,-36,-41,51]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-13,-5,-37,-51]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-48,-52,-40,-46]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[52,-44,53]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-49,-45,-53,54]],"type":"Polygon","properties":{"COUNTYFP":"510"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ny.topo.json b/app/assets/topojson/states/ny.topo.json new file mode 100755 index 00000000..a3e95b1d --- /dev/null +++ b/app/assets/topojson/states/ny.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[10287,3720],[-53,-195],[8,-36],[10,-45]],[[10252,3444],[-40,1],[-9,-160],[-48,9],[-141,29],[-112,23],[-37,21],[-36,19],[-103,52],[-146,73],[-36,-2]],[[9544,3509],[23,94],[8,13]],[[9575,3616],[28,66],[4,27],[45,30],[21,45],[-1,39],[16,33],[20,23],[33,13],[27,26],[15,55],[3,22],[-1,59],[-8,40],[-10,30],[-2,45],[31,118],[2,48],[-15,28]],[[9783,4363],[107,15],[111,15],[31,4],[181,28],[20,4],[255,36]],[[10488,4465],[-48,-179],[-52,-193],[-47,-174],[-54,-199]],[[4348,4197],[8,-255],[1,-4],[40,7],[180,6]],[[4577,3951],[-1,-156],[0,-19],[0,-237],[0,-36],[0,-166]],[[4576,3337],[-193,-3],[-191,-1],[-190,0],[-229,1],[-294,-1],[-187,-2]],[[3292,3331],[8,230],[6,199],[8,198],[9,272],[8,0],[6,149]],[[3337,4379],[3,141],[97,0],[3,101],[15,0],[182,-5],[79,-2]],[[3716,4614],[111,-2],[93,0]],[[3920,4612],[202,0],[162,1],[-9,-51],[4,-55],[-4,-64],[9,-12],[27,5],[21,25],[12,-7],[0,-47]],[[4344,4407],[4,-210]],[[5166,6113],[7,1],[196,6],[3,-65]],[[5372,6055],[5,-98],[5,-82],[-9,-33],[11,-54],[-32,-1],[-13,-19],[11,-183],[1,-23],[47,3],[10,-170],[10,-186],[154,8],[95,-93],[32,-48],[8,-32]],[[5707,5044],[7,-162],[7,-161],[0,-4]],[[5721,4717],[-162,-6],[-153,-6],[-1,20],[-254,-12],[-86,3]],[[5065,4716],[-8,27],[-31,93],[-12,16],[-36,35],[-15,27],[-14,91],[-4,79],[16,37],[2,5],[16,38],[2,42],[-9,72],[-16,39],[-10,50],[4,73],[-2,25],[29,76],[-2,25],[13,38]],[[4988,5604],[-9,36],[6,54],[22,35],[-6,113],[-3,68],[-6,131],[-3,63],[-15,209]],[[4974,6313],[46,6],[40,45],[64,103],[23,11]],[[5147,6478],[7,-112],[12,-253]],[[6872,6495],[47,-13],[179,113],[52,33],[125,77],[149,92],[188,118]],[[7612,6915],[13,-145],[8,-118],[17,-177],[0,-1],[17,-190],[-36,-12],[-13,-26],[-66,-21],[-2,-33],[-23,-68],[45,-22],[72,-40],[35,-7],[-76,-127],[-74,-123],[-30,-44],[-5,-43],[-22,5],[-20,-29],[-18,-27],[5,-66],[14,-182],[10,-133],[-18,-1]],[[7445,5285],[-50,-5],[-8,-14]],[[7387,5266],[-98,-5],[-212,-13],[-11,155],[-21,-1],[-141,-2],[-13,196],[-3,38],[-72,-5],[-18,40],[13,17],[-61,35],[-6,42],[-25,31],[-39,27],[-46,41],[-2,25],[-47,29],[-24,-13],[-27,25],[-46,-24],[-25,5],[-45,-2],[-38,-30],[-35,19]],[[6345,5896],[35,363],[-39,13],[60,174],[58,177],[96,-29]],[[6555,6594],[110,-34],[81,-24],[126,-41]],[[3292,3331],[-147,0],[-192,0],[-191,3],[-192,0],[-191,-1]],[[2379,3333],[-1,193],[0,97],[0,95],[-1,99],[0,15],[0,32],[0,49],[1,194],[0,1],[1,194]],[[2379,4302],[-1,188]],[[2378,4490],[194,0],[166,-1],[83,1]],[[2821,4490],[-9,-7],[145,0],[187,-1],[1,-96],[192,-7]],[[3919,4815],[16,3],[6,68],[26,72],[38,59],[2,5],[130,0],[181,1],[0,3],[171,1],[77,1]],[[4566,5028],[40,1],[1,-33],[6,-39],[21,-53],[36,-64],[21,-51],[1,-60],[0,-13],[1,-99],[-2,-82]],[[4691,4535],[-9,-106],[18,-68],[-22,-2],[-99,-7],[-40,9],[-2,48],[-193,-2]],[[3920,4612],[-1,203]],[[2694,5843],[162,2],[32,1]],[[2888,5846],[149,1],[-3,-9],[-66,-187],[-5,-12],[77,-6],[-9,-109]],[[3031,5524],[-3,-95],[-37,1],[-1,-58],[-1,-31],[-33,1],[1,-95]],[[2957,5247],[-66,5],[-129,-3],[0,14],[-192,1],[-190,-2],[-257,-5]],[[2123,5257],[1,193],[1,174],[-1,71],[-1,53]],[[2123,5748],[0,6],[-1,82]],[[2122,5836],[89,5],[164,1],[125,1],[194,2],[0,-2]],[[6401,7307],[104,-8],[20,-221]],[[6525,7078],[-212,20],[-198,20],[5,-86],[-192,20],[-99,7]],[[5829,7059],[-2,36],[-20,126],[-26,113],[-13,24],[-46,46],[-21,11],[-34,-5],[2,39],[19,26],[42,31],[57,14],[10,12],[-11,-62],[39,-2],[80,57],[33,6],[11,24],[1,38],[-21,44],[32,18],[59,62],[24,-15],[15,34],[-21,11],[-21,10],[-64,-56],[-57,-24],[-26,12],[0,22],[-42,-14],[-12,16],[9,31],[25,25],[63,17],[32,26],[12,38],[-31,3],[-15,-17],[-29,9],[34,44],[-14,22],[-32,-1],[-48,-22],[-27,26],[-39,-10],[-31,-19],[-23,-44],[5,-36],[72,28],[50,-8],[-33,-52],[-2,-18],[-54,-62],[-43,-14],[-6,16],[30,61],[-36,37],[-24,5],[3,59],[9,14],[0,27],[-64,12],[-41,28],[24,21],[-41,41],[37,43],[-9,24],[65,142],[43,11],[67,-1],[72,29],[61,51],[4,91],[51,36],[55,6],[43,36],[42,35],[72,35],[35,-1],[16,-9],[34,14],[59,42],[87,78]],[[6385,8662],[178,-111],[27,-15],[105,-65],[263,-156],[104,-65]],[[7062,8250],[-143,-222],[-20,-32],[101,-64],[-30,-50],[1,-34],[0,-59],[-79,-3],[12,-89],[-56,-6],[-43,13],[-165,-135],[-88,-70],[-1,0],[-134,12],[-16,-204]],[[5529,7851],[21,32],[46,4],[-8,-33],[-24,-13],[-35,10]],[[5572,7498],[18,35],[50,25],[-18,-54],[-50,-6]],[[5426,7525],[32,40],[33,28],[26,2],[3,-31],[-67,-39],[-27,0]],[[2890,6188],[0,173]],[[2890,6361],[50,6],[70,-25],[29,0],[48,-16],[109,-17],[80,-2],[19,-13],[56,-26],[11,-28],[88,-69],[52,-26],[32,-24],[41,-31],[44,-16],[27,0],[54,32],[23,0],[157,58],[24,-1]],[[3904,6163],[2,-163],[0,-14],[3,-161],[0,-2],[3,-195]],[[3912,5628],[-187,0],[5,-203],[-160,2]],[[3570,5427],[-89,1],[-5,-10],[-198,1],[46,18],[16,68],[-16,20],[-293,-1]],[[2888,5846],[0,188],[0,4],[2,145],[0,5]],[[9419,9702],[-1,-79],[22,-175],[11,-111],[33,3],[3,-26],[16,-144],[12,-109],[24,-16],[20,-159],[18,-165]],[[9577,8721],[-380,-50],[23,-171],[56,-427],[-308,-38]],[[8968,8035],[-169,-20],[-246,-27]],[[8553,7988],[-15,156],[31,2],[-11,109],[-35,293],[-8,74],[-28,251],[-45,395],[-2,22],[-21,195],[-9,90],[-14,134],[-17,171],[-78,0],[-51,1],[-10,92]],[[8240,9973],[40,19],[30,-8],[183,-2],[213,-5],[162,-9],[163,-1],[161,-1],[192,9]],[[9384,9975],[34,-243],[1,-30]],[[6673,4962],[-195,-13],[-142,-10]],[[6336,4939],[-10,149]],[[6326,5088],[-4,76],[-5,81],[-15,283],[-1,38],[-9,175],[-68,2],[-28,10],[16,63],[25,27],[-36,19],[-3,51],[-31,45]],[[6167,5958],[23,-14],[32,5],[7,-16],[37,9],[12,-33],[67,-13]],[[7387,5266],[1,-48],[12,-35],[-17,-23],[-3,-77],[-11,-26],[-34,-29],[-1,-21],[-26,-23]],[[7308,4984],[-216,-14],[-1,17],[-203,-14],[-215,-11]],[[2378,4490],[-226,-5],[-29,0],[1,38]],[[2124,4523],[3,156],[-3,193],[1,192],[-40,3],[3,191],[35,-1]],[[2957,5247],[-1,-116],[0,-22],[0,-193],[-1,-103],[-21,-10],[-12,-55],[-35,-49],[-29,-14]],[[2858,4685],[15,-23],[-9,-27],[-40,2],[-23,-31],[0,-78],[20,-38]],[[5898,4242],[-157,-4]],[[5741,4238],[0,19],[-6,137],[-7,160],[-7,163]],[[5707,5044],[128,8],[190,11],[0,4],[123,7],[178,14]],[[6336,4939],[10,-151],[3,-40],[9,-159],[4,-52],[7,-116],[5,-94],[5,-71]],[[6379,4256],[-161,-11],[-40,-2],[-59,6],[-57,-2],[-119,-3]],[[5943,4244],[-45,-2]],[[191,3332],[-190,0],[-1,193],[0,193],[0,214],[38,15],[91,49],[63,38],[191,127],[87,69],[35,16],[45,44],[23,45],[19,12],[60,50],[11,27],[45,-4],[33,31],[25,13],[26,3],[40,35],[123,55],[48,5],[20,35]],[[1023,4597],[36,1],[22,-17],[30,-36],[36,-19]],[[1147,4526],[0,-33],[0,-193],[1,-195],[0,-194],[1,-193],[1,-192]],[[1150,3526],[-3,-194]],[[1147,3332],[-137,1],[-147,-1],[-239,-1],[-241,0],[-192,1]],[[6555,6594],[-17,343],[-5,43],[-8,98]],[[7062,8250],[54,-31],[159,-98],[90,-51],[149,-87]],[[7514,7983],[10,-106],[12,-137],[43,-468],[25,-262],[8,-95]],[[10054,7295],[-33,-4],[-241,-32],[-136,-17],[-308,-40]],[[9336,7202],[4,57],[13,24],[-1,33],[-60,27],[-13,-9],[-41,11],[-53,45],[-88,-20],[-18,-21],[-201,253],[132,99],[-42,334]],[[9577,8721],[264,29],[77,6],[44,-11],[80,37],[18,-7],[70,25],[21,31],[29,15],[75,3],[8,23],[33,24],[15,47],[-5,17],[205,20]],[[10511,8980],[29,-73],[23,-30],[12,-59],[-1,-42],[11,-31],[-4,-27],[-31,-89],[-31,-36],[-1,-34],[17,-70],[3,-53],[18,-60],[-9,-37],[-54,-60],[-20,-49],[-47,-43],[-19,-96],[-22,-29],[6,-47],[-28,-71],[-14,-76],[17,-18],[27,-22],[8,-35],[-11,-69],[10,-29],[-3,-76],[6,-20],[14,-46],[36,-64],[-12,-33],[15,-31],[-33,-51],[22,-31]],[[10445,7343],[-97,-10]],[[10348,7333],[-100,-11],[-194,-27]],[[2694,6384],[136,-19],[60,-4]],[[2122,5836],[8,194],[-10,192],[2,152]],[[2122,6374],[155,12],[55,-9],[46,2],[91,-3],[32,-7],[90,4],[31,9],[72,2]],[[5372,6055],[220,12],[34,-1],[27,-3],[29,-26],[14,-40],[31,38],[-10,33],[15,9],[24,-50],[33,-22],[20,5],[16,34],[-17,76],[3,26],[17,5],[50,-52],[20,-9],[46,-18],[21,-3],[53,-37],[20,-5],[-11,-34],[54,6],[67,-50],[19,9]],[[5241,3625],[7,-40],[7,-74],[15,-62],[-32,-94],[6,-21]],[[5244,3334],[-236,3],[-141,1],[-291,-1]],[[4577,3951],[0,20],[180,13],[11,0],[93,3],[94,-2],[6,-101],[73,1],[0,-24],[62,1],[9,-10],[37,33],[1,76]],[[5143,3961],[132,-2]],[[5275,3959],[4,-74],[-1,-206],[-43,1],[6,-55]],[[5032,4199],[-6,-38],[-1,-132],[0,-65],[118,-3]],[[4691,4535],[220,8],[105,3]],[[5016,4546],[7,-152],[9,-195]],[[1275,4456],[27,-27],[25,-56],[1,-1],[11,0],[82,-64],[93,10],[61,40],[36,0],[62,24],[18,22],[46,6],[0,-21],[60,30],[30,3],[31,21],[49,28],[23,3],[31,-12],[41,12],[44,30],[21,0],[57,19]],[[2379,3333],[-127,0],[-127,0],[-190,1],[-193,-3],[-213,-2],[-128,1],[-63,1],[-54,1],[-137,0]],[[1147,4526],[46,12],[67,-31],[6,-16],[9,-35]],[[4988,5604],[-136,-6],[-101,-6],[-172,-12]],[[4579,5580],[-114,-1],[-164,0],[-3,60],[-182,0],[0,-11],[-204,0]],[[3904,6163],[58,10],[98,-7],[47,3],[62,12],[67,-6],[39,17],[28,-8],[41,9],[62,-14],[45,-28],[69,2],[19,7],[41,-9],[18,-1],[92,57],[30,-7],[74,29],[73,12],[52,31],[41,40],[14,1]],[[4579,5580],[0,-148],[1,-96],[0,-42],[0,-25],[-25,-8],[-4,-27],[11,-37],[-7,-25],[5,-55],[-4,-69],[10,-20]],[[3716,4614],[2,153],[5,53],[-12,0],[-171,4],[-21,202],[38,-1],[0,202],[59,0],[9,34],[-23,68],[0,48],[-32,50]],[[7627,5348],[165,-93],[74,-44],[79,-48],[20,16],[11,44],[15,102],[189,-77]],[[8180,5248],[20,-8],[67,-27],[101,-40]],[[8368,5173],[-28,-83],[-4,-61],[12,-76],[19,-80],[15,-68],[1,-4],[14,-77],[-68,-138],[-65,-104]],[[8264,4482],[-65,-7],[-35,-21],[-8,3],[-108,13],[-149,-86],[-38,-24],[-17,13],[-11,-3],[-11,-45],[-19,-16],[-36,24],[-7,-48],[-64,4],[-56,-22],[-35,-32],[-12,-27],[-41,-19],[-82,-60],[6,42],[-24,-1],[-14,-21],[-40,-6],[-34,4],[-12,-35],[-39,-25],[-20,-38],[-59,-17],[-62,13],[-59,-14]],[[7113,4031],[17,41],[17,46],[-20,60],[23,45],[20,6],[6,47],[-40,98],[-5,23],[15,20],[-14,45],[22,4],[13,40],[24,53],[50,22],[19,58],[-18,13],[-1,42],[23,21],[-4,52],[-6,19],[2,55],[24,22],[27,64],[1,57]],[[7445,5285],[3,-52],[116,7],[63,108]],[[9417,424],[11,17]],[[9428,441],[3,5]],[[9431,446],[2,5]],[[9433,451],[1,3]],[[9434,454],[39,19],[19,32],[-2,29]],[[9490,534],[16,5],[39,-26],[12,-40],[29,-31],[12,-29],[45,28],[22,-69],[-12,-12],[49,-67],[-2,-47],[-25,-41],[-48,-31],[-91,-17]],[[9536,157],[5,20],[-98,-12],[-17,25],[-2,31],[-46,21],[-19,43],[17,48],[23,28],[-4,44],[22,19]],[[5065,4716],[35,-70],[44,-56],[53,-37],[-181,-7]],[[1845,6344],[143,26],[95,12],[39,-8]],[[2123,5748],[-44,-11],[-21,22],[-52,-18],[-24,16],[-42,-9],[1,-20],[-46,-17],[-22,32],[-34,20],[-15,-13],[-59,-20],[-22,12],[-36,-11],[-24,7],[-19,-32],[-55,-10],[-38,1],[-4,-24],[-29,-8],[-15,-3],[4,-44],[-17,-24],[-20,0],[-63,6],[-10,49],[-16,16],[-65,34],[-105,6],[-16,-3]],[[1215,5702],[-90,22],[27,64],[-18,29],[28,27],[16,25],[-18,67],[7,58],[-9,41],[-3,79],[-23,19],[82,25],[52,9],[143,49],[81,27],[25,14],[102,20],[32,11],[41,15],[70,9],[85,32]],[[1023,4597],[8,36],[32,54],[80,76],[1,45],[26,59],[67,29],[24,2],[35,25],[42,34],[43,12],[86,76],[20,27],[-15,48],[-15,38],[4,21],[16,20],[-21,24],[-55,105],[0,53],[-14,38],[-29,34],[-49,4],[-21,25],[-60,36],[-14,21],[-5,48],[19,28],[20,60],[-33,27]],[[9384,9975],[250,13],[97,2],[229,1],[255,9],[289,9],[-19,-52],[26,-48],[-1,-108],[-28,-28],[-21,-84],[-17,-21],[0,-42],[19,-22],[53,-52],[4,-35],[-23,-35],[-11,-37],[-19,-33],[-1,-98],[-11,-64],[-22,-79],[-6,-35],[22,-39],[-9,-23],[34,-57],[37,-37]],[[8465,4249],[-47,25],[-134,182],[-20,26]],[[8368,5173],[151,-42],[58,-29],[107,-54],[72,7],[118,13],[81,4],[43,28]],[[8998,5100],[25,-27],[-17,-60],[-47,-1],[-29,-21],[54,-70],[47,2],[66,-13],[30,4],[7,38]],[[9134,4952],[25,-28],[-8,-57],[0,-53],[-36,-88],[-16,-37],[-53,-79],[-5,-24],[-7,-31],[11,-29],[15,-25],[-5,-71],[-26,-54],[-19,-71],[-14,-40],[17,-26]],[[9013,4239],[15,-69],[-23,5],[-29,-35],[-27,-5],[-86,-12],[-54,40],[-97,-38],[-9,-4]],[[8703,4121],[-203,109],[-35,19]],[[8123,7000],[-17,180],[-19,186],[-56,557]],[[8031,7923],[141,17],[195,24],[186,24]],[[9336,7202],[-258,-36],[18,-158],[34,-302],[17,-149],[20,-182]],[[9167,6375],[3,-27],[13,-105],[17,-129]],[[9200,6114],[-114,-10],[-24,-3],[5,-59],[-166,-15],[-6,60],[-215,-20],[-126,-10],[-279,129],[-12,-1]],[[8263,6185],[-228,107],[-26,12],[151,326],[-37,370]],[[7514,7983],[176,-103],[284,36],[57,7]],[[8263,6185],[8,-86],[19,-149],[-35,-33],[-4,-37],[-24,-10],[10,-42],[-50,-15],[-18,-37],[-6,-40],[22,-80]],[[8185,5656],[27,-37],[0,-69],[6,-3],[-18,-153],[-20,-146]],[[11510,611],[-65,-22],[-156,-64],[-98,-44],[-146,-74],[-70,-30],[-147,-46],[-104,-32],[-91,-20],[-69,-3],[-33,28],[-41,-6],[-118,-46]],[[10372,252],[-3,103],[3,34],[-24,177],[-28,202],[-16,56]],[[10304,824],[-13,56],[-27,53]],[[10264,933],[-6,6]],[[10258,939],[1,48],[12,11],[35,-19],[45,-6],[13,-30],[-9,-28],[29,-10],[32,11],[27,-15],[41,23],[3,24],[-74,10],[-8,31],[17,29],[31,-39],[35,-24],[35,6],[59,-11],[46,-22],[64,-19],[130,51],[7,59],[-6,23],[29,6],[20,20],[26,-19],[34,8],[54,-21],[86,7],[67,-1],[67,-8],[82,7],[50,10],[97,-11],[47,7],[61,21],[119,9],[71,30],[57,42],[64,57],[67,27],[29,31],[23,44],[45,4],[34,19],[24,40],[20,12],[26,44],[53,-2],[15,20],[55,24],[18,-10],[49,12],[-27,-57],[-39,-26],[-50,39],[-29,-17],[-16,-48],[25,-22],[7,-26],[25,-14],[35,-5],[-5,-27],[30,-50],[78,-11],[44,-18],[45,46],[42,-30],[0,-35],[34,-53],[35,-19],[20,11],[11,28],[22,5],[12,24],[49,-3],[56,62],[31,-17],[25,16],[-4,51],[90,33],[15,-19],[64,-15],[-40,-49],[-128,-49],[-115,-59],[-140,-62],[-214,-107],[-155,-81],[-91,-45],[-121,-54],[-170,-65],[-253,-92]],[[12641,1671],[27,58],[29,-21],[19,33],[38,8],[1,-26],[-57,-45],[-24,5],[-33,-12]],[[12356,1514],[38,4],[-17,-35],[-21,31]],[[12468,1334],[45,28],[59,-22],[-12,-33],[-27,2],[-65,25]],[[10264,933],[-6,6]],[[10049,892],[90,38],[29,-15],[0,-50],[11,-21],[59,-3],[-10,28],[28,15],[11,-39],[37,-21]],[[10372,252],[-100,-27],[-105,-28],[-35,-2],[-66,8],[-44,-9],[-104,0],[-88,5]],[[9830,199],[27,37],[-12,20],[-34,8],[-2,25],[43,24],[0,21],[27,12],[-3,130],[-6,25],[37,13],[13,25],[-3,29],[-81,67]],[[9836,635],[-4,38],[-19,25],[18,22],[-5,29],[84,-40],[2,30],[-14,19],[-25,-11],[-15,36],[39,46],[63,-29],[24,-50],[20,-12],[-9,38],[8,15],[-11,24],[2,32],[24,41],[31,4]],[[8984,3582],[322,-34],[54,164],[28,-19],[35,3],[2,30],[137,-106],[13,-4]],[[9544,3509],[-12,-115],[0,-45],[-12,-55],[-15,-65],[-12,-76],[-2,-38],[35,-63],[-14,-54],[1,-72],[-6,-62],[9,-54],[10,-21],[-1,-40],[-5,-48],[3,-67],[-7,-34],[-10,-97],[-1,-78]],[[9505,2425],[-137,-18],[-27,9],[-24,45],[-35,-17],[-15,19],[-58,19],[13,-73],[-96,25],[-4,-7],[-94,29],[-11,3],[2,53],[-23,8],[-66,-39],[-25,-27],[-34,-19],[-43,-8]],[[8828,2427],[-15,16],[-31,104],[-157,116],[-137,106],[81,115],[62,83],[55,91],[-241,145],[-88,51],[-31,17],[-175,99]],[[8151,3370],[182,114],[190,119],[9,13],[28,43],[44,-4],[86,54]],[[8690,3709],[236,-121],[34,-4],[24,-2]],[[10610,5191],[-12,-8],[3,-45],[-12,-26],[24,-124],[19,0],[-15,-55],[-63,-230],[-66,-238]],[[9783,4363],[-2,57],[34,69],[9,29],[10,95],[-14,53],[2,29],[0,1],[22,71],[35,53],[3,6],[27,47],[5,25],[15,59],[16,64],[13,50]],[[9958,5071],[7,27],[18,16],[3,36],[-27,87],[5,38],[-19,38],[2,19],[7,24],[47,58],[24,7]],[[10025,5421],[194,4],[86,2],[23,1],[28,30],[68,-12],[19,-20],[173,0]],[[10616,5426],[-6,-235]],[[6385,8662],[64,64],[22,88],[68,98],[45,42],[125,126],[85,75],[146,151],[126,109],[33,30],[16,36],[28,2],[44,32],[42,47],[17,-6],[46,39],[-3,28],[146,90],[25,0],[62,35],[43,15],[8,34],[61,26],[52,5],[98,65],[20,42],[34,13],[54,2],[51,-2],[33,37],[35,1],[65,34],[41,-3],[14,-22],[49,2],[5,-23],[25,-10],[30,9]],[[7113,4031],[-1,-73],[-2,-82],[-2,-110]],[[7108,3766],[-187,1],[-171,1],[-1,83],[-2,34],[-96,-1],[-66,3],[-134,-1],[-27,-11],[-12,35],[-11,151],[-15,118],[-7,77]],[[9228,5870],[20,-171],[15,-134],[6,-52]],[[9269,5513],[-314,3],[-162,1],[-45,0],[-119,1],[-88,1],[-101,39],[-4,2],[-251,96]],[[9200,6114],[25,-222],[3,-22]],[[9505,2425],[-2,-18],[-16,-37],[-38,-50],[-16,-58],[0,-65],[-4,-68],[30,-39]],[[9459,2090],[12,-24],[25,-61],[19,-16],[-14,-42],[-9,-57],[-33,-53]],[[9459,1837],[-70,-67],[-74,-73],[-48,-46],[-103,-100],[-119,-117]],[[9045,1434],[-14,8],[-96,58],[-126,80],[-129,87],[-130,81],[-115,74],[-109,66],[-32,20],[7,16],[-38,52],[-39,24],[-8,29],[11,25],[-33,5]],[[8194,2059],[-13,55],[19,31],[-16,60],[14,7],[216,10],[148,9],[89,4],[32,61],[27,25],[33,50],[39,33],[46,23]],[[9783,4363],[-87,-12],[-182,-34],[-26,-4],[-197,-31],[-10,-2],[-268,-41]],[[9134,4952],[121,21],[85,14],[99,16],[98,17],[44,7],[12,1],[147,24],[1,9]],[[9741,5061],[36,24],[30,-9],[31,35],[20,38],[25,4],[19,-59],[36,-41],[20,18]],[[8690,3709],[-7,3],[-133,69],[85,156],[9,17],[84,154],[-25,13]],[[5510,4040],[-34,0],[-1,-123],[-95,2],[0,38],[-105,2]],[[5741,4238],[-65,-3],[-10,-47],[56,-22],[35,-25],[10,-29],[-16,-37],[-6,-21],[2,-62],[-62,0],[-1,25],[-102,1],[0,22],[-72,0]],[[8194,2059],[-67,-2],[-16,40],[-52,-23],[-35,28],[-49,-13],[-1,28],[-25,19],[-13,35],[-55,17],[-20,-15],[-38,8],[-4,56],[-26,5],[-7,37],[-34,35],[10,26],[-36,40],[-10,30],[-46,50],[22,22],[28,5],[-8,71],[-16,54],[10,31],[-26,44],[31,15],[-7,34],[1,49],[-12,27],[-25,16],[-27,-7],[-20,12],[20,50],[31,16],[-65,42],[-2,46],[-52,16]],[[7553,3003],[244,150],[20,13],[231,140],[103,64]],[[7108,3766],[-2,-98],[-6,-214],[2,-27],[20,-27],[12,-42],[29,-17],[29,11],[12,-19]],[[7204,3333],[-317,-1],[-309,-3],[-33,1],[-177,1],[-144,1],[-241,0]],[[5983,3332],[2,72],[-7,95],[-9,175],[-3,72],[48,2],[0,58],[9,39],[-25,60],[26,1],[-11,46],[-21,-1],[2,56],[-22,33],[-7,42],[12,0],[-9,66],[-16,77],[-9,19]],[[9224,5277],[62,43],[4,2],[-13,131]],[[9277,5453],[61,-6],[80,-42],[49,-40],[35,-42],[60,29],[23,2],[6,-50],[8,-83],[23,-1],[10,-36],[28,-32],[28,-49],[32,-39],[21,-3]],[[8998,5100],[11,35],[215,142]],[[5983,3332],[-278,-1],[-323,1],[-138,2]],[[10660,6641],[-9,-307],[-5,-208],[-4,-64],[-10,-276],[-2,-42],[-14,-318]],[[10025,5421],[10,20],[0,48],[32,21],[8,44],[19,29],[13,78],[13,20],[3,108],[1,17],[-17,19],[-8,35],[17,38],[-16,31],[15,27],[-8,23],[7,50],[-26,64],[15,20],[-21,34],[10,49],[0,34]],[[10092,6230],[-24,172],[-32,227],[-7,48],[23,28],[4,37],[16,34],[4,34],[25,3],[17,28],[21,22],[44,75],[23,23],[50,40],[4,42],[13,39],[20,36],[20,75],[-7,40],[7,51],[35,49]],[[10445,7343],[4,-21],[31,-29],[12,-31],[-32,-61],[-1,-42],[-38,-57],[-14,-14],[-9,-53],[-33,-78],[16,-24],[-14,-90],[47,-33],[23,17],[-4,35],[23,32],[-6,15],[28,28],[50,2],[43,-4],[16,-48],[-2,-53],[14,1],[43,-32],[16,-24],[11,-42],[-8,-20],[-1,-76]],[[10229,2797],[-16,-306],[-15,-205]],[[10198,2286],[-82,-2],[-110,-18],[-42,-8],[-271,-37],[-35,-5],[-121,-16],[-78,-110]],[[10252,3444],[16,0],[-4,-110],[-16,-262],[-19,-275]],[[9620,6433],[-192,-24],[-261,-34]],[[10092,6230],[-41,-3],[-38,-2],[2,-24],[-30,-6],[-25,-12],[24,-27],[-33,-12],[-7,30],[-33,-5],[-54,-27],[-3,-37],[-38,-54],[-9,-7],[-34,49],[-22,13],[-53,8],[0,26],[17,29],[-1,59],[-54,55],[-27,77],[7,17],[-20,56]],[[5147,6478],[29,14],[60,53],[40,22],[83,38],[10,14],[18,31],[97,61],[65,5],[42,-27],[88,1],[34,15],[50,17],[31,25],[29,79],[8,87],[3,108],[-5,38]],[[9277,5453],[-7,52],[-1,8]],[[10226,1559],[-166,-103],[-186,-116],[36,-58],[83,-139],[-8,-25],[4,-33],[-4,-38],[-29,-12],[-9,-31],[-49,-11],[-12,-10],[-22,-40],[-45,-33],[-36,-57]],[[9783,853],[-65,23],[-25,6],[-23,35],[-11,-21],[-96,38]],[[9563,934],[31,127],[8,50]],[[9602,1111],[8,89],[-9,74],[2,50],[10,79],[-3,36],[-33,43],[-20,48],[-16,42],[-27,40],[-22,24],[-18,49],[25,45],[13,36],[-25,16],[-30,48]],[[9457,1830],[146,21],[52,7],[105,14],[29,4],[195,28],[1,0],[189,25]],[[10174,1929],[-9,-143],[-1,-14],[111,-183],[-49,-30]],[[7553,3003],[-25,-2],[-11,38],[-26,-14],[-22,18],[-28,-3],[-15,-22],[-32,21],[-33,9],[5,28],[-17,8],[6,44],[-15,34],[-4,37],[-24,34],[-27,-12],[-31,43],[-22,13],[1,42],[-29,14]],[[9572,665],[65,-23],[16,27],[75,18],[50,-10]],[[9778,677],[45,-72],[13,30]],[[9830,199],[-33,11],[-97,-30],[-73,-34],[-64,-20],[-37,-22],[10,53]],[[9490,534],[35,66],[51,53],[-4,12]],[[9457,1830],[2,7]],[[10198,2286],[-10,-168],[-14,-189]],[[9010,26],[21,29],[-8,50],[61,39],[11,63],[14,27],[-8,66],[33,31],[45,-14],[108,21],[28,-16],[3,-39],[24,-45],[-25,-43],[-71,-82],[-42,-38],[-18,10],[-117,-71],[-44,-14],[-15,26]],[[9538,856],[25,78]],[[9783,853],[-16,-38],[18,-36],[-50,-2],[2,-47],[41,-53]],[[9572,665],[-33,28],[-1,54],[8,28],[35,61],[-43,20]],[[9602,1111],[-14,0],[-242,147],[-216,129],[-85,47]],[[9431,446],[2,5]],[[9417,424],[11,17]],[[9434,454],[-33,2],[-12,17],[17,105],[83,155],[15,47],[34,76]]],"transform":{"scale":[0.0006110950761382083,0.0004510725548902198],"translate":[-79.761951,40.496103]},"objects":{"cb_2019_36_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[6,7,8,9,10,11,12,13]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[14,15,16,17,18,19,20,21]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[22,23,24,25,26,27]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-10,28,29,30,31,32]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[33,34,35,-13,36]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[37,38,39,40,41,42,43]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[[44,45,46,47,48]],[[49]],[[50]],[[51]]],"type":"MultiPolygon","properties":{"COUNTYFP":"045"}},{"arcs":[[52,53,54,55,56,-39,57]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[58,59,60,61,62,63]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[64,65,66,67,-26,68,69]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[-32,70,71,-41,72,73]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[74,75,-17,76,-66,77,78,79]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[80,81,82,83,84]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-28,85,-45,-49,86,87,-23]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[88,89,-60,90,91,92,93]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[94,-53,-58,-38,-44,95,96]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[-77,-16,97,-67]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[98,99,-8,100,101,102]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[103,-101,-7,-14,-36,104,105]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[106,-71,-31,-30,107,-84,-83,108]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-20,109,110,-55,111]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-111,112,-34,-37,-12,113,-56]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[114,115,116,117,118,-69,-25,119]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[120,121,122,123,124,125,126]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-110,-19,127,-105,-35,-113]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[128,-96,-43,129,130]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-72,-107,-109,-82,131,-130,-42]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-59,-64,132,-91]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[133,-117,134,135,136,137,138]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[139,140,-61,-90,141,142,143,144]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-24,-88,145,-140,-145,146,147,-115,-120]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[[148,149,150,151,152]],[[153]],[[154]],[[155]]],"type":"MultiPolygon","properties":{"COUNTYFP":"103"}},{"arcs":[[157,-150,158,159,160]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[161,-3,162,163,164,165,166]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[167,-5,168,169,170,171]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-11,-33,-74,-73,-40,-57,-114]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-87,-48,172,-62,-141,-146]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-70,-119,173,174,-78,-65]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[175,176,-147,-144,177]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-164,178,179,180,181,182]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-169,183,-137,184,185]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-184,-4,-162,-167,186,-138]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[187,-102,-104,-106,-128,-18,-76,188]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-165,-183,189,190]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-175,191,192,193,-79]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[194,195,-185,-136,196]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-188,-189,-75,-80,-194,197,-99,-103]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[198,-171,199,200,-93,201]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[202,203,-179,-163,-2,204]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[205,-142,-89,-94,-201,206]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[-46,-86,-27,-68,-98,-15,-22,207]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[-196,208,-176,-178,-143,-206,-207,-200,-170,-186]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[209,210,211,212,213,214]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[-174,-118,-134,-139,-187,-166,-191,215,-192]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[216,217,-160,218,-126,219]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-214,220,-180,-204,221]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[222]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-148,-177,-209,-195,-197,-135,-116]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[223,-211,224,-217,225]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-213,226,-181,-221]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-226,-220,-125,229]],"type":"Polygon","properties":{"COUNTYFP":"061"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/oh.topo.json b/app/assets/topojson/states/oh.topo.json new file mode 100755 index 00000000..b35bf2f5 --- /dev/null +++ b/app/assets/topojson/states/oh.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[8112,3723],[5,83],[3,59],[-45,2],[-3,55],[16,52],[8,74],[52,11],[14,10],[263,-12]],[[8425,4057],[11,0],[288,-12],[1,215],[55,-2],[-2,-49],[102,-2],[-1,-51],[49,0],[0,-49],[101,-2],[0,-25],[190,-6],[1,48]],[[9220,4122],[49,-2],[-3,-97],[49,-1],[80,5],[194,-8],[273,-13],[-5,-109]],[[9857,3897],[-83,-83],[-79,-99],[-35,-71],[-53,-73],[-34,-6],[-60,-14],[-30,-20],[-75,-102],[-6,-44],[-27,-16],[-48,14],[-75,-15],[-28,-23],[-42,-16],[-130,-98],[-44,-11],[-53,3],[-29,41],[-28,112],[-29,34],[-25,22],[-6,4],[-44,16],[-55,-23],[-35,-41],[-58,-63],[-102,-70],[-39,-48],[-4,-20],[-8,-86],[-8,-68],[-1,-41],[-13,-29],[-39,4],[-38,20],[-56,-4],[-90,13],[-58,-12],[-29,-27],[-18,-30],[-2,-29],[15,-71],[-25,-25],[-64,-17]],[[8067,2785],[9,184],[-251,11],[4,101],[-49,2],[2,51],[-49,2],[8,151],[15,302]],[[7756,3589],[49,-4],[7,154],[104,-5],[45,-13],[13,-21],[137,-7],[1,30]],[[3272,4953],[-50,-227],[-10,-45],[-154,14]],[[3058,4695],[1,10],[-179,13],[-12,1],[-50,4],[-5,27],[-67,7],[-163,23],[5,85],[-98,7],[-199,14],[4,50],[-254,21],[-43,3]],[[1998,4960],[7,101]],[[2005,5061],[18,250],[3,49],[18,251]],[[2044,5611],[300,-21],[29,-5],[267,-18],[301,-25],[50,-4],[179,-14],[187,-11],[42,-5]],[[3399,5508],[16,-1],[-64,-259],[-15,-59],[-18,-48],[-29,-120],[-17,-68]],[[9952,9360],[251,1],[247,0],[261,-1],[39,0],[20,-1],[76,0],[52,-1],[4,0],[6,1],[1,0],[28,-1],[20,0],[124,-1],[130,1]],[[11211,9358],[1,-247],[0,-254],[-2,-298]],[[11210,8559],[-293,-2],[-123,1],[-85,1],[-88,0],[-172,2],[-21,0],[-6,25],[1,74],[-91,0],[-103,1],[0,-100],[-204,2],[-2,0],[-128,0],[-34,0],[-129,0]],[[9732,8563],[0,99],[1,198]],[[9733,8860],[220,-1],[-1,254],[0,247]],[[2911,10714],[10,17],[14,15],[25,20],[49,17],[16,14],[20,8],[22,19],[32,5],[15,25],[33,3],[15,30],[33,33],[17,40],[47,56],[70,2],[98,1],[233,4]],[[3660,11023],[1,-60],[1,-145],[2,-152],[0,-51]],[[3664,10615],[-2,-247],[-2,-75],[-3,-223],[-7,-299]],[[3650,9771],[-3,-249],[0,-5],[0,-45]],[[3647,9472],[-53,0],[-153,-3],[-91,1],[-200,4],[-98,1],[-102,2],[-200,1],[-302,-2]],[[2448,9476],[-3,299],[-3,300],[0,50],[0,196]],[[2442,10321],[27,7],[49,-7],[22,36],[65,25],[37,15],[68,46],[2,33],[17,14],[49,-3],[16,10],[31,56],[20,13],[29,9],[16,24],[1,53],[4,37],[16,25]],[[3862,10568],[-1,50],[-197,-3]],[[3660,11023],[106,3],[198,6],[305,4],[44,1]],[[4313,11037],[86,-26],[75,-7],[46,-24],[51,-39],[46,-72],[54,-64],[77,-60],[95,-55],[73,-27],[67,9],[53,19],[25,19],[24,21],[33,49],[14,44],[-23,46],[19,30],[49,14],[36,-58],[17,-15],[51,-67],[23,-20],[35,-1],[57,21],[84,-16],[17,-47],[-39,-57],[-72,-4],[-30,-27],[-38,12],[-71,0],[-30,-24],[-14,-30],[-35,33],[-35,-2],[-48,-27],[-36,-10],[-97,1],[-35,-9],[-49,7],[-30,-15],[-27,-56],[-29,-4],[-19,-23],[-38,16],[-36,-9],[-29,11],[-14,-23]],[[4646,10471],[-77,-4],[-300,3],[0,2],[-305,-3],[-101,0],[-1,99]],[[5197,11248],[36,24],[22,1],[-3,-69],[-22,-4],[-10,35],[-23,13]],[[5173,11337],[26,41],[32,2],[12,-52],[-19,-5],[-51,14]],[[5152,11116],[25,37],[22,9],[60,-20],[-83,-84],[-9,46],[-15,12]],[[2442,3977],[209,-17],[206,-17],[141,-11]],[[2998,3932],[175,-14],[69,-6],[-11,-157],[-7,-110],[-12,-178],[-8,-123]],[[3204,3344],[-111,-85],[-100,-79],[-51,-40],[-116,-93],[-123,-97],[-32,-79],[-18,-13],[-15,-42],[-72,-5],[4,77],[-82,5]],[[2488,2893],[-209,15],[-123,9]],[[2156,2917],[-36,3]],[[2120,2920],[24,329],[2,27],[19,262],[3,31],[7,105],[16,236],[7,86]],[[2198,3996],[142,-10],[102,-9]],[[6174,7361],[200,0],[40,6],[59,8]],[[6473,7375],[162,24],[142,22]],[[6777,7421],[107,16],[-4,-149],[-7,-200],[-3,-51]],[[6870,7037],[-9,-250],[-11,-247],[-9,-248]],[[6841,6292],[-115,3],[-107,-2],[-9,0],[-209,6],[-41,2],[-215,12],[-38,3],[3,64],[-206,13],[-253,16],[-257,13]],[[5394,6422],[15,249]],[[5409,6671],[257,-15],[15,248],[13,256],[7,106],[-25,-3],[0,95],[50,0]],[[5726,7358],[149,0],[49,1],[250,2]],[[6620,3666],[-24,-304]],[[6596,3362],[-293,21],[-293,19],[-8,-90],[-304,22],[-4,-49],[-99,5],[-195,17]],[[5400,3307],[3,47],[18,294],[-1,3]],[[5420,3651],[24,295]],[[5444,3946],[4,50],[287,-17],[6,153],[317,-20],[15,202],[302,-24]],[[6375,4290],[-14,-199],[209,-16],[98,-5],[-4,-98],[272,-19]],[[6936,3953],[-21,-309],[-295,22]],[[6864,6046],[0,53],[11,190],[-34,3]],[[6870,7037],[257,-12],[109,0],[145,-6],[147,-4],[100,-6],[233,-5],[248,-7]],[[8109,6997],[-8,-252],[0,-1],[251,-9],[-8,-245],[0,-6],[-9,-252]],[[8335,6232],[-117,4],[-9,-245],[-118,4]],[[8091,5995],[-243,10]],[[7848,6005],[-249,9],[-248,8],[-227,5],[-15,2],[0,1],[-246,15]],[[6863,6045],[1,1]],[[5555,7909],[161,-4],[3,-149],[-49,1],[2,-100],[51,0],[-2,-44],[5,-255]],[[5409,6671],[-248,15],[-233,14],[13,195],[-26,2],[-32,2],[-8,0],[-1,0],[-187,10],[3,51]],[[4690,6960],[11,174],[152,21],[1,230],[1,299],[255,5],[4,200]],[[5114,7889],[0,26],[148,-1],[10,0],[3,0],[9,0],[12,0],[160,-3]],[[5456,7911],[99,-1],[0,-1]],[[9733,8860],[-33,0],[-221,0],[-31,0],[-272,1],[-7,0],[-236,0]],[[8933,8861],[0,173],[0,6],[0,68],[1,19],[0,1],[0,67],[0,21],[1,58],[0,6],[1,86],[-1,130],[1,100],[1,252],[0,1],[0,120],[0,125]],[[8937,10094],[243,-3],[279,1],[242,0],[248,1]],[[9949,10093],[1,0],[0,-261],[1,-126],[0,-18],[0,-93],[0,-6],[1,-229]],[[10951,10613],[260,1]],[[11211,10614],[1,-260],[-1,-251],[0,-59],[1,-208],[0,-240],[-1,-238]],[[9949,10093],[1,267],[0,260]],[[9950,10620],[257,-2],[1,0],[244,-2],[253,-3],[1,0],[245,0]],[[11211,10858],[0,-244]],[[9950,10620],[0,239],[1,242],[-3,251]],[[9948,11352],[3,251],[1,222]],[[9952,11825],[172,31],[85,21],[151,71],[54,15],[43,28],[32,33],[60,-11],[52,27],[60,7],[45,15],[116,42],[57,26],[51,8],[78,35],[40,10],[90,46],[73,22],[0,-293],[0,-346],[0,-262],[0,-240],[0,-252]],[[8933,8861],[-60,0],[-11,-281],[-13,1],[-1,0],[-288,12],[-202,10],[-89,3]],[[8269,8606],[0,101],[1,150]],[[8270,8857],[-5,4],[-102,0]],[[8163,8861],[2,173],[0,1],[0,16],[0,8],[0,55],[2,253],[4,226],[1,257]],[[8172,9850],[38,1],[209,1],[66,1],[-20,78],[-33,28],[5,24],[-21,41],[9,51],[-26,29],[33,0],[128,-2],[45,-1],[4,0],[74,-2],[101,-2],[82,-1],[18,0],[53,-2]],[[8163,8861],[-189,-1],[-51,0],[-13,0],[-21,0],[-25,0],[-8,0],[-192,3],[-25,0],[-229,3],[-61,1],[-203,3],[-132,2]],[[7014,8872],[-115,1],[5,245]],[[6904,9118],[4,252],[250,-2],[4,218],[257,-1],[4,258],[246,0]],[[7669,9843],[73,2],[5,0],[24,0],[8,0],[28,1],[104,2],[209,3],[52,-1]],[[1254,7122],[0,-51],[1,-148],[0,-2],[0,-150],[-248,-2],[-1,-81]],[[1006,6688],[-55,14],[0,218],[1,100],[0,49],[-1,174],[-1,126],[0,50],[-1,200],[0,50],[0,151]],[[949,7820],[155,1]],[[1104,7821],[149,0],[55,2],[249,1],[0,-99],[300,3],[0,-51],[296,4],[297,2]],[[2450,7683],[0,-224],[1,-140]],[[2451,7319],[-75,-11],[-222,-1],[0,-178],[-22,0]],[[2132,7129],[-273,0],[-297,-3],[-308,-4]],[[6844,5549],[-1,-5],[-10,-242],[-86,3],[-6,-129]],[[6741,5176],[-301,18],[-99,7],[-81,6],[1,19],[-116,8]],[[6145,5234],[-28,-18],[-282,18],[-75,3],[-226,14],[-222,15]],[[5312,5266],[7,126],[15,-1],[3,38]],[[5337,5429],[0,1],[2,38],[1,21],[11,159],[14,256]],[[5365,5904],[15,257],[14,261]],[[6863,6045],[-9,-245],[-10,-251]],[[7954,10586],[63,-16],[34,17],[91,67],[20,23],[62,46],[22,-8],[49,39],[30,13],[70,55],[21,38],[28,10],[80,83],[53,54],[40,13],[67,44]],[[8684,11064],[0,-25],[2,-122],[0,-7],[0,-56],[106,0],[71,0],[76,-1]],[[8939,10853],[0,-236],[0,-5],[-1,-111],[0,-41],[-1,-17],[43,-16],[1,-41],[0,-31],[-44,0],[0,-29],[-1,-48],[1,-184]],[[7669,9843],[3,260],[-120,0],[-32,0],[-5,1],[-89,1],[2,121],[1,83],[1,27],[1,203],[3,93]],[[7434,10632],[61,-44],[186,-31],[34,2],[61,21],[95,21],[48,0],[35,-15]],[[9691,11349],[257,3]],[[8939,10853],[248,1],[2,156],[1,87],[269,2],[43,0],[192,0],[-3,250]],[[8080,5743],[11,252]],[[8335,6232],[246,-8],[9,-1],[239,-8],[8,0],[240,-8]],[[9077,6207],[-4,-144],[296,-7]],[[9369,6056],[-4,-143],[-5,-158],[-3,-147],[-4,-99],[-5,-195],[0,-8]],[[9348,5306],[-225,6],[-72,2],[-50,-11],[-49,1],[-2,-100],[-198,7],[-4,-99],[-74,2],[-224,8],[-3,-99],[-2,-101],[-49,2],[-248,10]],[[8148,4934],[8,301],[-97,4],[11,253],[10,251]],[[5400,3307],[-17,-253],[-6,-92],[-7,-102],[-7,-102]],[[5363,2758],[-10,-137],[-50,3]],[[5303,2624],[-142,11],[-352,24],[-108,7],[-90,6],[-244,16],[-16,2],[-79,5],[-175,13],[-274,15]],[[3823,2723],[26,122],[-9,67],[-40,-42],[-49,31],[8,31],[-41,31],[7,29],[26,8],[12,47],[-17,16],[-8,78],[10,67],[19,31],[-14,29],[18,41],[2,30]],[[3773,3339],[102,176],[152,261],[22,39]],[[4049,3815],[264,-14],[260,-12],[11,0],[180,-8],[36,-19],[-4,-36],[-39,-7],[-8,-28],[384,-23],[263,-18],[24,1]],[[3399,5508],[13,127],[20,220]],[[3432,5855],[289,-4],[27,0],[236,-3],[223,-6]],[[4207,5842],[-9,-111],[-1,-14],[-1,-7],[0,-13],[-5,-59],[-108,4],[5,-140],[-6,-12],[-17,-7],[38,-53],[-10,-15],[12,-55],[10,-50],[25,-26],[16,-43],[-13,-13],[-55,-38],[3,-48],[18,-312]],[[4109,4830],[0,-11],[-19,-328],[-3,-62]],[[4087,4429],[-220,15],[-133,7],[-190,11],[-147,13],[-34,3],[-321,25]],[[3042,4503],[16,192]],[[10321,7675],[-150,4],[3,286],[-150,0],[-51,0],[-243,3]],[[9730,7968],[2,295],[0,291],[0,9]],[[11210,8559],[2,-78],[0,-222],[0,-298],[0,-246],[0,-38],[-109,-66],[-42,-33],[-57,38],[-74,-18],[-14,-10],[-50,-66],[-29,-21],[-14,-31]],[[10823,7470],[-6,0],[-200,2],[0,47],[-299,8]],[[10318,7527],[3,148]],[[5188,4570],[1,1],[14,199]],[[5203,4770],[7,101],[49,-5],[11,152],[2,44],[9,105],[-13,1],[-36,2],[4,70],[2,31],[74,-5]],[[6145,5234],[-25,-319],[197,-14],[-1,-50],[-19,-253],[100,-7],[-22,-301]],[[5444,3946],[-290,24],[22,302],[-8,0],[20,298]],[[341,9766],[-298,0]],[[43,9766],[0,299],[-1,296]],[[42,10361],[295,1],[306,2],[298,1]],[[941,10365],[306,1]],[[1247,10366],[295,1],[3,-299],[0,-300],[-2,-299]],[[1543,9469],[-296,-1]],[[1247,9468],[0,149],[-301,1],[1,50],[-1,101],[-300,-2],[-305,-1]],[[5456,7911],[1,131],[0,23],[1,55],[0,79],[2,66],[1,98],[2,199],[0,1],[-1,323]],[[5462,8886],[198,-3],[47,-1],[153,-2],[99,-2],[98,-1],[166,-1]],[[6223,8876],[39,0],[4,-310],[-1,-301],[23,0],[0,-22],[50,0],[-3,-42],[28,-30],[2,-206],[102,-1],[2,-303],[4,-286]],[[2747,8281],[-296,2]],[[2451,8283],[-1,301],[0,44]],[[2450,8628],[-1,249],[0,299],[-1,300]],[[3647,9472],[0,-125],[0,-175],[2,-299]],[[3649,8873],[-98,-1],[1,-148],[-50,0],[0,-149],[-99,0],[-3,-298]],[[3400,8277],[-158,3],[-99,1],[-97,1],[-99,0],[-200,-1]],[[6223,8876],[-11,248],[0,1],[262,1]],[[6474,9126],[172,-2],[258,-6]],[[7014,8872],[4,-187],[0,-124],[1,0],[6,-50],[-5,-249],[2,-299]],[[7022,7963],[0,-200]],[[7022,7763],[-246,-2],[0,-99],[1,-151],[0,-90]],[[1500,2971],[-38,3]],[[1462,2974],[1,10],[0,1],[5,12],[-7,4],[-8,33],[-90,12],[-96,5],[-50,-4]],[[1217,3047],[10,152],[4,46],[0,6],[0,6],[4,51],[1,12],[3,37],[5,52],[8,102],[8,97],[-5,61],[4,51],[13,207],[-78,-25],[-7,8],[-1,156]],[[1186,4066],[100,-1],[110,0],[94,-8],[98,-8],[199,-18],[53,-4]],[[1840,4027],[150,-13],[208,-18]],[[2120,2920],[-174,14],[-224,18],[-203,17],[-19,2]],[[6455,9625],[0,98],[6,57],[-2,67],[0,25]],[[6459,9872],[-7,240],[-1,14],[-4,153],[-3,90]],[[6444,10369],[65,7],[103,-4],[75,18],[160,103],[20,31],[20,-7],[68,22],[57,26],[32,13],[134,42],[142,48],[42,-4],[72,-32]],[[6474,9126],[-4,171],[-7,76],[-1,172],[-8,48],[1,32]],[[4432,5954],[-131,9]],[[4301,5963],[0,24],[0,1],[-3,164],[-3,158],[-52,1],[-125,0],[-21,0],[-3,244],[0,117],[0,109],[3,214]],[[4097,6995],[148,-12],[203,-12],[242,-11]],[[5365,5904],[-251,15],[-67,4]],[[5047,5923],[-224,12],[-1,0],[-2,0],[-1,1],[-17,0],[-87,5],[-13,1],[-1,0],[-39,2],[-15,0],[-10,1],[-42,1],[-17,1],[-67,3],[-79,4]],[[8944,11324],[102,74],[58,39],[68,36],[28,24],[69,2],[96,33],[95,56],[109,64],[95,51],[20,4],[151,69],[84,28],[33,21]],[[8684,11064],[68,74],[10,13],[22,29],[6,9],[16,22],[86,68],[52,45]],[[1885,4773],[0,2],[3,44],[2,30],[6,70],[91,-7],[7,0],[1,15],[3,33]],[[3042,4503],[-13,-160],[-14,-180],[-5,-65],[-12,-166]],[[1840,4027],[12,164],[-5,7],[1,34],[7,103],[1,13],[1,11],[2,26],[1,22],[11,162],[12,151],[2,46],[0,7]],[[288,6680],[47,-1],[190,0],[123,6],[145,1],[212,1]],[[1005,6687],[0,-99],[2,-189],[3,-251]],[[1010,6148],[-9,-55],[10,0],[6,-296],[3,-150],[0,-149],[1,0],[5,-125],[2,-175]],[[1028,5198],[-155,-4]],[[873,5194],[-53,-2],[-236,-4],[-282,-1],[-282,1]],[[20,5188],[4,302],[5,301],[6,297],[5,302],[2,146],[0,146]],[[42,6682],[246,-2]],[[8148,4934],[-8,-299]],[[8140,4635],[-308,17],[-207,12],[-86,4],[-47,0],[-194,13],[-147,7]],[[7151,4688],[10,155],[-155,9],[-98,7],[20,303],[-187,14]],[[3388,7201],[265,4]],[[3653,7205],[33,0],[250,4],[162,2],[-1,-21],[0,-129],[0,-66]],[[4301,5963],[0,-123],[-56,1],[-38,1]],[[3432,5855],[2,50],[16,249],[6,92],[-149,13]],[[3307,6259],[20,232],[3,32],[21,249],[5,61],[12,137],[20,231]],[[4451,8878],[100,1],[251,0],[50,0],[200,0],[75,0],[1,11],[61,-1]],[[5189,8889],[86,-2],[173,-1],[14,0]],[[5114,7889],[-211,-2],[-48,-3],[-301,-2],[-100,0]],[[4454,7882],[-1,248],[-1,151],[-1,299],[0,298]],[[10318,7527],[-4,-150],[-150,3],[-7,-228],[-2,-75],[-41,1],[-5,-149]],[[10109,6929],[-49,1],[-209,7],[-50,2],[-104,10],[-151,6],[-142,4],[0,-7],[-150,7]],[[9254,6959],[4,148],[3,101],[7,202],[-149,5],[2,44],[9,247]],[[9130,7706],[199,-3],[11,250],[99,-5],[1,24],[290,-4]],[[9369,6056],[0,9],[222,-6],[75,0],[47,-13],[152,-8],[151,-7],[247,-11]],[[10263,6020],[254,-13],[50,-2],[1,16],[164,-9]],[[10732,6012],[-18,-65],[-2,-45],[10,-49],[-9,-39],[-53,-45],[-21,-37],[16,-67],[3,-64],[-16,-33],[-12,-76],[7,-95],[-2,-24],[-48,-40],[-15,-43],[8,-60],[14,-43],[-32,-24],[-38,26],[-34,9],[-31,-18],[-3,-39],[39,-70],[10,-36],[-26,-46],[-55,-30]],[[10424,4959],[-217,10],[-148,10],[-146,8],[0,6],[-199,10],[-87,7],[-249,9],[-39,1]],[[9339,5020],[9,286]],[[47,8267],[-2,298],[-1,299]],[[44,8864],[300,1],[301,1],[251,1],[50,0],[151,0]],[[1097,8867],[2,-298],[150,1],[1,-152]],[[1250,8418],[1,-148],[-149,0],[1,-101],[1,-348]],[[949,7820],[0,149],[-301,-1],[-307,-1],[-294,2]],[[47,7969],[0,298]],[[2455,11155],[-5,214]],[[2450,11369],[54,4],[204,6],[189,7],[154,8],[410,15],[73,2],[-33,-116],[33,-19],[44,28],[51,37],[21,-31],[-42,-32],[38,-13],[30,4],[27,0],[4,-2],[14,5],[44,-18],[61,3],[28,21],[16,42],[81,-63],[-4,-36],[60,-4],[118,-85],[3,-21],[36,-22],[21,-1],[52,-25],[76,-26]],[[2442,10321],[1,251]],[[2443,10572],[0,97],[1,249],[0,50],[14,49],[-2,77],[-1,61]],[[5374,643],[47,22],[-67,163],[6,121],[150,-9],[13,46],[16,203],[84,-7],[10,50],[24,296]],[[5657,1528],[194,-16]],[[5851,1512],[-19,-224],[259,-23],[-8,-100],[51,-6],[-14,-202],[307,-22],[-18,-305],[-1,-6],[195,-9]],[[6603,615],[-18,-34],[-5,-117],[-18,-53],[-4,-92],[-17,-45],[-8,-52],[-26,-64],[-44,-29],[-86,-16],[-42,-6],[-39,17],[-77,-32],[-136,-41],[-22,-10],[-90,-34],[-53,-7],[-57,7],[-41,26],[-16,28],[-19,56],[-8,77],[-26,50],[-41,25],[-49,30],[-71,86],[-37,70],[-42,38],[-65,42],[-85,4],[-42,-5],[-53,14],[-42,26]],[[5224,574],[150,69]],[[596,3991],[-291,0],[-156,-3],[-18,3],[-118,0]],[[13,3991],[2,302],[1,301],[1,292],[3,302]],[[873,5194],[4,-302],[5,-294],[4,-300],[3,-227]],[[889,4071],[0,-76],[-293,-4]],[[44,8864],[0,302],[0,297],[-1,303]],[[1247,9468],[0,-300],[0,-52],[-1,-198],[1,-49],[-150,-2]],[[1370,2658],[-7,-44],[-12,-46],[0,-1],[-2,-33],[-33,-292],[-12,-121]],[[1304,2121],[-68,51],[-38,15],[-68,13],[-53,2],[-43,21],[-17,22],[-8,51],[1,73],[-33,69],[-26,20],[-40,4],[-27,-16],[-33,-49],[-42,-30],[-39,-6],[-43,24],[-25,1],[-56,-59],[-77,-27],[-48,-3],[-32,12],[-46,51],[-42,21],[-28,1],[-33,21],[-58,90],[-52,48],[-59,7],[-32,-28],[-45,-70],[-25,-17],[-69,-26],[0,50],[0,337],[2,297]],[[2,3091],[146,0],[157,-1],[160,1],[28,24],[57,-6],[1,0],[26,-6],[95,-2],[81,-12],[19,-4],[2,0],[27,5],[21,4],[53,-15],[50,5],[48,-7],[49,-8],[96,-4],[53,-10],[46,-8]],[[1462,2974],[-22,-30],[-38,-34],[-29,-11],[-16,-47],[-20,-3],[-30,-32],[24,-56],[35,3],[34,10],[17,-30],[-4,-24],[-27,-35],[0,-14],[-16,-13]],[[3450,7977],[2,-100],[47,0],[98,3],[0,-50],[53,-3]],[[3650,7827],[0,-148],[-1,-149],[6,-151],[6,-140],[-8,-34]],[[3388,7201],[2,19],[-209,18],[-6,0],[-296,24],[-18,2],[-253,20],[-95,7],[-62,5],[0,23]],[[2450,7683],[1,300],[0,300]],[[3400,8277],[51,0],[-1,-300]],[[5937,9880],[-260,2],[-260,5],[-212,6]],[[5205,9893],[-10,0],[-8,1],[-29,1]],[[5158,9895],[-1,18],[-5,162],[-2,68],[-8,233],[-145,-1]],[[4997,10375],[37,16],[21,28],[58,-6],[78,58],[-3,50],[45,-10],[92,-63],[59,-26],[26,23],[28,5],[87,42],[6,-19],[68,-18],[6,-25],[58,-40],[51,-21],[6,-15],[6,-3],[61,-14],[71,-36],[38,-29],[26,-6],[80,-44],[48,-14],[47,0],[33,10],[97,43],[87,58],[50,21],[52,25],[28,4]],[[6459,9872],[-261,2],[-261,6]],[[5433,10969],[30,21],[15,34],[29,0],[19,-25],[50,-5],[1,-55],[-14,-26],[-36,-7],[-15,25],[-53,10],[-26,28]],[[9220,4122],[6,250],[0,97],[-100,1],[6,246],[8,310],[199,-6]],[[10424,4959],[-15,-29],[12,-57],[-6,-75],[-28,-42],[-72,-53],[-18,-40],[12,-36],[50,-53],[38,-64],[-6,-53],[-73,-34],[-10,-25],[-3,-116],[-10,-43],[-25,-66],[-31,-14],[-66,7],[-41,-13],[-39,-37],[-58,-48],[-61,-65],[-78,-64],[-39,-42]],[[1543,9469],[301,2],[302,2],[302,3]],[[2450,8628],[-300,-2],[0,-51],[-298,-1],[0,-150],[-300,-6],[0,3],[-302,-3]],[[2,3091],[5,297],[4,294],[2,309]],[[889,4071],[13,-3],[284,-2]],[[1247,10565],[294,1],[0,-1],[297,2],[0,-1],[302,3],[303,3]],[[1247,10366],[0,199]],[[6596,3362],[-23,-305],[100,-8],[-22,-305]],[[6651,2744],[-99,6],[-21,-305],[-21,-305]],[[6510,2140],[-293,26]],[[6217,2166],[23,298],[4,54],[-235,16],[-66,7],[10,124],[-99,16],[-95,1],[-106,13],[4,44],[-294,19]],[[9084,6461],[2,55],[154,-3],[3,100],[4,125],[3,69],[4,152]],[[10109,6929],[199,-6],[-4,-142],[-11,-7],[-4,-101],[-7,-200],[-7,-151],[-6,-150],[-6,-152]],[[9077,6207],[1,54],[6,200]],[[8263,7763],[3,200],[0,36],[2,232],[0,1],[1,32],[0,39],[1,263],[-1,40]],[[9130,7706],[-248,6],[-55,0],[-12,33],[-57,13],[-19,-37],[-108,-18],[-117,-18],[-63,-9],[-185,-26]],[[8266,7650],[-3,113]],[[8109,6997],[103,-3],[5,151],[3,75],[3,153],[3,127],[6,125],[34,25]],[[8425,4057],[5,264],[-149,6],[9,301],[-150,5],[0,2]],[[8263,7763],[-299,-1],[-292,-2],[-93,-2],[-216,4],[-150,2],[-140,-2],[-51,1]],[[4250,8877],[-300,-1],[-301,-3]],[[3650,9771],[305,1],[225,-3],[75,5],[146,5],[154,2],[23,0],[5,0],[50,-1],[226,-2],[302,-2]],[[5161,9776],[0,-5],[4,-127],[6,-169],[2,-81],[8,-217],[1,-36],[7,-252]],[[4451,8878],[-201,-1]],[[4087,4429],[-14,-234],[-2,-26],[-22,-354]],[[3773,3339],[-315,2],[-254,3]],[[2060,5855],[4,56],[14,193]],[[2078,6104],[4,57],[13,192],[4,57]],[[2099,6410],[304,-23],[50,-4],[223,-17],[25,-3],[-4,-49],[103,-8],[213,-20],[89,-8],[132,-12],[73,-7]],[[2044,5611],[16,244]],[[5054,1879],[-48,3],[-146,8],[-229,8]],[[4631,1898],[-289,5],[-61,3],[-89,3],[4,28],[-18,12],[10,49],[-5,20],[-29,12],[-26,32],[-66,36],[-23,2]],[[4039,2100],[-39,28],[-30,40],[-31,20],[-14,36],[-186,11]],[[3739,2235],[28,155],[47,278],[9,55]],[[5303,2624],[-12,-152],[-12,-151],[-12,-153],[5,-1],[-3,-24],[-22,-275]],[[5247,1868],[-193,11]],[[2071,1992],[1,5],[17,164],[22,198],[15,151],[18,190],[12,217]],[[2488,2893],[-4,-247],[-2,-171],[-1,-24],[-10,-332],[138,-4],[116,0],[181,4],[84,-3]],[[2990,2116],[-16,-243],[-10,-149],[-8,-133],[-2,-24],[-23,-315],[-1,-23],[-18,-266],[-6,-152]],[[2906,811],[-40,24],[-109,18],[-25,21],[-30,128],[-18,21],[-40,17],[-42,10],[-49,42],[-14,70],[-34,50],[-73,30],[-75,14],[-73,48],[-39,11],[-52,1],[-43,-18],[-128,-39],[-21,3]],[[2001,1262],[38,389],[3,35],[29,306]],[[1006,6688],[-1,-1]],[[42,6682],[-1,170],[2,216],[3,125],[0,175],[1,300],[0,301]],[[1247,10565],[-1,98],[-101,-1],[0,249],[-1,103],[-45,1],[0,69],[-3,236]],[[1096,11320],[102,2],[363,14],[277,10],[249,11],[54,0],[258,11],[51,1]],[[2099,6410],[13,152],[16,1],[-2,174],[-1,74],[8,1],[-1,192],[0,125]],[[7227,3933],[21,-2],[20,300],[20,298],[-146,11],[9,148]],[[7756,3589],[-250,14],[-300,19],[21,311]],[[4109,4830],[236,-13],[86,-3],[279,-11],[197,-12],[296,-21]],[[42,10361],[-2,298],[-3,364],[0,263],[146,8],[158,4],[304,9],[252,7],[199,6]],[[5161,9776],[0,5],[-3,99],[0,10],[0,2],[0,3]],[[4646,10471],[55,-28],[14,-30],[21,-14],[43,49],[40,-7],[48,-83],[28,-19],[51,5],[51,31]],[[3650,7827],[300,1],[0,51],[304,1],[200,2]],[[7227,3933],[-268,19],[-23,1]],[[4045,1164],[0,366],[-1,113],[0,72],[-5,385]],[[5247,1868],[140,-10],[-13,-202],[-9,-58],[4,-50],[194,-12],[94,-8]],[[5224,574],[-61,53],[-20,31],[-23,88],[-1,86],[-18,80],[-30,46],[-7,26],[20,130],[-12,59],[-13,21],[-39,17],[-61,-17],[-79,-37],[-54,-41],[-28,-10],[-84,14],[-3,0],[-53,-21],[-24,-53],[-28,-43],[-70,-45],[-59,-18],[-25,-20],[-27,-43],[-10,-47],[-22,-47],[-21,-23],[-37,-15],[-118,-12],[-97,40],[-56,-21],[-17,-15]],[[4047,737],[-2,7],[0,307],[0,113]],[[2078,6104],[-247,18],[-49,4],[-215,17],[1,16],[-209,-6],[-50,-1],[-299,-4]],[[6217,2166],[-11,-173],[-11,-128],[0,-1],[-26,-301],[-4,-50],[-49,7],[-262,23],[-3,-31]],[[3246,989],[-44,-10],[-26,-17],[-49,-7],[-17,-8],[-27,-40],[-7,-53],[-15,-53],[-18,-22],[-40,-8],[-45,13],[-52,27]],[[2990,2116],[160,-6],[39,10],[27,6],[220,49],[71,14],[232,46]],[[4047,737],[-49,-65],[-20,-9],[-45,23],[-16,20],[-13,73],[-46,52],[-69,44],[-47,16],[-93,18],[-70,6],[-25,13],[-30,5],[-48,50],[-46,32],[-43,13],[-74,-15],[-67,-24]],[[2005,5061],[-124,9],[-106,9],[-17,1],[-16,1],[-14,1],[-16,31],[-10,59],[25,37],[-24,-1],[-281,-3],[-1,-1],[-8,0],[-21,0],[-76,0],[-5,-1],[-136,-2],[-147,-3]],[[8067,2785],[-21,-34],[-21,-56],[-37,-31]],[[7988,2664],[-228,12],[-307,16],[-308,18],[-295,20],[-199,14]],[[6976,1511],[-10,-24],[-36,-43],[-77,-32],[-68,-67],[-11,-29],[13,-64],[46,-37],[43,-168],[-20,-73],[9,-64],[3,-31],[16,-37],[19,-78],[-14,-77],[-30,-30],[-43,-11],[-44,-1],[-62,24],[-50,-4],[-24,-12],[-33,-38]],[[6510,2140],[-3,-49],[294,-18],[301,-18],[-9,-152]],[[7093,1903],[-26,-44],[-12,-53],[-40,-69],[-37,-41],[-5,-50],[15,-63],[-12,-72]],[[10823,7470],[3,-31],[38,-38],[50,-82],[15,-10],[11,-41],[14,-74],[23,-43],[26,-24],[11,-38],[-4,-31],[-39,-85],[-4,-28],[3,-88],[-43,-27],[-9,-35],[33,-13],[30,-42],[-14,-75],[5,-24],[29,-79],[-8,-36],[-32,-54],[-3,-66],[-16,-36],[-58,-36],[-19,-21],[-25,-52],[-17,-104],[-12,-25],[-35,-37],[-44,-83]],[[7988,2664],[4,-31],[25,-79],[0,-74],[6,-34],[-8,-64],[-18,-28],[-61,-40],[-84,19],[-16,-36],[4,-34],[24,-54],[79,-74],[23,-37],[-3,-44],[-17,-19],[-26,-110],[8,-31],[30,-32],[29,-44],[-10,-27],[-37,-10],[-58,33],[-25,33],[-40,16],[-27,-10],[-33,-52],[-11,-93],[-27,-39],[-79,-54],[-55,17],[-43,42],[0,33],[70,83],[-2,42],[-28,51],[-18,48],[-39,72],[-47,29],[-68,-12],[-43,98],[-22,23],[-40,8],[-48,-16],[-14,-26],[-26,-81],[-98,-63],[-26,-60]],[[2001,1262],[-49,-3],[-98,30],[-68,35],[-44,15],[-121,24],[-38,17],[-24,27],[-21,44],[-9,93],[4,63],[-6,73],[-72,118],[-47,60],[-39,79],[-3,47],[-22,84],[-40,53]]],"transform":{"scale":[0.0003836314243555478,0.00029175748918455616],"translate":[-84.820157,38.403202]},"objects":{"cb_2019_39_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"167"}},{"arcs":[[6,7,8,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[12,13,14,15,16]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[17,18,19,20,21,22,23]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[[24,-19,25,26,27]],[[28]],[[29]],[[30]]],"type":"MultiPolygon","properties":{"COUNTYFP":"123"}},{"arcs":[[31,32,33,34,35,36,37]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[38,39,40,41,42,43,44,45]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[46,47,48,49,50,51,52]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[53,-42,54,55,56,57,58,59]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[60,-45,61,62,63,64]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-17,65,66,67,68]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[69,70,-13,-69,71,72]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[73,-70,-73,74,75,76]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-67,77,78,79,80,81]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[-81,82,83,84,85]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[86,87,88,89,90,91,92]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[93,94,95,96,97,98,-43,-54,-60,99]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[100,101,102,-82,-86,103,104]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[105,-75,-72,-68,-103,106]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[107,-57,108,109,110,111,112]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-49,113,114,115,116,117,118]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[-12,119,120,121,122,123,124,-7]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[125,126,-15,127,128,129]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[130,131,-96,132,-51,133]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[134,135,136,137,138,139,140]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-46,-61,-65,141,142,143,-39]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[144,145,146,-22,147,148,149]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-144,150,151,-84,152,153,154,-40]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[155,156,157,158,159,-37,160]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[161,162,163,-104,-85,-152,164]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[165,166,167,-62,-44,-99,168,169]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[170,-76,-106,-107,-102,171]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[172,-8,-125,173,-32,-38,-160,174]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[175,176,177,178,179,180,181]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-113,182,183,184,-94,-100,-59,-58,-108]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[185,186,-167,187,-121,188,189]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[190,191,-142,-64,192,193]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-126,-130,194,195,196,197]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[198,199,200,201,202,-111]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[203,204,205,206,-89,207,208]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[209,210,-26,-18,-24,211,212]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[213,214,215,216,217]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[218,219,-180,220,221]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[-205,222,-135,-141,223]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[224,225,226,-157,227]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[228,229,-186,230,-91,231,-145,-150,232]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[[233,234,235,236,-163,237]],[[238]]],"type":"MultiPolygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-3,239,-202,240]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-140,241,-147,242,-206,-224]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[-158,-227,243,-219,-222,244]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[245,-212,-23,-242,-139,246]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-48,247,248,249,250,-114]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[251,-196,252,-199,-110,253]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[254,-78,-66,-16,-127,-198,255,256]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[-254,-109,-56,257,-256,-197,-252]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[-183,-112,-203,-240,-2,258]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[-255,259,-154,-153,-83,-80,-79]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[260,-148,-21,261,262,-191,263]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[-124,264,-118,265,-33,-174]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[266,267,268,-189,-120,-11,269]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[270,271,272,273,-116,274,275]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[276,-35,277,278,279,280]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-208,-88,281,-176,-182,282]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-246,283,284,-210,-213]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-231,-190,-269,285,-92]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[286,-184,-259,-1,-6,287]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[-123,288,-131,-134,-50,-119,-265]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[-137,289,-284,-247,-138]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[-132,-289,-122,-188,-166,-170,-169,-98,-97]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[-165,-151,-143,-192,-263,290,-235,-234,-238,-162]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-262,-20,-25,-28,291,-236,-291]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[-230,292,-193,-63,-168,-187]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[-95,-185,-287,293,-52,-133]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[294,-272,-271,-276,295,-214,-218,296,297]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[-93,-286,-268,298,-177,-282,-87]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[-115,-251,299,-215,-296,-275]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[300,-279,301,-273,-295,-298,302]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-10,303,-178,-299,-267,-270]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-90,-207,-243,-146,-232]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-302,-278,-34,-266,-117,-274]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-55,-41,-155,-260,-257,-258]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[-159,-245,-221,-179,-304,-9,-173,-175]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[-149,-261,-264,-194,-293,-229,-233]],"type":"Polygon","properties":{"COUNTYFP":"175"}},{"arcs":[[-294,-288,-5,304,305,-248,-47,-53]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[306,-216,-300,-250,307,308]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[-200,-253,-195,-129,309]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-249,-306,310,-308]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-161,-36,-277,-281,311,-225,-228,-156]],"type":"Polygon","properties":{"COUNTYFP":"025"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ok.topo.json b/app/assets/topojson/states/ok.topo.json new file mode 100755 index 00000000..2d5f79fe --- /dev/null +++ b/app/assets/topojson/states/ok.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[13311,1109],[-10,-445],[-13,-619],[-9,-26],[-56,-19],[-28,62],[2,22],[-53,1],[-3,43],[-36,-32],[-39,37],[-14,-34],[-45,-4],[-1,66],[-28,-21],[-33,7],[6,32],[-41,25],[-37,38],[-32,-17],[-25,21],[19,41],[-37,-47],[-48,50],[-1,-36],[-28,-1],[-44,25],[4,32],[-33,2],[-90,98],[15,26],[-32,16],[-6,45],[-38,-14],[-84,21],[-21,80],[-29,2],[-3,-42],[-29,18],[16,47],[-44,-21],[-23,25],[17,31],[-55,12]],[[12242,656],[-1,449]],[[12241,1105],[9,0],[0,177],[25,0],[138,0],[0,111],[0,366],[0,61],[170,0]],[[12583,1820],[411,0],[332,0]],[[13326,1820],[-15,-711]],[[13090,5825],[31,-255],[47,-372]],[[13168,5198],[-335,0],[-31,0]],[[12802,5198],[-334,0]],[[12468,5198],[0,179],[9,29],[0,281],[0,185],[0,37]],[[12477,5909],[0,179],[10,1],[0,148]],[[12487,6237],[338,0],[14,-6],[243,0]],[[13082,6231],[0,-344],[8,-62]],[[8488,1137],[0,149],[0,89]],[[8488,1375],[-1,44],[1,401]],[[8488,1820],[83,-1],[245,0]],[[8816,1819],[0,-267],[492,-1],[12,-88],[149,0]],[[9469,1463],[0,-241],[0,-85]],[[9469,1137],[-54,0],[-2,-208]],[[9413,929],[-461,0],[-46,0],[-416,1]],[[8490,930],[-2,207]],[[8645,6080],[279,0],[154,1],[197,-1]],[[9275,6080],[34,-15],[50,-8],[86,15],[35,20],[27,-7],[33,-42],[-17,-46],[-40,-1],[-53,-37],[-59,-11],[-21,-45]],[[9350,5903],[-35,0],[0,-355],[167,0],[0,-177]],[[9482,5371],[-278,0],[-59,0],[1,-178],[-333,0]],[[8813,5193],[0,10],[-167,1]],[[8646,5204],[0,461],[0,88],[-1,327]],[[10791,1105],[54,0],[94,0]],[[10939,1105],[55,-16],[10,-41],[18,-7],[0,-362],[30,-48],[63,-19],[27,-58],[38,-28],[118,-1]],[[11298,525],[15,-24],[-30,-33],[-47,33],[-32,-9],[-11,-42],[-26,6],[-126,94],[-9,-3],[-15,-45],[-89,-22],[-33,-21],[-46,-9],[-80,24],[1,-36],[-36,20],[-40,-5],[-1,-38],[-25,-3],[4,-59],[-24,-58],[-29,-14],[-51,-11],[-54,40],[-51,-4],[-17,-63],[-4,-50],[-18,-31],[-26,-13],[-38,6],[-11,51],[-53,60],[-30,61],[-41,10],[-16,-12],[-64,-5],[-24,31],[-17,68],[-72,-4],[-79,46],[-9,22],[49,46],[14,41]],[[10007,570],[13,58],[-20,19],[25,65],[-27,14],[-47,74],[65,-2],[14,72],[40,44],[-19,20],[-39,84]],[[10012,1018],[205,-1],[0,89],[73,0]],[[10290,1106],[135,-1],[366,0]],[[9146,3980],[-1,88],[0,237]],[[9145,4305],[0,118],[1,326]],[[9146,4749],[305,1],[195,0],[313,-2]],[[9959,4748],[0,-349],[-2,-235],[0,-33]],[[9957,4131],[-1,-178],[-5,-182]],[[9951,3771],[-339,1],[-467,1]],[[9145,3773],[1,207]],[[7630,6906],[368,1],[646,0]],[[8644,6907],[0,-206],[0,-119],[0,-207],[0,-295]],[[8644,6080],[-281,-1],[-206,0],[-515,1]],[[7642,6080],[-8,0],[0,148],[-1,201],[0,95],[1,267],[-4,115]],[[3209,6906],[330,2],[285,3],[680,3],[177,-1]],[[4681,6913],[-2,-418],[1,-416]],[[4680,6079],[-1,-191]],[[4679,5888],[-516,-1],[-490,1],[-477,0]],[[3196,5888],[0,349],[0,363],[13,0],[0,306]],[[11270,1104],[241,0],[214,1],[71,0],[445,0]],[[12242,656],[-23,19],[-67,32],[-57,-48],[-4,-91],[-20,3],[-20,-36],[-42,-6],[-41,10],[-48,-27],[-62,-5],[-39,13],[-21,-8],[-50,28],[-51,-6],[-8,42],[-35,-34],[-28,24],[-5,72],[-67,26],[-30,-28],[-16,-40],[-52,5],[-39,-41],[-40,-10],[-35,22],[-36,-7],[-8,-40]],[[10939,1105],[331,-1]],[[11565,4389],[42,46],[66,9],[68,24],[89,-9],[93,46],[25,-18],[32,0],[91,0]],[[12071,4487],[216,-2],[0,-29],[0,-326]],[[12287,4130],[0,-177],[-8,-53],[18,-41],[39,-41],[12,-43],[42,1],[18,-13]],[[12408,3763],[-30,-20],[-15,-29],[-7,-48],[-29,-28],[-34,-52],[-25,16],[-28,-17],[25,-33],[-14,-20],[-38,10],[-12,-28],[19,-55],[-10,-18],[-35,5],[-35,-63],[-38,-22],[-25,14],[-40,53],[-38,16],[-51,-20]],[[11948,3424],[0,290],[0,235],[-95,4],[-342,0],[-42,0],[-96,0]],[[11373,3953],[0,355],[-83,0],[0,266]],[[11290,4574],[181,1],[18,-48],[-2,-86],[29,-27],[31,1],[18,-26]],[[13361,3205],[-11,-423],[-15,-555],[-9,-407]],[[12583,1820],[0,241],[0,113],[-190,0]],[[12393,2174],[-1,149],[1,167],[0,40],[96,0],[0,178],[110,0],[-1,129],[0,108]],[[12598,2945],[0,295],[177,-1],[0,26],[1,221]],[[12776,3486],[31,8],[24,48],[44,13],[32,-10],[41,-40],[29,-11],[25,-66],[33,-7],[50,26],[33,49],[40,-5],[23,-32],[55,-4],[39,-14],[20,17],[-21,46],[22,41],[-9,28],[21,20],[58,21]],[[13366,3614],[7,-33],[-4,-113],[-8,-263]],[[7224,5813],[-252,1]],[[6972,5814],[1,267],[-11,0],[0,118],[0,119],[0,228],[0,246],[-7,115]],[[6955,6907],[298,-2],[377,1]],[[7642,6080],[0,-267]],[[7642,5813],[-418,0]],[[11096,4574],[111,0]],[[11207,4574],[83,0]],[[11373,3953],[-170,-1],[0,-179],[-83,0],[0,-150],[0,-28],[-166,0]],[[10954,3595],[-165,1],[0,292],[-1,65],[-80,0],[-83,0],[0,178]],[[10625,4131],[0,178],[0,267],[52,0],[197,-1]],[[10874,4575],[222,-1]],[[11218,5555],[2,118],[26,0],[0,60],[-28,0]],[[11218,5733],[0,355],[5,0]],[[11223,6088],[358,0],[37,0],[194,0]],[[11812,6088],[161,0],[1,-178]],[[11974,5910],[-168,-1],[0,-88],[0,-267],[0,-148],[-7,-29],[0,-356]],[[11799,5021],[-205,0],[30,34],[-25,32],[1,45],[-58,8],[-21,60],[-224,0]],[[11297,5200],[-83,0],[0,177],[5,0],[-1,178]],[[9278,2530],[193,-1]],[[9471,2529],[0,-355],[0,-89]],[[9471,2085],[-219,0],[-27,0],[-82,0],[0,-29],[-90,0],[17,-55],[21,0],[13,-48],[-9,-15],[20,-72],[26,-47],[-216,0],[-109,0]],[[8488,1820],[-1,118],[0,230],[0,7],[-165,0]],[[8322,2175],[1,267],[0,88]],[[8323,2530],[381,1],[137,0],[110,0],[327,-1]],[[12487,6415],[0,378],[6,1],[3,13],[-54,34],[-9,57],[41,11]],[[12474,6909],[422,-2],[186,0],[-1,-265],[1,-411]],[[12487,6237],[0,148],[0,30]],[[5020,3688],[299,-1],[27,0],[1,178],[27,0],[303,0]],[[5677,3865],[0,-89]],[[5677,3776],[-1,-326],[0,-29],[0,-177],[7,0],[0,-180]],[[5683,3064],[-77,-4]],[[5606,3060],[-49,4],[-94,1],[-328,0],[-111,0],[-1,-177],[-164,-1]],[[4859,2887],[-175,0]],[[4684,2887],[0,801]],[[4684,3688],[336,0]],[[5204,2264],[381,1],[-22,23],[0,67],[49,-1],[0,90],[112,0],[130,0],[6,19]],[[5860,2463],[55,19],[46,57],[44,-48],[7,-77],[-24,-31],[10,-37],[-23,-20],[18,-27],[19,-81],[79,-14],[72,13],[14,-50],[-81,-17],[-12,-63]],[[6084,2087],[23,-46],[8,-51],[-26,7],[-34,-12],[-30,9],[-35,-9],[-33,-53],[13,-35],[-32,-5],[-7,-30],[-14,-53],[-17,-15],[0,-62],[-27,-80],[5,-49],[23,-49],[27,-14],[16,-31],[-4,-27],[-18,-7]],[[5922,1475],[-43,31],[-5,27],[-89,99],[-39,-13],[-14,28],[-44,40],[2,14],[-40,16],[-21,-30],[-4,-46],[15,-15],[-14,-67],[-16,-14],[-36,17],[-13,-20],[-44,51],[-32,4],[-20,24],[-97,15],[-28,-1],[-7,-52],[-24,-34],[-38,-2],[-37,18],[-23,-18],[-50,10],[-34,50],[-59,38],[-18,33],[-44,33],[-32,46],[-12,44],[-35,18]],[[4927,1819],[278,1],[-1,444]],[[7477,5204],[166,0]],[[7643,5204],[229,0],[439,0]],[[8311,5204],[0,-188],[0,-355],[2,-77],[0,-1],[1,-275]],[[8314,4308],[-445,0],[-249,-1],[-138,0]],[[7482,4307],[0,148],[0,206],[-5,0],[0,207],[0,301],[0,35]],[[9275,6080],[21,18],[-13,85],[-14,13],[-4,69],[52,35],[11,-16],[44,-11],[85,-7],[16,3],[16,63],[50,71],[35,2],[50,-19],[19,13],[-1,36],[53,0],[0,29],[57,1],[0,325],[4,117]],[[9756,6907],[389,0],[132,1],[647,-1]],[[10924,6907],[0,-286],[0,-373],[0,-71],[0,-444]],[[10924,5733],[0,-44],[-1,-138],[1,-354],[-271,0],[-146,2]],[[10507,5199],[-2,23],[34,37],[8,27],[-26,44],[-32,1],[-73,-1],[-39,23],[-55,60],[-56,21],[-17,17],[-19,73],[-17,22],[-43,-2],[-27,-49],[-21,-18],[-58,3],[-33,32],[1,35],[21,32],[39,16],[24,44],[-12,34],[-22,12],[-55,-53],[-28,4],[-20,55],[-45,46],[-61,-11],[-56,35],[-12,34],[19,48],[-29,52],[2,35],[-22,61],[-50,31],[-80,-53],[-27,-38],[-22,-61],[-36,-41],[-58,-6],[-43,-25],[-66,21],[-39,48],[-4,36]],[[7660,2855],[3,209],[0,178],[-6,59],[-1,148],[-1,148]],[[7655,3597],[123,1],[28,-32],[69,-33],[12,58],[24,-3],[18,-40],[27,-17],[30,8],[22,27],[20,-36],[37,-19],[13,-4],[28,15],[40,-10],[14,20],[55,-45],[64,8],[39,17]],[[8318,3512],[1,-270],[0,-326],[0,-30],[0,-326],[4,-30]],[[8322,2175],[-512,1],[-144,-1]],[[7666,2175],[0,314],[-6,41]],[[7660,2530],[0,325]],[[10461,5199],[46,0]],[[10924,5733],[294,0]],[[11297,5200],[0,-500],[0,-34],[-90,0],[0,-92]],[[10874,4575],[5,91],[0,178],[0,178],[-223,0],[-195,0],[0,177]],[[10562,1639],[137,-1],[0,179],[78,1],[5,0],[0,356]],[[10782,2174],[327,0],[1,-178],[201,1],[127,0]],[[11438,1997],[0,-178],[-12,0],[-156,0],[0,-368],[0,-347]],[[10290,1106],[0,533]],[[10290,1639],[95,-1],[177,1]],[[7061,5205],[385,0],[31,-1]],[[7482,4307],[-166,0],[0,-30],[0,-325]],[[7316,3952],[-181,0],[-302,0]],[[6833,3952],[-14,0],[0,178],[0,217],[0,138]],[[6819,4485],[0,176],[-7,30],[-1,513]],[[6811,5204],[250,1]],[[7387,1054],[-50,5],[-40,34],[-60,12],[-27,-16],[-21,-37],[-6,-54],[-20,-9],[-14,-37],[-35,2],[-68,-42],[-28,20],[-50,72],[-38,33],[-25,51],[-36,24],[-16,-7]],[[6853,1105],[1,301],[0,60],[-82,-1],[0,148]],[[6772,1613],[82,1],[0,29],[163,0],[0,59],[262,-1],[64,0],[0,30],[81,0],[0,89],[159,-1]],[[7583,1819],[5,-177],[0,-177],[0,-89]],[[7588,1376],[0,-302]],[[7588,1074],[-47,-57],[-48,6],[-48,35],[-58,-4]],[[9944,1817],[-309,1]],[[9635,1818],[0,178],[-164,0],[0,89]],[[9471,2529],[3,224]],[[9474,2753],[31,-11],[39,-67],[51,6],[49,35],[36,-33],[0,-49],[35,-12]],[[9715,2622],[32,0],[21,-63],[30,-25],[33,16],[23,38],[-14,41],[-24,17],[30,44],[38,-8],[34,-57],[66,4],[41,27],[32,-5],[1,-33],[43,-58],[25,12],[34,72]],[[10160,2644],[48,11],[39,-28],[33,27],[12,38],[-1,-341]],[[10291,2351],[0,-41],[0,-137],[-165,0],[0,-356],[-2,-1]],[[10124,1816],[-180,1]],[[11438,1997],[245,0],[0,177]],[[11683,2174],[491,0],[219,0]],[[5683,3064],[273,0],[359,0],[321,0],[17,-20],[32,10],[68,-4],[69,14],[15,-38]],[[6837,3026],[1,-495]],[[6838,2531],[-261,0],[-61,0],[0,-236],[0,-119],[0,-178]],[[6516,1998],[-273,0],[0,89],[-159,0]],[[5860,2463],[-15,29],[-78,43],[-17,29],[2,29],[39,2],[2,32],[-14,44],[-47,57],[-9,42],[-21,22],[33,73],[-2,46],[-35,4],[-23,37],[-18,61],[-34,7],[-17,40]],[[4680,6079],[258,0],[362,-1]],[[5300,6078],[1,-647],[14,-59],[0,-169],[334,0]],[[5649,5203],[1,-309]],[[5650,4894],[-64,-2],[-46,-13],[-40,-40],[-29,-15],[-30,-108],[-54,-52],[-14,-70],[-67,-20],[-14,-18],[-38,-9],[-128,34],[-46,46],[-23,-3],[-63,61],[-13,38],[12,87],[-11,58],[-45,14],[-26,-7],[-22,-26],[-30,-6],[-38,-67],[11,-37],[-31,-47],[-53,-28],[-20,-23],[-44,-16]],[[4684,4625],[0,656],[0,607],[-5,0]],[[10007,570],[-62,-1],[-49,45],[-21,-9],[-27,-127],[-34,-37],[-77,-15],[-12,6],[-16,62],[-23,23],[-59,12],[-15,-45],[-38,1],[-26,30],[-20,58],[-6,76],[-16,39],[-39,3]],[[9467,691],[0,120],[-55,0],[1,118]],[[9469,1137],[283,0],[128,0],[22,-24],[22,15],[1,-20],[44,-13],[38,-52],[5,-25]],[[5777,6083],[7,3],[0,455]],[[5784,6541],[2,-28],[37,-33],[31,-9],[133,11],[40,-15],[20,-42],[46,-42],[20,-42],[36,-12],[27,-42],[-7,-17],[38,-51],[3,-40],[34,-26],[45,-60],[18,-2],[0,-188]],[[6307,5903],[-1,-532],[8,-119],[0,-54]],[[6314,5198],[-166,1],[-499,4]],[[5300,6078],[20,2],[238,0],[219,3]],[[10091,3625],[-4,40],[-20,8],[-9,40],[33,25],[25,-32],[35,-4],[14,41],[25,28],[39,-9],[8,19],[0,-363]],[[10237,3418],[0,-118],[0,-238],[-77,1],[0,-419]],[[9715,2622],[1,233],[-1,139],[-1,188],[-1,88],[1,384],[48,2],[33,38],[56,-44],[54,-23],[47,17]],[[9952,3644],[74,3],[65,-22]],[[5204,2264],[0,59],[-28,30],[-54,0],[0,181],[-6,0],[-11,0],[-1,178],[-245,0],[0,151],[0,24]],[[2138,6899],[423,3],[648,4]],[[3196,5888],[-204,-1],[-440,0],[-477,1],[-240,0],[-321,2]],[[1514,5890],[0,712],[6,0],[0,293]],[[1520,6895],[618,4]],[[11556,3282],[36,43],[46,15],[47,35],[-7,13],[27,52],[60,-16],[17,6]],[[11782,3430],[0,-190],[-6,-86],[164,-1],[1,-207]],[[11941,2946],[0,-60],[-247,0],[0,-164],[0,-192],[-11,-47],[0,-309]],[[10782,2174],[0,177]],[[10782,2351],[0,89],[5,89],[0,399],[30,14],[11,64],[51,66],[33,4],[-8,40],[37,18],[11,2]],[[10952,3136],[57,-4],[28,-13],[43,6],[27,33],[20,48],[50,-4],[71,27],[36,-32],[22,-9],[19,30],[43,-5],[14,26],[43,2],[-2,36],[102,59],[31,-54]],[[6832,3774],[1,178]],[[7316,3952],[9,-21],[2,-10],[0,-325],[328,1]],[[7660,2530],[-274,0],[-48,0],[-384,1],[-116,0]],[[6837,3026],[4,8],[0,209],[-9,0],[0,177],[0,354]],[[12776,3486],[-21,29],[-3,50],[-39,4],[-18,-15],[-72,-20],[-5,24],[32,30],[-11,51],[-51,-5],[-22,24],[-60,2],[-51,34],[-8,57],[-39,12]],[[12287,4130],[179,0],[287,0],[33,0]],[[12786,4130],[206,-1],[71,0],[245,1]],[[13308,4130],[36,-290],[30,-213],[-8,-13]],[[12276,5020],[25,0],[0,178],[167,0]],[[12802,5198],[0,-117],[0,-3],[0,-288],[0,-125],[-16,0],[0,-535]],[[12071,4487],[20,42],[34,35],[-2,44],[-39,9],[-31,44],[-6,39],[19,26],[-15,68],[41,49],[22,0],[20,44],[0,62],[27,1],[0,70]],[[12161,5020],[115,0]],[[9952,3644],[-1,127]],[[9957,4131],[225,0],[304,-1],[139,1]],[[10954,3595],[0,-177]],[[10954,3418],[-469,0],[-248,0]],[[10782,2351],[-259,-1],[-232,1]],[[10954,3418],[-2,-282]],[[8675,3153],[-137,107],[-38,24],[-19,47],[19,30],[-7,59],[-35,24],[-57,5],[-54,58],[-29,8]],[[8318,3515],[0,81]],[[8318,3596],[331,0],[495,0]],[[9144,3596],[0,-178],[0,-295],[-1,-444]],[[9143,2679],[-19,7],[-65,-6],[1,15],[-79,27],[-24,-7],[-33,32],[-15,3],[-46,-17],[-31,20],[-21,132],[8,58],[-5,36],[-11,16],[-65,7],[1,79],[-9,27],[-49,18],[-6,27]],[[11974,5910],[285,0],[218,-1]],[[12161,5020],[-74,1],[-288,0]],[[8813,4837],[31,40],[27,14],[25,-4],[21,-26],[17,-47],[52,-3],[34,-16],[28,-40],[48,-8],[46,27],[4,-25]],[[9145,4305],[-304,2],[-125,-1],[-402,2]],[[8311,5204],[335,0]],[[8813,5193],[0,-356]],[[7643,5204],[-1,314],[0,295]],[[8644,6080],[1,0]],[[6972,5814],[0,-134],[-29,9],[-64,-21],[-50,1],[-115,48],[-43,60],[-79,6],[-47,25],[-19,21],[-37,73],[-182,1]],[[5784,6541],[-20,19],[-22,58],[-81,46],[-37,85],[-35,40],[-36,111],[-20,8]],[[5533,6908],[690,1],[467,-1],[265,-1]],[[7666,2175],[-82,0],[-1,-177],[0,-179]],[[6772,1613],[0,207],[-256,0],[0,178]],[[4681,6913],[356,-2],[196,-2],[300,-1]],[[13198,4973],[39,-297],[71,-546]],[[13168,5198],[30,-225]],[[12598,2945],[-392,-1],[-225,1],[-40,1]],[[11782,3430],[37,20],[25,36],[40,6],[64,-68]],[[6811,5204],[-402,-7],[-95,1]],[[8314,4159],[0,-89],[4,-119],[0,-355]],[[8318,3515],[0,-3]],[[8314,4308],[0,-149]],[[6819,4485],[-110,0],[-222,0],[-470,0],[-359,-1]],[[5658,4484],[0,177],[-8,0],[0,148],[0,85]],[[11812,6088],[0,466],[0,238],[11,0],[26,1],[1,115]],[[11850,6908],[624,1]],[[5658,4484],[-1,-531],[20,0],[0,-88]],[[4684,3688],[0,414],[0,523]],[[11223,6088],[0,118],[-1,415],[0,170],[36,0],[0,117]],[[11258,6908],[592,0]],[[9959,4748],[-1,37],[-3,135],[-1,44],[1,230]],[[9955,5194],[2,7],[504,-2]],[[10924,6907],[334,1]],[[6502,3776],[-219,0],[-303,0],[-303,0]],[[6832,3774],[-330,2]],[[9143,2679],[40,15],[46,-8],[28,-24],[26,3],[57,-28],[32,15],[44,41],[16,33],[42,27]],[[9144,3596],[1,177]],[[8644,6907],[477,1],[361,0],[274,-1]],[[10290,1639],[-166,2],[0,175]],[[4927,1819],[-66,86],[-54,44],[-55,13],[-23,-30],[-45,-3],[0,379],[0,579]],[[9955,5194],[-31,0],[-276,-2],[0,179],[-166,0]],[[9469,1463],[82,1],[0,354],[81,0],[3,0]],[[1340,5889],[-373,0],[-639,0],[-328,0],[0,357],[0,664],[24,-4],[273,3],[178,-9],[696,-2],[349,-3]],[[1514,5890],[-174,-1]],[[6853,1105],[-59,15],[-66,-64],[-69,6],[-35,-23],[-13,24],[-103,52],[-24,-5],[-33,-20],[-6,31],[-76,38],[-47,58],[-37,-17],[-11,29],[-30,0],[-20,-30],[-36,8],[-11,-18],[-56,27],[-62,-20],[-45,16],[-65,10],[-12,61],[2,76],[-18,5],[-9,55],[10,56]],[[8188,1375],[300,0]],[[8490,930],[0,-351]],[[8490,579],[-44,9],[-12,33],[13,65],[-71,60],[-61,20],[-39,-28],[-29,-60],[-24,-23],[-48,-5],[5,-31],[-66,-51],[-1,-29],[-49,-45],[-50,-17],[-48,17],[-62,44],[-49,6],[-26,38],[43,28],[-5,76],[22,75],[-40,34],[-74,-23],[-34,-1],[-65,18],[-25,44],[23,37],[-48,42],[-10,38],[14,20],[27,41],[4,43],[-17,6],[-10,39],[-21,1],[-25,-26]],[[7588,1376],[219,-1],[381,0]],[[9467,691],[-59,-38],[-35,-7],[16,-56],[-1,-37],[-60,-87],[-35,-9],[-34,42],[-30,-14],[6,-26],[39,-8],[16,-39],[-47,-10],[-26,-29],[15,-67],[-1,-44],[-17,-33],[-45,-23],[-37,11],[-35,32],[-29,90],[-24,43],[4,39],[34,19],[23,33],[-20,91],[-49,49],[-51,-24],[-9,-60],[-32,-34],[-55,57],[-14,-39],[-39,-10],[-30,-66],[-23,-21],[-83,0],[-42,18],[-15,27],[18,60],[1,42],[-15,25],[-63,32],[-79,-44],[-15,3]]],"transform":{"scale":[0.0006409343502317928,0.0004897849291293037],"translate":[-103.00251800000001,33.615832999999995]},"objects":{"cb_2019_40_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[5,6,7,8,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[12,13,14,15,16,17,18,19]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[20,21,22,23,24,25]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[26,27,28,29,30,31]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[32,33,34,35,36,37,38]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[39,40,41,42]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[43,44,45,46,47]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[48,-2,49,-28,50]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[51,52,53,54,55,56,57]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[58,-4,59,60,61,62,63]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[64,65,66,-43,67,68]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[69,70,-57,71,72,73,74]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[75,76,77,78,79,80,81]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[82,83,84,-15,85,86,87]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[88,89,-11,90]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[91,92,93,94,95,96,97,98]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[99,100,101,102,103]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[104,105,106,107,108]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[-22,109,110,111,112,113]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[114,115,116,-87,117,118,119]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[120,-113,121,-76,-82,122,-70,-75,123]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[124,125,126,-51,-27,-32,127,128]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[129,-109,130,131,132,133,134]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[135,136,137,138,139,140]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[141,142,-84,143,144,145,146,147,148]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[-3,-49,-127,149,150,-60]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[151,152,153,154,-101,155,-95]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[156,157,158,159,160,-46]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-30,161,162,-18,163]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[164,165,166,167,-158,168]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[169,170,-146,171,172]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[-156,-100,173,-96]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[174,-48,175,176,177]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[178,179,180,-150,-126,181,182,183]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[184,-132,185,-115,-120,186,-153,187]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-63,188,-54,189,190,191]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[192,-8,193,-190,-53,194,195]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-170,-173,196,-37,197,-73,198,199]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-183,200,-147,-171,-200,201]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[202,203,204,205,206]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-80,207,-9,-193,-196,208]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[209,-34,210,-107,211,-25,212]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-26,-212,-106,213,-68,-42,214]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-66,215,-166,216,217]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[-187,-119,218,-138,219,-154]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-45,220,-217,-165,-169,-157]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[221,-191,-194,-7,222]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-189,-62,223,-180,224,-55]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[-65,-69,-214,-105,-130,-135,225,-167,-216]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[226,-204,227,-116,-186,-131,-108,228]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-181,-224,-61,-151]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-168,-226,-134,229,230,-159]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-123,-81,-209,-195,-52,-58,-71]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[-208,-79,231,232,-89,-91,-10]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-160,-231,233,-92,-99,234]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[-232,-78,235,236]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-36,237,238,-124,-74,-198]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-236,-77,-122,-112,239]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[240,-93,-234,-230,-133,-185,241]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-207,242,-144,-83,-88,-117,-228,-203]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-172,-145,-243,-206,243,-38,-197]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[-21,-215,-41,244,-110]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-201,-182,-125,-129,245,-148]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-39,-244,-205,-227,-229,-211,-33]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-174,-104,246,-97]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-241,-242,-188,-152,-94]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[-114,-121,-239,247,-23]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-246,-128,-31,-164,-17,248,-142,-149]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-179,-184,-202,-199,-72,-56,-225]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-85,-143,-249,-16]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[249,-177,250]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-220,-137,251,-102,-155]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[252,-13,-20,253,254,-140,255]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-14,-253,-256,-139,-219,-118,-86]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[-238,-35,-210,-213,-24,-248]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[-19,-163,256,-254]],"type":"Polygon","properties":{"COUNTYFP":"085"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/or.topo.json b/app/assets/topojson/states/or.topo.json new file mode 100755 index 00000000..a8e34fb3 --- /dev/null +++ b/app/assets/topojson/states/or.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[1490,6314],[-1,-110],[9,-76],[-35,0],[0,-38],[-145,-3],[0,-75],[73,2],[0,-85]],[[1391,5929],[-41,0],[-244,-1],[-9,-15],[-308,-3]],[[789,5910],[10,110],[15,35],[30,254],[0,183],[11,60],[20,186],[-5,44],[19,118],[-18,63],[19,135],[-30,112],[14,135],[23,19],[51,230],[2,59],[26,173],[1,73]],[[977,7899],[174,2],[330,-3]],[[1481,7898],[0,-156],[-1,-254],[1,-380],[16,0],[20,-46],[181,0]],[[1698,7062],[0,-182],[10,0],[0,-273],[-1,-291],[-217,-2]],[[1943,9515],[37,-11],[0,-38],[37,0],[-1,-37],[77,-1],[6,-36],[64,1],[1,-38],[72,-1],[0,-37],[-37,0],[1,-37],[-73,0],[0,-74],[-73,0],[0,-37],[-35,-1],[0,-36],[-37,-1],[3,-77],[-36,1],[-5,-115],[-38,0],[-1,-36],[37,0]],[[1942,8904],[3,-170],[1,-226],[-1,-165],[-530,0],[-40,0],[1,-362],[106,-1]],[[1482,7980],[-1,-82]],[[977,7899],[-16,13],[10,70],[40,44],[30,170],[8,108],[-8,38],[18,166],[-3,95],[-26,82],[24,97],[9,116],[-25,94],[22,77],[22,125],[-5,56],[0,50],[17,153],[6,113],[-12,114],[-65,90],[24,39]],[[1047,9809],[443,0],[0,-26],[102,4],[315,3],[0,11],[219,-1]],[[2126,9800],[1,-183],[-220,0],[0,-77],[36,-25]],[[11737,7800],[72,61],[36,69],[75,4],[45,-84],[44,0],[20,-32],[8,-55],[379,2],[1,224],[444,2],[84,0]],[[12945,7991],[309,-1],[123,-2],[424,-2]],[[13801,7986],[-24,-47],[-90,-98],[6,-54],[-22,-45],[11,-67],[26,-46],[-29,-137],[-23,-44],[-54,-38],[-18,-54],[-50,-94],[-1,-38],[-57,-23],[-57,-48],[-27,1],[-57,-36],[-29,-41],[1,-53],[-31,-37],[-3,-48],[-26,-23],[-5,-63],[-39,-67],[-8,-80],[-37,-39],[3,-60],[-30,-53],[-36,-5],[-23,-60],[-48,-40],[-8,-13],[20,-81],[-1,-54],[-21,-56],[-28,-23],[13,-59],[70,-71],[11,-25],[-24,-61],[-30,-30]],[[13026,5976],[-474,-3],[1,225],[-40,-1],[0,37],[-36,0],[0,37],[-71,0],[0,37],[-38,1],[0,37],[-282,-1],[-394,-1],[0,-38],[-70,1],[0,-37],[-36,0],[-1,-65],[-35,0],[0,-47],[-36,0],[-27,-37],[-9,-75],[-35,0],[0,-37],[-36,0],[0,-38],[-36,0],[-1,-75],[-71,0],[0,-37],[-69,-1]],[[11230,5858],[-471,-2],[0,57],[51,148],[50,43],[18,49],[30,9],[-40,74],[31,79],[-6,42],[41,23],[42,4],[31,65],[-30,61],[5,60],[22,13],[25,61],[34,4],[36,71],[-24,43],[-40,30],[-3,38],[-56,37],[-62,-8],[-27,31],[-38,-12],[-54,29],[-48,11],[-24,63],[2,32],[43,29],[55,-16],[32,43],[84,5],[29,48],[21,7],[75,-14],[71,24],[4,51],[-29,66],[6,51],[-40,52],[45,44],[-4,26],[50,16],[55,-20],[21,36],[-22,85],[24,74],[-38,21],[1,34]],[[11208,7675],[54,80],[3,42],[31,31],[60,-4],[33,31],[11,34],[48,16],[30,-15],[40,-63],[118,-57],[61,2],[40,28]],[[11208,7675],[-56,-1],[-18,19],[-107,56],[-104,-31],[-55,-32],[-2,58],[-56,27],[-89,1]],[[10721,7772],[0,220],[-51,0],[2,300],[-194,1],[-1,157],[-72,0],[-2,227],[74,-13],[76,-2],[1,39],[328,1],[-1,191],[42,0],[22,35],[47,-35],[175,0],[124,-5],[0,112],[144,1],[0,73],[-3,41],[3,222],[-1,228],[90,-1],[0,127],[0,93],[38,0],[0,113],[128,0],[0,113]],[[11690,10010],[400,1],[0,-72],[0,-154],[-73,-1],[2,-217],[37,0],[-1,-76],[37,2],[1,-115],[33,1],[0,-264],[77,1],[0,-225],[35,0],[1,-162],[36,-1],[0,-73],[108,3],[1,-72],[35,0],[0,-37],[36,0],[-1,-74],[36,1],[2,-150],[79,0],[0,-112],[277,0],[97,0],[0,-37],[0,-186]],[[711,4843],[167,-4],[210,2],[37,8],[-1,84],[17,-3],[78,50],[35,10],[46,63],[30,-1],[133,-1],[56,-17],[79,-3],[0,-38],[71,-1],[-1,-77],[71,-1],[0,-59],[90,0],[-1,-99],[105,3],[0,-55],[217,-2],[-1,-75],[346,-1],[29,0],[0,-337],[0,-113],[53,0],[-1,-165],[1,-5],[213,-3],[92,13],[344,2],[0,-278],[211,3],[312,8],[313,0],[246,-4]],[[4308,3747],[36,-28],[48,-17],[37,-42],[14,-65],[61,-50],[24,-64],[-14,-34],[30,-39],[-17,-20],[13,-51],[37,-42],[-39,-80],[-46,-38],[-19,-73],[-27,-50],[1,-37],[-24,-21],[4,-36],[-22,-47],[-29,-107],[31,-22],[-366,0],[0,-30],[0,-155]],[[4041,2599],[-210,1],[0,-34],[-36,0],[0,-38],[-34,0],[0,-37],[-35,-1],[0,-37],[-178,-2],[0,-37],[-35,0],[0,-36],[-36,0],[0,-39],[-38,3],[-28,-41],[-70,0],[-1,-38],[-35,0],[0,-37],[-35,0],[0,-37],[-34,-1],[-1,-36],[-68,14],[0,-57],[-35,-37],[0,-37],[-105,9],[2,-19],[-175,1],[0,-19],[-34,-17],[-70,-4],[0,-19],[-182,0],[-71,10],[1,-47],[-51,0],[-87,-91]],[[2360,1839],[-35,0],[0,56],[-44,20],[-164,1],[-10,-19],[-52,0],[-9,-29],[-68,-7],[-1,-21],[-87,-2],[0,18],[-85,2],[-35,20],[-35,58],[-239,-1],[0,115]],[[1496,2050],[-28,-10],[-91,50],[-50,-28]],[[1327,2062],[0,91],[-16,0],[3,158],[-4,208],[0,80],[106,0],[0,225],[97,0],[8,10],[-2,256],[-2,185],[-106,1],[0,14],[0,211],[4,36],[1,164],[-6,24],[-94,-1],[1,74],[1,147],[-105,-2],[0,240],[-183,2],[-216,5],[-210,-1]],[[604,4189],[22,163],[22,85],[29,157],[34,249]],[[6157,7328],[-3,2],[-461,-1],[-663,3],[-49,11]],[[4981,7343],[19,43],[-16,26],[9,49],[21,26]],[[5014,7487],[33,37],[-56,38],[-2,34],[-25,35],[-31,-16],[-36,107],[-10,77],[62,87],[59,-16],[48,58],[49,31],[43,-4],[11,92],[-26,48],[-72,35],[-7,48],[-22,15],[-43,86],[0,35],[58,15],[31,40],[21,18],[10,44],[-28,19]],[[5081,8450],[381,1],[3,148],[-3,228],[0,263],[0,37],[73,0],[-1,460]],[[5534,9587],[70,-11],[52,26],[62,5],[45,-13],[44,-33],[127,-41],[28,-56],[6,-85],[23,-27],[92,9],[15,13],[6,21],[63,64],[36,12],[101,2],[43,-13],[70,21],[50,-39]],[[6467,9442],[21,-62],[-14,-31],[29,-41],[-23,-81],[46,-79],[33,3],[65,-35],[-21,-35],[6,-79],[-37,-25],[-16,-43],[11,-23],[-16,-90],[-92,-108],[-6,-31],[-58,-96],[-30,26],[-31,-29],[-45,-5],[-14,-112],[-1,-115],[66,-53],[127,-2],[47,10],[55,-18],[56,-50],[102,-53],[52,-53],[30,-11],[9,-51],[-21,-70],[401,-1]],[[7198,7999],[15,-39]],[[7213,7960],[21,-39],[5,-83],[-10,-39],[16,-63],[-21,-79],[29,-41],[7,-57],[52,-36],[1,-30],[-35,-17],[6,-41],[76,-34],[21,-58],[52,-21]],[[7433,7322],[-565,2],[-710,2],[-1,2]],[[5014,7487],[-929,0],[-233,0],[-19,48],[-74,0],[-30,29],[-49,19],[-24,-13],[-54,45],[-53,78],[-14,45],[-44,16],[-6,80],[-111,42],[-20,27],[-63,33],[-26,53],[-117,124],[0,13],[21,80],[30,24],[20,112],[-8,45],[20,67],[-81,1],[0,37],[-89,-1],[-27,-36]],[[3034,8455],[-32,0],[0,149]],[[3002,8604],[38,0],[0,74],[70,1],[3,-38],[109,1],[0,262]],[[3222,8904],[169,-1],[-22,65],[35,9],[287,-1],[116,1],[251,0],[16,0],[498,-3],[286,0],[5,3]],[[4863,8977],[22,-18],[0,-49],[55,-85],[34,-4],[58,-20],[42,-39],[-7,-98],[43,-130],[-29,-84]],[[3518,5786],[74,17],[56,-34],[68,4],[144,-16],[31,-20],[70,57],[1,56],[111,3],[418,0],[-1,12],[214,0],[0,10],[159,0]],[[4863,5875],[53,-34],[21,-79],[-14,-29],[22,-57],[3,-47],[-22,-49],[20,-22],[8,-64],[-8,-63],[-29,-41],[-24,-58],[-58,-40],[23,-64],[-9,-38],[-53,-84],[-22,-138],[-64,4],[-40,-11],[-8,-39],[-36,-58],[-40,-42],[0,-111],[13,-30],[11,-97],[-34,-53],[25,-100],[-20,-42],[-14,-68],[10,-57],[22,-35],[-57,0],[-4,-28]],[[4538,4201],[-65,-36],[-77,-62],[-20,4],[-66,-57],[-33,-94],[30,-27],[7,-35],[-18,-108],[12,-39]],[[711,4843],[15,122],[21,219],[2,57],[24,229],[-7,41],[19,130],[14,242],[-10,27]],[[1391,5929],[107,-8],[216,-9],[1,13],[244,-3],[149,8],[339,0]],[[2447,5930],[3,-83],[51,-65],[-27,-69],[186,0],[144,2],[131,0],[3,151],[68,0],[0,73],[54,-10],[28,-20],[22,22],[54,-1],[25,17],[166,-56],[39,-6],[13,-44],[82,-13],[29,-42]],[[5697,2897],[0,-56],[-2,-440],[2,-448],[386,0],[240,-1],[0,-7],[201,2],[3,-667],[2,-150],[-1,-237],[2,-888]],[[6530,5],[-252,-1],[-270,10],[-252,0],[-51,-3],[-310,6],[-542,10],[-235,3],[-366,10],[-224,2]],[[4028,42],[0,308],[4,0],[0,694],[5,205],[2,603],[0,502],[2,245]],[[4538,4201],[638,3],[434,-1],[116,1]],[[5726,4204],[1,-673],[-28,1],[-2,-635]],[[11690,10010],[-8,0],[0,362]],[[11682,10372],[461,-2],[430,-5],[244,2],[440,-3],[309,-6],[41,-49],[3,-42],[27,-15],[17,-97],[40,-63],[53,-39],[32,-49],[24,-86],[34,-22],[48,25],[68,-14],[32,-71],[26,-30],[59,8],[69,-17],[102,-114],[0,-110],[13,-27],[72,-82],[43,-88],[0,-33],[-35,-67],[-35,-27],[-37,-52],[-36,-84],[-22,-20],[3,-112],[-59,-52],[-17,-78],[-38,-38],[-97,-198],[-1,-117],[-30,-33],[-22,-62],[-11,-95],[-26,-81],[-12,-82],[-26,-18],[-16,-49],[-36,-22],[-15,-70]],[[4028,42],[-157,4],[-303,-5],[-118,-5],[-173,-4],[-588,-3],[-180,15],[-152,-13]],[[2357,31],[0,322],[4,0],[-1,421],[1,335],[-1,730]],[[9962,7776],[481,1],[278,-5]],[[11230,5858],[6,-112],[2,-447]],[[11238,5299],[-638,1],[0,17],[-377,2],[-31,0],[0,-225],[-204,-1],[-1211,-2],[-76,-2]],[[8701,5089],[0,677],[3,224]],[[8704,5990],[0,100],[3,113],[-1,375],[2,591],[1,157],[-34,0],[-1,444]],[[8674,7770],[650,2],[254,1]],[[9578,7773],[384,3]],[[4482,6970],[96,20],[38,-26],[281,0]],[[4897,6964],[5,-88],[-24,-91],[30,-52],[-16,-100],[-23,-54],[11,-54],[-66,-59],[-4,-58],[14,-61],[-9,-29],[6,-106]],[[4821,6212],[10,-89],[0,-143],[-7,-35],[30,-18],[9,-52]],[[2447,5930],[-30,64],[-35,13],[-39,159],[28,48],[-8,94],[40,34],[-20,66],[7,94],[-45,60],[-27,2],[20,41],[-16,19],[-16,19],[16,39],[52,26],[65,7],[-18,46],[42,41],[1,35],[12,8],[104,4],[49,20],[8,27],[-34,48],[-43,3],[-8,37],[-49,75]],[[2503,7059],[28,48],[-19,26]],[[2512,7133],[37,6],[109,-32],[35,-3],[50,-59],[-9,-38],[21,-34],[55,28],[33,60],[42,-13],[64,75],[58,35],[71,34],[43,52],[63,4],[30,-14],[51,4],[10,-24],[41,-12],[54,13],[80,20],[33,-27],[58,-25],[59,-3],[20,-35],[29,-9],[41,15],[108,-6],[166,14],[66,-15],[28,-45],[45,-38],[30,-60],[56,-4],[107,75],[68,-47],[118,-55]],[[972,1288],[17,-13],[-3,-86],[-19,-44],[2,-56],[-40,-28],[-10,-41],[26,-69],[72,0],[92,-9],[25,-24],[49,17],[26,-22],[15,-57],[54,-27],[-15,-22],[58,-106],[39,-108],[-23,-11],[-23,-34],[10,-51],[-16,-64],[-32,-16],[-32,-46],[47,-71],[18,-53],[-10,-38],[-38,-70],[22,-42],[-4,-36],[30,-51]],[[1309,10],[-315,1],[-377,6],[-104,121],[-52,17],[-52,87],[-25,23],[-25,62],[9,43],[-26,61],[10,58],[-22,39],[-8,59],[-59,82],[5,76],[-6,72],[-38,42],[10,29],[3,192],[-18,72],[25,63],[-1,91],[40,108],[18,94],[-18,45],[-2,91],[-23,48],[1,31],[-66,47],[5,21],[-46,126],[-71,34],[-19,114],[-21,63],[-41,52],[40,72],[65,143],[36,95]],[[141,2490],[374,2],[53,-55],[35,0],[10,-77],[16,0],[77,-53],[-1,-36],[28,-19],[9,-87],[-42,-28],[8,-72],[1,-129],[38,-26],[-1,-152],[87,37],[166,0],[0,38],[35,0],[0,37],[35,0],[0,37],[35,1],[20,27],[1,90],[101,1],[33,37],[68,-1]],[[1496,2050],[-29,-39],[-43,-125],[-132,-229],[17,-32],[-15,-64],[-34,-30],[-20,-61],[10,-26],[-43,-72],[-20,-56],[-67,-15],[-19,17],[-60,-15],[-46,12],[-23,-27]],[[4981,7343],[-21,-25],[-50,-6],[-42,-24],[-5,-49],[61,-46],[19,-50],[-31,-16],[-20,-45],[0,-49],[17,-36],[-12,-33]],[[2512,7133],[-3,56],[42,60],[35,10],[16,43],[-32,20],[-115,26],[-8,70],[55,6],[21,67],[22,57],[29,21],[-1,35],[65,-7],[51,42],[11,32],[1,70],[-50,18],[-18,62],[12,67],[1,89]],[[2646,7977],[42,40],[47,27],[38,42],[-32,51],[-23,12],[0,52],[37,-5],[-24,104],[-37,-2],[-16,24],[20,35],[71,6],[-1,95],[64,62],[29,-45],[46,2],[69,-33],[58,11]],[[234,2927],[46,160],[11,68],[0,33],[23,119],[-12,53],[-24,40],[53,85],[35,10],[68,118],[65,172],[40,123],[42,156],[23,125]],[[141,2490],[59,201],[34,236]],[[1698,7062],[534,-4],[212,1],[59,0]],[[7913,6330],[141,1],[1,-127],[216,0],[0,-215],[433,1]],[[8701,5089],[-210,1],[-4,-676],[-213,1]],[[8274,4415],[-604,-2],[-35,3],[-1,224],[-213,1],[-1,225],[-655,-3],[-1,222],[-423,9],[-1,299],[0,150],[-73,3],[-132,7],[0,86],[0,122],[-10,0],[1,445]],[[6126,6206],[166,0],[46,-1],[-1,224],[288,0],[-2,223],[409,0],[374,3]],[[7406,6655],[1,-331],[35,2],[471,4]],[[7433,7322],[-18,-55],[-41,-20],[34,-82],[-2,-510]],[[6126,6206],[-74,0],[-142,0],[-109,6],[-203,1],[-410,-2],[-53,2],[-314,-1]],[[2747,8772],[-37,22],[0,37],[-125,-2],[-21,38],[-36,0],[-1,37],[-131,1],[-454,-1]],[[2126,9800],[425,1],[12,0],[150,-2],[-2,-72],[74,-1],[0,-38],[109,-2],[-1,-36]],[[2893,9650],[0,-223],[36,0],[0,-38],[38,-1],[-1,-36],[35,-1],[2,0],[0,-37],[36,0],[0,-37],[37,0],[0,-37],[37,-1],[18,-37],[18,-37],[37,-1],[0,-37],[36,0],[0,-223]],[[3002,8604],[-73,0],[0,75],[-109,0],[0,37],[-37,1],[0,37],[-36,18]],[[13369,4070],[0,-646],[0,-750],[1,-564],[-1,-472],[1,-637],[0,-549],[0,-431],[-304,1],[-760,-6],[-440,1],[-574,-4]],[[11292,13],[3,722],[-34,0],[-3,1371],[-1,282],[-21,0],[0,471],[1,652],[-7,0],[-1,682],[4,432],[4,-1],[1,675]],[[13026,5976],[6,-34],[82,-76],[57,1],[31,47],[30,6],[26,-56],[75,-74],[27,49],[100,-15],[7,-118],[82,-15],[40,-31],[16,-50],[-61,-137],[-26,-34],[-43,-8],[-17,-24],[8,-85],[51,-34],[16,-37],[-15,-51],[8,-44],[-67,-26],[29,-28],[-14,-75],[9,-45],[-31,-21],[7,-38],[-11,-60],[-70,-39],[-20,-68],[16,-46],[-4,-11],[-1,-629]],[[5726,4204],[636,2],[180,-5],[880,1],[0,-11],[854,-1]],[[8276,4190],[2,-112],[-2,-554],[-1,-452],[-63,0],[1,-524],[1,-154],[-22,0],[0,-442],[422,1],[0,6],[605,0],[1,-678],[2,-905],[7,0],[-1,-369]],[[9228,7],[-150,3],[-499,2],[-267,2],[-218,-6],[-285,-1],[-296,-5],[-289,3],[-225,-2],[-469,2]],[[2357,31],[-205,-12],[-174,4],[-318,-2],[-59,-12],[-126,5],[-166,-4]],[[7259,9017],[27,21],[58,-44],[-2,84],[102,-8],[8,21],[-35,47],[5,36],[-53,57],[9,27],[-17,67],[-37,6],[-25,41],[-38,14],[-36,91],[-75,44],[-29,-7],[-40,64],[-58,23],[-29,49],[-49,6],[-13,34]],[[6932,9690],[33,23],[78,2],[56,-22],[95,-99],[42,-14],[139,12],[133,31],[83,26],[127,12],[72,93],[51,29],[127,31],[125,71]],[[8093,9885],[2,-331],[-1,-432],[-10,-1],[-2,-431],[-1,-240],[193,-2],[27,0],[-3,-227],[221,0],[-2,-228],[-54,0],[1,-35]],[[8464,7958],[-423,-6],[-177,0],[-106,5],[-545,3]],[[7198,7999],[-11,46],[91,47],[-19,118],[-29,38],[7,35],[-43,8],[-62,35],[-1,57],[-23,54],[36,8],[-25,110],[40,19],[-15,99],[4,71],[46,94],[30,24],[13,102],[-15,32],[37,21]],[[4863,8977],[-105,137],[-49,16],[-19,68],[24,21],[-26,83],[11,38],[-18,23],[0,100]],[[4681,9463],[37,33],[-1,22],[61,59],[99,35],[136,-33],[49,2],[69,26],[54,-1],[186,57],[68,-21],[57,-44],[38,-11]],[[1482,7980],[394,-3],[159,1],[162,0],[240,-1],[209,0]],[[6467,9442],[36,4],[70,74],[119,39],[177,76],[63,55]],[[9616,10192],[86,30],[56,41],[94,54],[38,53],[357,2],[347,0],[295,0],[529,-1],[264,1]],[[9578,7773],[0,225],[29,0],[-1,447],[3,447],[0,226],[-183,0],[0,222],[-330,3],[0,48],[0,349],[-1,118],[5,301]],[[9100,10159],[120,8],[75,30],[116,18],[109,-31],[96,8]],[[8274,4415],[2,-225]],[[3103,10147],[46,-144],[-19,-85],[0,-39],[47,-76],[14,-56],[-1,-79]],[[3190,9668],[-40,-20],[-257,2]],[[2126,9800],[5,148],[-4,77],[3,374],[-1,73],[-12,49],[5,228]],[[2122,10749],[148,-4],[119,72],[83,42],[90,-9],[19,-20],[179,-113],[74,-76],[104,-54],[35,-61],[12,-76],[38,-42],[33,-87],[42,-52],[14,-74],[-9,-48]],[[1121,10400],[-10,156],[-25,115],[-47,136],[-65,142],[18,33],[49,-61],[120,-83],[5,-31],[84,-30],[20,37],[-29,23],[25,32],[43,-6],[68,21],[46,37],[70,-62],[44,2],[34,22],[13,52],[72,-11],[78,43],[61,48],[1,26],[82,30],[38,-4],[57,-50],[36,-53],[-6,-124],[72,-70],[47,-21]],[[1047,9809],[14,140],[-11,183],[-46,100],[33,25],[9,33],[58,22],[17,88]],[[8464,7958],[-1,-189],[17,1],[194,0]],[[8093,9885],[60,31],[103,10],[186,50],[53,-5],[183,29],[83,126],[40,36],[52,15],[83,-43],[65,-6],[67,28],[32,3]],[[3502,9348],[198,-69],[64,-38],[66,20],[37,12],[49,-17],[38,-55],[65,-12],[81,11],[84,43],[32,35],[77,17],[69,-2],[102,67],[72,17],[71,43],[14,28],[60,15]],[[3190,9668],[-22,-125],[21,-62],[87,-49],[68,-50],[56,-21],[102,-13]],[[11292,13],[-539,-4],[-347,-9],[-541,5],[-368,-1],[-269,3]]],"transform":{"scale":[0.0005634208365230703,0.0003865090925459129],"translate":[-124.55929799999998,41.991794]},"objects":{"cb_2019_41_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[6,7,8,-4,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[12,13,14,15,16,17]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-18,18,19,20,-13]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[21,22,23,24,25,26,27]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[28,29,30,31,32,33,34,35,36]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-31,37,38,39,40,41]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[42,43,44,-22,45,-2,46,47]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[48,49,50,-23,-45,51,52]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-21,53,54,-14]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-51,55,56,-24]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[57,-19,-17,58,59,60,61,62,63]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[64,65,66,-43,-48,67,68,69]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[70,71,72,-26,73]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-38,-30,74,-65,-70,75,76]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[77,-27,-73,78]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-6,79,-68,-47,-1]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[80,-61,81,82,83,84]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-37,85,-84,86,-66,-75,-29]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[87,-7,-12,88,89,-40,90]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[91,92,-59,-16,93]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-49,-53,94,95,96]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-71,-74,-25,-57,97]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[98,99,100,101,-35,102]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-42,103,104,-32]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-5,-9,105,-76,-69,-80]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[106,-99,-103,-34]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-77,-106,-8,-88,-91,-39]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[107,-54,-20,-58,-64,108,109]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-44,-67,-87,-83,110,-95,-52]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[111,112,-89,113,114]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[115,-114,-11,116]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-102,117,-62,-81,-85,-86,-36]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-109,-63,-118,-101,118]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[119,-104,-41,-90,-113,120]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-96,-111,-82,-60,-93,121]],"type":"Polygon","properties":{"COUNTYFP":"025"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/pa.topo.json b/app/assets/topojson/states/pa.topo.json new file mode 100755 index 00000000..3059c316 --- /dev/null +++ b/app/assets/topojson/states/pa.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[2,5042],[352,5],[2,0],[113,2],[36,1],[183,3],[0,-38],[179,-8],[117,-11],[124,-148]],[[1108,4848],[-9,-13],[-90,-126],[-80,-114],[3,-80],[6,-144],[7,-183],[5,-114]],[[950,4074],[-297,-5],[-1,0],[-70,-1],[-1,0],[-62,-1],[-1,0],[-223,-3],[-2,0],[-98,-1],[-54,-1],[-139,-2]],[[2,4060],[-2,183],[2,329],[0,242],[0,228]],[[11910,8178],[258,0],[308,-3],[310,2],[126,1],[327,1]],[[13239,8179],[11,-268],[1,-32],[6,-152],[7,-125],[7,-193],[1,-5],[9,-202],[3,-80],[3,-58],[3,-92],[4,-76]],[[13294,6896],[-33,0],[-12,0],[-136,0],[-268,1],[-50,1],[-178,0]],[[12617,6898],[-165,2],[-174,3],[-107,0],[-176,2],[-33,0],[-42,2],[-299,-2],[-43,27]],[[11578,6932],[-18,312],[-3,38],[-12,187],[-6,89],[-15,235],[-5,81],[-16,228],[-5,76]],[[11498,8178],[91,0],[134,0],[187,0]],[[13087,425],[-27,1],[-75,0]],[[12985,426],[-35,-4]],[[12950,422],[-4,-1]],[[12946,421],[7,55],[-25,14],[9,65],[71,49],[22,48],[1,1],[42,28],[10,63],[60,24],[-11,37],[42,27],[15,10],[174,109],[-34,43],[117,109],[-28,52],[142,85]],[[13560,1240],[31,-45],[75,-132],[25,13],[91,-153]],[[13782,923],[-10,-8],[61,-40],[18,5],[7,-8],[1,-68],[19,-7],[-19,-81],[1,-9],[-15,-37],[-32,-67],[1,-21],[5,-20],[112,-4],[22,-30]],[[13953,528],[-62,-37],[-97,-27],[-117,3],[-5,0],[-60,-14],[-34,-22],[-93,-87],[-23,-18],[-44,-31],[-58,40],[-47,27],[-46,21],[-69,24],[-111,18]],[[12947,3656],[-9,21],[-15,51],[-3,36],[-12,67]],[[12908,3831],[83,43],[95,26],[119,15],[58,14]],[[13263,3929],[83,13],[68,28],[99,23],[14,6],[151,80],[56,20]],[[13734,4099],[13,6],[43,33],[17,34],[60,42],[27,17],[-19,38],[51,36],[13,32],[102,42],[47,30],[56,21],[49,51]],[[14193,4481],[7,-56],[45,-82],[35,-40],[21,-18],[8,-66],[59,-79],[6,-34],[-32,-53],[-72,-1],[-17,-29],[36,-49],[-43,-71],[-22,-59],[-38,-16],[-30,-46],[-98,14],[-15,-49],[-48,-42],[34,-81],[-27,-51],[-29,-86],[36,-44],[33,-6],[-60,-110],[26,-40],[0,-57],[-16,-41]],[[13992,3189],[-32,-20],[-125,-73],[-97,-74],[-106,-90]],[[13632,2932],[-184,157],[25,44],[9,28],[6,49],[3,67],[-83,91],[-30,56],[-39,-19],[-38,-18],[-17,-9],[-40,-20],[-6,40],[-7,22],[-24,17],[-53,88],[-26,64],[-5,50],[-81,-47],[-59,50],[-36,14]],[[11907,860],[-6,-48],[19,-30],[-27,-35],[-6,-65],[28,-64],[-14,-36],[14,-31],[-39,5],[-13,-75],[-35,-1],[7,-72],[-39,-52],[-14,-56],[-31,-5],[21,-18],[-54,-82],[-15,-52],[-38,6],[-6,-47],[-48,-87],[-44,-2],[-43,-7]],[[11524,6],[-274,-1]],[[11250,5],[-2,33],[-58,86],[-35,76],[-55,56],[-41,51],[-68,60],[-32,56],[0,34],[-68,66],[-9,80],[-10,35],[-22,54],[-79,47],[-71,31],[-75,55],[-46,95],[-9,74],[-35,56],[-1,4],[-7,11],[-39,51],[-11,72],[-98,-19],[-162,42],[-31,3],[-50,18],[-88,141],[-28,29],[-19,19],[-17,15]],[[9984,1436],[15,41],[53,81],[51,-4],[61,47],[26,-1],[19,16],[77,71],[63,3],[10,14],[20,-1],[13,8]],[[10392,1711],[255,110],[8,4],[78,34],[19,4],[113,21],[94,17],[37,6],[76,13],[62,34],[181,96],[10,6],[158,83]],[[11483,2139],[156,-137],[111,-97],[15,-13]],[[11765,1892],[264,-231],[5,-4],[179,-160]],[[12213,1497],[-183,-100],[2,-9],[16,-101],[5,-111],[-4,-36],[-41,-76],[-55,-104],[-46,-100]],[[766,3062],[-13,-13],[-48,-48],[-60,-60],[-9,-10],[-218,-212]],[[418,2719],[-3,0],[-198,1],[-29,-1],[-186,-1]],[[2,2718],[0,295],[0,280],[0,345],[0,200],[0,222]],[[950,4074],[5,-135],[1,-62],[3,-44],[1,-43],[0,-12],[5,-103],[11,-250]],[[976,3425],[0,-2],[9,-212],[-36,-20],[-57,-5],[-69,-70],[-3,-1],[-27,-22],[-3,-9],[-24,-22]],[[10364,3089],[20,-17],[18,-15],[46,-38],[25,-22]],[[10473,2997],[-375,-288],[27,-97],[111,-389],[38,-126],[9,-31],[8,-29],[33,-119],[60,-211],[8,4]],[[9984,1436],[-61,47],[-3,47],[-8,58],[-20,53],[-19,8],[-111,76],[-60,16],[-28,60],[-51,16]],[[9623,1817],[-38,41],[-15,23],[-31,22],[-61,78],[-27,64],[6,47],[21,56],[-2,36]],[[9476,2184],[-17,28],[-32,71],[-73,7],[-97,-5],[-55,29],[-21,58],[-6,22],[36,50],[10,23],[-12,64],[35,6],[29,35],[55,55],[6,3],[20,11],[22,24],[11,39],[-12,62],[-42,25],[-40,61],[6,103],[-26,65],[-1,23],[41,49],[47,41],[15,41],[10,85]],[[9385,3259],[34,-56],[28,-12],[104,31],[36,-5],[18,39],[67,-6],[34,30],[45,3],[1,26],[40,-4],[101,26],[17,18],[65,0],[61,18]],[[10036,3367],[31,-26],[132,-112],[44,-37],[35,-30],[86,-73]],[[5984,2163],[71,111],[66,137],[5,14],[111,202],[45,108],[1,31],[-51,-11],[-9,55],[13,109],[49,124],[-19,5],[-41,-103],[-40,-32],[-49,43],[-31,53],[50,91],[-13,41],[44,82],[-25,36],[-55,38],[0,20],[-4,12],[-20,27],[-42,70],[45,76],[25,5],[67,55],[81,42],[59,53]],[[6317,3657],[1,1],[81,-30],[91,-35],[280,-106],[131,88],[166,90],[18,9],[147,-87],[131,28],[22,-45],[28,22],[48,32]],[[7461,3624],[13,-48],[-65,-41],[-19,-52],[26,-74],[-140,-135],[-54,-23],[-41,-49],[-77,-105],[-65,-118],[66,-178],[-24,-27],[-186,-271],[-30,-12],[-15,-55],[65,-1],[4,-25],[45,3],[-6,-37],[8,-19],[10,-16],[12,-9],[7,-13],[53,10],[52,-30],[22,29],[128,0],[25,36]],[[7275,2364],[34,-106],[95,-307]],[[7404,1951],[-56,-48],[-116,-165],[-34,-63],[-83,-172],[-122,-264],[-13,-13]],[[6980,1226],[-160,152],[-149,33],[-104,30],[-147,42],[-2,0],[-149,115]],[[6269,1598],[-40,34],[-204,160],[-26,27],[-52,255]],[[5947,2074],[16,43],[21,46]],[[2181,3665],[-7,-188],[0,-69]],[[2174,3408],[-64,0],[-182,7],[-81,1],[-158,2],[-123,2],[-107,-2],[-32,2],[-45,2],[-3,0],[-171,2],[-19,0],[-2,0],[-8,0],[-203,1]],[[1108,4848],[81,104],[62,88],[116,170]],[[1367,5210],[47,0],[201,1],[52,1],[166,3],[21,0],[73,-1],[241,0]],[[2168,5214],[11,-8]],[[2179,5206],[2,-242],[0,-4],[0,-83],[0,-173],[0,-101],[0,-161],[0,-3],[-3,-223],[-1,-36],[-1,-256],[0,-25],[0,-119],[5,-115]],[[5932,4065],[-33,-10],[-41,-11],[-26,-43],[-1,-43],[-34,-51],[-62,-35],[-25,-72],[-12,-36],[-64,-52],[43,-78]],[[5677,3634],[25,-28]],[[5702,3606],[-212,2],[-265,2],[-122,-1],[-29,-1],[-259,-4],[-9,0],[-13,0],[-43,0],[-234,1]],[[4516,3605],[-12,19],[0,272],[0,18],[0,24],[0,99],[3,219]],[[4507,4256],[3,240],[0,75],[0,167],[-1,56],[0,28],[0,246],[11,28],[8,21],[1,1],[80,203],[148,-3]],[[4757,5318],[163,56],[4,130],[257,-22],[168,-13],[166,-12],[18,-2],[191,-14],[277,-21]],[[6001,5420],[0,-1],[229,-28],[148,-19]],[[6378,5372],[85,-152],[60,-75]],[[6523,5145],[-78,-76],[-14,-39],[-83,-5],[-20,-22],[37,-101],[4,-45],[30,-17],[71,-100],[-42,-24],[39,-110],[-6,-19],[-61,-24],[-4,-77],[23,-40],[-84,-32],[-29,-30],[-28,38],[-91,34],[-9,-22],[37,-48],[-42,-20],[-27,-51],[-105,-40],[-9,-21],[-7,-28],[2,-1],[17,-25],[-21,-26],[-54,-49],[-1,-50],[-36,-10]],[[3443,5240],[-1,-8],[0,-60],[-2,-175],[0,-51],[-11,-171]],[[3429,4775],[-40,-17],[-28,-35],[-59,-38],[-57,-58],[-45,15],[-21,-20],[-11,-11],[-52,-21],[-9,12],[-17,-13],[-57,7],[-39,-75],[-31,51],[-73,36],[-11,-54],[-71,-26],[-63,47],[-34,2],[-17,-33],[-72,-40],[-45,33],[-31,-14],[-50,19],[-44,-42],[-16,-18],[-53,15],[-29,20],[14,37],[34,19],[65,2],[-11,25],[-60,15],[24,87],[-6,24],[-70,-4],[-100,49],[25,55],[-6,31],[-40,33],[-18,74],[4,47],[0,74],[-19,28],[7,23],[12,30],[-30,40]],[[2168,5214],[-13,12],[1,6],[-2,14],[19,4],[60,6],[10,45],[44,74],[-2,129],[46,-1],[14,48],[0,37],[61,0],[0,51],[0,46],[1,62],[165,-2],[0,54],[44,-1],[122,0],[1,182]],[[2739,5980],[203,1],[2,178],[111,0],[0,-14],[395,-5],[1,-50],[-5,-306]],[[3446,5784],[-1,-53],[0,-70],[-1,-225],[-1,-102],[0,-75],[0,-19]],[[11250,5],[-243,0],[-13,0],[-177,0],[-90,0],[-59,0],[-170,0],[-219,0],[-200,0],[-45,0],[-145,-1],[-113,-1],[-211,-1],[-311,-2]],[[9254,0],[-1,145],[0,125],[0,88],[3,42],[52,59],[57,29],[5,4],[-46,57],[-14,38],[-11,28],[-5,13],[0,26],[45,51],[-13,44],[6,31],[9,-7],[-117,234],[-41,64],[-74,18],[-42,25],[-57,84],[-119,58]],[[8891,1256],[150,148],[9,9],[126,122],[43,3],[38,17],[50,-4],[32,38],[41,11],[77,-12]],[[9457,1588],[38,25],[-41,28],[30,28],[-18,48],[52,58],[80,5],[25,37]],[[9254,0],[-116,1],[-324,0],[-133,0],[-69,0],[-202,0],[-112,0],[-45,0],[-208,0]],[[8045,1],[-2,84],[-4,110],[-10,272],[-2,35],[-1,32],[-12,271]],[[8014,805],[130,133],[47,48],[131,31],[259,63],[5,1],[64,14],[114,16],[20,26],[59,72],[48,47]],[[10922,3808],[15,7],[69,34],[67,33],[21,106],[38,188],[13,15],[18,23],[61,77],[110,122]],[[11334,4413],[227,-80],[44,-17],[201,-74],[82,39]],[[11888,4281],[21,-26],[13,-15],[14,-17],[55,-65],[83,-97],[48,-58],[5,-6],[1,-1],[32,-38],[5,-6],[54,-50],[34,-31],[119,-102],[145,-125]],[[12517,3644],[-102,-66],[-30,-35],[-96,-51],[-27,1],[-96,-58]],[[12166,3435],[-5,-2],[-263,-132],[-3,-15],[-5,-20],[-42,-188],[-12,-6],[-57,23],[-51,-10],[-57,-49],[-99,-27],[-100,-48],[-43,-36],[-84,-16],[-41,-7],[-55,-29],[-41,-12],[-122,-9],[-74,4],[-102,-22],[-130,-50],[-56,1]],[[10724,2785],[-116,97],[-42,36],[-39,33],[-54,46]],[[10036,3367],[51,32],[216,108],[77,31],[174,88],[92,46],[156,78],[79,38]],[[10881,3788],[41,20]],[[9748,4060],[-33,-52],[-67,-97],[0,-2],[-19,-75],[-7,-41],[5,-96],[1,-23],[3,-68],[-35,-92],[-20,-27],[-20,-26],[-51,-37],[-65,-104],[-30,-24]],[[9410,3296],[-17,42],[-50,-11],[-99,-30],[-28,84],[-47,-18],[-18,81],[-39,-16],[-39,17],[-68,-13],[-41,55],[-80,-29],[-28,-23],[-127,19],[-186,32],[-48,8]],[[8495,3494],[-41,7],[-95,16],[-38,6],[-3,207],[-3,172]],[[8315,3902],[93,36],[204,53],[243,63],[42,11],[96,33],[64,23],[58,4],[76,-43],[34,44],[52,20],[35,5],[55,26],[38,15],[89,-12],[45,14],[33,-15],[53,17],[86,-4],[46,-34],[20,12]],[[9777,4170],[4,-14],[-33,-96]],[[1368,5248],[0,61],[-1,49],[0,92],[0,127],[0,142],[0,201],[0,11],[0,214],[0,111],[0,96]],[[1367,6352],[3,39],[43,-3],[2,46],[61,2],[-2,43],[43,-1],[-2,44],[53,0],[-6,44],[42,1],[3,43],[41,1],[0,41],[41,2],[11,25],[61,21],[1,38],[52,16],[2,72],[159,-4],[0,-12],[54,0],[157,-1],[101,-1],[15,0],[82,0],[0,24]],[[2384,6832],[112,1],[153,2]],[[2649,6835],[2,-424],[0,-34],[-3,-114],[-25,0],[1,-89],[114,-1],[0,-104],[1,-89]],[[1367,5210],[1,38]],[[4428,1883],[-10,1],[-45,-5]],[[4373,1879],[-33,19],[-42,-15],[-17,20],[-14,77],[-20,12],[-55,12],[-7,24],[-337,0]],[[3848,2028],[50,81],[2,25],[6,7],[52,82],[104,199],[0,4]],[[4062,2426],[132,305],[3,8],[2,5],[67,174],[57,152],[75,216],[32,94],[69,211],[17,14]],[[5702,3606],[-21,-54],[-132,-235],[-74,9],[-9,-29],[-19,-51],[17,-85],[-17,-33],[-79,-146],[-107,-79],[-49,-68],[-19,-75],[-1,-18],[7,-51],[0,-1],[-1,-2],[-23,-44],[-23,-64],[18,-32],[-11,-75],[-16,-123],[-2,-15],[-100,-62],[-48,-94]],[[4993,2179],[-40,-63],[-20,-94],[-17,-30],[4,-16],[11,-40],[-38,-59]],[[4893,1877],[-290,2],[-89,3],[-20,0],[-66,1]],[[13239,8179],[325,1],[48,-24],[-3,-67],[20,-15],[64,-75],[44,20],[39,-56],[6,-60],[24,-55],[-10,-70],[28,-13],[-8,-47],[15,-31],[38,17],[48,-34],[27,36],[45,5],[37,-30],[41,24],[17,-62],[56,8],[25,-25],[43,-6],[3,-74],[73,-40],[23,-47],[-42,-8],[-29,-63],[8,-35],[65,9],[40,-25],[20,-43],[-4,-63],[13,-72],[-50,-24],[42,-71],[-15,-51],[23,-42],[4,-110],[-14,-48],[-45,-32],[3,-29]],[[14326,6752],[-138,-239],[-117,-205],[-5,-9],[-14,-22],[-33,-37],[1,-58],[-85,-67],[-40,2],[-47,-44],[12,-35],[-49,-108],[-86,-18],[-39,9],[-28,-14],[-39,36],[-33,-44],[35,-55],[-12,-45],[53,15],[29,-31],[-7,-75],[-54,-147],[-35,-16],[17,-38],[-47,-55]],[[13565,5452],[-34,-5],[-351,-19]],[[13180,5428],[25,37],[71,4],[63,38],[10,26],[-1,27],[-5,123],[-9,214],[-3,88],[-5,136],[-6,192],[-11,195],[-2,46],[-5,150],[-1,25],[-4,76],[-3,91]],[[1781,1307],[-1,-1],[-27,-19],[-9,-4],[-38,-7],[-19,10],[-39,8],[-23,-25],[18,-12],[28,-7],[8,-37],[-18,-53],[29,-23],[-8,-30],[-41,-23],[-39,0],[-51,-37],[-13,-43],[-52,-16],[-31,58],[-22,9],[-55,-31],[12,-67],[-18,-12]],[[1372,945],[-53,-20],[-32,22],[-25,-35],[-16,13],[-13,43],[31,25],[-22,31],[-38,12],[-64,-65],[-106,-5],[-81,38],[-47,30],[-40,-22],[-95,21],[-15,0],[-90,-22],[-19,42],[-36,21],[-60,-5],[3,-43],[-103,-17],[-55,-14],[-58,-33],[-18,-37],[-71,-20],[-47,14],[-85,-86],[-47,24],[-68,13]],[[2,870],[0,401],[0,437],[0,308],[3,308],[1,341],[-4,53]],[[418,2719],[169,-187],[162,-180],[1,-1],[17,-18],[13,-15],[104,-119],[177,-73],[111,-45],[106,-42],[1,-1],[169,-69],[144,-58],[-37,-31],[-96,-22],[-16,-28],[30,-49],[55,-23],[101,-53],[78,9]],[[1707,1714],[33,-16],[19,-55],[-36,-57],[-17,1],[-78,1],[-12,-27],[2,-10],[6,-12],[35,-59],[30,-20]],[[1689,1460],[32,-20],[6,-3],[33,-23],[14,-39],[11,-29],[-4,-39]],[[12684,2983],[-119,103],[-71,62],[-33,27],[-295,260]],[[12517,3644],[34,18],[43,48],[77,44],[59,32],[178,45]],[[13632,2932],[-123,-109],[-4,-3],[-12,-11],[-5,-4],[-53,-47],[-3,-2],[-195,-249]],[[13237,2507],[-120,102]],[[13117,2609],[-3,3],[-128,108],[-27,24],[-136,119],[-88,76],[-51,44]],[[4122,7290],[8,283],[71,2],[15,36],[-3,75],[4,327],[-9,162]],[[4208,8175],[364,-1],[483,7],[167,0],[185,-1],[304,0],[369,0]],[[6080,8180],[1,-88],[0,-69],[0,-153],[0,-104],[3,-236],[2,-294],[1,-218],[1,-92],[1,-114]],[[6089,6812],[-568,-5],[1,-53]],[[5522,6754],[-168,1],[-1,99],[-416,-6],[-81,-12],[-90,-1],[-287,0],[0,-7],[-369,4]],[[4110,6832],[6,228],[6,230]],[[9477,7876],[7,-65],[20,-210],[21,-232],[8,-90],[24,-285],[1,-10],[23,-249]],[[9581,6735],[-9,-23],[-79,-32],[-36,-2],[-12,-35],[-68,-22],[-31,-49],[-115,-5],[-7,-1],[-480,-14],[-48,-1],[-385,-5],[-255,-2],[-379,-5]],[[7677,6539],[-2,103],[-5,309],[-2,109],[-2,142],[-5,292],[-1,28],[-3,238],[-2,109],[-1,26],[-5,285]],[[7649,8180],[351,2],[96,0],[288,-1],[103,0],[187,-1],[198,0],[78,0],[163,4],[331,4]],[[9444,8188],[33,-312]],[[6317,3657],[-40,14],[-397,-23],[-203,-14]],[[6523,5145],[55,-2],[36,-30],[12,65],[68,36],[0,112],[36,48],[49,-29],[5,48],[40,13],[26,51],[41,43],[8,-251],[6,-16],[80,4],[168,9],[22,-17],[2,-126],[33,11],[46,-80],[46,-54],[48,-3],[45,25],[60,-16],[163,-65],[69,-49],[50,-32],[38,-39],[-47,-39],[56,-92],[107,-172],[9,-14],[15,-23],[180,41],[122,14],[133,29],[523,208]],[[8873,4753],[-35,-47],[-122,-139],[-47,-69],[-151,-228],[-223,-226]],[[8295,4044],[-36,-9],[-160,-73],[-191,-108],[-109,-59],[-107,-58],[-155,-59],[-40,-34],[-36,-20]],[[14923,1905],[43,-30],[116,-73],[27,-24],[28,-58],[15,-45],[57,-44],[30,-49],[-5,-51],[-43,-40],[-48,-5],[-61,-47],[-61,13],[-27,11],[-28,-13],[-21,-58],[-61,-64],[-6,-18],[-130,-53],[-62,-5],[-108,-74]],[[14578,1178],[-28,28],[9,36],[58,59],[8,46],[-19,71],[-80,42],[0,20],[-56,20]],[[14470,1500],[-38,31],[-81,65],[-29,23],[-50,41],[-39,31],[-5,4],[-81,67],[-131,110],[-70,57],[-76,61],[-56,45],[-93,75],[-21,17],[-24,21],[-1,0],[-45,37],[-13,10],[-36,31],[-129,106],[-22,17],[-92,78],[-101,80]],[[13992,3189],[13,-82],[13,-59],[52,-19],[43,25],[37,17],[95,-28],[44,-52],[40,-40],[9,-58],[6,-159],[-20,-95],[26,-122],[51,-39],[43,-25],[75,25],[85,-54],[29,-78],[20,-86],[15,-42],[33,-31],[49,-45],[56,-23],[50,-54],[39,-92],[28,-68]],[[2,5042],[0,224],[1,81],[-1,34],[1,85],[-1,89],[-1,334],[1,286],[0,173]],[[2,6348],[187,-6],[8,7],[44,-8],[78,-3],[48,-1],[57,-3],[86,-3],[124,-3],[35,0],[226,-6],[52,-2],[90,-3],[63,24],[158,6],[109,5]],[[6080,8180],[310,2],[331,-5],[309,-1],[307,2],[312,2]],[[7677,6539],[3,-228]],[[7680,6311],[-439,-4],[-161,-2],[-428,-8]],[[6652,6297],[-161,3],[-118,150],[-96,121],[-188,241]],[[2174,3408],[-7,-33],[17,-58],[-36,-65],[-27,-22],[-22,-43],[-31,-18],[-21,-8],[-21,-6],[-39,-23],[-17,-23],[-11,-59],[7,-25],[16,-43],[1,-4],[77,-2],[36,-26],[55,-59],[-6,-294],[-2,-58],[-46,-66],[-43,-48],[-33,-24],[-7,-2],[-13,13],[-9,3],[-8,-12],[4,-14],[-6,-5],[-14,-32],[-9,-56],[-24,-159],[-11,-64],[33,-35],[-51,-22],[19,-66],[-46,-80],[-3,-28],[64,-20],[-151,-69],[-82,-39]],[[2507,3135],[-4,-13],[0,-43],[0,-3],[18,-49],[91,-76],[37,2],[61,-60],[11,29],[91,-14]],[[2812,2908],[-24,-37],[10,-81],[7,-30],[16,-29],[15,14],[27,15],[19,-56],[44,3],[32,-66],[55,-7],[19,43],[33,-51],[21,11],[18,56],[23,-59],[71,28],[5,-36],[0,-59],[48,27],[27,-13],[9,-38],[-9,-36],[25,-6],[24,20],[17,35],[38,-5],[48,-23],[32,-45],[26,11],[81,-15],[24,-40],[17,-6],[77,-13],[-30,-33],[27,-49],[57,-2],[36,67],[9,-2],[13,-11],[12,-20],[14,-5],[42,41],[54,60],[-3,44],[33,3],[78,-33],[33,-54]],[[3848,2028],[-2,-23],[-45,-50],[-39,-84],[-93,-170],[-15,-47],[-36,-8],[7,-55],[-53,-7],[-6,-73],[-25,-55],[-50,-56],[-13,30],[-64,-20],[-21,-54],[-71,-33],[-31,-51],[1,-31],[-68,-91],[-1,0]],[[3223,1150],[-129,15],[-34,107],[-99,59],[-22,43],[-42,12],[-9,12],[-44,23],[-53,70],[-65,29],[-59,-10],[-59,-64],[-21,11],[-38,-55],[-61,-23],[-35,-27],[-7,-6],[-9,-11],[-54,6],[-34,-16],[-32,-22],[-55,51],[-64,41],[-52,3],[-21,-3],[-87,70],[-95,-1],[-203,1],[-1,0],[-45,4],[-5,-9]],[[2174,3408],[53,27],[11,10],[80,-51],[5,-40],[47,-35],[24,-41],[2,-28],[28,6],[10,15],[29,6],[-12,-22],[8,-72],[89,-11],[-3,-7],[-14,-10],[-24,-20]],[[1372,945],[-33,-33],[1,-47],[39,-41],[28,9],[51,11],[56,-40],[50,-72],[-2,-33],[-6,-48],[33,-75],[-33,-30],[0,-33],[9,-23],[-14,-18],[-18,-35],[39,-37],[3,-64],[31,-71],[-15,-21],[-5,-2],[-47,-22],[-1,-59],[12,-27],[70,-51],[-16,-50],[-17,-29]],[[1587,4],[-330,1],[-349,0],[-314,0],[-288,0],[-129,0],[-176,1],[0,252],[1,231],[0,381]],[[10724,2785],[228,-193],[32,-28],[89,-75],[168,-144],[30,-25],[69,-21],[19,-20],[122,-138],[2,-2]],[[4893,1877],[-9,-44],[-40,-70],[-57,-178],[-20,-60],[-81,-249],[-39,-2],[-30,-65],[6,-200],[6,-399],[1,-25],[3,-213],[-15,-60],[-89,-235],[-30,-66]],[[4499,11],[-77,0],[-33,0],[-170,0],[-373,0],[-399,-2],[-484,-3]],[[2963,6],[-3,87],[-16,35],[51,38],[-30,43],[68,93],[-4,67],[-41,20],[4,29],[-94,65],[49,165],[42,79],[50,91],[43,78],[44,83],[66,117],[7,12],[8,12],[9,16],[7,14]],[[3429,4775],[13,-36],[-5,-243],[-1,-43],[-8,-75],[1,-98],[0,-5]],[[3429,4275],[1,-258],[0,-4],[-1,-223],[-60,-88],[-35,-49],[-101,-145],[-125,-182],[-55,-80],[-143,-202],[-36,-50],[-62,-86]],[[1258,8733],[53,33],[93,57],[143,101],[64,31],[89,59],[75,13],[176,107],[41,16],[0,-411],[1,-248],[1,-313]],[[1994,8178],[395,0]],[[2389,8178],[0,-212],[-1,-116],[0,-42],[-2,-164]],[[2386,7644],[-179,5],[-213,-3],[-2,0],[-328,0],[-61,0],[-266,-2],[-63,0],[-156,-2],[-137,-1],[-158,-1],[-158,2],[-221,0],[-145,0],[-298,0]],[[1,7642],[0,207],[0,252],[261,116],[91,35],[54,27],[9,4],[43,12],[2,1],[120,59],[82,43],[71,57],[76,29],[120,78],[31,31],[49,125],[71,71],[58,12],[38,-61],[-145,-22],[-31,-34],[-34,-96],[35,12],[100,50],[59,76],[45,-25],[52,32]],[[14164,4555],[-7,-66],[36,-8]],[[13263,3929],[-67,141],[-48,86],[-102,182],[-47,81],[203,133],[-128,165],[-104,141],[-71,74],[-9,37],[-74,29],[-14,34]],[[12802,5032],[56,22],[0,32],[66,53],[6,34]],[[12930,5173],[6,6],[0,31],[57,22],[19,75],[28,29],[50,66],[60,-22],[30,48]],[[13565,5452],[136,11],[467,35],[-23,-120],[-47,-245],[208,-33],[100,-188],[27,-21],[43,5],[55,29]],[[14531,4925],[58,13],[-4,-38],[-110,-68],[-37,-97],[-45,-31],[-171,-96],[-58,-53]],[[12284,1557],[57,49],[5,4],[5,4],[35,29],[170,140],[122,90]],[[12678,1873],[54,3],[32,8],[94,-43],[16,-7],[67,20],[10,-40],[36,-87],[79,-42],[4,-11],[21,-41],[20,-16],[13,-75],[36,31],[33,-9],[-25,-62],[28,-32],[71,-1],[26,-35],[2,-59],[14,-33],[49,-15],[48,26],[71,-129],[68,41],[15,-25]],[[12946,421],[-106,-25],[-134,-69],[-88,-75],[-92,-124],[-51,-119],[-100,-2],[-79,0],[-316,-1],[-95,0],[-361,0]],[[12213,1497],[50,44],[21,16]],[[12985,426],[-35,-4]],[[8873,4753],[0,88]],[[8873,4841],[80,0],[23,12],[97,46],[26,2],[211,8],[47,218],[168,-34]],[[9525,5093],[13,-124],[28,-50],[3,-3],[54,-58],[3,-65],[-10,-80],[-8,-48],[-7,-43],[-4,-48],[-35,-93],[13,-50],[34,-82],[16,-37],[17,-31],[79,-85],[56,-26]],[[8315,3902],[-2,133],[-18,9]],[[8014,805],[44,101],[-53,70],[-55,48],[-59,115],[-1,21],[3,4],[-8,6],[-16,-1],[-1,1],[-12,30],[-3,46],[-25,10],[-3,71],[-44,40],[1,16],[-24,74],[-106,98],[-13,61],[-36,66],[33,36]],[[7636,1718],[25,-48],[94,96],[34,25],[52,0],[88,66],[9,5],[69,55],[108,101],[100,76],[64,32],[27,-20],[-113,-96],[-44,-57],[-5,-30],[50,4],[46,21],[148,106],[-5,-42],[20,-35],[17,-12],[95,30],[27,10],[108,18],[115,14],[138,27],[128,22],[182,13],[100,18],[97,37],[66,30]],[[13117,2609],[-79,-134],[-25,-42],[-98,-163],[-49,-83],[-8,-12],[-28,-47],[-16,-27],[-52,-87],[-84,-141]],[[11272,4774],[8,12],[0,68],[-1,234],[0,2],[-128,-24],[-30,73],[-29,71],[-19,48],[-28,72],[-2,107],[22,270]],[[11065,5707],[21,68],[50,170]],[[11136,5945],[80,3],[168,6],[79,3],[254,9],[53,2],[43,3],[54,2],[118,42],[14,4],[200,64],[12,4],[104,39],[0,1]],[[12315,6127],[8,-67],[4,-51],[92,-59],[91,-61],[49,-44],[38,-10],[9,-2],[97,-22],[-6,-185],[26,2],[5,-85],[65,-23],[7,-172],[4,-83],[15,-40],[32,-24],[40,11],[39,-39]],[[12802,5032],[-47,42],[-39,-6],[-47,-16],[-44,-35],[-41,-54],[-39,3],[-53,-39],[-7,-87],[0,-11],[-1,-38],[1,-18],[36,-66],[36,0],[28,-84],[-141,-69],[-42,-22],[-47,-3],[-79,-37],[-38,-39],[-64,-32],[-286,-140]],[[11334,4413],[-36,197]],[[11298,4610],[-26,164]],[[9742,6711],[91,-12],[222,-25],[44,-5],[322,-36],[189,-21],[36,-4],[291,-31],[110,-12],[255,-29]],[[11302,6536],[-21,-108],[-38,-126],[-107,-357]],[[11065,5707],[-257,-7],[-47,-53],[-57,-64]],[[10704,5583],[-205,49],[-104,35],[-72,18],[-31,28],[-235,209],[-12,10],[-135,117],[-60,237]],[[9850,6286],[-108,425]],[[12315,6127],[160,274],[-26,33],[-49,38],[33,64],[12,22],[15,27],[26,47],[-1,3],[10,60],[97,180],[25,23]],[[2389,8178],[263,-2],[51,0],[256,0],[285,1],[279,3],[334,-1],[239,-2],[112,-2]],[[4110,6832],[0,-2]],[[4110,6830],[-356,11],[-298,0],[-14,0],[-45,-1],[-170,-1],[-289,1],[-1,0],[-239,-5],[-49,0]],[[2384,6832],[1,253],[-1,39],[1,250],[0,39],[1,231]],[[8873,4841],[-53,-1],[-26,34],[-16,22],[-187,245],[-1,2],[-46,61],[-21,37],[-41,22],[6,31],[-61,64],[-18,21],[-61,6],[-15,30],[-54,13],[-76,74],[-73,87],[-40,31],[-38,67],[-42,46],[-8,72],[-64,59],[-77,21],[-28,29],[-5,48],[-47,93],[-32,31],[-33,88],[-34,2],[-2,135]],[[9581,6735],[161,-24]],[[10704,5583],[-35,-39],[-251,-282],[-95,-102],[-23,-2],[-104,-6]],[[10196,5152],[-100,-5],[-41,19],[-100,45]],[[9955,5211],[-153,12],[-237,-62],[-23,-26],[-17,-42]],[[9444,8188],[253,0],[219,0],[287,-3],[212,-3],[67,-1],[23,0],[131,-3],[242,-1],[308,0],[312,1]],[[11578,6932],[-121,-8],[-11,-1],[-86,-5],[-7,-54],[-34,-223],[-17,-105]],[[2,6348],[-1,226],[0,95],[0,296],[0,347],[0,330]],[[8045,1],[-553,2],[-317,3],[-540,3],[-272,0]],[[6363,9],[78,93],[17,42],[85,136],[73,103],[66,146],[55,174],[2,40],[32,49],[16,30],[14,85],[33,72],[-3,28],[83,142],[34,52],[32,25]],[[7404,1951],[82,94]],[[7486,2045],[41,-69],[29,-113],[-12,-46],[26,-31],[62,54],[30,-28],[0,-67],[-26,-27]],[[4209,5829],[148,-90],[125,-76],[209,-126],[-10,-32],[2,-84],[74,-1],[0,-102]],[[4507,4256],[-241,4],[-18,1],[-136,5],[-92,1],[-68,1],[-226,3],[-62,2],[-235,2]],[[3446,5784],[43,-27],[14,47],[102,-20],[22,35],[74,-59],[18,59],[26,-3]],[[3745,5816],[37,43],[76,-6],[40,24],[87,5],[29,34],[48,25],[39,-15],[1,-33],[107,-64]],[[9955,5211],[4,-66],[-13,-57],[5,-49],[-3,-119],[-36,-104],[-62,-164],[-5,-58],[-49,-192],[155,28],[177,46],[38,-20],[53,7],[50,-44],[25,-29],[29,-10],[89,-5],[4,-2],[-29,-83],[43,-115],[63,-3]],[[10493,4172],[63,-15],[-15,-26],[30,-62],[-26,-26],[16,-67],[30,-10],[140,27],[68,3],[38,-83],[44,-125]],[[9385,3259],[25,37]],[[14470,1500],[-114,-115],[-64,-82],[-20,-28],[-17,-22],[24,-19],[-58,-64],[-176,139],[-31,-43],[-93,73],[-75,-99],[-32,-41],[85,-93],[69,-59],[-186,-124]],[[4103,6162],[0,56],[1,261],[6,351]],[[5522,6754],[2,-209],[-5,-103],[0,-395],[437,-1],[0,-292],[51,0],[-6,-334]],[[3745,5816],[4,275],[0,21],[75,0],[4,108],[228,-5],[0,-54],[47,1]],[[8495,3494],[-191,-85],[-123,-63],[-162,-99],[-75,-55],[0,-45],[0,-54],[-92,-80],[-89,-64],[-118,-96],[-3,-3],[0,-83],[-57,-49],[-73,-78],[-157,-169],[-80,-107]],[[9385,3259],[-18,-1],[-115,-61],[-61,-23],[-106,-17],[-29,-5],[-85,-20],[-148,-21],[-52,-17],[34,-69],[0,-1],[-7,-18],[-68,-19],[-87,-50],[-98,-45],[-129,-75],[-53,-34],[-174,-109],[-103,-63],[-149,-97],[-105,-76],[21,-84],[-88,-31],[-39,-31],[-34,-27],[-103,-93],[-103,-127]],[[6378,5372],[105,204],[170,336],[0,290],[-1,95]],[[10493,4172],[8,120],[12,38],[-24,49],[45,21],[-6,38],[-38,59],[-58,58]],[[10432,4555],[-37,38],[6,131],[-18,62],[-129,36],[9,56],[-16,44],[-51,230]],[[5947,2074],[-81,-195],[-49,17],[-45,33],[-103,54],[-27,14],[-160,93],[-22,-94],[-14,-114],[-151,153],[-123,51],[-179,93]],[[2963,6],[-347,-2],[-511,0],[-518,0]],[[15060,5752],[-14,-17],[8,-27],[-77,-60],[-44,-63],[-27,-90],[-21,-8],[-27,-76],[21,-26],[-61,-143],[-45,-52],[-15,-38],[-47,-63],[-57,-32],[-51,-54],[-47,-21],[-25,-57]],[[14326,6752],[60,-66],[17,-48],[34,-22],[23,-43],[-16,-43],[55,-56],[11,-60],[40,-3],[-3,-74],[52,-32],[53,22],[34,-3],[62,-35],[6,-41],[31,-10],[17,-72],[79,22],[79,-49],[33,38],[39,-12],[28,-59],[52,17],[32,-11],[46,29],[16,-31],[-16,-40],[13,-47],[59,-31],[20,-45],[39,-35],[-12,-35],[-66,-37],[-85,-5],[-46,-73],[-52,-10]],[[5770,250],[66,126],[24,68],[56,203],[82,205],[48,129],[40,63],[-3,83],[17,43],[30,4],[16,43],[-55,36],[-11,62],[48,55],[79,74],[62,154]],[[6363,9],[-203,0],[-277,1],[-260,0]],[[5623,10],[89,127],[58,113]],[[5623,10],[-297,0],[-433,1],[-221,0],[-173,0]],[[14578,1178],[-101,-98],[-58,-20],[-50,-38],[-29,-67],[-30,-28],[-70,-21],[-73,-49],[-15,-41],[2,-72],[19,-55],[-25,-79],[-30,-22],[-107,-11],[-58,-49]]],"transform":{"scale":[0.00038043794431113457,0.00027869180878882006],"translate":[-80.5198187447909,39.7198299495823]},"objects":{"cb_2019_42_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[4,5,6,7,8,9]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[10,11,12,13,14,15,16]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[17,18,19,20,21,22,23]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[24,25,26,27,28,29,30,31]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[32,33,34,-3,35,36]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[37,38,-28,39,40,41,42,43]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[44,45,46,47,48,49,50,51]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[52,53,-36,-2,54,55,56,57]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[58,59,60,61,62,63,64,65,66]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[67,68,-57,69,70,71]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-27,72,73,74,75,-40]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[-74,76,77,78]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[79,80,81,82,83,84,-38,-44,85,86]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[87,88,89,90,91]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[92,93,94,95,-70,-56,96]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[97,98,99,100,-61,101,102,103]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-6,104,105,106,107]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[108,109,110,-34,111,112,113]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[114,-83,115,-18,-24,116,117,118]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[119,120,121,122,123,124]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[125,126,127,128,129]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-46,130,-59,-67,131,132,133]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[134,135,136,-117,-23,137]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-93,-97,-55,-1,138,139]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[140,-128,141,142,143,-122]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-37,-54,144,-112,-33]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[145,146,-100,147,148,-113,-145,149]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[-110,150,151]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-29,-39,-85,152]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[-98,-104,153,154,155,-148,-99]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-69,156,157,-146,-150,-53,-58]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[158,159,160,161,162]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[163,-21,-20,164,165,166,-107,167,168]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[169,170,-14,171,-25,-32,172]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-133,174,175,176,-91,177]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[-41,-76,-75,-79,178,179]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-30,-153,-84,-115,-119,180,-170,-173,-31]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[181,182,183,184,-166,185,-81,186,187]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[188,189,-183,190,191,192]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[-108,-167,-185,193,-7]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-161,194,-120,-125,195,196,-95,197]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[-176,198,-142,-127,199,-193,-192,200,201,202]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-116,-82,-186,-165,-19]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-189,-200,-126,-130,203,-9,204]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-162,-198,-94,-140,205]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-179,-78,206,207,-49,208,209]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[210,-63,211,-157,-68,-72,212,213]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-88,-92,-177,-203,214,215,-86,-43,216]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[-171,-181,-118,-137,217,-15]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[218,-196,-124,219,-64,-211,-214,220]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-134,-178,-90,221,-47]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-89,-217,222,-209,-48,-222]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-132,-66,223,-143,-199,-175]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-80,-87,-216,224,225,-201,-191,-182,-188,-187]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-45,-52,226,-102,-60,-131]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-202,-226,-225,-215]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-151,-109,-114,-149,-156,227]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-212,-62,-101,-147,-158]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-194,-184,-190,-205,-8]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-144,-224,-65,-220,-123]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[228,-168,-106,229]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[-223,-42,-180,-210]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[230,-50,-208,231,232]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-227,-51,-231,-233,233,-154,-103]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-197,-219,-221,-213,-71,-96]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[-16,-218,-136,234]],"type":"Polygon","properties":{"COUNTYFP":"101"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/pr.topo.json b/app/assets/topojson/states/pr.topo.json new file mode 100755 index 00000000..22e67b52 --- /dev/null +++ b/app/assets/topojson/states/pr.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[9287,1924],[46,-1],[106,41],[21,37],[154,-15],[6,6]],[[9620,1992],[76,-27],[21,-107],[65,-81],[-26,-86],[-23,-95],[-24,-24],[25,-88],[-22,-136]],[[9712,1348],[-59,20],[-97,-25],[-108,32],[-85,25],[-55,46],[-55,-5],[-3,-72],[-33,-28],[-69,28],[-18,55],[-58,94],[30,59],[-16,132],[38,115]],[[9124,1824],[55,26],[68,63],[40,11]],[[9394,709],[-107,11],[-152,-49],[-125,-55]],[[9010,616],[-12,117],[59,48],[-53,164]],[[9004,945],[-11,59],[32,67],[-43,71],[-7,116],[-33,50],[-20,81],[28,52],[-34,67],[-8,70],[-38,-3],[-24,98],[20,101],[60,51]],[[8926,1825],[36,7]],[[8962,1832],[19,-37],[60,31],[83,-2]],[[9712,1348],[1,-38],[-9,-88],[38,-91],[-9,-51]],[[9733,1080],[7,-79],[31,-80],[-43,-66],[-50,-36],[-27,-63],[-77,-88]],[[9574,668],[-83,60],[-97,-19]],[[8692,576],[-67,0],[-48,-1],[-35,-38],[-34,102],[-61,33],[-67,-6],[-75,-17],[-88,-72],[-61,-11],[-50,45],[-118,26]],[[7988,637],[79,95],[-21,83],[23,84],[-19,94],[0,1],[0,70],[25,48],[-6,53],[36,98],[3,51],[23,93],[-16,95],[-33,76],[-62,100]],[[8020,1678],[110,-3],[30,107],[11,48]],[[8171,1830],[135,41]],[[8306,1871],[114,-62],[4,5],[45,41],[72,18],[90,74],[45,14],[1,1],[108,-27],[96,-98],[45,-12]],[[9010,616],[-57,1],[-62,-40],[-162,-46],[-37,45]],[[14034,2611],[111,-48],[59,-52],[53,-4],[30,38],[136,-16],[73,-14],[-43,-96],[11,-38],[75,-48],[44,-25],[83,-4],[-43,-55],[22,-36],[-7,-34]],[[14638,2179],[-134,-59],[-39,-15],[-37,-98],[-79,28],[-34,38],[-78,-7],[-56,-39],[-37,-56]],[[14144,1971],[-14,60],[-84,-34],[-74,32],[35,92],[-35,20],[-71,8],[-91,32],[-55,-12],[-126,20],[-42,-35]],[[13587,2154],[-30,124],[12,79],[49,112],[36,108],[-55,71]],[[13599,2648],[82,117],[70,-2],[46,45],[54,-17],[68,-84],[48,-11]],[[13967,2696],[67,-85]],[[4920,3556],[111,63]],[[5031,3619],[29,-117],[29,-34],[68,-35],[53,7]],[[5210,3440],[38,-123],[-11,-35],[0,-83],[-41,-50],[22,-78],[-20,-31],[26,-86]],[[5224,2954],[-5,-3],[-50,4],[-33,31],[-88,-23],[-47,-27],[-5,1],[-52,18],[-58,-34]],[[4886,2921],[-71,76],[-45,53],[-19,15],[-34,11],[-69,46],[-44,58],[15,30],[-2,1],[-95,139]],[[4522,3350],[98,27],[67,31],[122,54],[20,30],[91,64]],[[5682,3981],[14,-54]],[[5696,3927],[-113,-28],[-18,-73],[-67,-32],[4,-17],[-74,-9],[-88,-96],[-51,-56],[-29,-50]],[[5260,3566],[5,-27],[-54,-98],[-1,-1]],[[5031,3619],[12,10],[19,50],[-11,110],[-4,8],[-26,89],[-45,60],[-6,78],[41,98],[51,11],[49,65],[120,66],[106,16],[58,7]],[[5395,4287],[5,-7],[44,-17],[70,-87],[12,-46],[127,-43],[30,-30],[-1,-76]],[[12964,1031],[72,-14],[37,13],[113,-34],[48,-65],[14,-1],[92,35],[91,-100]],[[13431,865],[-45,-40],[-75,11],[-40,-31],[-65,-94],[-70,12],[-103,-80]],[[13033,643],[-21,43],[-67,9],[-76,41],[-33,4],[-36,81],[-23,10],[-2,91],[-46,60],[-78,-26],[-23,58],[-41,13],[-42,164]],[[12545,1191],[53,16],[51,-57],[53,13],[75,-68],[24,6],[46,-33],[49,-28],[68,-9]],[[11565,2136],[70,28],[81,55]],[[11716,2219],[54,-61],[49,-122],[-22,-78],[64,-17]],[[11861,1941],[-31,-107],[-114,-98],[-76,-3],[-14,-41],[-40,12],[-8,21],[-109,28],[-79,-55],[-48,8],[-25,48],[-47,-31],[-44,23],[-64,1],[-82,18]],[[11080,1765],[-26,37],[-31,5],[14,111],[-88,86],[-34,13]],[[10915,2017],[14,31]],[[10929,2048],[63,-3],[48,-58],[60,-21],[5,34],[26,108],[55,24],[44,20],[52,5],[7,43],[60,55],[38,62]],[[11387,2317],[44,-26],[75,20],[28,47],[10,-43],[-12,-40],[46,-87],[-13,-52]],[[10139,2156],[-25,-45],[18,-49],[-58,-19],[0,-71]],[[10074,1972],[-98,-8],[-21,-42],[-86,-6],[-51,-14],[-143,82],[-50,7],[-5,1]],[[8962,1832],[26,68]],[[8988,1900],[62,-28],[70,19],[69,41],[5,70],[-22,97],[21,40],[-7,82],[-36,133],[57,1],[13,45],[-33,43],[70,91],[27,-27],[62,3],[78,-21],[55,-25],[77,39],[-7,41]],[[9549,2544],[88,10],[27,-20],[60,31],[104,15],[142,76],[39,113],[40,22]],[[10049,2791],[-31,-134],[24,2],[94,-104],[45,-93],[41,-30]],[[10222,2432],[2,-94],[-2,-139],[-34,-101],[-49,58]],[[10929,2048],[-9,50],[-56,-14],[-31,-44],[-52,9],[-3,78],[-3,63],[-37,93],[19,56],[5,120]],[[10762,2459],[60,15],[60,6],[64,39],[66,4],[4,54],[50,80],[83,16]],[[11149,2673],[4,-7],[79,-51],[17,-63]],[[11249,2552],[81,-102],[-3,-3],[13,-90],[47,-40]],[[12620,573],[-31,-2],[-78,74],[-68,0],[-76,9],[-21,-11]],[[12346,643],[-44,98],[-132,111],[30,50],[-2,38],[-35,92],[-20,9],[-7,2],[-32,22],[-130,-24],[-30,-27]],[[11944,1014],[-33,70],[4,45],[-17,44],[53,52],[0,69],[82,32],[53,81],[-3,55],[48,58]],[[12131,1520],[8,18]],[[12139,1538],[63,-41],[89,-16],[38,11],[60,-46],[-34,-102],[51,-40]],[[12406,1304],[-3,-52],[48,-40],[75,-13],[19,-8]],[[13033,643],[-51,-20],[-86,2],[-29,-25],[-140,-3],[-61,15],[-46,-39]],[[10041,407],[-50,-44],[-86,76],[-113,77],[-75,10],[-61,81],[-82,61]],[[9733,1080],[204,-38],[14,11],[79,-8],[57,-33],[96,29],[57,-76],[77,-20],[30,-47]],[[10347,898],[-70,-187],[26,-82]],[[10303,629],[-84,-53],[-178,-169]],[[7131,3945],[43,-61],[0,-82],[-18,-47],[43,-129],[7,-15],[45,-165],[11,-38],[-43,-218],[-33,-65]],[[7186,3125],[-248,88],[-90,5],[-34,54],[-72,17]],[[6742,3289],[-35,-7]],[[6707,3282],[-11,110],[1,155],[0,11],[-4,194],[2,72],[-3,92],[-1,59],[0,111]],[[6691,4086],[124,32],[93,18],[85,-3],[39,-5],[74,-16]],[[7106,4112],[5,-10],[-11,-41],[54,-69],[-23,-47]],[[5905,4257],[24,11],[145,-55],[100,-61],[158,-27]],[[6332,4125],[11,-90],[-46,-22],[6,-15],[17,-38],[-29,-70],[35,-102],[68,-19],[21,-48],[16,-59],[54,-22],[-92,-89],[33,-42],[110,-11],[22,-32]],[[6558,3466],[-83,-33],[-21,-81],[-47,-8],[-111,61],[-71,14],[-66,-8],[-60,25],[-79,37],[-136,-6]],[[5884,3467],[-117,266],[-35,80],[-21,58],[-15,56]],[[5395,4287],[87,13],[150,-17],[97,12],[176,-38]],[[13441,3746],[106,-28],[25,-44]],[[13572,3674],[-99,-123],[-56,-27],[1,-6],[-48,-116],[-49,-38]],[[13321,3364],[-58,3],[42,206],[-192,33],[-63,-87],[-61,14]],[[12989,3533],[-5,56],[-69,79],[3,38],[-152,59],[-84,-32],[-24,54],[-63,13],[-33,18],[-3,65],[-45,26]],[[12514,3909],[81,14],[123,-48],[146,-38],[145,-17],[78,55],[169,-95],[31,-10],[154,-24]],[[12447,2053],[36,66],[3,80]],[[12486,2199],[24,11],[27,75],[60,44],[98,22],[43,-3],[47,3]],[[12785,2351],[1,-100],[25,-38],[75,-75],[30,-3],[21,-138],[-16,-90],[10,-145]],[[12931,1762],[25,-49],[-15,-79],[3,-28]],[[12944,1606],[5,-99],[-28,-52],[-84,-58],[-46,26],[-76,-44],[-106,56],[-26,-33],[-77,-10],[-26,-30],[-40,-55],[-34,-3]],[[12139,1538],[-5,21]],[[12134,1559],[64,8],[47,37],[24,87],[77,89],[-22,55],[5,82],[34,73],[36,66],[48,-3]],[[5884,3467],[-61,-97],[-7,-9],[-37,-160],[-25,-23],[27,-49],[42,-70],[-3,-48],[-55,-78],[-44,-56]],[[5721,2877],[-108,39],[-12,2],[-97,19],[-139,31],[-53,23],[-47,-10],[-41,-27]],[[4360,3167],[-44,88],[68,60],[101,22],[37,13]],[[4886,2921],[-2,-14],[-86,-23],[-44,5],[-108,-17],[-33,-61]],[[4613,2811],[-71,31],[-29,57],[-35,67],[-51,125],[-67,76]],[[12245,3306],[64,69],[54,-10],[111,12]],[[12474,3377],[52,-21],[12,-76],[48,-50],[96,-127],[1,-68],[92,-93],[80,-35],[-14,-120]],[[12841,2787],[-73,7],[-60,37],[-32,70],[-102,5],[-85,-33],[-35,10],[-43,-16],[-45,24],[-34,-25]],[[12332,2866],[-20,27],[-107,23]],[[12205,2916],[39,51],[11,105],[-17,88],[25,51],[-20,87],[2,8]],[[10726,3403],[-96,8],[-106,-7]],[[10524,3404],[-1,183],[22,98],[-10,57],[-65,38],[-34,80],[17,175]],[[10453,4035],[101,4],[80,-34],[109,53],[88,-33],[90,-40],[139,-23],[135,2]],[[11195,3964],[-100,-9],[-106,-76],[-153,3],[-19,6],[2,-163],[-33,-16],[34,-86],[-16,-41],[17,-86],[31,-23]],[[10852,3473],[-47,-48],[-75,-23],[-4,1]],[[7648,803],[-61,-25]],[[7587,778],[-21,51],[-35,0],[-24,-25],[-70,-42],[3,-28],[2,-17],[4,-61],[-23,-56],[-130,-41],[-94,-80],[-124,-31],[-71,35]],[[7004,483],[102,75],[9,152],[24,60],[35,18],[-23,129],[50,17],[24,57],[-22,21],[-19,95],[3,8],[35,59],[18,102],[14,25],[73,108],[-20,21],[-4,67],[-26,30],[-5,33],[93,57],[-17,76],[9,5]],[[7357,1698],[52,6],[55,11],[75,-6]],[[7539,1709],[2,-51],[50,-108],[-31,-34],[0,-54],[-8,-14],[-4,-24],[12,-75],[-20,-79],[1,-98],[5,-48],[19,-69],[36,88],[82,-48],[66,-9],[-34,-88],[56,-89],[-102,-46],[-21,-60]],[[5430,1870],[-97,9],[-29,-13],[-54,2],[-77,-34],[-35,15],[-104,-16]],[[5034,1833],[-131,104]],[[4903,1937],[121,144],[33,37],[8,92],[-55,69],[-63,54],[-3,93],[-29,81],[-70,98]],[[4845,2605],[98,8],[75,29],[95,-3],[80,-54],[-4,-83],[14,-39],[94,17],[70,25],[105,-15],[60,35]],[[5532,2525],[94,-58],[74,-7],[35,-122],[93,-54],[19,-10],[-1,-66],[91,-28],[-6,-60]],[[5931,2120],[16,-38],[-45,-35],[-65,6],[-76,-63],[-31,8],[-2,-23]],[[5728,1975],[0,-1],[-135,-7],[-29,-26],[-55,-42],[-4,-89]],[[5505,1810],[-18,8],[-57,52]],[[2930,3407],[57,33],[36,-44],[-33,-36],[-60,47]],[[0,1366],[45,37],[30,157],[126,42],[166,-44],[73,10],[91,54],[84,-80],[32,-98],[-3,-77],[-59,-37],[-97,-124],[-87,-43],[-94,-10],[-49,42],[-131,48],[-127,123]],[[11406,1131],[67,-46],[97,-39],[77,13],[21,82],[34,74],[-6,50],[-43,113],[-9,16],[44,34],[60,-14],[24,49],[53,48],[95,-4],[112,-24],[99,37]],[[11944,1014],[-83,-74],[44,-48],[29,-14],[16,-58],[62,-73],[-2,-45],[13,-144]],[[12023,558],[-75,7],[-104,-61],[-92,-59],[-118,-20],[-88,-64],[-61,-47],[-146,41],[-99,10],[-63,-80],[-107,-72]],[[11070,213],[-43,64],[44,71],[-27,48],[24,38],[81,39],[2,199],[1,198],[35,49],[130,46],[89,166]],[[5201,1672],[-18,23],[-149,138]],[[5505,1810],[9,-26],[-58,-25],[12,-116],[80,-57],[-9,-70],[-125,-2]],[[5414,1514],[-49,0],[-116,60],[-59,63],[11,35]],[[13587,2154],[-13,-90],[-55,-81],[-59,21],[-69,-31],[-3,-62],[-32,-60],[-4,-104],[-69,-79],[-27,-74]],[[13256,1594],[-110,41],[-83,13],[-43,-25],[-76,-17]],[[12931,1762],[76,123],[38,94],[1,1],[23,34],[69,153],[54,-27],[32,66],[50,54],[60,85],[48,93],[39,40],[-4,47]],[[13417,2525],[81,73],[23,65]],[[13521,2663],[78,-15]],[[5480,1205],[-121,-33]],[[5359,1172],[67,104],[-1,1],[-44,16],[2,94],[8,75],[30,48],[-7,4]],[[5728,1975],[69,-38],[106,-20],[67,2],[73,-62],[18,3],[38,-30],[101,-61]],[[6200,1769],[8,-4],[31,-31],[6,-75],[-54,-44],[-31,-97],[4,-127],[19,-65],[-18,-179]],[[6165,1147],[-65,0],[-82,41],[-123,17],[-69,-22],[-20,13],[-37,15],[-103,16],[-28,-1],[-29,8],[-95,-42],[-34,13]],[[12205,2916],[-40,-37],[-4,-63],[-30,42],[-60,-5],[-24,2]],[[12047,2855],[-44,-38],[-48,-4]],[[11955,2813],[-17,53],[-36,116],[13,75],[-61,33],[-12,80],[24,36],[39,15],[-10,62],[-3,58],[-102,53],[2,27],[-17,83],[76,12],[-17,128],[-54,56],[-3,77]],[[11777,3777],[0,25],[-65,84],[-36,42],[-35,31]],[[11641,3959],[1,48],[203,-41],[58,10],[40,-34],[71,-36],[223,-51]],[[12237,3855],[-41,-42],[66,-51],[19,-60],[56,-49],[40,-20],[140,-72],[9,-52],[0,-7],[-73,-25],[21,-100]],[[8306,1871],[-13,139],[-5,22],[65,5],[2,66],[33,100],[53,46],[10,107],[-20,31],[29,6],[3,77],[34,17],[83,-74],[60,150],[-25,29],[39,83],[-22,34],[117,19],[89,94]],[[8838,2822],[36,-38],[-13,-40],[53,-37],[-19,-45],[-16,-88],[14,-60],[-42,-71],[60,-38],[16,-46],[24,-68],[65,-43],[15,-54],[24,-39],[-26,-81],[37,-58],[-67,-76],[-11,-40]],[[6667,2965],[-31,-115],[0,-51],[-4,-115],[11,-77],[12,-28],[-8,-18],[5,-48],[1,0]],[[6653,2513],[-8,-7],[-27,15],[-35,11],[-7,22],[-21,-11],[-50,7],[-2,-33],[-73,45],[2,43],[-21,34],[-131,-6],[-45,13],[-17,13],[-101,15],[-103,16],[-82,0],[-60,-2],[-62,30],[5,44]],[[5815,2762],[-15,23],[-3,49],[-76,43]],[[6558,3466],[-9,-34],[43,-75],[71,-68],[44,-7]],[[6742,3289],[9,-13],[-82,-297],[-2,-14]],[[9977,3194],[19,-58],[57,-3]],[[10053,3133],[76,-75]],[[10129,3058],[-2,-8],[-19,-70],[-25,-81],[-34,-108]],[[9549,2544],[-41,97],[-3,88],[18,71],[3,5],[21,58],[9,58],[2,133],[-45,79],[-18,35],[6,150]],[[9501,3318],[124,-3]],[[9625,3315],[100,-2],[26,35],[53,-19],[96,-63],[34,55],[43,-127]],[[8695,4012],[58,-37],[-19,-179],[-32,-27],[29,1],[-13,-123],[-36,-62],[-16,-76],[33,-69]],[[8699,3440],[0,-103],[38,0],[-5,-75],[-49,-171]],[[8683,3091],[-61,10],[-43,-77]],[[8579,3024],[-77,24],[-101,-44],[-113,21],[-25,-38],[-41,-19],[-58,31],[-73,-25],[-82,8],[-100,-44],[-38,1],[-34,109],[-5,55],[-45,66],[-223,-118],[-31,-49]],[[7533,3002],[6,327],[12,130],[-3,18],[-15,89],[13,111],[-14,66],[13,87],[-6,153],[26,100]],[[7565,4083],[137,-54],[87,-10],[48,14],[66,-23],[66,14],[29,52],[74,-11],[75,59],[35,-14],[151,7],[26,25],[94,6],[104,-14],[152,-42]],[[8709,4092],[-14,-80]],[[5815,2762],[-15,-120],[-74,-25],[-64,11],[-36,-75],[-31,-30],[-63,2]],[[4845,2605],[0,38],[-7,71],[-59,62],[-166,35]],[[11023,1530],[8,10],[-14,44],[41,28],[11,85],[11,24],[0,44]],[[11861,1941],[95,-116],[58,-15],[31,-9],[-20,-75],[60,-129],[49,-38]],[[11406,1131],[-9,11],[-67,12],[-133,-40],[-40,22],[22,49],[-29,65],[-16,22],[-47,60],[-16,88],[-39,19]],[[11032,1439],[-9,91]],[[11070,213],[-38,-19],[-105,3],[-87,52],[41,69],[-105,94],[-88,25],[-66,-29],[-72,83],[-68,83],[-32,69],[-147,-14]],[[10347,898],[103,94],[14,100],[97,85],[84,19],[35,63],[74,4],[66,43]],[[10820,1306],[98,9],[14,109],[100,15]],[[13256,1594],[78,-68],[33,51],[59,18],[57,-43],[4,-12],[-41,-75],[46,-34],[74,-65],[97,-19],[36,-71],[75,-11]],[[13774,1265],[-35,-82],[-42,-4],[-60,38],[-70,-68],[-29,-63],[21,-89],[0,-72],[-30,-49],[-61,20],[-37,-31]],[[7186,3125],[-13,-134]],[[7173,2991],[-6,-64],[15,-124],[-32,-57],[-5,-66],[22,-33],[11,-41],[-12,-155],[62,-59],[2,-34]],[[7230,2358],[-37,13],[-65,-29],[22,-55],[-35,-68],[5,-56],[-11,-110],[73,-80],[-16,-18]],[[7166,1955],[-61,-4]],[[7105,1951],[-90,-2],[-72,36],[-11,60],[-45,19],[-174,4]],[[6713,2068],[-44,139],[-52,169],[8,26],[28,111]],[[12486,2199],[-13,77],[-71,19],[-17,44],[35,42],[-9,50],[-29,161],[34,49],[4,33],[-13,13],[-123,71],[13,102],[35,6]],[[12841,2787],[20,-45],[90,-78],[43,-35]],[[12994,2629],[-57,-13],[-45,-42],[-41,-81],[-35,15],[30,-137],[-61,-20]],[[6165,1147],[4,-77],[142,-32],[12,-27]],[[6323,1011],[-9,-132],[-2,-38],[-4,-46],[-6,-62],[-124,-271]],[[6178,462],[-19,100],[-36,18],[-67,-18],[-28,-39],[-78,47],[-115,32],[-51,-23],[-82,25],[-107,-16],[-73,-80],[-38,-51],[-76,-35],[-55,-5]],[[5353,417],[17,127],[32,75],[-44,20],[-6,259],[-23,90],[18,71],[-21,46],[33,67]],[[14366,2896],[4,78],[54,28],[73,-8],[-1,3],[40,126],[-8,28],[63,111]],[[14591,3262],[84,10],[69,91],[59,-54],[57,43],[23,73],[60,-20],[-30,-115],[-87,-140],[9,-41],[30,-86],[-11,-111],[29,-50],[-49,-99],[6,-32]],[[14840,2731],[-89,-23],[-61,6],[-80,36],[-54,-31],[-39,-58],[-90,73],[-41,-49],[-9,-51],[-94,-22],[-97,49],[-82,111],[-52,38]],[[14052,2810],[65,18],[59,-61],[88,38],[9,72],[93,19]],[[14144,1971],[-21,-65],[-85,-40],[-59,-48],[-14,-49],[-56,-75],[-30,-88],[-12,-61],[-44,-88],[0,-54],[-38,-20],[-11,-118]],[[8103,2167],[-23,-56],[19,-40],[110,-87],[-74,-133],[36,-21]],[[8020,1678],[-27,1],[-124,-16],[-48,-78],[-43,-33],[-49,38],[-45,-12],[-55,30],[-11,34],[-79,67]],[[7357,1698],[-38,47],[-4,53],[-83,17],[-60,65],[-6,75]],[[7230,2358],[88,-20],[31,18],[-10,83],[38,52],[109,-18],[23,-41],[58,-24],[26,-81],[125,-29],[58,29],[57,-30],[46,-1],[103,-36],[48,-1],[73,-84],[0,-8]],[[11579,2688],[118,17],[78,-24],[57,25],[85,24],[38,83]],[[12047,2855],[-55,-244],[-17,-121],[-10,-13],[-37,-36],[-37,-103],[-66,-61],[-109,-58]],[[11249,2552],[31,53],[84,79],[101,32],[84,-23]],[[11549,2693],[30,-5]],[[10650,3130],[-16,14],[-29,68],[-82,73],[-56,-15],[-40,21]],[[10427,3291],[30,91],[67,22]],[[10852,3473],[49,5],[49,29],[30,12],[228,-79]],[[11208,3440],[-5,-86],[-12,-150],[1,-101],[-29,-163],[-5,1]],[[11158,2941],[-79,124],[-96,-69],[-37,60],[-76,-45],[-58,38],[-84,-22],[-40,9]],[[10688,3036],[-38,94]],[[11483,3884],[84,71],[38,-8]],[[11605,3947],[-52,-19],[-38,-71],[-64,-4],[-67,-129]],[[11384,3724],[-20,-68],[-81,3],[-76,-40],[1,-179]],[[11195,3964],[83,26],[31,-70],[65,-47],[109,11]],[[12047,542],[-24,16]],[[12346,643],[-62,-46],[-38,-71],[-77,-58],[-76,46],[-46,28]],[[12994,2629],[55,-37],[133,-20],[56,-35],[41,-27],[77,25],[61,-10]],[[6200,1769],[48,-13],[79,26],[203,38]],[[6530,1820],[12,-59],[43,-64],[39,-137],[-52,-69],[25,-48],[44,-211],[32,-34],[25,-83],[-5,-54],[87,-39],[18,-63]],[[6798,959],[-66,-11],[-65,22],[-37,-18],[-75,23],[-103,19],[-54,23],[-75,-6]],[[10704,1965],[105,-12],[49,-38],[57,102]],[[10820,1306],[-36,67],[-63,6],[-141,132],[-102,83],[-65,54],[19,31],[32,39],[-23,42],[11,65]],[[10452,1825],[37,51],[58,7],[57,58],[100,24]],[[9036,3471],[-47,78]],[[8989,3549],[9,94],[96,56],[-7,89],[-63,-31],[-1,120],[3,23],[45,90],[-22,85]],[[9049,4075],[37,15],[94,-39],[142,-27],[159,-42],[108,14],[68,100]],[[9657,4096],[-4,-160],[-3,-75],[-3,-147],[6,-131],[-13,-47],[-3,-9],[-45,-101],[33,-111]],[[9501,3318],[-131,-37],[-72,3],[-109,-30],[-44,-34],[-96,-39]],[[9049,3181],[14,91],[3,146],[-30,53]],[[10301,3292],[-31,-67],[-45,24],[-32,-11],[41,-65],[-50,-35],[-4,-62],[-51,-18]],[[10053,3133],[5,41],[42,214],[35,55],[9,38],[26,175],[48,65],[-12,-1],[31,117],[-6,200],[-2,46]],[[10229,4083],[58,-15],[29,31],[85,-55],[52,-9]],[[10427,3291],[-126,1]],[[9657,4096],[138,20],[82,1],[56,22],[86,-51],[22,17],[188,-22]],[[7004,483],[-44,-4]],[[6960,479],[-25,75],[-4,151],[5,71],[-37,62],[-96,85],[-5,36]],[[6530,1820],[36,14],[34,6],[75,-54],[33,5],[57,36],[72,-37],[54,-54],[67,-6],[8,-1],[15,9],[39,161],[33,-6],[52,58]],[[8552,2984],[27,40]],[[8683,3091],[47,7],[202,15],[78,21],[39,47]],[[8838,2822],[-41,71],[-79,93],[-56,13],[-110,-15]],[[8989,3549],[-65,43],[-72,11],[-68,-47],[-25,-78],[-60,-38]],[[8709,4092],[119,10],[38,26],[183,-53]],[[14297,3369],[20,-25],[129,-53],[49,10],[96,-39]],[[14052,2810],[-34,-42]],[[14018,2768],[5,48],[-29,56],[30,86],[60,48],[-44,19],[12,90],[-96,99],[-13,66],[62,83],[76,56]],[[14081,3419],[46,-35],[74,18],[-4,61],[79,-6],[21,-88]],[[7988,637],[-90,66],[-89,31],[-124,-14],[-32,-20],[-34,-75],[-39,34],[39,70],[-32,49]],[[15401,1610],[244,100],[119,16],[122,40],[130,22],[25,31],[41,52],[251,26],[119,-25],[86,-4],[154,-57],[136,-22],[104,-28],[57,0],[29,33],[52,-22],[53,-62],[-144,-35],[-127,-44],[-59,11],[-75,-71],[-55,-25],[-62,8],[33,72],[-29,16],[-97,-8],[-59,-117],[-52,37],[-155,-44],[-97,-84],[-89,-5],[-72,-45],[-34,13],[-102,-9],[-37,65],[-109,-16],[-98,-26],[-83,-53],[-110,-10],[-138,50],[-96,95],[15,68],[-15,51],[224,6]],[[13046,2861],[12,-61],[-2,-164],[-62,-7]],[[12237,3855],[95,-41],[78,3],[84,38],[20,54]],[[12989,3533],[-77,-63],[49,-54],[56,-23],[-18,-166],[15,-102],[47,4],[14,-81],[-22,-26],[41,-55],[-9,-66],[-39,-40]],[[13967,2696],[51,72]],[[14840,2731],[44,-24],[11,-62],[-49,-17],[9,-52],[50,-46],[67,37],[55,-135],[80,-87],[-23,-29],[-57,33],[-27,-31],[-2,-5],[10,-43],[-17,-17],[-2,-1],[-20,-25],[-42,111],[-45,34],[-62,-3],[-12,-83],[52,-80],[-29,-51],[-122,-6],[-71,30]],[[15037,2535],[96,4],[49,-73],[-146,17],[1,52]],[[10349,2449],[-28,-25],[-99,8]],[[10688,3036],[-46,-178],[-13,-137],[-4,-94],[-52,-84],[-64,-18],[-47,-38]],[[10462,2487],[-83,-10],[-30,-28]],[[17113,2775],[-19,-57],[-43,-44],[-118,147],[-50,49],[-34,28],[-2,53],[-91,83],[-51,99],[95,-45],[63,-58],[31,63],[84,-51],[28,33],[51,-32],[47,12],[119,-69],[89,-79],[7,-47],[-31,-47],[-73,-51],[-55,47],[-47,-34]],[[17358,2979],[62,19],[44,-19],[5,-65],[-60,-8],[-51,73]],[[17174,3115],[98,-9],[-33,-48],[-65,57]],[[6960,479],[-37,-62],[-78,18],[-44,33],[-84,-25],[-66,1],[-147,-41],[-5,-40],[78,-23],[-32,-49],[-140,47],[-67,-15],[-17,54],[-58,54],[-85,31]],[[7106,4112],[58,-4],[55,26],[51,0],[138,11],[54,-11],[103,-51]],[[7533,3002],[-2,-30],[-94,6],[-58,3],[-206,10]],[[6713,2068],[-108,29],[-1,0],[-198,50],[-136,50],[-78,6],[-48,-18],[-110,-78],[-103,13]],[[6332,4125],[100,9],[113,-31],[146,-17]],[[13406,2732],[-61,59],[-29,-1],[35,63],[-38,42],[-6,54],[44,29],[-24,71],[-37,18],[-24,143],[22,134],[33,20]],[[13572,3674],[48,-20],[42,-74],[70,14],[88,-38],[95,57],[35,-33],[-14,-57],[71,-35],[74,-69]],[[13521,2663],[-115,69]],[[11158,2941],[-7,-62],[-45,-14],[17,-13],[-7,-79],[33,-100]],[[10762,2459],[-92,-11],[-79,16],[-89,-30],[-40,53]],[[11590,3373],[82,-18],[40,16],[-34,70],[-17,44],[30,126],[-63,69]],[[11628,3680],[53,57],[46,45],[50,-5]],[[11549,2693],[36,123],[-18,93],[56,15],[-58,47],[-1,59],[32,30],[5,96],[-40,68],[48,116],[-19,33]],[[4805,345],[5,97],[-30,26],[-89,-2],[-10,74],[13,59],[-16,106],[47,75],[215,85],[17,71],[-38,34],[-209,62],[73,93],[-25,49],[40,68],[-29,72],[6,95],[104,88],[-1,105],[-16,118],[53,51],[-12,166]],[[5353,417],[-119,11],[-85,49],[-107,-2],[-73,82],[-102,-28],[-32,-95],[53,-68],[-6,-46],[-77,25]],[[10452,1825],[-43,25],[-3,58],[-55,27],[-59,-16],[-73,-3],[-28,27],[-117,29]],[[11384,3724],[70,-66],[174,22]],[[11605,3947],[36,12]]],"transform":{"scale":[0.00015593268074875444,0.00014691255813953453],"translate":[-67.94469099999999,17.883959]},"objects":{"cb_2019_72_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[4,5,6,7,8,-3,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[12,13,14,15,16,-7,-6,17]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[18,19,20,21,22,23]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[24,25,26,27,28,29]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[30,31,32,-26,33,34]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[35,36,37,38]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[39,40,41,42,43,44,45]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[46,47,-1,-4,-9,48,49,50,51,52]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-45,53,54,55,56]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[57,58,59,60,61,62,-38,63]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[64,-11,65,66,67]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[68,69,70,71,72,73]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[74,75,76,77,-31,-35,78]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[79,80,81,82,83]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[84,85,86,87,88,-62,89,90]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[-78,91,92,-27,-33,-32]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[93,-29,94,95]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[96,97,98,99,100]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[101,102,103,104,105]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[106,107,108,109,110]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[[111,112,113,114,115,116,117,118]],[[119]],[[120]]],"type":"MultiPolygon","properties":{"COUNTYFP":"097"}},{"arcs":[[121,-60,122,123,124]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[125,-112,-119,126,127]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-22,128,129,-88,130,131,132]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[133,134,-127,-118,135,136,137]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[-101,138,139,140,141,142,143,-97]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[-17,144,145,-49,-8]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[146,147,148,-92,-77,149,-71,150]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[151,152,153,-51,154,155,156]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[157,158,159,160,161,162,163]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-95,-28,-93,-149,164,-115,165]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[166,-42,167,-90,-61,-122,168,169]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-169,-125,170,-67,171,172]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[-89,-130,173,174,-36,-39,-63]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[-70,175,176,177,178,179,180,-147,-151]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-86,181,-99,182,183]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-138,184,185,186,187,-134]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[188,189,190,191]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[-129,-21,192,-174]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[193,-15,194,-110,195,-178,196]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[197,-140,198,-40,-46,-57,199,200]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[201,202,-102,-106,203,204,205,206]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[207,208,209,-204,-105,210]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[211,-123,-59,212]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-199,-139,-100,-182,-85,-91,-168,-41]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-87,-184,213,-131]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-137,214,215,216,-185]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[217,-43,-167,-170,-173,218,219]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[220,221,222,223,-156,224,225]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[226,-153,227,228,-103,-203,229]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[-228,-152,-157,-224,230]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[-109,231,232,-216,233,-179,-196]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[234,-160,235,-225,-155,-50,-146,236]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[-222,237,-158,-164,238]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[239,-189,-192,240,241,242]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-195,-14,243,-107,-111]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[244]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[245,-183,-98,-144,246,-83,247]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[[-19,-24,248,-241,-191,249]],[[250]]],"type":"MultiPolygon","properties":{"COUNTYFP":"037"}},{"arcs":[[251,-52,-154,-227,-230,-202,-207,252,253]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[[254]],[[255]],[[256]]],"type":"MultiPolygon","properties":{"COUNTYFP":"049"}},{"arcs":[[-186,-217,-233,257]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-74,258,-162,259,-176,-69]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-181,260,-116,-165,-148]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-261,-180,-234,-215,-136,-117]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-72,-150,-76,261]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[262,-81,263,-242,-249,-23,-133,264]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[-145,-16,-194,-197,-177,-260,-161,-235,-237]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[-206,265,-55,266,-253]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[267,268,-141,-198,-201,269]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[270,-113,-126,-128,-135,-188,271]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-263,-265,-132,-214,-246,-248,-82]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-47,-53,-252,-254,-267,-54,-44,-218,-220,272]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-48,-273,-219,-172,-66,-10,-2]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-210,273,-268,-270,-200,-56,-266,-205]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-238,-221,-226,-236,-159]],"type":"Polygon","properties":{"COUNTYFP":"054"}},{"arcs":[[-209,274,-142,-269,-274]],"type":"Polygon","properties":{"COUNTYFP":"033"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ri.topo.json b/app/assets/topojson/states/ri.topo.json new file mode 100755 index 00000000..63f36231 --- /dev/null +++ b/app/assets/topojson/states/ri.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[1481,1831],[59,-29],[94,-124],[-49,-36],[24,-62],[-49,-51],[-36,-9],[-59,15],[-37,-9],[6,66],[25,20],[-6,56],[-30,43],[-83,10],[-4,29],[-38,31]],[[1298,1781],[11,22],[86,71]],[[1395,1874],[86,-43]],[[165,2328],[-4,236],[85,5],[409,11],[199,5],[182,8],[196,3],[0,-362],[0,-12],[110,16],[-6,-51],[17,-60],[-20,-49],[18,-28],[-31,-37],[50,-127],[25,-12]],[[1298,1781],[-41,114],[-27,5],[-24,-12],[20,-67]],[[1226,1821],[-40,29],[-98,-25],[-45,-82],[-73,-2],[-130,-4],[-33,3],[-310,-11],[-311,-7]],[[186,1722],[-13,385],[-8,221]],[[339,550],[-56,-19],[-56,8],[-107,-23],[-108,-41],[-12,30],[84,77],[-21,69],[15,16],[-2,48],[-28,56],[59,40],[58,-7],[15,385],[7,151]],[[187,1340],[73,3],[275,2],[26,7],[252,3],[58,2],[97,0],[-9,40],[52,54],[35,-13],[55,64],[61,7]],[[1162,1509],[1,-95],[-9,-32],[21,-24],[0,-41],[-90,-23],[-9,-49],[63,-86],[7,-59],[-12,-38],[3,-92],[-32,-76],[-64,-42],[8,-70],[-41,-47],[-39,-65],[-99,14],[-74,-7],[-111,-27],[-79,-13],[-182,-59],[-50,-30],[-35,2]],[[638,40],[20,65],[20,9],[53,77],[2,41],[35,-2],[22,-33],[-32,-74],[5,-26],[51,-43],[-6,-34],[-49,-14],[-87,-6],[-34,40]],[[1226,1821],[7,-93],[29,-27],[14,-40],[-35,-114],[-30,16],[-2,36],[-130,7],[-15,-27],[18,-31],[37,12],[44,-23],[-1,-28]],[[187,1340],[6,176],[-7,206]],[[1292,952],[57,9],[50,23],[-36,122],[7,10],[39,0],[-18,24],[29,29],[-6,22],[23,45],[45,52],[-13,10],[40,72],[4,50],[53,44],[38,-1],[44,46],[14,-44],[47,108],[50,-21],[110,-24],[-7,-94],[-12,-70],[23,-33],[10,-91],[18,-196],[-42,-11],[-5,-31],[-80,-45],[4,-21],[-65,-15],[10,83],[-42,45],[14,45],[-29,92],[18,146],[-30,93],[-61,-19],[-7,-94],[19,-38],[6,-67],[-8,-49],[23,-22],[-14,-43],[-34,-59],[-47,-16],[-30,-26],[-24,25],[-26,-11],[1,-48],[-40,-53],[-26,14],[-34,-18],[-55,-1],[-12,47],[7,5]],[[1183,935],[16,19],[-13,76],[40,3],[13,33],[-31,29],[16,125],[14,33],[40,9],[10,-43],[-13,-44],[9,-45],[-14,-94],[20,-53],[-46,-7],[-61,-41]],[[1303,1490],[69,-47],[48,-16],[14,-62],[-36,-66],[-49,8],[5,59],[21,55],[-64,29],[-8,40]]],"transform":{"scale":[0.0003900783798001068,0.0003358497688751915],"translate":[-71.862109,41.146932]},"objects":{"cb_2019_44_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[3,-2,4,5,6]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[[7,8,9]],[[10]]],"type":"MultiPolygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-6,11,-9,12]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[[13]],[[14]],[[15]]],"type":"MultiPolygon","properties":{"COUNTYFP":"005"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/sc.topo.json b/app/assets/topojson/states/sc.topo.json new file mode 100755 index 00000000..48cee6ee --- /dev/null +++ b/app/assets/topojson/states/sc.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[10236,6023],[-101,-72],[-36,-3],[-17,-80],[-58,-31],[-6,-92],[58,-59],[-2,-77],[122,-77],[18,-62],[-19,-87],[28,-19],[-8,-71],[20,-84],[49,-81],[81,-87],[14,-66]],[[10379,4975],[-140,-31],[-72,40],[-41,60],[-2,63],[-61,89]],[[10063,5196],[-18,57]],[[10045,5253],[24,24],[-17,70],[-42,30],[-75,7],[-71,96],[-11,53],[-69,15],[-27,32],[-31,48],[-54,16],[-47,55],[26,52],[-35,10],[-52,73],[20,37],[-5,95],[-39,74],[-6,111],[26,34],[-63,120],[-62,70],[0,45],[51,41],[1,80]],[[9487,6541],[-16,50],[75,12],[109,109],[131,19],[42,17],[77,1],[124,-59],[63,-34],[27,22],[56,-21],[31,-32],[50,-14],[63,3],[102,96],[113,-101]],[[10534,6609],[-18,-107],[-72,-61],[-18,-47],[-51,-15],[-10,-46],[-31,-31],[6,-53],[-26,-14],[-12,-61],[-71,-51],[16,-68],[-11,-32]],[[5690,6540],[-62,-50],[-213,19],[31,-77],[-27,-23],[3,-36],[-120,93],[-62,-8],[-70,82],[-93,27]],[[5077,6567],[-11,12],[-18,40],[-34,29],[6,69],[-36,39],[-31,68],[-12,73],[-58,110],[-41,137],[-25,62],[21,42],[-26,79]],[[4812,7327],[-11,104],[12,127]],[[4813,7558],[304,-17],[450,-29],[150,-10],[138,-15],[317,-15]],[[6172,7472],[4,-54],[-14,-74],[-39,-25],[23,-71],[22,-30]],[[6168,7218],[101,-116],[33,-21],[80,4],[25,-20],[5,-62],[29,-26],[-140,-323]],[[6301,6654],[-339,-50],[-137,-41],[-56,-17],[-79,-6]],[[5662,2950],[362,226],[77,-126],[25,3],[13,48],[35,48],[-30,26],[-16,69],[115,72],[128,82]],[[6371,3398],[19,11]],[[6390,3409],[45,-27],[87,-4],[60,-40],[54,-58],[16,-37],[50,-76],[82,-65],[21,-32],[113,-29],[116,37],[19,-24],[45,-8],[78,16],[58,-12],[27,-21],[72,-20],[19,14],[37,-25],[4,-30],[-46,-41],[-6,-103],[-25,-51],[41,-72],[10,-49],[-20,-50],[33,-74],[-24,-58],[3,-22]],[[7359,2448],[12,-50],[-27,-91],[-70,-71],[7,-24],[-35,-46],[-17,-72],[19,-37],[58,-37],[17,-59],[-13,-67],[45,-63],[34,4],[-47,-78],[-48,-13],[24,-53],[57,44],[18,-30],[-21,-38],[19,-66],[-18,-38],[-30,-7],[-22,-39],[94,-46],[65,-91],[42,-20],[30,27],[-50,62],[57,-1],[26,-29],[65,51],[13,-17],[67,20]],[[7730,1473],[-199,-159],[-35,49],[-40,3],[-63,-38],[-12,-23],[-52,-13],[-13,56],[-63,46],[-70,-24],[-12,-34]],[[7171,1336],[-65,30],[-12,29],[-25,41],[-46,30],[-38,109],[-78,1],[17,35],[-26,25],[-33,-15],[-30,26],[-90,19],[-51,79],[-41,100],[-3,49],[-51,2],[-82,27],[-14,-24],[-66,8],[-37,31],[-54,6],[-46,44]],[[6300,1988],[-35,37],[-48,107],[-16,69],[-35,49],[-39,55],[-11,66],[-41,54],[-73,77],[-30,-1],[-26,42],[-47,32],[-30,90],[-26,27],[-27,71],[-82,76],[-28,72],[-44,39]],[[9343,4104],[24,23],[15,66],[112,130],[18,29],[112,71],[24,48],[118,107],[-16,69],[23,77],[34,83],[3,53],[21,62],[44,72],[44,38],[70,91],[35,65],[39,8]],[[10379,4975],[25,-31],[70,-54],[-5,-44],[76,-41],[-16,-28],[20,-100],[63,-16],[-11,-82],[248,-1]],[[10849,4578],[-88,-145],[-119,-120],[-41,-68],[-85,-170],[-31,-77],[-26,-126],[-29,-35],[18,-48],[-21,-38],[-23,-123],[11,-128],[-17,-39],[-30,-84],[-73,-60],[-56,-71],[-110,-47]],[[10129,3199],[34,23],[22,49],[-58,36],[-63,-1],[-85,22],[-140,99],[-17,34],[-62,51],[-20,-5]],[[9740,3507],[-30,65],[-88,2],[-104,41],[-67,68],[-83,20],[-88,41],[-83,16],[-32,20]],[[9165,3780],[-9,43],[9,51],[59,72],[48,34],[22,52],[49,72]],[[6632,6095],[87,22],[56,27],[49,5]],[[6824,6149],[-51,-49],[56,-58],[5,-43],[28,-29],[-100,-119],[0,-48],[63,-54],[-29,-45],[17,-43],[-34,-55],[24,-35],[-3,-50],[15,-30],[-14,-36],[-19,-49],[42,-48],[3,-54],[35,-48],[8,-67],[-33,-78],[-23,-24]],[[6814,5087],[-32,1],[-58,53],[-7,34],[-69,-50],[-47,11],[-19,26],[-37,-20],[-48,0],[-61,30],[-54,-7],[-103,53],[-7,20],[-70,26],[-35,39],[-47,-21],[-43,8],[-1,40],[-61,11],[-25,37],[-38,21],[-49,2],[-36,36],[8,39],[-39,19]],[[5836,5495],[-22,24],[17,60],[-30,8],[24,59],[-72,137],[-3,33],[-32,52],[-35,4],[-75,50],[-31,65],[-57,69],[-84,58],[-126,39],[-86,3],[-33,-8],[-12,-5],[-97,145],[31,49],[-30,73],[-61,32]],[[5022,6442],[-16,22],[71,103]],[[6301,6654],[-108,-256],[44,-26],[330,-314],[65,37]],[[3964,9372],[383,-18],[606,-28]],[[4953,9326],[-87,-84],[-14,-191],[-4,-78],[-131,5],[-64,-39],[-3,-24],[30,-128],[-41,-111],[46,-31],[8,-72],[-18,-32],[17,-79],[35,-107]],[[4727,8355],[-69,67],[-75,46],[-71,-21],[-109,52],[-61,-34],[-38,-5],[-34,21],[-15,56],[-43,-5],[-52,43],[-19,-19],[-48,18]],[[4093,8574],[-32,15],[-26,46],[-51,-7],[-80,272],[-17,40],[-34,1],[4,64],[-104,231],[-67,148]],[[3686,9384],[278,-12]],[[4738,3273],[219,-81],[68,1],[135,1],[108,30],[118,0]],[[5386,3224],[55,-68],[55,-45],[61,-82],[64,-18],[41,-61]],[[5662,2950],[-219,-140],[-123,-79],[-44,-39],[-2,-100],[-56,-11],[-41,-33],[38,-158],[-163,-143],[-29,-67],[-73,-24],[-65,-47],[-28,1]],[[4857,2110],[-29,8],[6,93],[-34,26],[4,66],[16,12],[-4,64],[-43,14],[-35,59],[1,36],[-59,17],[-18,132],[-48,50],[-22,84],[29,-9],[20,128],[-54,65],[-67,36],[-54,16],[-131,145]],[[4335,3152],[181,190],[222,-69]],[[1138,8247],[33,-33],[-31,-165],[57,1],[44,-36],[-10,-50],[23,-34],[-13,-54],[47,-81],[-9,-84]],[[1279,7711],[-11,-13]],[[1268,7698],[-26,-29]],[[1242,7669],[-18,-21],[-27,-31],[-297,-335]],[[900,7282],[-27,-22],[-185,111],[-19,65],[-43,3],[-9,27],[-86,75],[-46,39],[-52,86],[-42,-13],[-38,21],[-50,1],[-59,79],[-61,28],[-62,67],[-84,52],[-35,87],[-2,37],[81,89],[-8,94],[57,42],[3,34],[38,23],[94,95],[10,67],[37,7],[67,15],[105,129],[40,-10],[78,33],[-37,39],[16,58],[43,61],[-14,36],[213,68],[313,97]],[[1136,9002],[-100,-179],[-2,-45],[57,-26],[-9,-36],[38,-69],[-1,-27],[10,-76],[-15,-43],[5,-86],[20,-65],[-12,-43],[11,-60]],[[3343,7846],[-71,47],[-18,26],[-58,32],[12,35],[-60,90],[-63,11],[-49,86],[-28,22]],[[3008,8195],[-19,-3],[-27,36],[-24,46],[-63,77],[-65,56],[1,44],[11,303],[4,201],[4,154],[5,310]],[[2835,9419],[274,-13],[246,-9],[331,-13]],[[4093,8574],[-78,-92],[-100,-132],[-99,-447],[-42,-122],[-36,-156]],[[3738,7625],[-15,-10],[-76,13],[-54,40],[-100,122],[-44,20],[-79,15],[-27,21]],[[8342,7328],[65,20],[61,-44],[92,27],[44,-20],[44,6],[52,53],[11,34],[58,44],[15,-9]],[[8784,7439],[-9,-65],[47,-39],[13,-33],[66,35],[32,-5],[15,66],[30,-14],[-6,-28],[67,-22],[14,-26],[-27,-38],[-41,-22],[-3,-93],[84,-99],[65,-41],[43,-46],[-36,-38],[29,-76],[37,-37],[9,-55]],[[9213,6763],[-36,-12],[-17,-40],[-126,22],[-57,-133],[-18,-14],[-123,19],[-202,-155],[-59,-45],[-83,-63],[-67,-51],[-239,-182]],[[8186,6109],[-154,127],[-67,98],[114,106],[3,94],[-14,27],[-46,104],[0,36],[-72,64],[-26,60],[-6,120],[-35,1],[-37,-82],[-92,-44],[-24,48],[-32,12],[-58,58]],[[7640,6938],[1,7]],[[7641,6945],[215,134],[120,74],[269,167],[46,-17],[51,25]],[[6300,1988],[-27,-13],[-81,-116]],[[6192,1859],[-82,-117],[-66,44],[-74,18],[-11,29],[33,28],[10,77],[-46,22],[-58,94],[-62,59],[-42,-13],[-173,-158],[-271,-233],[-38,-20],[-146,-142]],[[5166,1547],[-48,19],[-50,-9],[-86,34],[4,22],[-69,33],[-77,86],[17,73],[26,20],[-24,54],[8,37],[-25,40],[-41,25],[23,87],[33,42]],[[6832,3693],[275,175],[21,-40],[-2,-56],[26,-67],[87,-31],[56,-35],[82,20],[81,-21]],[[7458,3638],[33,-25],[4,-39],[30,-39],[10,-73],[83,-50],[-33,-70],[-59,-36],[207,-168],[255,-203]],[[7988,2935],[-28,-12],[-18,-45],[54,-54],[24,44],[64,-41],[-61,-29],[140,-143],[-46,-124],[-37,17],[-81,-13],[-47,-99],[-33,38],[-22,-19],[7,-43],[53,-16],[33,-66],[-23,-2],[-296,76],[-58,23],[-254,21]],[[6390,3409],[222,143],[87,56],[133,85]],[[3605,6133],[29,17],[20,54],[44,52]],[[3698,6256],[-16,97],[57,36],[36,-23],[70,9],[43,-18],[124,30],[15,19],[48,-27],[68,-11],[47,-50],[89,-30],[30,-52],[71,-33],[62,-53],[68,-37],[13,-17],[63,2],[28,-25],[51,24],[25,-16]],[[4690,6081],[-60,-147],[-82,-184],[-91,-219],[-15,-44]],[[4442,5487],[-19,-18],[-181,-170]],[[4242,5299],[-311,94],[-58,28],[-60,36],[-25,-7],[-70,55],[-28,54],[-53,220],[-94,5],[-190,-46]],[[3353,5738],[48,109],[107,121],[47,116],[19,3],[31,46]],[[9042,2930],[29,61],[29,16],[72,104],[34,30],[43,97],[56,38],[53,-6],[7,23],[117,41],[40,-34],[38,13],[88,165],[92,29]],[[10129,3199],[-64,-33],[-35,-38],[-28,-97],[-52,-134],[-135,-7],[0,28],[-167,-19],[-59,69],[-62,7],[-98,-64],[-88,-124],[-28,-81],[29,-57],[82,6],[-19,-64],[-125,-53],[-62,-38],[-107,-79],[-12,-40],[-41,-30],[-16,-59],[-152,-65],[-91,-64],[-62,-28],[-36,52],[-57,51],[-77,-15],[-29,-60],[27,-25],[96,-11],[23,-62],[-42,-84],[0,-56],[-72,-54],[-135,-73],[-46,-57],[-31,-46],[-91,13],[-99,-21],[-111,-38],[-74,-48],[-36,-44],[-62,1],[-69,-28],[-86,-57]],[[7988,2935],[127,-100],[106,31],[40,-44],[-4,-86],[74,-164],[157,24],[-40,-79],[24,-68],[62,-35],[-2,-54],[49,-29],[38,36],[-6,71],[39,40],[69,16],[30,59],[5,56],[66,45],[31,7],[48,40],[21,-5],[28,49],[-15,31],[18,62],[89,92]],[[9134,3797],[-50,31],[-79,3],[-38,24],[-38,77],[-55,65],[-50,13],[-102,62],[-22,48],[-35,28],[-6,43],[-201,154],[-128,32],[-175,1],[-48,-26]],[[8107,4352],[20,45],[98,210],[83,189],[69,175],[47,51],[-53,138],[108,107],[92,45],[10,19],[89,179]],[[8670,5510],[52,20],[50,-28],[91,-140],[137,-2],[46,-61],[115,-1],[107,12],[2,-29],[345,-99],[58,25],[79,2],[20,25],[86,24],[41,53],[76,-10],[30,-37],[40,-11]],[[9165,3780],[-31,17]],[[7465,7452],[-12,7],[-21,24],[-1,49],[-22,31],[-5,55],[-62,68]],[[7342,7686],[-14,39],[-47,32],[3,64],[-73,50],[-30,46],[-39,41],[-12,57],[-57,101],[0,27],[-70,47],[-35,53],[-8,47]],[[6960,8290],[154,0],[514,-11],[361,-7],[386,-10],[158,-4]],[[8533,8258],[-10,-27],[23,-96],[84,-76],[32,-69],[15,-63],[54,-74],[52,-41],[34,5],[51,-32],[-11,-31],[57,-70],[-16,-21],[-47,8],[-14,-75],[-22,-34],[-31,-123]],[[7641,6945],[7,81],[-42,23],[-23,66],[-23,9],[-20,97],[3,116],[-20,38],[-41,29],[-17,48]],[[8107,4352],[-60,17],[-4,-28],[-62,-44],[50,-43],[-41,-42],[-69,-3],[-82,-19],[-33,3]],[[7806,4193],[-66,20],[-48,-37],[-22,27],[-117,-47],[-77,-2],[-100,50],[-105,92],[7,31],[-21,43],[-63,39],[37,22],[13,51],[-52,2],[-41,56],[-28,-4]],[[7123,4536],[-47,48],[29,51],[-41,17],[1,38],[-52,53],[16,47]],[[7029,4790],[81,78],[57,132],[60,-2],[13,72],[46,2],[12,-42],[-21,-37],[106,11],[-13,156],[307,54],[8,2],[38,52],[150,104],[128,77],[56,14],[163,112],[203,118]],[[8423,5693],[56,-156],[16,-25],[108,10],[67,-12]],[[6824,6149],[-6,29],[35,-22],[61,-6],[250,205]],[[7164,6355],[-4,-167],[18,-8],[171,-85],[25,24],[42,-26],[142,-1],[46,-51],[21,-71],[64,-13],[29,-49],[11,-70],[25,-11],[137,40],[19,-158],[40,16],[235,151],[108,2],[66,117]],[[8359,5995],[65,-56],[107,-41],[64,-36],[31,-45],[-203,-124]],[[7029,4790],[-78,67],[7,36],[-70,20],[-28,53],[-34,27],[-30,57],[18,37]],[[1258,7115],[-17,55],[-25,55],[-38,26],[-17,36],[-35,17],[-60,-15],[-46,11],[-120,-18]],[[1242,7669],[26,29]],[[1279,7711],[131,148],[161,94],[231,134],[357,207]],[[2159,8294],[66,-66],[23,-83],[-9,-54],[-21,-20],[-5,-68],[20,-21],[-14,-62],[14,-33],[-18,-29],[26,-87],[4,-58],[61,-75],[20,-118],[19,-32],[51,-14],[40,-50],[155,-128]],[[2591,7296],[-292,-226],[-194,-151],[-173,-132],[-181,-137],[-227,-166]],[[1524,6484],[4,24],[-16,139],[-84,90],[-27,84],[-7,45],[-102,78],[-4,50],[-30,121]],[[7458,3638],[7,43],[36,18],[68,-41],[57,21],[13,24],[41,19],[43,43],[19,114],[21,42],[-6,71],[9,45],[39,0],[-6,54],[7,102]],[[5718,3940],[37,-32],[35,3],[15,-30],[50,-8],[102,-75],[38,-9],[153,-131],[78,-79],[25,2],[5,-78],[67,-50],[0,-24],[48,-31]],[[5386,3224],[-34,33],[-12,41],[-41,51],[10,27],[15,156],[-7,20],[2,159],[2,40],[14,306],[-23,125]],[[5312,4182],[6,-1],[35,-7],[41,-76],[56,-7],[92,-61],[70,-31],[67,-15],[39,-44]],[[8359,5995],[-12,25],[-88,67],[-73,22]],[[9213,6763],[61,-22]],[[9274,6741],[24,8],[57,-30],[97,-96],[35,-82]],[[5312,4182],[-59,9],[-54,38],[-76,71],[-60,10],[-54,-6],[-72,29]],[[4937,4333],[-1,0],[80,79],[384,405]],[[5400,4817],[1,0],[250,127],[109,35]],[[5760,4979],[193,-244],[54,55],[15,-58],[-5,-46],[50,-10],[86,38],[10,4],[184,-46],[78,-68],[205,-177],[-5,-35],[45,-70],[47,-47],[49,11],[70,-13],[-34,55],[1,30],[91,119],[-34,52],[123,27],[30,-10],[92,-78],[-5,50],[23,18]],[[1895,8860],[106,21],[42,-88],[-22,-28],[38,-32],[4,-40],[0,-28],[24,-51],[55,-89],[16,-63],[1,-128],[0,-40]],[[1136,9002],[285,88],[3,-56],[44,4]],[[1468,9038],[36,-60],[85,20],[5,15],[93,15],[88,-14],[131,41],[-21,-56],[28,-68],[-18,-71]],[[3698,6256],[-64,30],[-78,150],[-45,22]],[[3511,6458],[45,50],[8,33],[51,97],[20,111],[30,34],[34,6],[53,28],[-4,28],[33,30],[59,14],[68,47],[28,61],[41,44],[50,91],[39,61],[50,19],[94,147],[37,37],[15,48]],[[4262,7444],[65,-25],[73,-85],[88,-59],[-10,-39],[42,-56],[139,134],[40,12],[24,-21],[38,23],[51,-1]],[[5022,6442],[-34,-3],[-55,-53],[-72,-3],[-84,-143],[122,-151],[-15,-23],[-50,7],[-26,27],[-50,-15],[-55,28],[-13,-32]],[[10534,6609],[49,58],[50,31],[43,47]],[[10676,6745],[242,-244],[584,-588],[223,-227],[270,-275],[-107,-23],[-218,-80],[-104,-52],[-143,-92],[-103,-77],[-125,-112],[-187,-197],[-159,-200]],[[7439,6758],[38,25],[-29,48],[5,34],[94,14],[93,59]],[[7164,6355],[38,30],[77,132],[11,102],[-9,65],[31,42],[49,7],[47,30],[31,-5]],[[2246,9353],[51,-3],[30,77],[73,50],[48,-101],[25,28],[42,7],[53,-25],[76,34],[44,11],[147,-12]],[[3008,8195],[-78,-199],[-150,-393],[5,-112],[0,-40],[-194,-155]],[[1468,9038],[65,34],[28,43],[29,-3],[72,45],[-1,51],[61,-21],[132,62],[99,19],[70,50],[17,-22],[47,26],[53,3],[19,24],[68,17],[19,-13]],[[3738,7625],[89,-18],[12,-24],[133,-43],[26,7],[83,-50],[38,24],[26,-20],[74,-12],[43,-45]],[[3511,6458],[-65,57],[-18,48],[-72,10],[-46,50],[-65,47],[-95,82],[-50,18],[-25,-12],[-35,60],[-53,24],[-35,-3],[-10,60],[-59,72],[-31,2],[-55,50],[-2,30],[-35,21]],[[2760,7074],[-50,70],[-29,11],[-25,50],[-66,48],[1,43]],[[3343,4457],[301,282],[35,32],[247,232],[186,175],[130,121]],[[4442,5487],[25,-43],[36,-13],[34,-79],[77,-72],[105,-32],[72,-84],[11,-73],[41,-41],[52,-11],[58,4],[159,-71],[31,-32],[52,-3],[96,-69],[109,-51]],[[4937,4333],[-357,-323],[-588,-539],[-13,-10]],[[3979,3461],[-26,53],[-56,-22],[-38,9],[-11,33],[-45,18],[-47,39],[-13,31],[39,43],[-21,51],[-46,16],[-8,73],[-100,32],[-95,119],[34,48],[-11,53],[24,41],[-14,37],[44,51],[-32,65],[-72,38],[-76,32],[-39,100],[-27,36]],[[7171,1336],[-19,-73],[13,-46],[54,-106],[55,7],[16,-68],[-37,-104],[-27,-46],[5,-50],[-167,-69],[-66,-45],[-56,-24],[-94,-11],[-43,-43],[-54,8],[2,91],[-24,8],[-49,7],[-61,42],[-24,39],[-51,-5],[-62,-45],[-32,-42],[12,-38],[51,-48],[34,20],[102,-79],[35,-44],[2,-48],[-37,-30],[-68,-105],[-45,-51],[-202,-123],[-51,15],[-23,9],[-74,-104],[-18,-5]],[[6168,130],[-72,-9],[-5,29],[29,37],[-5,34],[-66,23],[29,46],[-65,7],[-50,-12],[33,102],[-50,47],[-78,35],[9,16],[-41,54],[-9,77],[28,20],[31,65],[-5,53],[-30,48],[62,-2],[116,-17],[2,63],[31,91],[74,6],[36,-23],[10,69],[80,47],[-3,25],[33,55],[-46,0],[1,51],[43,99],[29,6],[-1,65],[-42,96],[-29,36],[24,27],[-3,55],[19,107],[-13,46],[-29,18],[1,44],[-38,49],[-16,44]],[[6168,130],[-67,-99],[-29,-31],[-39,30],[-53,63],[-60,25],[-39,52],[-31,20],[-65,-47],[-85,14],[-61,61],[-49,4],[-22,66],[-5,82],[7,46],[-10,72],[-32,35],[-49,99],[50,78],[40,46],[-26,76],[3,71],[-38,42],[-14,-18],[-51,48],[-27,57],[9,34],[-69,96],[-4,70],[16,62],[-83,91],[-3,53],[-46,6],[-66,55],[-4,58]],[[3343,4457],[-19,9],[-66,86],[-66,40],[-53,16],[-53,41]],[[3086,4649],[50,112],[-38,63],[-53,13],[-6,43],[-28,36],[-51,12],[-42,101],[46,58],[-21,66],[40,67],[32,21],[51,98],[24,6],[-102,155],[-10,49],[26,14],[-18,79],[271,71]],[[3257,5713],[96,25]],[[4727,8355],[-53,-53]],[[4674,8302],[-7,-38],[55,-33],[15,-109],[-73,-50],[-14,-34],[24,-27],[61,-9],[0,-136],[30,-64],[65,-60],[-5,-30],[0,-58],[-22,-76],[10,-20]],[[2760,7074],[-205,-187],[12,-65],[31,-14],[9,-128],[14,-8],[62,-50],[64,-95],[29,-103],[-2,-85],[-22,-81],[-44,-82],[-57,-57],[-92,-75]],[[2559,6044],[-124,-20],[-190,8],[-77,63],[-43,-28],[-74,0],[-159,-173]],[[1892,5894],[-4,49],[-34,28],[-31,56],[-46,27],[0,56],[-46,51],[-46,84],[-67,28],[-42,57],[-28,61],[1,37],[-25,56]],[[5760,4979],[128,75],[33,-5],[56,22],[26,34],[48,19],[-19,27],[-70,42],[-130,7],[-47,-51],[-8,-56],[-56,5],[-2,71],[33,82],[20,143],[0,73],[64,28]],[[4335,3152],[-69,-4],[-41,30],[-115,39],[-98,75],[-48,54],[-7,83],[22,32]],[[6168,7218],[339,245],[9,-48],[-15,-34],[0,-64],[27,-29],[54,18],[10,53],[50,30],[38,-69],[39,-40],[111,63],[45,7],[41,-52],[76,25],[19,37],[42,23],[-48,72],[-18,68],[355,163]],[[6196,8659],[3,-78],[-29,-36],[-2,-118],[29,-28],[-16,-46],[-58,-31],[-2,-22]],[[6121,8300],[-340,1],[-68,-1],[-291,1],[-364,4],[-88,-1],[-296,-2]],[[4953,9326],[641,-32],[164,-12],[-17,-57],[44,-51],[-11,-34],[-50,-49],[-1,-70],[41,-53],[208,143],[57,44],[72,-92]],[[6101,9063],[14,-57],[-13,-32],[21,-41],[-31,-48],[41,-56],[27,-81],[35,-60],[1,-29]],[[6121,8300],[56,-106],[-7,-78],[10,-82],[35,-107],[-70,-81],[5,-34],[-25,-75],[18,-41],[-7,-60],[24,-40],[23,-83],[-11,-41]],[[6101,9063],[53,-69],[158,-220],[98,-131],[-35,-319],[-3,-27],[427,-4],[161,-3]],[[8533,8258],[149,-4],[395,0],[93,-2],[77,-76],[484,-472]],[[9731,7704],[-26,-54],[-114,-238],[-98,-208],[-219,-463]],[[3257,5713],[4,90],[-76,-12],[-70,17],[-13,-8],[-104,13],[-42,-41],[-82,17],[-73,63],[-38,56],[-115,-114],[-42,-1],[-47,251]],[[9731,7704],[229,-225],[104,-109],[202,-212],[410,-413]],[[3086,4649],[-45,-18],[-62,57],[-40,11],[-55,52],[-8,93],[-47,73],[-40,41],[-15,104],[-37,74],[-110,80],[-2,42],[-40,36],[-100,75],[-129,85],[-36,-8],[-81,53],[-94,84],[-50,81],[-29,19],[-80,6],[-33,76],[-24,27],[8,40],[-32,21],[-13,41]]],"transform":{"scale":[0.00040110112546894487,0.00033531919383771275],"translate":[-83.35323799999999,32.037575]},"objects":{"cb_2019_45_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[6,7,8,9,10,11,12]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[13,14,15,16,17,18,19]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[20,-2,21,22,23,24,25]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[26,27,28,29,30,-7,-13,31]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[32,33,34,35,36]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[37,38,39,40,41]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[42,43,44,45,46,47]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[48,49,50,-36,51,52]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[53,54,55,56,57,58]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-20,59,60,61,-40]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[62,63,64,-16,65]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[66,67,68,69,70,71]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[72,-24,73,-17,-65,74]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[75,76,77,-3,-21,-26,78]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[79,80,81,82,-54,-59,83]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-77,84,85,86,87,88]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-28,89,90,91,-88,92]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[93,-46,94,-44,95,96,97,98]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-76,-79,-25,-73,-75,-64,99,-85]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[100,-14,-39,101,102]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-4,-78,-89,-92,103,-56,104,105]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-66,-15,-101,-103,106,107,108,109,-86,-100,-63]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[110,-96,-43,-48,111,112]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-68,113,114,115,-8,-31,116]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-22,-1,-6,117,118]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[119,-57,-104,-91,120]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[121,-50,122,-97,-111,-113,123]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-53,124,-115,125,126,-123,-49]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[127,-70,128,-108,129,130]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-60,-19,131,132]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-61,-133,133]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[-71,-128,134,135,136]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-52,-35,137,138,-9,-116,-125]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-98,-127,139,140,141]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-29,-93,-87,-110,142]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-130,-107,-102,-38,-42,143]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-80,-84,-58,-120,-121,-90,-27,-32,-12,144]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[145,146,-138,-34,147,148]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-147,149,-10,-139]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[150,-81,-145,-11,-150,-146,-149]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[151,152,-105,-55,-83]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-129,-69,-117,-30,-143,-109]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-140,-126,-114,-67,-72,-137,153]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-153,154,-118,-5,-106]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-141,-154,-136,155]],"type":"Polygon","properties":{"COUNTYFP":"065"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/sd.topo.json b/app/assets/topojson/states/sd.topo.json new file mode 100755 index 00000000..400b0972 --- /dev/null +++ b/app/assets/topojson/states/sd.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[5,2182],[180,2],[182,-2],[186,1],[347,-1],[187,0],[181,-1],[337,-1]],[[1605,2180],[0,-415],[0,-627]],[[1605,1138],[-525,1],[-413,0],[-297,1],[-168,-1],[-101,2],[-94,-2],[-1,521],[-1,333],[0,189]],[[9417,4705],[-184,1]],[[9233,4706],[1,190],[0,190],[0,190],[-9,0],[0,190],[1,190],[1,191]],[[9227,5847],[182,-3],[187,0],[185,-1],[186,0]],[[9967,5843],[0,-190],[0,-189],[0,-190],[5,0],[-1,-191]],[[9971,5083],[0,-190],[0,-14],[0,-33],[-1,-142],[0,-190]],[[9970,4514],[-184,1],[-90,0],[-94,0],[-180,0]],[[9422,4515],[-5,0],[0,190]],[[8665,2228],[47,0]],[[8712,2228],[133,-2],[47,0],[133,1]],[[9025,2227],[3,-156],[2,-189],[3,-189],[0,-1],[0,-124]],[[9033,1568],[-179,80],[-180,78],[-2,1],[-180,82],[-168,75],[-9,4],[-150,65],[0,-4],[-39,-2],[-1,126],[2,156]],[[8127,2229],[45,0],[133,-1],[47,0],[133,0],[47,-1],[133,1]],[[8695,3569],[0,-191],[1,-190]],[[8696,3188],[-183,-2],[-180,-1],[-179,-1]],[[8154,3184],[-182,-1]],[[7972,3183],[-181,0]],[[7791,3183],[1,188],[0,190],[1,193]],[[7793,3754],[157,0],[22,0],[163,1]],[[8135,3755],[17,0],[167,0],[13,0],[172,-1],[8,0],[178,1],[5,0]],[[8695,3755],[0,-186]],[[5969,1134],[-108,0]],[[5861,1134],[0,185],[-1,99],[-23,0],[0,90],[0,190],[0,191],[0,102]],[[5837,1991],[0,88],[-1,102],[-25,2],[0,48],[1,140],[0,50],[-1,141],[0,137]],[[5811,2699],[11,-11],[6,-38],[17,-18],[20,48],[39,1],[36,-21],[21,15],[20,-32],[28,9],[32,-3],[74,14],[27,22],[23,-12],[25,-33],[40,24],[32,-6],[13,-19],[36,30],[13,-4],[14,-47],[19,-14],[14,18],[0,9],[1,20],[36,-7],[101,53],[26,11],[-14,40],[31,26],[20,-65],[29,33],[6,34],[17,22],[22,-22],[-14,-35],[9,-12],[34,18],[-8,56],[18,9],[18,-15],[4,-51],[27,15]],[[6734,2761],[0,-150],[0,-190],[0,-191],[135,0]],[[6869,2230],[1,-154],[0,-189],[0,-1],[0,-190],[0,-189],[0,-191],[0,-183]],[[6870,1133],[-180,0],[-180,0],[-180,0],[-181,1],[-180,0]],[[7727,6047],[-172,1],[-14,0],[-173,-1],[-16,0],[-169,0],[-18,0],[-168,1],[-19,0],[-168,0]],[[6810,6048],[-19,0],[-187,1]],[[6604,6049],[1,189],[0,192],[1,189],[0,190]],[[6606,6809],[186,0],[188,-1],[120,0],[67,0],[187,0],[187,-1],[191,0],[189,0],[177,-2]],[[8098,6805],[4,0],[0,-190],[0,-190],[0,-190],[0,-190]],[[8102,6045],[-173,1],[-14,1],[-173,0],[-15,0]],[[9233,4706],[-184,1],[-185,1],[-184,0],[-92,1],[-18,0],[-75,0],[-184,1],[-184,1]],[[8127,4711],[1,191],[0,190],[0,194],[-17,0]],[[8111,5286],[0,190],[-1,190],[-1,190],[0,189]],[[8109,6045],[181,-2],[76,-1],[112,-1],[127,-1],[60,0],[188,-1],[2,0],[186,-1],[1,0],[14,0],[171,-1]],[[9227,6037],[0,-190]],[[8288,7563],[188,-2],[188,-1],[270,-1],[109,0],[188,0]],[[9231,7559],[0,-190],[0,-190],[-1,-190],[0,-190]],[[9230,6799],[0,-191],[-1,-190],[-1,-191],[-1,-190]],[[8109,6045],[-7,0]],[[8098,6805],[0,190],[0,190],[1,190]],[[8099,7375],[0,190]],[[8099,7565],[189,-2]],[[7766,2229],[46,0],[133,0],[47,0]],[[7992,2229],[135,0]],[[9033,1568],[61,-26],[-12,-37]],[[9082,1505],[-19,-34],[-5,-73],[-23,-38],[-2,-42],[9,-57],[1,-43],[10,-12],[-22,-24],[-4,-42],[10,-12],[8,-16],[11,-21],[-27,-94],[0,-50],[-17,-5],[16,-32],[-2,-33],[-15,-27],[-46,-48],[2,-17]],[[8967,785],[-28,-4],[-74,35],[-16,16],[-42,31],[-33,1],[-70,25],[-34,37],[-110,62],[-29,-8],[-41,42],[-36,67],[-12,45]],[[8442,1134],[-12,45],[-28,44],[-49,43],[-93,33],[-41,-6],[-50,6],[-41,20],[-39,48],[-29,54],[-35,35],[-26,10],[-54,4],[-42,5],[-23,17],[-14,39],[0,102],[-15,36],[-14,8],[-70,3],[-58,24],[-59,69],[-67,58],[-17,23],[-26,57],[-25,42],[-26,17],[-21,44],[0,16],[-21,43],[-36,22],[-19,-4],[-100,2],[-38,17],[-24,24],[-21,31],[19,65]],[[7228,2230],[224,0],[133,0],[48,0],[133,-1]],[[6655,4713],[0,191],[2,383]],[[6657,5287],[154,0]],[[6811,5287],[185,0],[186,0],[25,0]],[[7207,5287],[0,-193],[0,-190],[0,-96],[-1,-97],[0,-189],[18,0],[0,-200],[1,-192],[0,-189],[-1,-96],[1,-95]],[[7225,3750],[-420,-5]],[[6805,3745],[-26,26],[-59,25],[-47,4]],[[6673,3800],[-1,137],[1,207],[0,379],[-20,0]],[[6653,4523],[2,190]],[[2448,7578],[190,0],[188,0],[39,0],[39,0],[220,-1]],[[3124,7577],[0,-274],[0,-191],[0,-422],[1,-145]],[[3125,6545],[1,-190],[0,-189],[-1,-190],[0,-381]],[[3125,5595],[-38,0],[-20,1],[-566,1],[-155,1],[-185,-2],[-119,1],[-4,0],[-181,1],[-3,0],[-183,0]],[[1671,5598],[0,190],[0,189]],[[1671,5977],[0,189],[1,191],[9,-1],[1,190],[-1,127],[0,64],[1,190],[0,184],[12,3],[-1,191],[1,274]],[[1694,7579],[189,-1],[189,1],[188,0],[188,-1]],[[10703,2230],[-51,0],[-131,0]],[[10521,2230],[0,191],[0,191],[1,190],[0,190]],[[10522,2992],[182,0],[180,1],[3,0]],[[10887,2993],[178,-1],[4,0],[178,1],[5,-1],[176,-1],[8,0],[112,4]],[[11548,2995],[0,-191],[0,-191],[0,-188],[0,-17],[0,-3],[0,-10],[0,-163],[-119,0],[-102,0]],[[11327,2232],[-4,0],[-3,0],[-9,0],[-30,0],[-19,0],[-4,0],[-2,0],[-7,0],[-6,0],[-15,0],[-243,-1],[-10,0],[-90,0],[-53,0]],[[10832,2231],[-129,-1]],[[6492,6050],[16,-1],[96,0]],[[6810,6048],[0,-191],[1,-380],[0,-190]],[[6657,5287],[-218,0],[-371,1],[-31,0],[-342,1],[-148,-1]],[[5547,5288],[-16,56],[-12,109],[-1,37],[24,47],[25,31],[44,7],[71,-29],[40,-3],[14,9],[-2,33],[-53,56],[-11,33],[-2,55],[53,85],[17,45],[6,86],[21,57],[2,49]],[[5767,6051],[306,0],[337,-1],[82,0]],[[11551,4895],[-1,-191],[0,-191]],[[11550,4513],[-109,1],[-180,0],[-5,0],[-180,0],[-4,0],[-181,0]],[[10891,4514],[1,190],[1,190],[0,190]],[[10893,5084],[3,187],[1,158],[-1,32]],[[10896,5461],[144,1],[41,-3],[185,2],[185,0],[99,1]],[[11550,5462],[0,-191],[0,-187],[0,-47],[1,-142]],[[9231,7559],[189,-1],[190,-1],[189,0],[190,0],[191,0],[191,0]],[[10371,7557],[0,-255],[1,-190],[1,-189],[0,-191]],[[10373,6732],[-189,1],[-20,0],[-13,64],[-169,0],[-8,0],[-180,0],[-3,0],[-184,0],[-3,0],[-186,1],[-188,1]],[[9056,3753],[-175,1],[-6,0],[-180,1]],[[8135,3755],[-1,190],[0,190],[0,175],[0,7],[0,6],[0,9],[0,1],[0,188],[-7,0],[0,190]],[[9422,4515],[0,-195],[0,-31],[0,-138],[0,-11],[0,-19],[0,-12],[-1,-136],[0,-32],[0,-190]],[[9421,3751],[-177,-1],[-5,0],[-177,3],[-6,0]],[[8111,5286],[-154,0],[-11,0],[-5,0],[-16,0],[-164,0],[-21,0],[-162,1],[-24,0],[-16,0],[-170,0],[-161,0]],[[5440,6735],[53,43],[16,34]],[[5509,6812],[548,-1],[377,-2],[157,0]],[[6591,6809],[15,0]],[[5767,6051],[-12,32],[-60,67],[-14,60],[13,28],[39,51],[13,56],[-35,69],[-52,69],[-16,63]],[[5643,6546],[-36,59],[-25,23],[-94,-1],[-25,9],[-29,24],[-11,25],[17,50]],[[9975,2993],[-181,1]],[[9794,2994],[-3,0],[-179,1],[-4,0],[-177,1],[-6,0]],[[9425,2996],[0,190],[1,190],[0,191],[2,184]],[[9428,3751],[181,0],[86,-1],[98,1],[179,0],[45,0],[139,0]],[[10156,3751],[-1,-187],[1,-190],[0,-191],[1,-190]],[[10157,2993],[-182,0]],[[9250,2610],[0,-191],[3,-190]],[[9253,2229],[-50,-1],[-131,-1],[-47,0]],[[8712,2228],[-7,192],[-1,190]],[[8704,2610],[1,192],[0,197]],[[8705,2999],[173,0],[8,0],[174,0],[8,0],[175,-1],[6,0]],[[9249,2998],[-2,-195],[3,-193]],[[3114,3696],[0,380],[9,0],[0,366]],[[3123,4442],[1,1]],[[3124,4443],[21,29],[12,-4],[55,24],[26,-9],[55,19],[12,-12],[52,-8],[23,-13],[48,40],[30,-11],[57,42],[-6,26],[28,-4],[21,30],[41,-20],[18,22],[45,10],[29,-24],[26,-4],[44,13],[76,-23],[58,43],[-8,25],[33,7],[15,38],[31,41],[52,13],[21,27],[25,-6],[25,18],[11,27],[-1,33],[24,-13],[22,17],[14,-23],[37,19],[23,-10],[39,28],[27,-15],[25,12],[85,54],[15,17],[6,30],[20,10]],[[4436,4958],[-1,-125],[-26,0],[-1,-522],[0,-173],[0,-63],[-18,0],[0,-383],[182,1]],[[4572,3693],[1,-190],[-1,-190],[-26,0]],[[4546,3313],[-333,0],[-211,1],[-76,-1],[-105,0],[-181,0],[-181,0],[-345,-1]],[[3114,3312],[0,190],[0,194]],[[10158,2230],[-50,0]],[[10108,2230],[-131,0],[-50,0],[-131,0]],[[9796,2230],[0,189],[0,21],[0,11],[1,159],[-1,127],[-3,63],[1,194]],[[10157,2993],[1,0],[182,0],[182,-1]],[[10521,2230],[-49,0],[-133,0],[-47,0],[-134,0]],[[5605,3314],[0,-134],[0,-56],[1,-134],[41,0],[0,-285]],[[5647,2705],[-13,24],[-33,25],[-18,-29],[-52,21],[-9,-38],[-32,30],[-15,-21],[-29,-2],[7,28],[-29,3],[-28,-15],[-34,38],[-22,-20],[-20,1],[4,38],[-27,-5],[-25,36],[-7,0],[-31,-23],[1,-19],[-38,-24],[-23,24],[-23,-18],[16,-24],[-34,-17],[-18,-20],[-23,15],[-38,-9],[-22,6],[-1,33],[-35,-5],[-13,-16],[-21,2],[5,32],[-27,9],[4,21],[-11,29],[-24,3],[-29,-2],[-46,72],[-46,-1],[11,26],[-29,5],[-21,37],[-16,-8],[-6,-24],[-38,2],[-21,38],[-5,31],[-37,-17],[-29,3],[-6,20],[-25,6],[-20,-29]],[[4546,2977],[0,336]],[[4572,3693],[404,-1],[501,1],[127,0]],[[5604,3693],[1,-379]],[[10374,6162],[187,-1],[94,0],[17,0],[34,0],[22,65],[199,-1],[186,0],[187,1],[61,0],[161,0]],[[11522,6226],[24,-55],[2,-27],[1,-108],[0,-195],[0,-189],[1,-190]],[[10896,5461],[0,190],[-2,189],[-184,1],[-110,1],[-132,1],[-94,1]],[[10374,5844],[0,127],[0,64],[0,127]],[[11397,1700],[-1,-22],[-18,-7],[-6,-23],[21,-15],[43,-6],[12,-14],[42,14],[10,0],[12,-4],[9,-37],[-2,-43],[9,-32],[0,-45],[35,-36],[6,-44],[-32,-41],[9,-25]],[[11546,1320],[-174,0],[-180,0],[-116,0],[-1,0],[-27,0],[-6,0],[-15,0],[-14,0]],[[11013,1320],[-180,0]],[[10833,1320],[0,191],[-1,190],[0,191]],[[10832,1892],[0,190],[0,149]],[[11327,2232],[19,-21],[6,-52],[-27,-22],[-4,-16],[20,-38],[29,-8],[-5,-21],[56,-53],[19,0],[4,-44],[-9,-15],[1,-52],[-12,-17],[14,-52],[-7,-28],[-29,-13],[-30,4],[-7,8],[-23,-13],[12,4],[6,-59],[37,-24]],[[10371,7557],[190,2],[191,-1],[190,0],[181,0],[221,-1],[36,0],[-9,-48],[-7,-154],[-15,-52],[-19,-16],[-24,-38],[-19,-14],[-41,-90],[-30,-31],[-60,-33],[-59,-41],[-16,-25],[-60,-42],[-62,-50],[-16,-57],[-8,-31],[83,-109],[13,-10],[43,-64],[21,-47],[30,-94],[45,-67],[24,-29],[36,-9],[70,-3],[107,-58],[37,-12],[49,-41],[29,-66]],[[10374,6162],[0,63],[0,33],[-1,94],[0,158],[0,33],[0,189]],[[7793,3754],[-26,0],[-184,0],[-185,0],[-156,-4],[-17,0]],[[10294,1508],[180,1],[0,-175],[0,-7],[0,-8]],[[10474,1319],[0,-7],[0,-183],[0,-190],[0,-190],[0,-50]],[[10474,699],[-61,13],[-14,8],[-13,44],[-1,36],[-45,21],[-46,-3],[-17,3],[-25,27],[-52,-26],[-28,-2],[-26,22],[-62,2],[-38,-43],[-65,9],[-30,18],[-41,-19],[-46,-5],[-63,23],[-48,-15]],[[9753,812],[0,316],[-3,378]],[[9750,1506],[180,1],[181,1]],[[10111,1508],[183,0]],[[10703,3753],[1,0],[182,-1]],[[10886,3752],[1,-188],[0,-191],[-1,-190],[1,-190]],[[10156,3751],[90,1],[92,1],[183,0]],[[10521,3753],[182,0]],[[7228,2230],[23,41],[-1,28],[-61,65],[-20,31],[-5,24],[-5,65],[-18,58],[-30,32],[-25,3],[-58,-14],[-47,12],[-13,35],[20,30],[18,10],[34,10],[23,20],[-2,50],[-17,36],[6,33],[18,43],[56,28],[11,16],[38,55],[6,12],[20,37],[14,29],[-14,32],[-53,38],[-15,23],[-2,26],[11,43]],[[7140,3181],[160,-3],[127,1],[89,1],[91,1],[184,2]],[[7972,3183],[2,-190],[15,0],[2,-194],[2,-190],[0,-190],[-1,-190]],[[8696,3188],[0,-190],[9,1]],[[3769,7577],[188,-1],[374,0],[410,0],[468,-1],[195,0]],[[5404,7575],[16,-29],[40,-23],[47,-49],[21,-29],[46,-33],[10,-24],[-3,-42],[11,-50],[37,-96],[42,-90],[22,-50],[0,-40],[-14,-36],[-29,-22],[-65,-5],[-40,-24],[-16,-33],[-20,-88]],[[5643,6546],[-400,-1],[-190,0],[-630,0],[-306,0],[-188,0]],[[3929,6545],[-234,0],[-570,0]],[[3124,7577],[268,0],[188,0],[189,0]],[[9970,4514],[2,0],[182,-1],[93,0],[92,0],[184,-1]],[[10523,4512],[-1,-190],[0,-188],[0,-2],[0,-31],[0,-96],[0,-63],[-1,-189]],[[9428,3751],[-7,0]],[[10833,1320],[-180,0],[-166,-1],[-1,0],[-12,0]],[[10111,1508],[0,190],[-2,189],[0,190],[-1,153]],[[7050,2230],[178,0]],[[8442,1134],[-314,0],[-180,0],[-180,-1],[-179,1],[-205,-1],[-514,0]],[[6869,2230],[181,0]],[[10713,613],[-33,5],[-42,17],[-29,4],[-61,-6],[-30,5],[-29,52],[-15,9]],[[11013,1320],[0,-190]],[[11013,1130],[0,-190],[-1,-190],[-1,-191],[1,-69]],[[11012,490],[-57,17],[-25,20],[-41,9],[-27,17],[-29,-6],[-38,-23],[-22,2],[3,44],[-11,30],[-20,14],[-32,-1]],[[10374,5844],[-21,-2],[-199,2],[-187,-1]],[[3943,5498],[152,1],[140,-2],[2,0],[41,0],[3,0],[18,0],[13,0],[55,1],[70,1],[-1,-541]],[[3124,4443],[0,202],[0,188],[0,317],[1,445]],[[3929,6545],[-1,-190],[-23,0],[0,-300],[-1,-33],[1,-268],[0,-159],[-22,0],[0,-97],[60,0]],[[6323,3843],[-17,48],[-24,15],[-60,-3],[-36,8],[-48,27],[-33,11],[-34,19],[-39,31],[-122,35],[-40,-4],[-61,6],[-64,14],[-17,9],[-62,12],[-39,13],[-20,18],[-6,34],[-7,26],[-19,125],[-32,37],[-79,9],[-23,-2],[-93,-34],[-23,2],[-35,22],[-10,41],[8,38],[34,38],[33,13],[21,30],[-13,41]],[[5363,4522],[666,1],[11,0],[613,0]],[[6673,3800],[-31,-7],[-26,-24],[-15,-41],[23,-27],[57,-8],[35,-14],[38,-29],[17,-55],[-20,-44],[-26,-12],[-38,8],[-53,26],[-30,10],[-63,32],[-28,6],[-53,-9],[-48,-13],[-38,-4],[-37,13],[-39,55],[-10,29],[-32,59]],[[6256,3751],[5,24],[44,43],[18,25]],[[5604,3693],[0,57],[214,0],[92,0],[124,0],[28,1],[194,0]],[[6805,3745],[38,-46],[17,-46],[-31,-89],[4,-38],[36,-49],[35,-32],[109,-18],[28,-16],[63,-56],[39,-41],[12,-30],[0,-42],[-15,-61]],[[5811,2699],[-32,-24],[-20,13],[-22,-27],[-16,4],[-17,47],[-57,-7]],[[10886,3752],[182,0],[4,0],[179,0],[4,0],[178,0],[5,0],[111,3]],[[11549,3755],[-1,-187],[0,-196],[0,-191],[0,-186]],[[10706,4513],[180,1],[5,0]],[[11550,4513],[0,-286],[-1,-285],[0,-187]],[[10523,4512],[93,0],[90,1]],[[6590,7190],[1,-381]],[[5404,7575],[499,-2],[311,-2],[376,-2]],[[6590,7569],[0,-379]],[[7532,7568],[189,-1],[194,-1],[184,-1]],[[6590,7569],[196,1],[213,-2],[290,0],[243,0]],[[729,3009],[301,2],[274,0],[516,-1],[261,-1],[-1,-29],[-16,-43],[-1,-45],[-13,-28],[-27,-30],[-12,-25],[-21,-17],[-17,-34],[-14,-3],[-15,-40],[-21,1],[-18,-25],[4,-25],[-13,-25]],[[1896,2641],[-7,-44],[-27,-23],[-23,18],[-38,4],[-47,17],[-25,-30],[-4,-46],[-16,-20],[0,-27],[-39,-11],[-25,11],[-40,-28],[0,-282]],[[5,2182],[-1,428],[0,394]],[[4,3004],[362,3],[363,2]],[[9433,2230],[-49,0],[-131,-1]],[[9249,2998],[176,-2]],[[9796,2230],[-49,0],[-132,1],[-50,-1],[-132,0]],[[3,4573],[32,22],[48,-16],[46,15],[29,-6],[32,4],[55,39],[30,0],[20,-24],[34,3],[48,37],[185,-1],[182,0]],[[744,4646],[-1,-436],[-1,-133],[-8,0],[0,-193],[185,2],[0,-254]],[[919,3632],[-176,0],[-264,1],[-474,0]],[[5,3633],[-2,489],[0,451]],[[9753,812],[-34,-15],[-44,-4],[-51,11],[-82,5],[-47,19],[-35,22],[-26,-2],[-46,-20],[0,-24],[-20,-66],[-25,-41],[-42,-45],[-26,-19],[-42,1],[-34,-15],[-53,3],[-38,18],[-4,19],[-49,39],[-19,25],[-33,23],[-27,41],[-9,-2]],[[9082,1505],[131,1],[178,1],[179,1],[180,-2]],[[27,5977],[808,0],[123,1],[713,-1]],[[1671,5598],[-2,0],[0,-574],[0,-63],[0,-126],[-7,0],[-1,-189],[-581,1],[-183,0],[-153,-1]],[[3,4573],[0,665],[-3,268],[28,1],[-1,470]],[[9971,5083],[185,0],[91,0],[93,0],[185,-2]],[[10525,5081],[184,3],[184,0]],[[919,3632],[121,0],[337,0],[107,0],[18,0],[7,0],[21,0],[2,0],[28,0],[153,0],[397,-1],[248,0],[26,0],[152,0],[-24,34],[23,9],[2,18],[-21,22],[18,61],[25,7],[0,27],[24,20],[-12,21],[3,32],[6,22],[-12,41],[37,99],[1,43],[46,33],[17,24],[3,27],[-7,18],[0,54],[-6,25],[59,33],[40,6],[68,-33],[11,-15],[47,6],[7,33],[50,-16]],[[2941,4282],[74,66],[-5,15],[32,18],[0,16],[26,29],[39,3],[16,13]],[[3114,3312],[-18,0],[-1,-190],[1,-189]],[[3096,2933],[0,-248],[-13,-2],[-38,-38],[-67,10],[-32,34],[-30,-18],[-2,-1]],[[2914,2670],[-26,-7],[-29,-22],[-127,0],[-362,0],[-44,0],[-430,0]],[[4,3004],[1,389],[0,240]],[[11546,1320],[-10,-43],[-24,-3],[-20,-26],[-31,-2],[-1,-55],[30,-33],[-24,-28],[-20,-42],[22,-13],[8,-27],[-14,-31],[-48,-45],[6,-34],[13,-24],[-17,-18],[3,-25],[-19,-33],[8,-29],[-7,-20],[-32,-8],[-19,-37],[-18,-60],[-14,-21],[-23,2],[-20,-34],[6,-24],[-15,-48],[22,-47],[-9,-18],[51,-38],[33,-13],[28,-40],[28,-19],[0,-14],[33,-41],[-1,-33],[12,-6],[35,-86],[-20,-27],[34,-11],[-1,-44],[-4,-25],[-16,-9],[26,-37],[-3,-51],[-39,6],[-22,25],[-14,35],[-36,23],[-36,-11],[-18,-17],[-33,-7],[-30,19],[-19,84],[-31,32],[-41,25],[-39,66],[6,38],[31,52],[-16,22],[-46,17],[-55,-11],[-44,9],[-14,13],[1,58],[-7,12]],[[5547,5288],[18,-50],[-15,-40],[-24,-29],[-85,-59],[-57,-67],[-26,-43],[-21,-11],[-64,8],[-36,10],[-49,49],[-31,47],[-22,22],[-39,11],[-17,-12],[-17,-33],[-7,-43],[17,-38]],[[5072,5010],[-54,4],[-2,-26],[-23,-5],[-12,30],[-24,-17],[-28,8],[-8,25],[-21,9],[-19,-14],[-24,1],[-44,-17],[-30,30],[-14,-30],[-57,-34],[-32,-7],[-18,-42],[-53,-17],[-20,7],[-30,28],[-42,-4],[-81,19]],[[5837,1991],[-180,-1],[-182,0],[-183,1],[-226,-2],[-133,0],[-180,0],[-168,-1],[-187,0],[-101,0]],[[4297,1988],[0,191],[0,381],[0,190],[1,118],[33,45],[36,-12],[2,26],[29,26],[29,-22],[12,23],[-5,23],[20,7],[27,-17],[31,28],[7,-17],[27,-1]],[[2964,1420],[13,0],[24,0],[-1,-284]],[[3000,1136],[-418,0],[-197,0],[-463,1],[-317,1]],[[2914,2670],[0,-490],[42,0],[1,-190]],[[2957,1990],[1,-197],[2,-373],[4,0]],[[5072,5010],[50,-35],[7,-16],[47,-8],[29,-14],[25,-66],[0,-42],[-17,-80],[-26,-65],[-5,-52],[8,-31],[29,-37],[42,-22],[86,-9],[16,-11]],[[5861,1134],[-417,2],[-418,-3],[-383,-1],[-346,1]],[[4297,1133],[0,506],[0,349]],[[4297,1988],[-416,0],[-353,0],[-374,1],[-197,1]],[[27,5977],[0,353],[-2,381],[-2,441],[-2,259],[-2,168],[459,0],[280,0],[417,0],[519,0]],[[4297,1133],[-413,-2],[-190,-2],[-134,1],[-207,6],[-353,0]]],"transform":{"scale":[0.0006585309015472383,0.00045722047763557214],"translate":[-104.057879,42.480036]},"objects":{"cb_2019_46_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[3,4,5,6,7,8,9]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[10,11,12,13,14]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[15,16,17,18,19,20,21,22]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[23,24,25,26,27,28,29]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[30,31,32,33,34,35]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-5,36,37,38,39,40]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[41,42,43,-40,44,-35,45,46,47]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[48,49,-14,50,51,52,53,54]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[55,56,57,58,59,60,61,62]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[63,64,65,66,67,68,69]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[70,71,72,73,74,75,76]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[77,-32,78,-57,79,80,81]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[82,83,84,85,86,87]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[88,89,90,-43]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[91,-22,92,-37,-4,-10,93,94]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-31,-36,-45,-39,95,-58,-79]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[96,97,98,-33,-78,-82,99,100]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[101,102,103,104,105,106]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[107,108,-12,109,110,111,112]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[113,114,115,116,117,118,119]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[120,121,122,-102,-107,123,-72,124]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[125,126,127,-118,128,129]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[130,131,-87,132,133]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[134,135,136,137,138,-76,139]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-90,140,-131,141]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-93,-21,142,-59,-96,-38]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[143,144,145,146,147,148]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[149,150,-73,-124,-106,151,152]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[-55,153,154,-19,155,-49]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-156,-18,-17,156,-111,-110,-11,-15,-50]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[157,158,-97,-101,159,160,-65,161]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-94,-9,162,163,-152,-105,164]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-125,-71,-77,-139,-138,165,-144,-149,166,-121]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[167,-54,168,-29,169]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[170,-145,-166,-137,171,172,173]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-6,-41,-44,-91,-142,-134,174]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[175,-116,176,-66,-161,177]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[178,179,-62,180,181]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-126,-130,182,-181,-61,183,-154,-168,-170,-28,-27,184]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-74,-151,185,186]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[187,-84,188,-186,-150,-153,-164,189]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[190,-98,-159,191,192]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[193,-47,-46,-34,-99,-191,-193,194]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[195,196,-1,197,198]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[199,-108,-113,200,-103,-123,201]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[202,203,204,205]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-147,206,-52,207]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[208,-68,209,-203,210]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[211,212,-85,-188,-190,-163,-8]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-205,213,214,-114,-120,215,216,217,-196,-199,218]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[-95,-165,-104,-201,-112,-157,-16,-23,-92]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-173,-172,-136,219]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[-200,-202,-122,-167,-148,-208,-51,-13,-109]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-160,-100,-81,220,221,-176,-178]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-20,-155,-184,-60,-143]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-127,-185,-26,222,223]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[-214,-204,-210,-67,-177,-115,-215]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[224,225,-2,-197,-218,226,227]],"type":"Polygon","properties":{"COUNTYFP":"102"}},{"arcs":[[-222,228,-179,-182,-183,-129,-117]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-223,-25,229,230]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[-224,231,-227,-217,-216,-119,-128]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-80,-56,-63,-180,-229,-221]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[-133,-86,-213,-212,-7,-175]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-69,-209,232]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-232,-231,233,-225,-228]],"type":"Polygon","properties":{"COUNTYFP":"007"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/tn.topo.json b/app/assets/topojson/states/tn.topo.json new file mode 100755 index 00000000..e2213689 --- /dev/null +++ b/app/assets/topojson/states/tn.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[11370,1327],[45,24],[3,33],[-47,20],[11,71],[-64,25],[53,62],[26,-3],[-17,34]],[[11380,1593],[20,2],[16,243],[3,34],[5,324],[-9,210]],[[11415,2406],[12,97],[-16,102],[37,21],[39,56],[35,-9]],[[11522,2673],[116,-83],[42,-54],[21,-19],[65,-3],[88,-52],[100,-11],[59,27],[48,-7],[85,40]],[[12146,2511],[3,-18],[16,-17],[56,-117],[19,-73],[-13,-49],[52,-72],[93,-95],[62,-8],[15,-55]],[[12449,2007],[2,-63],[-24,-63],[-12,-172],[13,-189],[-7,-42],[49,-4],[-30,-74],[-2,-43],[-67,-69],[-25,-153]],[[12346,1135],[-83,35],[-10,35],[-122,19],[-94,79],[-9,35],[-27,0],[-197,41],[-144,29],[-7,-41],[-60,0],[-72,-51],[-13,26],[-58,-14],[-49,13],[-32,-41]],[[11369,1300],[1,27]],[[19656,3385],[17,11],[31,42],[48,362],[52,-11],[-9,108],[60,87],[-39,92],[54,11]],[[19870,4087],[22,27],[-48,95],[68,35],[-15,80],[22,4],[62,-79],[56,-7],[-11,97],[-20,86],[57,17]],[[20063,4442],[-18,-80],[56,-53],[62,-81],[36,-2],[17,-39],[38,7],[120,-100],[1,-9],[7,-25],[127,-141],[149,-157],[156,-194]],[[20814,3568],[-1,-55],[-37,-46],[44,-140],[-14,-28],[-54,-15],[11,-101],[-43,-18],[-38,-44],[-46,-89],[-6,-39],[-79,-60],[-124,50],[-119,8],[-58,-54],[-59,-33],[-109,-4],[-31,-70],[-44,-60],[-35,-17],[-119,5],[-42,-43]],[[19811,2715],[-58,-6],[-13,136],[17,79],[-33,45],[-2,44],[39,70],[29,18],[-86,131],[-1,50],[-41,14],[-12,61],[6,28]],[[6558,1554],[-3,47],[-90,32]],[[6465,1633],[-11,35],[107,102],[61,-8],[56,28],[74,-12],[121,47],[11,-36],[83,14],[72,58],[196,25],[45,-31]],[[7280,1855],[12,-2],[77,-37],[112,0],[-1,-114],[110,-21],[-4,-34],[47,-58],[47,-19],[0,-29]],[[7680,1541],[-10,-571],[0,-72],[0,-116],[17,-13],[-14,-115],[-36,-62],[5,-312],[28,-88],[-76,4],[-17,-62],[16,-57]],[[7593,77],[-326,2],[-364,5],[-374,1]],[[6529,85],[4,648],[5,398],[1,29],[-79,21],[-22,56],[35,127],[-55,70],[0,74],[0,10]],[[6418,1518],[34,-20],[78,19],[28,37]],[[23085,5477],[-26,-4],[-134,-125],[-108,-85],[-45,-4],[-142,70],[-103,-92],[-32,5]],[[22495,5242],[-105,20],[-67,2],[-43,13],[-37,75],[-40,-15],[-3,53],[-44,39],[-59,-7],[-229,-40],[-132,-25],[-89,-15],[-22,22],[-135,34],[-64,-25]],[[21426,5373],[-49,76],[55,68],[74,43],[71,48],[-5,63],[52,26],[-19,184],[47,28],[-25,65]],[[21627,5974],[168,4],[90,1],[142,-3],[545,4],[232,-1],[246,-3],[472,-1],[33,81],[269,-7]],[[23824,6049],[-61,-40],[-36,10],[-35,-22],[-4,-44],[-31,-26],[-55,-10],[-63,-40],[-3,-50],[-53,-60],[-45,-21],[-55,-90]],[[23383,5656],[-49,-33],[-22,-36],[-83,-13],[-111,-106],[-33,9]],[[9772,775],[6,266]],[[9778,1041],[228,-40],[46,62],[92,95],[170,95],[97,23],[9,140]],[[10420,1416],[47,22],[111,-28],[51,-32]],[[10629,1378],[-40,-71],[24,-64],[44,-28],[151,-66],[48,-55],[79,-121],[-1,-48],[35,23],[33,-38],[38,-88],[24,-95],[0,-160],[27,-48],[45,24],[51,-24],[23,15]],[[11210,534],[1,-239],[-7,-110],[5,-155]],[[11209,30],[-309,0],[-401,0],[-80,1],[-216,3],[-448,-1]],[[9755,33],[8,335],[9,407]],[[15383,4083],[22,39],[55,-22],[39,-112],[62,-73],[136,-163],[112,-320]],[[15809,3432],[-72,-46],[-63,-137],[-91,-67],[-7,-27],[-51,-33]],[[15525,3122],[-45,1],[-238,-172],[-63,-19],[-31,-43]],[[15148,2889],[-63,16],[-120,-35],[-134,-39],[-34,94],[-29,-16],[-94,-26],[-52,35],[-173,-6],[-173,-7],[-77,-3]],[[14199,2902],[1,5]],[[14200,2907],[-19,58],[-35,19]],[[14146,2984],[10,21]],[[14156,3005],[58,20],[20,40],[53,251],[-25,59],[48,22],[4,42],[-83,10],[-64,195],[3,50]],[[14170,3694],[26,165],[33,116],[2,65],[-16,45],[5,60],[30,19],[233,-24],[59,107],[89,38]],[[14631,4285],[52,-21],[70,76],[34,0],[44,64],[79,-73],[16,36],[61,-4],[32,-34],[71,16],[27,-29],[54,35]],[[15171,4351],[29,-34],[75,-38],[108,-196]],[[2353,1825],[6,265],[-37,82],[-53,44]],[[2269,2216],[54,50],[36,4],[3,89],[6,180],[1,56],[38,-1],[22,68],[35,108],[-21,67],[1,66],[40,78],[18,45],[38,37],[10,51],[36,-6],[93,-13]],[[2679,3095],[45,-100],[72,-54],[75,-11],[46,-67],[87,-8],[101,-21],[86,-40],[127,-98],[32,-40],[45,8],[4,-3],[34,-21],[50,-8]],[[3483,2632],[-9,-376],[-8,-338],[-9,-253],[0,-2]],[[3457,1663],[-15,0],[-276,5],[-3,-95],[-1,-37]],[[3162,1536],[-435,11],[-280,3],[-100,8]],[[2347,1558],[6,267]],[[16904,2448],[25,-28],[96,-7],[-18,-53],[54,8],[38,-23],[81,11],[12,-29]],[[17192,2327],[49,-63],[61,-8],[1,-28],[59,-20],[89,-11],[5,-79],[36,-48],[37,19],[71,-15],[80,15],[16,26],[42,-12],[-9,-33],[13,-39],[-52,-54],[53,-62],[45,5],[90,-74],[-60,-36],[12,-27]],[[17830,1783],[-34,-55],[-55,-40],[-62,-97],[-9,-48],[28,-32],[1,-70],[-44,-64],[-42,-24],[25,-54],[-17,-57],[39,-61],[-96,-123],[-71,-27],[-48,-51],[-24,16],[-179,-21],[-51,-22],[-30,14],[-35,83],[-34,11],[-102,-101],[-85,-60],[-5,-70]],[[16900,830],[-94,47],[-19,-43],[-44,-8],[9,54],[-34,50],[-374,184],[-15,8]],[[16329,1122],[58,73],[57,49],[124,45],[3,251],[-48,13],[-1,62],[-30,33],[9,68],[-52,116],[-32,99],[-21,52],[-79,198],[-14,56],[-50,0],[0,80]],[[16253,2317],[1,40]],[[16254,2357],[-10,21]],[[16244,2378],[59,-17],[-25,90],[76,54],[82,2],[0,25],[143,-1],[24,-94],[50,2],[50,24],[13,67],[87,-1],[76,-27],[25,-54]],[[13189,4570],[38,40],[70,16],[31,-30],[24,43],[83,31],[-22,61],[60,-7],[12,77],[23,6],[14,85]],[[13522,4892],[100,0],[15,-112],[3,-39],[56,-23],[-8,-30],[46,-22],[95,-57],[56,-20],[110,-10],[0,-63],[10,-4],[66,-27],[268,-148],[237,-29]],[[14576,4308],[55,-23]],[[14170,3694],[-132,51],[0,14],[5,130],[-47,-6],[-85,59],[-109,34],[-312,99],[-110,-15],[-50,-33],[-75,-102],[-55,17],[-35,-46],[-59,-35],[-4,-34]],[[13102,3827],[-18,-10],[-48,65],[-52,130],[-24,18],[-77,45],[-69,-17],[-17,-35],[-41,19],[-23,20],[17,62],[-51,30],[-54,105]],[[12645,4259],[6,41],[6,119],[21,48],[-11,69],[37,17],[21,38],[-4,63]],[[12721,4654],[49,1],[56,-37],[51,18],[63,-30],[102,-5],[29,-23],[60,-15],[58,7]],[[19811,2715],[0,-71],[-44,-54],[-50,-26],[-23,-62],[-43,-11],[-63,40],[-46,-21],[-44,-78],[-61,-19],[-11,-32],[-111,-56],[-38,7],[-28,-51],[-44,-29],[-40,-82],[-36,-19],[-62,9],[-128,2],[-45,-12],[-55,57],[-79,-38],[-93,5]],[[18667,2174],[1,450],[-46,-10],[-24,82],[-50,6],[-31,65],[-7,69],[-31,24],[-12,68],[-44,134],[-40,80],[-41,87],[-16,83],[-28,41]],[[18298,3353],[44,35],[32,57],[66,32],[15,-14],[123,100],[77,66],[36,38],[-57,214],[4,33]],[[18638,3914],[50,17],[103,-88],[81,-53],[56,-47],[124,-102],[4,-2],[46,-94],[52,-30],[41,-30],[111,4],[55,35],[75,-19],[5,-54],[96,22],[86,-45],[33,-43]],[[9755,33],[-712,18],[-377,10]],[[8666,61],[-2,183],[19,172],[10,34],[1,70],[26,108],[18,35],[-65,43],[14,94],[-9,18],[11,241],[5,255],[0,203],[21,153]],[[8715,1670],[38,-9],[92,17],[29,42],[82,33],[76,-52],[38,-2],[59,-36],[58,-12],[24,15],[39,-49],[49,-35],[33,31],[73,-3]],[[9405,1610],[11,8],[88,-62],[-2,-95],[18,-92],[33,-8],[17,-46],[0,-79],[44,-37],[63,-5],[25,39],[60,-47],[15,-35],[1,-110]],[[4778,2756],[0,-1],[-6,-369],[-8,-142]],[[4764,2244],[-2,-70],[-56,-123],[-43,-63],[-77,-112],[-69,-41],[-168,-97],[-153,-90],[-73,2]],[[4123,1650],[-99,2],[-567,11]],[[3483,2632],[33,-43],[109,-31],[134,155],[220,257],[-65,50]],[[3914,3020],[81,-4],[161,-6],[118,-5],[228,-8]],[[4502,2997],[281,-7]],[[4783,2990],[-5,-234]],[[14136,6095],[-3,-150],[29,-48],[-41,-95],[-9,-60]],[[14112,5742],[-41,-16],[-108,3],[-82,-53],[-71,-34],[-130,-12],[-40,-34],[-11,-38],[-43,-55],[-27,-47],[-26,-99],[-12,-91]],[[13521,5266],[-27,18],[-70,110],[-86,83],[-11,57],[-32,-14],[-87,28],[-6,11],[-89,31],[-75,21],[-81,0],[-33,96],[-80,-11],[58,-80],[-106,6],[-38,67],[-132,-65]],[[12626,5624],[19,196],[30,227],[22,30]],[[12697,6077],[345,-14],[442,-10],[585,34],[67,8]],[[20690,5797],[165,100],[150,76]],[[21005,5973],[622,1]],[[21426,5373],[12,-32],[-74,-48]],[[21364,5293],[-36,-32],[-32,10],[-69,-69],[-44,-14],[-35,23],[-45,-52],[-54,-38],[-71,25],[-55,-24],[-41,-41],[-57,-23],[-60,-68],[-60,23],[-103,-108],[-50,-64],[-83,-70],[-29,26],[-117,-128],[-25,1]],[[20298,4670],[-58,88],[-18,61],[-34,7],[-85,125],[9,18],[-48,71],[-48,-22],[5,-89],[-44,37],[-11,-56],[-51,-50],[-37,12],[-7,-56],[-43,20],[-16,7]],[[19812,4843],[-52,112],[23,32],[3,63],[-19,67],[-49,59],[41,22],[-18,37]],[[19741,5235],[162,57],[81,53],[-28,68],[11,21],[106,50],[-14,35],[178,187],[87,55],[91,57],[18,-11],[66,55],[58,-7],[17,-65],[65,40],[51,-33]],[[17192,2327],[103,63],[19,52],[29,22],[-1,63],[-36,17],[-37,53],[1,45],[-35,64],[14,107],[45,59],[-78,41],[21,42],[17,94]],[[17254,3049],[18,-37],[48,6],[14,34],[-14,46],[22,48],[-35,50],[36,24],[48,-70],[63,54],[45,14],[31,-71],[50,9],[0,64],[52,2],[18,-38],[44,10],[3,114],[25,30],[38,-23],[30,-50],[44,37],[38,11],[163,-118],[97,-13],[67,79],[99,92]],[[18667,2174],[-124,-3],[-46,-24],[-135,1],[-24,-44],[-63,-33],[-65,-65],[-64,-17],[-68,7],[-28,-15],[-52,-77],[-30,-76],[-25,-9],[-46,-7],[-34,-39],[-33,10]],[[16482,4378],[72,16],[41,39],[-7,27],[34,67],[52,48]],[[16674,4575],[73,-6],[45,-26],[82,48],[169,-161],[31,17],[-11,97],[19,135],[240,-37],[88,-3],[52,-42],[62,29],[-17,65],[53,10],[5,48],[38,70],[43,54],[14,-92],[48,-7]],[[17708,4774],[47,-127],[29,-33],[23,-64],[64,-69],[13,-19]],[[17884,4462],[-62,-41],[-122,-146],[-22,-2],[-41,-70],[-95,-84],[-25,-39],[-60,-53],[99,-121],[-32,-28],[-42,-45],[-46,-18],[-131,-92],[-28,16],[-105,1],[-10,-53],[-41,-5],[-22,-112],[-54,37],[13,-89],[-57,-12],[2,-46],[-45,-22]],[[16958,3438],[-37,72],[-100,231],[-14,49],[-46,163]],[[16761,3953],[-55,78],[-42,79],[-8,15],[-116,48],[-27,87],[-36,30],[-20,41],[25,47]],[[11315,1059],[71,101],[9,56],[20,49],[-46,35]],[[12346,1135],[41,-90],[32,-58],[41,-96]],[[12460,891],[28,-11],[-2,-370],[0,-490]],[[12486,20],[-812,7],[-465,3]],[[11210,534],[-42,74],[38,23],[50,169],[23,32],[-12,105],[54,53],[-11,67],[5,2]],[[11601,3058],[-27,-43],[4,-120],[-23,-82],[-35,-34],[2,-106]],[[11415,2406],[-97,52],[-60,0],[-26,58],[-72,3],[-75,-37],[-45,-35],[16,-45],[-114,-28],[-5,37],[-3,61],[-21,12],[-59,-35],[-79,11],[3,31],[-78,25],[-25,52],[-41,39],[-55,43],[-222,19],[-40,-3],[-9,-59]],[[10308,2607],[-98,41],[-33,48]],[[10177,2696],[-37,29],[7,128],[45,-6],[7,56],[41,19],[6,57],[41,34],[94,-19],[5,126],[32,101],[-48,47],[-11,68],[17,25],[-36,77],[37,125],[-29,40],[18,50],[0,1]],[[10366,3654],[32,63],[-23,23],[8,59],[34,16],[37,51],[75,53],[-13,41],[4,41],[49,17],[16,41],[55,-19],[16,104]],[[10656,4144],[122,-105],[152,-112],[96,-57],[19,-54],[36,-7],[107,-93],[108,-46],[104,-18],[36,-31],[42,36],[129,-43],[67,-12]],[[11674,3602],[-6,-81],[38,-67],[-32,-20],[-8,-77],[-37,-39],[-10,-18],[-20,-181],[2,-61]],[[11354,5450],[84,-3],[10,109],[14,23]],[[11462,5579],[108,-18],[61,-142],[24,-3],[103,-12],[243,-30],[57,-7],[105,-16]],[[12163,5351],[5,-78],[-16,-34],[-66,-15],[-134,-68],[-114,-114],[-2,-3],[-43,-69],[-43,-108],[-30,6]],[[11720,4868],[-110,123],[-38,-33],[-41,46],[-7,38],[-58,0],[-8,24],[-41,-47],[-15,-117],[-38,-20],[-26,29],[23,78],[-23,71],[-30,0]],[[11308,5060],[31,43],[10,339],[5,8]],[[10476,4722],[37,62],[19,53],[-13,64],[50,62],[36,-139],[47,5],[10,49],[173,138],[41,15],[53,-25],[8,-71],[22,-23],[48,10],[9,93],[29,58],[44,25],[42,-47],[4,-115],[41,17],[90,-19],[5,78],[37,48]],[[11720,4868],[15,-45],[80,-291],[29,-6],[-19,-28],[26,-95],[36,-131],[31,-40],[-3,-48],[21,-94]],[[11936,4090],[35,-105],[2,-78],[33,-53],[-17,-50],[40,-38],[33,-139]],[[12062,3627],[-22,13],[-170,1],[-102,-21],[-98,15],[4,-33]],[[10656,4144],[-44,43],[-7,56],[-25,50],[-39,-21],[2,38],[-46,127],[-15,75],[-10,34],[-7,29],[-30,105]],[[10435,4680],[0,3],[41,39]],[[18596,4834],[-2,35],[61,179]],[[18655,5048],[13,-39],[63,9],[71,35],[50,43],[8,38],[71,-9],[15,28],[15,-34],[59,-40],[87,74],[67,26],[46,-39],[47,19],[-15,43],[37,60],[7,40],[61,17],[86,-15]],[[19443,5304],[97,24],[31,-42],[45,-2],[59,-73],[66,24]],[[19812,4843],[-66,-49],[-15,-51],[-59,23],[-42,57],[-68,-16],[-31,12],[-29,-62],[-44,-1],[-24,-10],[-55,-52],[-34,-63],[15,-46],[-60,-29],[-38,-20],[6,-59],[-55,-18],[4,-40]],[[19217,4419],[-66,-30],[-82,40],[-38,-43],[-27,60],[-40,-10],[-20,-47],[-42,7],[-4,-48],[-59,-17],[-104,-83],[31,-21],[-3,-63],[-27,-29],[-37,7],[-1,83],[-67,-10],[46,-126],[-23,-19]],[[18654,4070],[-23,65],[-32,16],[-20,69],[-51,29],[-35,50],[6,36],[-28,47]],[[18471,4382],[51,34],[-39,31],[33,65],[47,29],[18,111],[-31,47],[5,85],[41,50]],[[19382,4343],[-52,2],[-7,0],[-82,3],[-24,71]],[[20298,4670],[-83,-80],[-37,-72],[-41,-46],[-74,-30]],[[19870,4087],[-21,60],[-48,72],[-63,44],[-34,21],[-133,29],[-90,29],[-99,1]],[[21554,5012],[-25,-459],[-14,-34],[12,-8],[-9,-197],[148,-186]],[[21666,4128],[50,-66],[-72,-143]],[[21644,3919],[-82,96],[-42,-21],[-102,-52],[-15,-27],[-74,-38],[-98,-83],[-73,-22],[-26,-49],[6,-81],[-12,-48],[-52,-53],[9,-29],[-54,-30],[-11,29],[-75,72],[-61,13],[-68,-28]],[[21364,5293],[199,31],[6,-27],[-15,-285]],[[12449,2007],[172,-39],[175,39],[141,16],[270,12]],[[13207,2035],[106,-96],[82,-56],[10,-36],[-13,-73],[15,-111],[68,-38],[7,-51],[51,-31],[-43,-154],[-101,-60],[-45,-82]],[[13344,1247],[-209,-58],[-64,7],[-105,-63],[-46,3],[44,-186],[-139,-88],[-118,27],[-104,72],[-64,-4],[-79,-66]],[[4527,3557],[-5,-111],[-7,-188],[-13,-261]],[[3914,3020],[-61,55]],[[3853,3075],[-80,54],[-61,4],[-87,44],[-8,55],[-48,-21],[-75,10],[-18,22],[-109,25],[-14,79],[-39,53],[14,78],[-20,68],[-11,106],[-88,33],[-48,41],[-13,44]],[[3148,3770],[-49,45],[28,27],[91,26],[27,662]],[[3245,4530],[423,-9],[120,-2],[3,79]],[[3791,4598],[54,-71],[159,-134],[58,-111],[43,-8],[36,-54],[68,-16],[69,-17],[55,1],[103,-121],[45,-12],[61,-51]],[[4542,4004],[-8,-226],[-7,-221]],[[6100,5620],[237,-5]],[[6337,5615],[-10,-29],[14,-67],[-27,-101],[72,-88],[8,-40],[48,-54],[49,-108],[22,-21]],[[6513,5107],[-272,-4],[-28,-12],[15,-58],[-29,-109],[32,-83],[2,-63],[21,-42],[-42,-52],[-11,-50],[-32,-35],[-63,-17],[-3,-34],[-11,-39],[-91,-116],[-10,-74],[-25,-5],[-25,-52],[-51,-45]],[[5890,4217],[3,96],[-262,7],[-375,6],[-258,9]],[[4998,4335],[11,287],[3,108],[25,901]],[[5037,5631],[521,-4],[542,-7]],[[7800,4686],[6,-53],[-102,-202]],[[7704,4431],[-54,72],[-188,13],[-26,2],[-128,96],[-141,53],[-93,11],[-21,1],[-104,-46],[-320,40]],[[6629,4673],[14,78],[-32,178],[-36,56],[-34,97]],[[6541,5082],[99,0],[148,-69],[131,-22],[68,-1],[105,20],[77,32],[2,1],[95,65],[20,29],[346,-2]],[[7632,5135],[12,-76],[3,-20],[206,-26]],[[7853,5013],[-29,-310],[-24,-17]],[[14099,1051],[122,195],[57,131]],[[14278,1377],[84,182],[78,194],[54,-38],[39,49]],[[14533,1764],[71,-12],[24,-97],[52,9],[44,19],[65,-47],[77,-55]],[[14866,1581],[-33,-46],[-9,-65],[46,-28],[41,32],[28,-52],[43,-32],[-3,-39],[34,-138],[50,-83]],[[15063,1130],[-42,-123],[-42,-76],[-13,-53],[-78,-134],[-3,-95],[-40,-34],[1,-88],[42,-120],[5,-50],[33,-15],[-20,-49],[2,-60],[21,-40],[92,-74],[-44,-102]],[[14977,17],[-557,-5],[-295,-5],[-119,-3],[-175,-4],[-250,0]],[[13581,0],[60,50],[26,2],[63,62],[32,98],[48,-4],[29,21],[44,92],[13,68],[-60,66],[-24,55],[4,14],[9,85]],[[13825,609],[266,429],[8,13]],[[7282,3173],[28,249],[66,38],[58,-2],[39,26],[81,56],[23,46],[68,12],[71,-19],[92,102],[-14,65]],[[7794,3746],[250,-35],[130,-18],[239,-34],[34,-12],[275,-27]],[[8722,3620],[8,-69],[-31,-271],[-8,-62]],[[8691,3218],[-12,-116],[-41,-352],[-54,-36],[-7,-54],[-29,-17],[-65,4],[-52,-40],[-49,-105],[-39,5]],[[8343,2507],[-51,2],[-172,-129],[-111,-34],[-140,47],[-117,7],[-53,80],[-42,-1],[-58,-33],[-38,-58],[-50,-47],[-64,-18]],[[7447,2323],[-72,76],[-68,57],[-70,43],[-30,26],[16,143],[59,29],[-21,69],[-24,-10],[44,403],[1,14]],[[2269,2216],[-85,82],[-134,52],[-22,32],[-48,20],[-23,46],[-97,15],[-41,-56],[-27,25],[-96,3],[-59,-1],[-6,30],[-59,-4],[-90,-43],[-31,10],[-32,-55],[-46,-22],[-19,-53],[-83,-40],[-36,-34],[-25,15],[-54,-155],[-32,-25]],[[1124,2058],[-10,43],[-79,26],[-36,72],[-7,54],[32,41],[97,59],[46,-7],[106,70],[16,58],[-7,48],[-32,27],[-39,-21],[-23,-41],[-80,-3],[-44,27],[-69,113],[-9,123],[24,55],[126,76],[91,-66],[75,54],[89,15],[43,58],[8,64],[41,46],[67,19],[42,-17],[63,20],[41,26],[13,48],[-22,29],[-155,72],[-24,66],[20,56],[69,58],[74,-2],[75,-35],[62,-52],[50,40],[10,40]],[[1868,3417],[11,52],[27,21],[64,-15],[59,32],[26,-13],[57,46],[80,-30],[21,17],[42,-36],[39,29],[6,57],[236,-4],[28,-22],[36,-74],[82,-59],[34,-88]],[[2716,3330],[9,-69],[-37,-50],[-24,-98],[15,-18]],[[8056,1761],[-20,0],[-1,-138],[-83,7],[0,-29],[-88,0],[-20,-61],[-34,1],[-130,0]],[[7280,1855],[19,82],[57,0],[13,158],[79,47],[17,16],[0,70],[-18,95]],[[8343,2507],[21,-10],[-3,-80],[-57,-63],[2,-123],[39,-1],[0,-43],[31,-15],[35,-4],[-6,-55],[76,-18],[22,-100],[-3,-89],[24,-50],[-19,-92],[-37,-52]],[[8468,1712],[-91,11],[3,33],[-84,-5],[-56,10],[-184,0]],[[16253,2317],[1,40]],[[16204,2549],[51,23],[1,106],[31,42],[45,0],[74,93],[58,65],[34,-40],[26,18],[27,86],[79,-28],[31,81],[-7,99],[90,56],[25,66],[24,155],[145,-41],[-20,49],[24,29],[39,-19]],[[16981,3389],[63,-75],[99,-121],[111,-144]],[[16244,2378],[-61,63],[-55,-30],[-48,0],[-1,42]],[[16079,2453],[25,53],[63,0],[37,43]],[[15309,1370],[24,78],[76,172],[34,62],[32,75],[62,33],[26,70],[30,29],[21,53],[38,36],[33,18],[96,158],[10,59],[58,35],[32,65],[71,123],[28,18]],[[15980,2454],[99,-1]],[[16329,1122],[-58,-71],[-425,6],[-25,-52],[-26,-2],[-50,-46]],[[15745,957],[0,66],[-36,11],[-68,-20],[-27,72],[74,10],[-13,47],[-51,-14],[-101,97],[-57,17],[-9,35],[-53,-7],[-37,53],[-37,24],[-25,13]],[[15305,1361],[4,9]],[[13344,1247],[5,-41],[36,-22],[138,-82],[7,-23],[80,-23],[53,-18],[16,-35],[59,-66],[43,-47],[32,-80],[-13,-29],[22,-48],[-16,-56],[19,-68]],[[13581,0],[-221,4],[-874,16]],[[14984,1805],[33,-63],[47,-48],[63,-9],[56,67],[-2,62],[25,40],[80,31],[25,33],[0,31],[-54,61],[-10,43],[39,65],[31,0],[113,-32],[38,5],[23,32],[-40,49],[-5,51],[77,46],[13,68],[-24,53],[25,83],[-7,43],[-5,46],[43,97],[48,-25],[19,-54],[54,41],[1,64],[31,67],[-33,103]],[[15688,2855],[6,-2],[21,-38],[44,-1],[9,-63],[53,-27],[12,-54],[76,79],[62,-46],[11,-63],[-25,-18],[0,-103],[23,-65]],[[15305,1361],[-37,-4],[-30,-73],[-118,-143],[-40,26],[-17,-37]],[[14866,1581],[97,104],[-7,106],[28,14]],[[8468,1712],[42,-20],[145,-37],[5,41],[55,-26]],[[8666,61],[-352,8],[-246,5],[-240,1],[-235,2]],[[15171,4351],[22,60],[-29,51],[-11,82],[47,58],[60,170],[-4,32],[32,54],[38,-2],[28,-20],[58,46],[20,-23],[54,16],[1,38],[64,100],[30,-24],[62,35],[20,106],[90,16]],[[15753,5146],[252,-372],[53,22],[13,-36],[40,0],[19,-150],[39,28],[229,-111],[35,-64],[49,-85]],[[16761,3953],[-56,-21],[-57,-68],[-122,-98],[-58,-47],[-101,-8],[-15,5],[-125,-45],[-62,-31],[-3,-53],[-145,3],[-40,-70],[-85,-13],[-30,-48],[-53,-27]],[[9799,2407],[-5,-87],[-17,-46],[3,-52],[-62,-210],[-61,-86],[-24,4],[-27,-63],[-99,-84],[-85,-46],[-17,-127]],[[8691,3218],[561,-237],[129,-56],[20,41],[94,-18],[-13,-45],[-13,-14],[37,-22],[153,-65],[47,-16],[23,-34],[95,-17],[39,-47],[45,-5]],[[9908,2683],[-84,-37],[-15,-142],[-10,-97]],[[6569,3088],[23,93]],[[6592,3181],[147,-9],[-2,-26],[103,-68],[72,-33],[13,62],[53,12],[18,47],[286,7]],[[6465,1633],[-65,17],[-32,62],[7,54],[37,48],[106,39],[35,89],[5,53],[-19,53],[-48,66],[-39,89],[-64,147],[4,41],[42,120],[3,85],[-30,40],[-14,109],[53,75],[69,68],[23,49],[31,151]],[[10300,5652],[4,-40],[-31,-98],[-66,-74],[-37,-71],[-18,-36],[12,-42],[-162,32],[-18,-48]],[[9984,5275],[-27,-42],[-37,-11],[-40,-81],[13,-36],[-101,-30],[-87,68],[-13,40],[-9,-41],[-91,72],[-53,-24]],[[9539,5190],[-57,9],[-147,-60],[-55,87],[-92,54],[-99,77],[-132,103]],[[8957,5460],[-23,24],[35,287],[-70,58],[32,65],[42,260]],[[8973,6154],[376,8],[791,19],[307,10],[73,-70]],[[10520,6121],[-88,-178],[-109,-183],[-23,-108]],[[14533,1764],[53,63],[-78,63],[32,79],[64,102],[6,111],[58,60],[69,72],[2,3],[39,40],[96,138],[194,279],[80,115]],[[15525,3122],[1,-42],[45,-53],[51,-19],[26,-55],[-36,-18],[-10,-74],[60,-22],[26,16]],[[17884,4462],[54,-63],[287,-9],[134,-5],[112,-3]],[[18654,4070],[-66,52],[-53,-28],[27,-59],[71,-85],[5,-36]],[[16981,3389],[-23,49]],[[13207,2035],[139,5]],[[13346,2040],[36,35],[42,-8],[96,27],[75,-1],[44,40],[83,34]],[[13722,2167],[-35,-93],[15,-49],[32,-8],[46,-128],[125,-140],[39,-44],[63,-70],[192,-185],[79,-73]],[[16774,5613],[-1,-77],[-33,-82],[13,-141],[48,-47],[15,-38],[-35,-18],[13,-383],[-91,-49],[-39,-42],[1,-82],[20,-35],[-11,-44]],[[15753,5146],[32,18],[9,46],[76,27],[-94,149],[-64,235],[-47,96]],[[15665,5717],[-51,107],[-99,185]],[[15515,6009],[743,-26],[219,-1],[510,-15]],[[16987,5967],[-7,-92],[41,-10],[-10,-128],[-19,-60],[-76,-37],[-109,20],[-33,-47]],[[8957,5460],[-84,-38],[5,-83],[-64,18],[-23,-13],[1,-65],[-74,11],[-46,-57],[-90,-77],[-24,-69],[-51,-2],[-16,-120]],[[8491,4965],[-82,-25],[-159,23],[0,-3],[-397,53]],[[7632,5135],[-29,190],[-66,459],[0,1],[-42,352]],[[7495,6137],[465,9],[251,3],[200,2],[562,3]],[[18589,5107],[-32,9],[-25,-61],[-62,-4],[-28,29],[-1,62],[-42,53],[-22,57],[-45,35],[-72,51],[7,50],[-78,-60],[-20,28],[-59,27],[-66,-49],[-58,-5]],[[17986,5329],[-46,35],[-60,163],[-116,323],[6,92],[-15,16]],[[17755,5958],[558,-21],[276,-5],[43,67],[72,-2],[153,-9],[346,-2]],[[19203,5986],[111,-89],[62,-90],[34,-52],[28,-78],[54,-203],[-11,-105],[-38,-65]],[[18655,5048],[-66,59]],[[12062,3627],[64,-45],[135,-172],[97,-108],[53,-77],[15,-48]],[[12426,3177],[-80,-64],[-54,-89],[-28,-64],[-82,-113],[-36,-60],[-18,-138],[18,-138]],[[4764,2244],[40,13],[95,-17],[58,-141],[43,-64],[68,-73],[129,-67],[51,-14],[53,-4],[22,-25],[107,40],[35,-1],[9,-274]],[[5474,1617],[-5,-141]],[[5469,1476],[-171,5],[-294,9],[-123,-10],[-194,-79],[-62,-76],[8,-103],[-82,-9],[-46,-163],[-39,-69],[-174,0]],[[4292,981],[-47,338],[-61,95],[-62,75],[1,161]],[[16987,5967],[376,-3],[392,-6]],[[17986,5329],[-5,-78],[-39,-41],[-84,49],[-20,-79],[23,-37],[-41,-40],[-15,-47],[-11,-179],[-33,-62],[-39,0],[-14,-41]],[[2347,1558],[-186,6],[-73,-27],[-90,-11],[-96,-69]],[[1902,1457],[-29,45],[-168,4],[-21,57],[-58,-12],[-57,5],[-72,10],[-5,-65],[-61,13],[-163,-2],[-143,8],[-177,3],[-194,11]],[[754,1534],[-43,26],[71,89],[35,138],[-45,59],[-38,87],[-2,67],[27,95],[88,45],[53,0],[87,-68],[2,-54],[36,-29],[72,-20],[33,33],[-6,56]],[[717,1508],[-57,-20]],[[660,1488],[-61,41],[-57,61],[-38,7],[-37,-26],[0,-71],[23,-40],[-87,-7],[-36,38],[29,136],[111,75],[25,88],[36,42],[64,7],[48,-47],[-18,-120],[34,-69],[-20,-26],[41,-69]],[[13170,3034],[49,-23]],[[13219,3011],[-14,-87],[44,-63],[-22,-47],[7,-59],[-21,-64],[8,-94],[21,-243],[104,-314]],[[12426,3177],[35,25],[166,-2],[71,23],[2,-34],[101,26],[48,-23],[148,-46]],[[12997,3146],[30,-40],[83,-14],[60,-58]],[[3791,4598],[12,264],[15,427],[103,-10],[35,-44],[43,-7],[97,62],[14,13],[84,-9],[5,142],[2,81],[-37,119]],[[4164,5636],[873,-5]],[[4998,4335],[-2,-43],[-4,-93],[-179,3],[-154,4],[-13,0],[5,-196],[-71,8],[-38,-14]],[[10366,3654],[-40,22],[-43,8],[-94,48],[-17,22],[-13,-2],[-57,49],[-73,20],[-124,80],[-230,36],[-179,31],[-97,-80],[-168,-142],[-46,-14],[-40,208]],[[9145,3940],[-3,12],[38,-24],[8,193],[114,127],[39,300],[-4,2],[3,57],[27,91],[31,63],[44,57],[69,160],[48,151],[-20,61]],[[9984,5275],[26,-9],[51,-115],[18,-112],[68,-74],[50,-20],[29,-59],[75,-46],[8,-123],[64,-34],[62,-3]],[[23172,5134],[47,-17],[15,-43],[57,-68],[55,-12],[48,-155],[63,-52],[17,-45],[51,11]],[[23525,4753],[-120,-223],[-161,-312],[-59,24],[-20,-51],[-52,-25],[-143,0],[-16,83],[-32,77],[-81,-27],[-79,55],[-48,-1]],[[22714,4353],[-20,125],[-40,50],[-58,34],[25,43],[-4,31],[-63,38],[-16,31],[-98,32],[-59,-28]],[[22381,4709],[-5,41],[36,85],[21,72],[4,14],[58,227],[0,94]],[[23383,5656],[-6,-23],[97,-104],[-41,-41],[-75,-109],[-112,-164],[-74,-81]],[[14576,4308],[105,191],[-80,268],[-32,134],[1,88],[4,292]],[[14574,5281],[49,11],[19,158],[22,176],[67,102],[47,33],[-13,42],[24,41],[60,1],[130,56],[93,26],[121,-11],[106,-31],[124,-74],[46,-44],[50,-49],[146,-1]],[[11936,4090],[48,12],[35,-19],[50,22],[74,-11],[47,45],[13,36],[46,-25],[46,24],[41,-23],[20,53],[49,-11],[-5,-32],[79,-41],[67,95],[99,44]],[[13102,3827],[10,-24],[30,-8],[-39,-16],[-7,-50],[-46,-63],[1,-84],[23,-82],[-11,-39],[19,-42],[-1,-37],[41,-49],[-99,-94],[10,-26],[96,17],[-18,-49],[-35,-48],[-79,13]],[[1911,4459],[89,2],[307,6],[15,93]],[[2322,4560],[407,-13],[199,-6],[212,-7],[105,-4]],[[3148,3770],[-32,-109],[-65,-112],[-75,-84],[-48,-15],[-36,-100],[-176,-20]],[[1868,3417],[-32,79],[-87,81],[-77,57],[-13,85],[-39,55],[73,1],[56,123],[20,179],[38,50],[107,41],[74,46],[22,29],[5,85],[-41,78],[-63,53]],[[717,1508],[37,26]],[[1902,1457],[-16,-433],[1,-183],[1,-113],[-18,-682]],[[1870,46],[-176,-1],[-249,-3],[-187,0],[-509,2],[-747,3],[-2,52],[35,105],[15,14],[75,-5],[25,-22],[132,-29],[38,40],[2,90],[39,110],[22,99],[49,48],[48,11],[83,-56],[64,3],[56,60],[-8,66],[-66,13],[-68,114],[3,39],[55,-13],[22,65],[40,-5],[-12,62],[-58,87],[-48,17],[-67,-13],[-52,38],[-28,72],[14,52],[40,27],[28,-17],[86,23],[15,102],[-10,40],[66,95],[25,57]],[[10177,2696],[-30,-17],[-96,5],[-33,-11],[-51,-7],[-59,17]],[[8722,3620],[28,114],[17,125],[16,97]],[[8783,3956],[274,-22],[88,6]],[[6592,3181],[63,93],[32,146],[6,112],[-29,17],[-104,-10],[-73,13],[-36,22],[-28,84],[10,45],[41,39],[15,59],[-4,35],[1,42],[32,66],[73,96],[114,185],[19,142],[-50,86],[-22,85],[-30,69],[7,66]],[[7704,4431],[42,-150],[20,-160],[0,-3],[-13,-124],[11,-50],[-21,-112],[51,-86]],[[10520,6121],[158,70],[135,-3],[355,-11],[359,-33]],[[11527,6144],[-39,-296],[-16,-116],[29,-14],[-5,-67],[-34,-72]],[[14112,5742],[44,33],[54,-64],[75,-30],[107,-91],[98,-113],[8,-39],[2,-51],[29,-63],[4,-43],[41,0]],[[13522,4892],[-4,157],[-3,113],[6,104]],[[15611,253],[45,112],[-34,17],[122,288],[13,126],[-8,79],[-31,38],[27,44]],[[16900,830],[-35,-316],[-48,-494],[-692,-1],[-583,-1]],[[15542,18],[45,139],[24,96]],[[22423,4213],[-83,-13],[-53,-36],[-100,-83],[-143,-281],[-126,-111],[-73,-21],[-51,-29],[-23,-39],[-56,39],[-93,12],[18,73],[-30,48],[37,89],[-3,58]],[[21666,4128],[190,196],[112,25],[145,-3],[11,12],[45,38],[-2,40],[71,74],[64,48],[35,67],[-4,42],[48,42]],[[22714,4353],[-8,-25],[-64,-71],[-92,-8],[-26,26],[-101,-62]],[[13219,3011],[88,43],[51,-39],[52,12],[63,58],[49,-7],[58,36],[37,-3],[114,-29],[162,-64],[275,93],[-35,-46],[23,-60]],[[14146,2984],[54,-77]],[[14199,2902],[-29,-39],[-18,-98],[15,-27],[-113,-160],[-153,-195],[-179,-216]],[[8491,4965],[56,-4],[100,26],[40,-44],[120,-9],[59,-30],[-10,-126],[-71,-43],[10,-48],[37,-42],[-37,-27],[-26,-49],[49,-52],[-3,-30],[46,-26],[13,-30],[-58,-44],[14,-42],[-20,-220],[-1,-91],[-26,-78]],[[5742,3100],[242,-8]],[[5984,3092],[-23,-568],[-7,-171],[-2,-31],[-101,-204],[15,-23],[-28,-3],[-34,-69],[-13,-389],[17,-1]],[[5808,1633],[-23,-25],[-311,9]],[[4783,2990],[49,83],[57,49],[193,-5],[10,1],[650,-18]],[[23723,4997],[-38,-54],[-90,-52],[-70,-138]],[[23824,6049],[158,-4],[347,-4],[-93,-98],[8,-55],[-37,-8],[3,-47],[-49,-114],[26,-75],[6,-138],[-55,-53],[1,-61],[-17,-54],[-56,-35],[17,-124],[48,-118],[-76,-37],[-57,3],[-73,64],[-119,-32],[-83,-62]],[[12163,5351],[284,-38],[140,-14]],[[12587,5299],[-22,-223],[-30,-236],[24,-24],[9,-55],[30,-58],[57,16],[34,-16],[32,-49]],[[14313,6092],[121,-4],[409,-20],[510,-53],[162,-6]],[[14136,6095],[177,-3]],[[5469,1476],[-9,-242],[-19,0],[-7,-91],[22,-1],[-4,-132],[-10,-267],[-16,-493],[-8,-203]],[[5418,47],[-350,1],[-790,-3]],[[4278,45],[0,493],[7,221],[7,222]],[[11380,1593],[-85,-20],[-18,-56],[-99,-56],[-49,-56],[-37,0],[-21,-36],[-117,-21],[-8,-64],[-28,-39],[-62,7],[-87,65],[-28,83],[-64,0],[-48,-22]],[[10420,1416],[-52,7],[-43,86],[-70,168],[1,77],[-21,1],[4,132],[30,305],[51,12],[-59,3],[20,79],[28,285],[-1,36]],[[19203,5986],[550,4],[43,-16],[100,-1],[347,1],[600,-2],[162,1]],[[5880,3418],[4,210],[1,79],[5,510]],[[6513,5107],[28,-25]],[[6569,3088],[-92,2],[-69,-19],[4,68],[-19,53],[-51,23],[-92,-31],[-151,14],[-111,2]],[[5988,3200],[-112,2],[4,216]],[[5808,1633],[27,-34],[62,-25],[32,-54],[6,-49],[88,47],[87,-28],[56,4],[73,72],[74,44],[105,-92]],[[6529,85],[-612,8],[8,-46],[-507,0]],[[5988,3200],[-4,-108]],[[3162,1536],[-9,-327],[-16,-627],[-4,-151],[-11,-388]],[[3122,43],[-682,-3],[-570,6]],[[15542,18],[-565,-1]],[[3779,5634],[385,2]],[[2322,4560],[-8,31],[93,28],[67,116],[36,120],[33,80],[11,66],[-13,73],[34,47],[35,49],[57,119],[-25,93],[25,82],[56,77],[-16,96]],[[2707,5637],[128,15],[124,-3],[390,-10],[430,-5]],[[12587,5299],[39,325]],[[6762,6247],[148,-14],[-11,-113],[145,5],[451,12]],[[6337,5615],[44,62],[15,99],[-36,231],[-37,150],[-28,61],[-6,68],[165,-4],[308,-35]],[[4278,45],[-201,0],[-955,-2]],[[12330,6093],[245,-15],[122,-1]],[[11527,6144],[312,-20],[256,-18],[235,-13]],[[1911,4459],[-141,113],[-72,77],[28,60],[48,-17],[72,9],[116,-42],[67,0],[83,43],[65,6],[-7,81],[-48,12],[-68,40],[-94,77],[-23,51],[27,65],[81,7],[60,-17],[80,5],[36,35],[22,71],[-8,64],[-79,130],[-8,55],[50,62],[21,57],[-8,53],[-47,62],[151,-2],[-22,-69],[20,-64],[62,-16],[77,64],[55,91],[73,0],[127,15]]],"transform":{"scale":[0.0003560761642484277,0.0002696676741966268],"translate":[-90.309877,34.982987]},"objects":{"cb_2019_47_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6,7]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[8,9,10,11,12]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[13,14,15,16,17,18,19]],"type":"Polygon","properties":{"COUNTYFP":"181"}},{"arcs":[[20,21,22,23,24,25]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[26,27,28,29,30,31,32]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[33,34,35,36,37,38,39,40,41,42,43]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[44,45,46,47,48,49,50]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[51,52,53,54,55,56,57,58]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[59,60,61,-42,62,63,64,65]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[-13,66,67,68,69]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[-33,70,71,72,73,-27]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[74,75,76,-48,77,78,79,80]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[81,82,83,84,85]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[86,87,-23,88,89,90,91,92]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[93,94,-68,95,-53]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[96,97,98,99,100,101]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[102,-7,103,104,105,-31,106]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[107,-3,108,109,110,111,112,113]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[114,115,116,117,118]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[119,-118,120,121,122,-113,123,124]],"type":"Polygon","properties":{"COUNTYFP":"189"}},{"arcs":[[125,126,127,-92,128,129,130,131]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[132,-129,-91,133,-10,134]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[135,136,137,-11,-134,-90,138]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-6,139,140,141,-104]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[142,-79,143,144,145,146,147,148]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[149,150,151,152,153,154]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[155,156,157,158,159,160]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[161,162,163,164,165,166,167,168]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[169,170,171,172,173,174]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-46,175,176,177,178]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[179,-16,180,-174,181,182]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[184,185,-94,-52,-59,186,187]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[188,189,-187,-58,-184,-56,190,191,192]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-142,193,-168,194,-105]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[195,196,-189,-193,197,-165,198]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[-17,-180,-183,199,-72,200]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[-34,-44,201,202,-102,203]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[204,-73,-200,-182,-173,205,206]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[207,208,-175,-181,-15,209]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[210,211,212,213,214,215]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[-164,216,-36,217,-196,-199]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[-100,218,-131,219,-69,-95,-186,220]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[221,222,223,-162,-169,-194,-141]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[224,-97,-203,225,226,227,228]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[-185,-188,-190,-197,-218,-35,-204,-101,-221]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[-214,229,230,-160,231,232]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[233,234,235,236,-127,237]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-114,-123,238,239,-4,-108]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-76,240,241,242,243]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-98,-225,-229,244,-235,245]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[[-176,-45,-51,246,247,248]],[[249,250]]],"type":"MultiPolygon","properties":{"COUNTYFP":"167"}},{"arcs":[[-234,-238,-126,-132,-219,-99,-246]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[251,252,-222,-140,-5,-240,253,254]],"type":"Polygon","properties":{"COUNTYFP":"177"}},{"arcs":[[-148,255,256,-154,257]],"type":"Polygon","properties":{"COUNTYFP":"183"}},{"arcs":[[-124,-112,258,259,-212,260]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[261,262,263,264,-21,-26,265]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[266,267,-226,-202,-43,-62]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[268,-64,269,-254,-239,-122]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[270,271,-146,272,-178,273]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-250,274,-248,275,276]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[-259,-111,277,-206,-172,278,279]],"type":"Polygon","properties":{"COUNTYFP":"187"}},{"arcs":[[280,-157,281,-170,-209]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-120,-125,-261,-211,-216,282,283,-115,-119]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[284,-267,-61,285,-83]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[286,-191,-55,287,288]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[289,-137,290,-264,291]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[-130,-133,-135,-9,-70,-220]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[292,-40,293,-38,294,-223,-253]],"type":"Polygon","properties":{"COUNTYFP":"175"}},{"arcs":[[295,-279,-171,-282,-156,-161,-231]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-265,-291,-136,-139,-89,-22]],"type":"Polygon","properties":{"COUNTYFP":"179"}},{"arcs":[[296,297,298,-241,-75,-81,299]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[300,-262,-266,-25,301]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-65,-269,-121,-117,302,303]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[304,-227,-268,-285,-82,305]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[-295,-37,-217,-163,-224]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-243,306,307,308]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-109,-2,309,-29,310]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-237,311,-87,-93,-128]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[312,-152,313,-158,-281,-208,314,315]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-207,-278,-110,-311,-28,-74,-205]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-307,-242,-299,316,-19,317]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-47,-179,-273,-145,-144,-78]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-316,318,-297,-300,-80,-143,-149,-258,-153,-313]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-247,-50,319,320,-276]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-289,321,-166,-198,-192,-287]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[322,-256,-147,-272,323,324]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-107,-30,-310,-1,-8,-103]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[-84,-286,-60,-66,-304,325]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[[-270,-63,-41,-293,-252,-255]],[[-39,-294]]],"type":"MultiPolygon","properties":{"COUNTYFP":"185"}},{"arcs":[[-298,-319,-315,-210,-14,-20,-317]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[326,-232,-159,-314,-151,327]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[-49,-77,-244,-309,328,-320]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[329,-85,-326,-303,-116,-284,330]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-230,-213,-260,-280,-296]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-324,-271,331]],"type":"Polygon","properties":{"COUNTYFP":"095"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/tx.topo.json b/app/assets/topojson/states/tx.topo.json new file mode 100755 index 00000000..0a2b17a2 --- /dev/null +++ b/app/assets/topojson/states/tx.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[23277,16378],[50,2],[-15,24],[7,49],[37,44],[40,4],[49,30],[49,-38],[50,0],[10,31],[29,-22],[59,3],[35,-63]],[[23677,16442],[0,-583],[0,-280]],[[23677,15579],[-148,0],[-448,-2],[-133,0],[-419,-2]],[[22529,15575],[1,500],[2,107],[0,255]],[[22532,16437],[21,-34],[44,-15],[26,23],[33,-17],[66,36],[40,3],[23,33],[33,3],[59,24],[46,-29],[21,14],[32,-8],[39,-49],[30,-13],[34,20],[34,-27],[30,5],[28,-14],[62,3],[44,-17]],[[17105,5145],[249,397],[62,98]],[[17416,5640],[403,365]],[[17819,6005],[10,-12],[53,-6],[42,21],[19,-36],[43,19],[43,3],[12,-37],[14,14],[28,-40],[72,-45],[24,12],[64,-18],[19,-19],[44,47],[20,-5]],[[18326,5903],[49,-38],[5,-30],[36,-14],[6,-25],[31,-30],[19,-34],[55,37]],[[18527,5769],[35,-54]],[[18562,5715],[-1,-8]],[[18561,5707],[-39,-37],[-60,54],[-37,14],[-35,-30],[-2,-23],[60,-66],[51,-31],[16,-101]],[[18515,5487],[-625,-103],[39,-102],[49,-15],[23,-26],[39,2],[11,-17],[36,1]],[[18087,5227],[-22,-28],[-85,-32],[-72,-40],[-27,-23],[-38,-14],[-71,-57],[-60,-62],[-6,-26]],[[17706,4945],[-36,-28],[-39,31]],[[17631,4948],[-6,29],[-37,6],[-9,49],[-29,-21],[-23,11],[-5,37],[-46,10],[-23,-16],[-45,31],[-43,-14],[-5,-26],[-46,27],[14,24],[-35,-22],[-3,35],[-75,46],[-24,-6],[-49,-33],[-37,30]],[[5701,12859],[532,0]],[[6233,12859],[273,0],[336,-1],[384,1]],[[7226,12859],[60,0]],[[7286,12859],[-1,-484],[0,-158],[1,-150]],[[7286,12067],[-66,-28],[-43,-31],[-26,42],[-72,43],[4,24],[-38,13],[-19,26],[-47,14],[-6,22],[-60,3],[-46,10],[-28,23],[-11,11]],[[6828,12239],[-24,18],[-61,11],[-21,-43],[-96,0],[-45,1],[-30,15],[-43,-5],[-125,51],[-36,76],[-26,-26],[-42,12],[-46,-18],[-40,23],[-35,-18],[-25,4],[-24,32],[-46,-12],[-41,14],[-26,-15],[-55,48],[-13,27],[15,39],[-22,22],[-20,59],[14,76],[-34,68],[17,26],[-13,78],[-30,30],[-35,11],[-48,-27],[-71,43]],[[14343,10307],[88,1]],[[14431,10308],[279,2],[124,-1],[297,2]],[[15131,10311],[7,-561],[0,-134],[0,-103]],[[15138,9513],[-346,-3],[-253,1],[-25,0]],[[14514,9511],[-272,-3],[-281,-4],[-163,-2],[-1,337]],[[13797,9839],[-4,472]],[[13793,10311],[550,-4]],[[15803,4018],[2,-430],[0,-163],[1,-276]],[[15806,3149],[-547,6]],[[15259,3155],[2,173],[-56,1],[-1,34],[-69,-1],[0,-45],[-67,-1],[0,44],[-233,-3],[-92,-6]],[[14743,3351],[-2,333],[-6,638],[-2,586]],[[14733,4908],[636,0],[245,0]],[[15614,4908],[186,1]],[[15800,4909],[1,-415],[2,-476]],[[15029,8641],[301,290],[135,136]],[[15465,9067],[218,222]],[[15683,9289],[275,-229],[57,-48],[170,-142],[59,-213]],[[16244,8657],[-172,-152],[-209,-105],[-205,-92]],[[15658,8308],[-33,30],[-20,11],[-11,93],[-35,26],[-28,-9],[-3,90],[48,1],[25,13],[5,27],[-21,15],[-45,4],[-78,36],[-6,-38],[-47,-22],[2,28],[-65,2],[-50,12],[-75,30],[-59,-5],[-53,-22],[-80,11]],[[22026,17593],[48,-51],[40,-2],[-4,-34],[52,-28],[33,1],[2,40],[23,21],[12,-46],[22,-30],[23,7],[29,-23],[39,19],[36,-25],[-25,-46]],[[22356,17396],[-1,-576],[-1,-250]],[[22354,16570],[-17,-25],[-40,31],[-26,52],[-33,18]],[[22238,16646],[-7,27],[-33,16],[-52,-14],[-34,39],[-54,-11],[-42,-12],[-54,21],[-20,-12],[-48,10],[-47,-3],[-40,-22],[-68,11],[-50,23],[-46,-15]],[[21643,16704],[-38,-17],[-31,6],[-45,-12],[-69,-2],[-36,-23],[-109,32],[-12,-10]],[[21303,16678],[-4,6]],[[21299,16684],[-4,488],[0,16],[0,383],[0,183],[1,29]],[[21296,17783],[39,-9],[44,49],[25,-3],[8,58],[-3,40],[32,25],[4,22],[31,6],[28,-19],[53,-16],[24,-20],[70,-14],[-20,-33],[28,-28],[52,23],[-18,-51],[34,-19],[4,46],[35,-3],[3,-31],[22,-56],[102,-22],[44,19],[9,-53],[38,-17],[-18,-29],[25,-24],[28,7],[7,-38]],[[16442,12762],[239,143]],[[16681,12905],[144,85],[34,-58],[101,-173],[24,-41]],[[16984,12718],[183,-310],[154,-259],[14,-23]],[[17335,12126],[-113,-69],[-172,-103],[-462,-280],[-1,-1],[-118,-71],[-52,-31]],[[16417,11571],[-114,195],[-71,121],[-328,556]],[[15904,12443],[196,116],[342,203]],[[18408,7280],[355,297]],[[18763,7577],[34,-36]],[[18797,7541],[135,-135],[487,-494]],[[19419,6912],[-2,-50],[-13,-334],[-12,-253]],[[19392,6275],[-152,-2],[8,34],[1,89],[-15,-1],[-39,-58],[-88,7],[-187,-3],[-20,43],[-49,-8],[-60,-20]],[[18791,6356],[-47,56],[-3,53],[-30,5],[-25,33],[8,29],[-46,56],[15,76],[-34,44],[-7,39],[-73,38],[-2,16],[-34,11],[-31,83],[-6,55],[-39,90],[-13,9],[-187,84]],[[18237,7133],[171,147]],[[20444,15306],[136,-45],[34,-42],[27,-15],[45,19]],[[20686,15223],[16,-25],[39,-14],[21,-34]],[[20762,15150],[0,-69],[0,-390],[39,-39],[39,-26],[26,-38],[70,-53],[0,-17],[59,-72],[26,-2],[14,-28]],[[21035,14416],[-488,1],[-157,1],[-278,2],[-255,1]],[[19857,14421],[0,166],[0,104],[1,186],[-1,192],[-1,416]],[[19856,15485],[267,-3]],[[20123,15482],[23,-47],[82,-63],[66,-40],[52,-9],[32,19],[63,-5],[3,-31]],[[6771,21644],[550,3],[253,2],[848,6]],[[8422,21655],[0,-17]],[[8422,21638],[-4,-271],[-1,-276],[-4,-419]],[[8413,20672],[-142,0],[-96,3],[-206,2],[-292,3],[-125,1],[-235,-5],[-548,-4]],[[6769,20672],[1,468],[1,504]],[[11170,8107],[1,-186],[-13,-40],[-8,-70],[8,-13],[-11,-58],[-65,-27],[-3,-45],[18,-34],[-13,-77],[-92,-30]],[[10992,7527],[-74,44],[-42,32],[-41,11],[-16,60],[-34,9],[-25,27],[-42,20],[-16,31],[-104,39],[-23,50],[-38,41],[-12,53],[-26,24],[-13,42],[-44,21],[-52,-2],[-28,22],[-41,-3],[-37,60],[-4,23],[-36,13],[-80,10],[-37,-10],[-12,36],[38,64],[-21,85],[4,45],[-36,13],[-21,-34],[5,-53],[-24,-43],[-40,31],[-2,57],[24,65],[-28,41],[-57,7],[-22,-29],[-30,69],[-4,47],[-43,34],[-5,47],[-28,18],[29,30],[-18,24],[-48,-41],[-28,2],[-21,81],[-26,-9],[-52,-47],[-68,-6],[8,80],[-13,29],[-48,-27],[-18,-66],[-58,10],[-42,-11],[-30,-31],[-30,37],[-36,-23],[-16,23],[-42,-19],[-91,43]],[[9177,8723],[2,483],[2,636]],[[9181,9842],[396,1],[324,-1],[571,0],[208,0]],[[10680,9842],[489,1]],[[11169,9843],[1,-982],[0,-488]],[[11170,8373],[0,-266]],[[20369,9404],[61,-5],[54,20],[16,-7],[35,19],[46,-7],[37,5],[29,17],[61,59],[50,-2],[83,79],[53,-20],[46,-42],[16,-70],[31,-17],[95,28],[9,-23],[52,-50],[33,7],[17,-20],[29,-1],[75,-68],[-3,-28],[34,-11],[54,9],[263,249],[52,50]],[[21697,9575],[45,-142],[78,-243],[18,8],[41,-12],[27,-42],[-4,-43],[-21,-73],[20,-34],[13,-45]],[[21914,8949],[8,-36],[45,-28],[32,-45],[46,-14],[3,-16],[-24,-41],[9,-31],[-1,-72],[-43,-70],[14,-40],[16,-6],[9,-40],[-20,-26]],[[22008,8484],[-22,53],[-105,24],[-7,-20],[38,-51],[-29,-22]],[[21883,8468],[-8,-8]],[[21875,8460],[-18,-30],[-7,-38],[19,-25]],[[21869,8367],[6,-5]],[[21875,8362],[36,-39],[-37,-47]],[[21874,8276],[-4,-5]],[[21870,8271],[-24,-63]],[[21846,8208],[-61,20],[-36,-3],[-57,-85],[-108,-45],[-24,37],[-25,9],[-8,33],[-23,23],[3,31],[-35,-5]],[[21472,8223],[-23,9],[-47,-14],[-15,87],[-49,12],[-41,-8],[-40,9],[-29,-30],[-56,6],[-32,-14],[-58,-4]],[[21082,8276],[-277,152],[-72,40],[-138,91],[-269,178]],[[20326,8737],[-57,191],[-23,75],[-44,148],[-61,195],[-67,221],[38,-40],[21,-3],[34,-35],[41,-20],[28,6],[21,-33],[24,-11],[24,-42],[35,0],[29,15]],[[21938,8503],[-14,-10]],[[21924,8493],[14,10]],[[7226,13820],[173,2],[380,0],[409,0]],[[8188,13822],[-1,-471],[1,-493]],[[8188,12858],[-58,0]],[[8130,12858],[-21,0],[-823,1]],[[7226,12859],[1,469],[-1,492]],[[7997,11610],[165,-2]],[[8162,11608],[548,-8],[438,-6]],[[9148,11594],[601,-1],[341,0]],[[10090,11593],[587,7]],[[10677,11600],[3,-492],[0,-341]],[[10680,10767],[0,-451],[0,-474]],[[9181,9842],[26,30],[14,56],[69,42],[58,-14],[20,7],[1,33],[-50,27],[-19,20],[-11,51],[-51,14],[-23,29],[38,46],[2,29],[57,28],[-6,52],[32,23],[3,50],[50,59],[1,22],[-32,62],[13,35],[-4,27],[-28,49],[-31,0],[-36,30],[-112,1]],[[9162,10650],[-14,63],[-32,33],[-27,7],[-1,57],[-15,59],[-43,26],[-2,47],[16,37],[-30,59],[4,28],[-36,78],[-50,30],[32,48],[-18,31],[-36,4],[-31,17],[-3,25],[-58,20],[-18,34],[-42,36],[-56,-10],[-70,45],[-58,-36],[-29,20],[-32,-9],[-16,17],[-39,-6],[-16,24],[-71,-9],[-38,66],[-86,17],[-19,-15],[-50,6],[-21,33],[-28,20],[-71,30],[-8,11],[-53,17]],[[20762,15150],[79,-60],[20,-29],[33,-7],[25,-52],[78,-32],[93,7],[71,-23],[68,24],[75,-38],[52,-45],[45,8],[30,-33],[59,-2],[33,-29],[26,20],[19,-25],[23,57]],[[21591,14891],[14,-1],[19,-48],[96,11],[1,-23],[68,-7],[13,-16],[48,24],[-4,-36],[16,-22],[36,39],[5,6]],[[21903,14818],[1,-138],[0,-55],[2,-175]],[[21906,14450],[0,-97],[0,-113],[0,-86],[0,-219]],[[21906,13935],[-350,-2],[-106,-2],[-435,-1]],[[21015,13930],[-34,23],[-1,18],[30,105],[-45,52],[7,34],[28,13],[-4,35],[25,28],[15,56],[-19,62],[18,60]],[[21062,11546],[321,260],[30,24],[33,27],[146,117],[270,220],[95,79]],[[21957,12273],[9,-5],[-15,-71],[13,-22],[85,-12],[19,-22],[-3,-34],[33,-54],[-27,-65],[41,-20],[25,-37],[-7,-52],[30,-67],[-7,-26],[21,-44]],[[22174,11742],[-181,-232],[-229,-222],[-61,-60],[-200,-199]],[[21503,11029],[-58,37],[-23,57],[23,44],[-29,38],[-37,2],[-65,-6],[-23,-10],[-2,-54],[-26,-30]],[[21263,11107],[-33,35],[-13,-41],[-62,-7],[-25,13],[11,45],[-40,84],[-2,34],[-36,9],[-1,267]],[[23536,9740],[1,0]],[[23537,9740],[2,-51],[41,-35],[-30,-34],[-10,-60]],[[23540,9560],[-42,18],[-58,11],[-65,34],[-35,-38],[-26,-14],[-78,5],[2,-60],[-30,-51],[-43,1],[-43,-30],[-71,10],[-44,-25],[-28,3],[-42,34],[-15,-3]],[[22922,9455],[-285,-2],[-35,114],[-61,198],[-160,524]],[[22381,10289],[366,2],[-15,80]],[[22732,10371],[93,0],[436,-1],[23,0],[339,-1]],[[23623,10369],[-15,-70],[-19,-20],[-16,-60],[-39,-108],[4,-27],[26,-11],[7,-68],[27,-18],[3,-25],[-37,-36],[6,-19],[-34,-37],[-3,-34],[24,-69],[-21,-27]],[[20479,16498],[35,18],[30,-7],[69,1],[18,18],[37,5],[54,57],[10,26],[55,20],[45,-14],[43,15],[16,-23],[75,2],[133,47],[32,-9],[78,-1],[38,-11],[43,14],[9,20]],[[21299,16676],[1,-268],[-1,-512],[-1,-137]],[[21298,15759],[-167,-1],[-210,-1],[-292,-3]],[[20629,15754],[-5,43],[-100,0],[-147,0],[-119,0]],[[20258,15797],[-1,45],[3,485]],[[20260,16327],[145,80],[24,48],[50,43]],[[8138,12316],[12,-460],[12,-157],[0,-91]],[[7997,11610],[-33,2],[-26,67],[-15,13],[7,52],[-1,68],[-9,34],[-30,46],[-32,10],[-49,34],[-42,55],[-120,30],[-21,-21],[-34,17],[-23,41],[-35,9],[-21,44],[-27,2],[-23,30],[-66,-37],[-31,-6],[-10,-46],[-45,-19],[-25,32]],[[8130,12858],[3,-276],[5,-266]],[[18724,11072],[21,-25],[50,-32],[6,-52],[-8,-39],[34,7],[24,-47],[-9,-22],[-31,-17],[22,-23]],[[18833,10822],[-150,-90],[-332,-198],[-161,-96]],[[18190,10438],[-166,-101],[-194,-120]],[[17830,10217],[-126,360],[-58,162],[-35,94],[-83,37]],[[17528,10870],[98,279],[25,36],[245,146],[84,50],[9,6]],[[17989,11387],[194,116],[105,67],[153,92],[1,-10]],[[18442,11652],[37,-59],[-22,-34],[29,-10],[24,14],[27,-67],[17,-74],[26,7],[20,-23],[-49,-50],[3,-30],[27,-33],[-2,-37],[50,-60],[28,-4],[34,24],[4,-98],[29,-46]],[[15447,17692],[1,240],[-1,164],[0,142]],[[15447,18238],[47,48],[6,59],[25,39],[34,18],[72,-14],[47,-36],[83,-11],[47,10],[14,-20],[45,-18],[58,-6],[27,19],[34,49],[25,21],[26,-1],[12,-42],[23,-29],[-26,-52],[-28,-31],[9,-49],[58,-45],[-27,-40],[29,-29],[0,-18],[78,-20],[41,1],[90,25],[25,-32],[23,-5],[-27,-81],[9,-30],[-3,-53],[-51,-35],[12,-19]],[[16284,17811],[0,-168],[-2,-192],[0,-576]],[[16282,16875],[-364,-1],[-467,1]],[[15451,16875],[-3,419],[0,44],[-1,354]],[[16894,5103],[161,-36],[50,78]],[[17631,4948],[22,-36],[161,-259],[51,-84]],[[17865,4569],[2,-14]],[[17867,4555],[-4,-10]],[[17863,4545],[-22,-19]],[[17841,4526],[-25,-36],[-52,-100],[-59,2],[1,31],[-27,26],[-16,37],[-10,21],[-46,12],[-108,-19],[-12,23],[-74,-19],[-47,3],[-26,-13],[-74,3],[-14,-19],[-35,-7],[-18,44],[-30,-4],[-26,-39],[10,-21],[34,-4],[12,-20]],[[17199,4427],[-22,13],[-61,4],[-14,23],[-58,6],[-30,-11],[-40,44],[2,32],[-41,3],[10,-23],[-16,-31],[-76,34],[7,23],[-36,53],[-33,12],[-16,-11],[-111,45],[-13,21],[-46,-28],[-5,51],[21,84]],[[16621,4771],[15,52],[-29,49],[-42,-10],[-74,9],[-29,35]],[[16462,4906],[-34,25],[-12,65],[7,37],[162,139]],[[16585,5172],[309,-69]],[[17662,4419],[23,-5]],[[17685,4414],[-23,5]],[[17661,4471],[1,-1]],[[17662,4470],[-1,1]],[[16683,10162],[35,37],[60,20],[49,7],[11,41],[17,0],[42,-11],[88,49],[64,5],[52,-45],[28,-8],[30,22],[20,-17],[64,-30],[41,-6],[34,-22],[22,-31],[19,9],[68,-49]],[[17427,10133],[-75,-149],[-154,-310],[-2,-4],[-295,-315]],[[16901,9355],[-11,11],[-103,-107]],[[16787,9259],[-411,349],[-113,99],[-196,164],[-150,122]],[[15917,9993],[90,155]],[[16007,10148],[52,92],[0,66],[-30,-27],[-18,4],[106,234],[32,69]],[[16149,10586],[38,-21],[32,5],[40,-16],[25,27],[40,14],[41,-40],[33,-12],[-9,-31],[13,-23],[51,-52],[38,-23],[-7,-52],[26,-47],[17,-64],[43,-38],[113,-51]],[[19901,13643],[360,50],[345,51],[331,50],[137,23]],[[21074,13817],[-18,-36],[5,-34],[25,-20],[-20,-29],[16,-26],[-10,-24],[-37,-35],[-8,-73],[15,-30],[40,-36],[-13,-82],[-7,-55],[-20,-24],[5,-33],[34,-2],[39,-42],[-1,-26],[19,-51],[-7,-27],[11,-34],[55,-16],[-14,-37],[8,-20],[53,20],[-9,-39],[27,-2],[13,-28],[52,-41],[33,-64],[-18,-61],[38,-11],[11,-37],[-26,-33]],[[21365,12729],[-413,-62],[-298,-51],[9,-33],[-173,-50]],[[20490,12533],[4,32],[-37,27],[9,46],[63,4],[-3,85],[19,52],[-25,48],[-23,36],[-41,-22],[16,-50],[-9,-31],[-28,-21],[-35,46]],[[20400,12785],[-16,24],[11,38],[-11,63],[-25,-6],[-21,33],[-29,19],[-37,2],[-13,-20],[-35,31],[26,60],[-17,60],[-36,6],[-5,19],[-50,-2],[-11,14],[-55,22],[-45,17],[19,65],[-9,17],[-31,36],[16,37],[-35,28],[-43,12],[15,57],[25,45],[-27,31],[12,17],[-54,37],[-41,40],[30,37],[-7,19]],[[15029,8641],[-29,9],[-29,-26],[-20,3],[-24,-3],[-71,-46],[-46,12],[-31,-4]],[[14779,8586],[-261,136]],[[14518,8722],[-3,154],[-2,305],[1,330]],[[15138,9513],[327,-446]],[[19775,8860],[0,-23],[32,-53],[38,-11],[62,-3],[15,-24],[-3,-30],[25,-54],[-19,-33],[14,-26]],[[19939,8603],[14,-24],[25,6],[13,-25],[-27,-19],[-23,-25],[-45,-12],[22,-38],[26,21],[23,-66],[2,-41],[-16,-53],[-120,-3]],[[19833,8324],[-12,24],[-39,24],[-48,-8],[-64,31]],[[19670,8395],[-45,50],[-47,19],[-27,-16],[-39,26],[-33,65],[14,39],[-38,24],[-12,47],[-29,17],[-12,77],[-28,17],[4,35],[-21,22],[-29,-12],[-41,14],[-17,-9],[-58,18],[-29,41],[-48,15],[-46,28],[-95,88],[-65,120]],[[18929,9120],[-98,183]],[[18831,9303],[53,59],[15,-14],[126,1],[155,25],[186,30],[84,14],[31,-9],[32,-36],[58,-1],[67,-23],[56,-27],[32,38]],[[19726,9360],[10,-26],[44,-18],[42,-55],[19,-45],[-37,-19],[16,-40],[-22,-42],[-26,-22],[-18,-34],[33,-41],[-24,-37],[57,-49],[-31,-9],[4,-31],[-18,-32]],[[17076,7330],[199,173],[303,261],[92,79]],[[17670,7843],[70,-86],[173,-211],[253,-323]],[[18166,7223],[-42,-36],[-65,-52],[-239,-206],[-274,-237]],[[17546,6692],[-8,28],[-56,42],[-59,8],[-20,36],[-45,12],[-21,9],[-194,-161],[-101,-86]],[[17042,6580],[-312,394],[-27,34],[234,202],[32,26]],[[16969,7236],[107,94]],[[13996,13805],[145,1]],[[14141,13806],[365,-4]],[[14506,13802],[118,-206],[138,-236],[225,-393]],[[14987,12967],[-172,-28],[-38,-170],[-80,-58],[-226,-161],[-92,-62]],[[14379,12488],[-51,-32],[-41,47],[-27,-36],[-53,-35],[-14,5]],[[14193,12437],[-17,-26],[-31,42],[-32,-7],[-54,6],[-35,-28],[-15,34],[-26,-7]],[[13983,12451],[-1,293],[0,351],[3,208],[5,261],[6,241]],[[10446,23560],[-1,-543],[0,-411]],[[10445,22606],[0,-5]],[[10445,22601],[-481,0],[-529,0]],[[9435,22601],[0,71],[-1,339],[0,573]],[[9434,23584],[483,0],[529,-1]],[[10446,23583],[0,-23]],[[13620,5724],[2,-170],[1,-321]],[[13623,5233],[-903,-10],[-219,-3],[-230,-2]],[[12271,5218],[-1,956],[0,40]],[[12270,6214],[335,-3],[114,-6],[178,0],[477,-3],[221,-4]],[[13595,6198],[25,0]],[[13620,6198],[0,-474]],[[23997,10822],[6,217],[7,262],[-8,42],[-78,424]],[[23924,11767],[584,40]],[[24508,11807],[23,-23],[74,46],[23,-62],[-23,-22],[16,-43],[-17,-64],[-25,-6],[20,-41],[37,-10],[25,-28],[-23,-22],[18,-34],[25,-15],[-47,-24],[-11,-23],[-49,11],[-24,-30],[26,-26],[-9,-26],[70,-40],[11,-46],[-9,-29],[-37,-7],[-15,-17],[17,-35],[-32,-6],[-14,-23],[31,-72],[-20,-20],[28,-22],[-40,-70],[-33,-83],[-43,-17],[12,-18],[-5,-66],[-25,-38],[8,-15],[-34,-47],[-31,-6],[-29,-30],[-24,-35],[-4,-35],[12,-69],[-65,-14],[-27,-30],[7,-33],[-18,-61],[50,-45],[-18,-65],[32,-53],[1,-45],[-39,-24],[-17,-29],[-55,-66],[6,-19],[-15,-69],[36,-88],[74,-31],[-8,-55],[6,-47]],[[24311,9745],[-357,-3],[-11,0]],[[23943,9742],[23,433],[15,290],[16,357]],[[17212,17868],[44,-26],[18,-28],[-1,-45],[-21,-65],[18,-29],[50,-20],[101,0],[27,23],[36,71],[20,-15],[25,25],[18,44],[66,-62],[40,37],[6,56],[37,31],[29,4],[48,-34],[11,-19],[24,-100],[-28,-35],[-41,-21],[-4,-42],[28,-46],[35,-98],[43,-35],[43,-11],[55,24],[20,36],[2,48],[-18,73],[31,31],[57,10],[-19,43],[-48,8],[-7,29],[36,16],[23,-11],[19,-36],[41,11],[72,93],[2,41],[-19,60],[-1,34],[43,-26],[52,30]],[[18225,17942],[0,-335],[3,-424],[0,-29],[-1,-391]],[[18227,16763],[-310,13],[-6,0],[-510,18]],[[17401,16794],[1,6],[-196,1]],[[17206,16801],[2,301],[1,176],[3,590]],[[8413,20672],[-1,-338],[-2,-626]],[[8410,19708],[-379,-3],[-230,1],[-60,1]],[[7741,19707],[-443,1],[-530,0]],[[6768,19708],[1,457],[0,507]],[[17335,12126],[86,-102],[55,-66],[123,78]],[[17599,12036],[93,-156],[173,-285],[124,-208]],[[17528,10870],[-163,73],[-208,93],[-210,95],[-194,45],[-67,16],[-121,18]],[[16565,11210],[-23,51],[-86,160],[-48,74]],[[16408,11495],[-4,68],[13,8]],[[17435,14086],[-208,-54],[0,-19]],[[17227,14013],[-68,-27],[4,-56],[-47,8],[-38,22],[-28,65],[-43,-10],[6,37],[-15,28],[-32,0]],[[16966,14080],[0,173],[-1,82]],[[16965,14335],[-3,338],[3,53],[-3,133]],[[16962,14859],[125,-1]],[[17087,14858],[88,0],[405,-6],[95,-2],[283,-5]],[[17958,14845],[0,-300],[1,-140],[0,-142],[0,-46]],[[17959,14217],[-142,-34],[-264,-67],[-118,-30]],[[20660,11572],[-31,29],[-18,-15],[-33,13],[-58,-5],[-33,23],[-44,9]],[[20443,11626],[-21,61],[0,31],[51,43],[37,19],[-32,40],[-4,58],[37,36],[8,48],[-3,55],[41,25],[24,33],[36,-4],[0,46],[30,30],[-8,34],[-27,-1],[15,49],[-21,4],[-26,13],[-5,28],[-33,81],[1,67],[-27,18],[5,33],[-31,60]],[[21365,12729],[32,-37],[56,3],[34,-16],[60,32],[51,-35],[11,-65],[30,-3],[52,-43],[12,-35],[-31,-40],[19,-35],[74,-2],[17,-33],[51,-23],[14,4],[25,-42]],[[21872,12359],[35,-26],[50,-60]],[[21062,11546],[-344,-283]],[[20718,11263],[-39,-8],[-76,141],[16,8],[23,49],[-9,38],[53,9],[9,32],[-28,6],[-7,34]],[[21703,15928],[28,29],[34,6],[39,34],[53,13],[69,-7],[64,4],[26,-9],[5,-30],[54,-47],[10,-23],[57,-47],[75,-47]],[[22217,15804],[32,-38],[31,-14],[25,-41],[4,-30],[28,-19],[53,-11],[15,-20]],[[22405,15631],[-209,-3],[-402,-1],[-201,0]],[[21593,15627],[0,245]],[[21593,15872],[49,47]],[[21642,15919],[40,-5],[21,14]],[[22797,13572],[230,3],[114,2],[588,9]],[[23729,13586],[63,-89],[14,-41],[29,2],[10,-26],[46,2],[11,-20],[48,-18],[-8,-32],[36,-40],[3,-38],[15,-18],[-3,-33],[40,-36],[26,-11],[9,-38],[21,-18],[-24,-59],[43,-50],[-7,-38],[43,-14],[-19,-37],[-41,-41],[19,-77],[-5,-34],[-22,-7],[-17,-32],[9,-29]],[[24068,12714],[-65,29],[-30,5],[-26,23],[-132,-87],[-28,-7]],[[23787,12677],[-200,113],[-579,73]],[[23008,12863],[-11,47],[-1,5],[-3,38],[-19,26],[7,83],[-33,64],[5,67],[-10,45],[-35,47]],[[22908,13285],[-22,27],[4,33],[-23,25],[-19,47],[-35,23],[-16,27],[0,105]],[[22083,12695],[-9,-70],[29,-38],[28,-4]],[[22131,12583],[-259,-224]],[[21074,13817],[-6,20],[-39,31],[-17,35],[3,27]],[[21906,13935],[0,-295],[1,-351],[89,-1]],[[21996,13288],[3,-31],[-34,-77],[-45,-7],[12,-25],[62,-22],[15,-38],[-56,-5],[-21,-29],[25,-35],[-13,-67],[15,-15],[30,-132],[30,-47],[3,-59],[16,-21],[44,18],[1,-1]],[[21996,13288],[316,-4],[166,0],[430,1]],[[23008,12863],[12,-31],[46,-11],[42,-58],[39,-38],[26,-4],[9,-38],[8,-133],[-6,-34],[-26,-40],[12,-39],[-15,-35],[24,-68],[-36,-32],[-1,-38],[1,-63],[17,-21],[5,-80],[-13,-48],[-33,-52],[3,-39],[22,-46]],[[23144,11915],[-57,49],[-1,28],[-31,14],[-25,38],[-11,35],[-42,22],[-42,8],[-22,19],[-15,64],[-26,52],[3,23],[-43,24],[-35,37],[-11,-21],[-38,-8],[-14,57],[-19,24],[-50,-4],[-3,23],[-36,4],[-31,-14],[-32,4],[-46,25],[-49,-3],[-46,14],[-34,0],[-18,16],[-80,37],[-34,1],[-9,19],[-37,-8],[-21,35],[-50,27],[-8,27]],[[16754,8154],[178,277]],[[16932,8431],[29,-11],[37,-32],[353,229],[173,112]],[[17524,8729],[352,-313],[-23,-34]],[[17853,8382],[-104,-94],[-11,-11],[3,-161],[-17,-65],[-54,-208]],[[16969,7236],[-216,247]],[[16753,7483],[-11,13],[-234,278],[34,52]],[[16542,7826],[163,248],[27,46],[22,34]],[[10081,19710],[355,0]],[[10436,19710],[274,0]],[[10710,19710],[-1,-265],[-2,-699]],[[10707,18746],[-179,0]],[[10528,18746],[-285,-1],[-523,0]],[[9720,18745],[0,492],[0,261],[0,210]],[[9720,19708],[361,2]],[[23623,10369],[-13,47],[-14,0],[-5,62],[5,45],[31,56],[22,9],[13,30],[-10,35],[-62,42],[-4,33],[-65,-10],[3,41],[-26,62],[18,31],[-21,77],[-20,24],[-58,17],[-2,64],[-30,60],[8,22],[-26,101],[8,56],[-31,0],[-45,75],[0,32],[21,17],[-15,39],[-21,23],[-55,-1],[-32,36],[-50,-32],[-36,43],[-68,-25],[-63,-4],[-42,-28],[-26,11],[-15,32]],[[22897,11491],[617,146]],[[23514,11637],[123,29],[39,14],[8,34]],[[23684,11714],[240,53]],[[23943,9742],[-406,-2]],[[23677,16593],[0,-151]],[[22532,16437],[-21,33],[-45,21],[-12,40],[-60,-10],[-40,49]],[[22356,17396],[34,29],[49,-27],[-7,-34],[39,-8],[34,23],[34,-29],[-27,-14],[-6,-29],[54,5],[17,37],[28,-12],[20,-28],[23,32],[19,2],[4,-47],[65,0],[-3,-24],[-39,-16],[25,-25],[26,22],[22,-49],[42,11],[26,35],[56,16],[24,-20],[-12,-43],[-27,-17],[29,-34],[45,-2],[32,-49],[44,-49],[63,-8],[41,31],[46,-13],[21,55],[30,-7],[15,-32],[31,53],[36,-13],[-22,-44],[32,-10],[27,8],[46,39],[20,47],[41,-13],[25,-52],[54,3],[70,19],[30,-14],[-10,-34],[54,-3],[1,-471]],[[22211,7709],[3,48],[21,15],[56,-44],[-2,-18],[-32,-26],[-44,2],[-2,23]],[[22053,7651],[-5,-6],[-22,-2],[-1,-10],[3,-11],[-97,-10],[-37,-42],[-26,-42],[-39,-31],[-12,-34],[-17,-17],[-31,-18]],[[21769,7428],[3,7],[-1,2],[-118,211],[-212,375],[31,200]],[[21846,8208],[4,-21],[39,-44],[34,-19],[121,-33],[-31,-37],[-20,1],[-1,0],[-23,-28],[33,-26],[22,-14],[4,-4],[7,-4],[47,-27],[15,-125],[33,-22],[-36,-18],[-21,-51],[-3,-3],[10,-47],[-11,-21],[-16,-14]],[[21649,7189],[23,20],[25,47],[62,40],[45,38],[22,5],[17,42],[55,33],[52,64],[31,5],[46,70],[56,38],[32,43],[69,22],[31,22],[43,-3],[44,28],[15,36],[74,-13],[-75,-57],[-52,-47],[-182,-123],[-257,-181],[-111,-86],[-36,-42],[-29,-1]],[[22770,8215],[4,-12]],[[22774,8203],[-4,12]],[[22869,8226],[47,15],[47,5],[20,15],[-9,43],[14,9],[61,-7],[12,-83]],[[23061,8223],[-224,-99],[-140,-66],[-126,-66],[-93,-60],[-52,-48],[-51,-82],[-21,15],[-59,-24],[1,31],[20,33],[-13,19],[36,37],[18,-16],[46,47],[33,14],[21,53],[50,39],[70,-4],[47,22],[16,47],[38,45],[24,7],[60,-31],[41,-11],[60,74],[6,27]],[[3129,10597],[6,0],[598,-142],[1046,-249],[377,-89],[188,1]],[[5344,10118],[4,-226],[1,-688],[5,-608],[5,-490],[0,-533]],[[5359,7573],[-23,-4],[-15,30],[-25,-11],[-22,21],[-47,2],[-68,18],[-37,-6],[-80,31],[-26,-6],[-83,35],[-68,42],[1,14],[-50,19],[-52,62],[-22,-5],[-26,28],[-28,4],[-35,23],[-21,32],[-2,26],[-24,41],[-33,19],[4,69],[-41,-4],[-5,30],[-53,46],[-66,23],[-77,-9],[-64,53],[-42,27],[-10,36],[-99,69],[-27,13],[-17,41],[-41,26],[-34,2],[-19,61],[-26,23],[17,28],[-25,11],[-3,45],[-13,15],[5,38],[-38,27],[8,39],[-47,62],[-33,66],[-10,39],[-31,17],[-6,38],[-48,46],[0,22],[-29,20],[-16,56],[0,91],[-20,65],[7,19],[-27,21],[16,29],[-21,29],[39,70],[-16,44],[-3,70],[11,35],[7,64],[-47,101],[-3,31],[-39,51],[-33,5],[-17,20],[-1,62],[-29,20],[-39,46],[-27,7],[2,65],[-51,24],[-41,37],[4,41],[-19,77],[3,46],[-15,68],[4,34],[-51,132],[-20,33],[-38,31],[-79,24],[-15,42]],[[18261,14842],[316,-3],[427,-3]],[[19004,14836],[43,-28],[-7,-53],[10,-23],[-8,-33],[18,-31],[43,-77],[27,-17],[54,-35],[0,-48],[-33,-68]],[[19151,14423],[55,-56],[27,-11],[47,1]],[[19280,14357],[-187,-113],[-220,-129],[-171,-98],[-23,-13],[-363,-211]],[[18316,13793],[-83,-48],[-138,236],[-136,236]],[[17958,14845],[91,-1]],[[18049,14844],[212,-2]],[[22717,14188],[43,43],[21,75],[50,112],[3,84]],[[22834,14502],[67,-55],[36,-18],[28,18],[68,-5],[13,-55],[22,7],[25,-37],[12,4],[572,137]],[[23677,14498],[1,-603],[-1,-267],[48,-22],[4,-20]],[[22797,13572],[-167,-2],[-2,121],[-1,116],[10,55],[29,120],[1,96],[50,110]],[[20795,7807],[-4,-56],[-22,-34],[-31,4],[-39,-43],[-6,-38],[-78,15],[-151,56],[-58,-63],[-26,26],[-94,-100]],[[20286,7574],[-17,12],[-43,-3],[-34,72],[9,26],[-106,54],[-7,21],[27,28],[-20,38],[-34,16],[-11,65],[-16,-1],[-19,50],[-31,-9],[-15,17],[-38,19],[-43,98],[63,11],[3,27],[-42,5],[-17,19],[2,38],[25,25],[-6,34],[-29,15],[-4,50],[-50,23]],[[19939,8603],[116,2],[-1,26],[38,1],[234,105]],[[21082,8276],[-41,-178],[-31,-133],[-166,-3],[-10,-28],[19,-39],[-3,-28],[-37,-12],[-18,-48]],[[17091,15347],[8,482]],[[17099,15829],[242,-5],[32,-2]],[[17373,15822],[130,-2],[454,-1],[104,-1]],[[18061,15818],[-3,-337],[-2,-107],[-7,-530]],[[17087,14858],[4,489]],[[20265,16748],[2,115]],[[20267,16863],[17,-8],[55,14],[22,24],[76,44],[77,-22],[41,4],[14,-22],[48,-9],[51,29],[44,3],[53,-16],[9,-22],[42,15],[73,-68],[49,-6],[20,23],[31,-13],[17,-31],[28,2],[45,-40],[49,-15],[50,-39],[32,-4],[54,-22],[35,0]],[[21303,16678],[-4,-2]],[[20260,16327],[5,421]],[[17959,9192],[116,127]],[[18075,9319],[10,-43],[238,137],[88,49],[96,98]],[[18507,9560],[41,-24],[11,-24],[59,19],[39,-5],[52,43],[7,-30],[68,-13],[-11,-33],[36,-53],[-1,-67],[16,-18],[7,-52]],[[18929,9120],[-193,-262],[-97,-128],[-281,-337]],[[18358,8393],[-59,-2],[-109,-1],[-337,-8]],[[17524,8729],[4,4]],[[17528,8733],[323,344],[108,115]],[[14576,13842],[97,54],[329,186],[205,126]],[[15207,14208],[251,-424],[47,-74],[122,-210],[138,83],[5,3],[81,-139]],[[15851,13447],[87,-149],[10,-18],[-318,-193],[-259,-156]],[[15371,12931],[-54,87],[-54,-7],[-276,-44]],[[14506,13802],[70,40]],[[12987,12693],[21,0]],[[13008,12693],[46,-16],[5,-24],[43,-18],[-37,-40],[61,5],[4,-34],[-26,-18],[16,-28],[30,-16],[37,-52],[35,25],[-32,32],[20,18],[23,-21]],[[13233,12506],[-1,-287],[1,-532],[-3,-76]],[[13230,11611],[-410,-1],[-552,2]],[[12268,11612],[3,333],[3,455],[2,301]],[[12276,12701],[2,0],[328,-5],[332,-3],[49,0]],[[16795,6036],[18,-57],[93,-46],[38,16],[93,-12],[35,-19],[9,-25],[0,-105],[56,-32],[11,-20],[45,15],[25,-11],[40,-58],[61,9],[55,-19],[-7,-20],[49,-12]],[[16585,5172],[17,14],[-84,167],[-187,379],[-60,123],[-197,392],[159,61]],[[16233,6308],[169,65],[59,-54],[101,-38],[9,-17],[70,12],[18,-18]],[[16659,6258],[43,-28],[9,-35],[36,-25],[3,-34],[32,-58],[13,-42]],[[15416,11483],[518,5],[474,7]],[[16565,11210],[-209,-221],[-44,-46],[-66,-145],[-97,-212]],[[16007,10148],[-424,133]],[[15583,10281],[-2,160],[-23,29],[-22,5],[-40,-22],[-26,23],[-2,29],[22,27],[-32,61],[-2,41],[-19,20],[0,7],[-19,34],[58,3],[11,13],[-22,47],[11,32],[29,11],[39,42],[-6,13],[-101,18],[11,48],[-17,23],[42,28],[12,42],[25,1],[24,36],[-31,18],[-53,-18],[5,54],[-23,23],[-32,2],[5,113]],[[15405,11244],[44,6],[15,39],[-62,22],[-10,37],[20,35],[-32,52],[36,48]],[[22620,11589],[-32,22],[-67,-6],[-28,24],[-35,0],[-51,25],[-37,-7],[-58,30],[-136,57],[-2,8]],[[23144,11915],[26,-3],[34,-24],[13,-25],[34,-11],[8,-26],[34,0],[43,-20],[9,-25],[50,-62],[59,-31],[60,-51]],[[22897,11491],[-25,-15],[-28,28],[-41,9],[-43,25],[-58,10]],[[22702,11548],[-32,22],[-38,-1],[-12,20]],[[21914,8949],[455,7],[384,5],[174,0]],[[22927,8961],[3,-6],[155,1],[1,-99],[8,-592],[-2,-28]],[[23092,8237],[-31,-14]],[[22869,8226],[-48,-27],[-47,4]],[[22770,8215],[-37,43],[-29,6],[-76,-33],[-105,-27],[-57,-21],[-28,2],[-72,-26],[-41,-7],[-31,14],[55,51],[-7,17],[31,31],[41,77],[26,65],[9,93],[13,27],[-5,67],[-27,33],[2,18],[5,5],[-5,15],[-8,8],[-34,8],[-27,4],[-23,35],[-81,-31],[-33,-18],[-68,-82],[-26,-58],[-14,-53],[-67,-35],[-33,15],[-4,11],[-6,15]],[[22013,8284],[19,9],[20,-31],[-17,-13],[-22,35]],[[21938,8503],[29,-11],[22,-54],[-14,-44],[-20,6],[-17,69],[-14,24]],[[21883,8468],[-8,-8]],[[21874,8276],[-4,-5]],[[21869,8367],[6,-5]],[[17546,6692],[24,-37],[70,2],[32,12],[5,25],[59,-22],[35,-50],[-8,-42],[27,-50],[33,-32],[-32,-76],[15,-30],[-27,-261],[37,-86],[3,-40]],[[16659,6258],[234,197],[149,125]],[[23677,15579],[-1,-416]],[[23676,15163],[-59,-13],[-30,4],[-16,37],[22,34],[-29,38],[-54,0],[-56,-37],[-20,-55],[-95,15],[-19,22],[10,24],[-29,59],[-33,-12],[-29,11],[-23,-33],[-29,-23],[-25,10],[-22,-30],[-32,-7],[-72,-43],[-13,2],[-219,-2],[-366,220]],[[22438,15384],[0,61],[56,31],[-50,23],[-13,36],[0,40]],[[22431,15575],[98,0]],[[21769,7428],[-20,-5],[-59,-42],[-20,-4],[-3,49],[-38,-8],[-45,6],[13,-34],[-19,-77],[-14,-52],[13,-42],[19,-10],[50,-60],[-124,-101],[-116,-102],[-81,-92],[-86,-64],[-69,-66],[-12,-19],[-94,-33],[-60,-20],[-78,-45]],[[20926,6607],[-44,8],[-69,1],[-22,22],[-1,44],[-82,76],[-35,22],[-19,48],[11,30],[-17,28],[-38,28],[-29,1],[-28,8],[-111,-2],[-5,47],[-20,19],[-6,51],[7,53],[23,36],[-50,23],[-26,43],[-43,-2],[-25,21],[4,91],[-21,26],[24,54],[-37,37],[25,26],[-55,55]],[[20237,7501],[60,64],[-11,9]],[[19080,15802],[-51,1]],[[19029,15803],[-279,6],[-336,5]],[[18414,15814],[4,217],[0,2],[4,181],[2,113],[9,412]],[[18433,16739],[201,-6],[138,-3],[250,-5],[255,-3]],[[19277,16722],[1,-125],[167,24]],[[19445,16621],[0,-318],[0,-38],[-2,-256],[-1,-207]],[[19442,15802],[-265,0],[-97,0]],[[17257,9001],[-356,354]],[[17427,10133],[66,-37]],[[17493,10096],[255,-144],[115,-91],[2,-2],[102,-80],[16,-66],[48,-203],[44,-191]],[[17528,8733],[-131,129],[-140,139]],[[18227,16763],[193,-6],[13,-18]],[[18414,15814],[-179,3],[-6,0],[-168,1]],[[17373,15822],[8,312],[4,183],[16,477]],[[9976,17683],[553,3]],[[10529,17686],[2,-447],[2,-518]],[[10533,16721],[-303,-1],[-348,-2],[-322,-3]],[[9560,16715],[-6,443],[-7,521]],[[9547,17679],[184,2],[245,2]],[[16244,8657],[103,119],[130,115]],[[16477,8891],[22,-4],[49,-61],[-9,-65],[118,-113],[16,-35],[36,-36],[25,-7],[5,-48],[26,-20],[34,-2],[29,-19],[47,-13],[18,-24],[39,-13]],[[16542,7826],[-217,4],[-242,3],[-53,-32],[-18,29],[-25,118],[3,22]],[[15990,7970],[26,12],[7,37],[-21,41],[-69,-10],[-7,40],[-34,12],[-34,46],[-27,4],[-5,53],[-17,6],[-23,14],[-52,-25],[-52,34],[-24,74]],[[6372,11677],[456,562]],[[9162,10650],[-430,2],[-263,4],[-2,-129],[-132,1],[-252,2],[0,-653],[0,-43],[-421,-2],[0,-510]],[[7662,9322],[-191,160],[-664,551],[-570,469],[-215,176]],[[6022,10678],[-273,223]],[[5749,10901],[394,488],[229,288]],[[18358,8393],[58,-37],[18,-45],[1,-42],[75,1],[163,-200],[274,-335],[-184,-158]],[[18237,7133],[-71,90]],[[13324,16724],[-313,-1],[-509,-2]],[[12502,16721],[0,13],[-5,484],[-5,473]],[[12492,17691],[303,-1],[10,-39],[36,22],[25,-23],[61,12],[22,-34],[63,15],[21,-8],[25,37],[45,-19],[71,-9],[15,-23],[55,-37],[69,19],[32,-6],[56,-46],[37,-12],[34,-74]],[[13472,17465],[2,-341],[2,-399]],[[13476,16725],[-152,-1]],[[19670,8395],[-248,-264],[-74,-226],[-29,-28],[-72,-45],[-382,-251],[-68,-40]],[[21906,14450],[113,-2],[217,2],[244,-1],[78,0],[71,-23],[17,12],[23,65]],[[22669,14503],[44,28],[71,-43],[30,22],[20,-8]],[[18791,6356],[-20,-16],[-22,2],[-107,-80],[-246,-76],[-37,-27],[-107,-80],[25,-35],[25,-9],[16,-40],[-20,-37],[28,-55]],[[10533,16721],[542,2],[333,1],[105,-2]],[[11513,16722],[0,-397]],[[11513,16325],[-2,-483],[-2,-82]],[[11509,15760],[-256,1]],[[11253,15761],[-628,4],[-91,11]],[[10534,15776],[-1,624],[0,321]],[[16526,9019],[49,35],[57,30],[60,95],[26,17],[69,63]],[[16477,8891],[-44,-2],[8,57],[85,73]],[[15487,12144],[-302,-216]],[[15185,11928],[-4,26],[-28,51],[-26,-24],[-60,33],[-2,25],[53,12],[8,56],[-56,-5],[-43,69],[20,27],[-39,35],[-48,-50],[-38,-15],[-3,90],[21,17],[-6,43],[-41,-7],[-41,8],[-29,-16],[8,-28],[-21,-27],[-25,27],[5,51],[-49,0],[-37,13],[-51,-13],[-25,54],[-25,20],[-55,-18],[-59,2],[-5,42],[-32,-19],[-79,42],[6,39]],[[15371,12931],[91,-145],[132,-220],[139,-227]],[[15733,12339],[8,-13],[-82,-60],[-172,-122]],[[15232,14223],[119,68],[-2,197],[1,277]],[[15350,14765],[394,-1],[370,-2]],[[16114,14762],[113,-303],[13,-28],[68,-188],[26,-69],[11,-28]],[[16345,14146],[9,-26],[142,-297]],[[16496,13823],[-264,-154]],[[16232,13669],[-381,-222]],[[15207,14208],[25,15]],[[12829,7190],[249,0],[508,5]],[[13586,7195],[4,-561],[0,-41],[5,-395]],[[12270,6214],[4,618],[2,352]],[[12276,7184],[207,1],[346,5]],[[20177,11623],[266,3]],[[20718,11263],[-22,-67],[-51,-8],[-18,19],[-32,2],[-54,11],[-46,-24],[-41,-1],[-49,-45],[-23,-2],[-56,-28],[-69,-3]],[[20257,11117],[-281,-47],[-211,-36],[-81,-8]],[[19684,11026],[-14,26],[-5,54],[-65,115],[21,59],[-11,20],[-38,11],[-25,48]],[[19547,11359],[91,39],[40,7],[176,118],[54,45],[59,4],[40,25],[14,11],[28,13],[128,2]],[[21660,10675],[22,-14],[94,49],[30,-10],[0,-28],[26,-29],[31,-97],[-51,-45],[13,-16],[44,4],[74,-8],[29,-13],[19,-25],[56,4],[39,-11],[27,-23],[61,0],[18,-34],[-36,-14],[-28,-30],[3,-33],[31,-5]],[[22162,10297],[12,-13],[-308,-163],[-299,-153]],[[21567,9968],[-112,-56],[41,72],[-42,24],[-20,37],[-45,8],[-31,23],[-58,26],[-34,54],[-29,77],[-17,25],[-16,63]],[[21204,10321],[24,267],[5,95],[10,154],[20,270]],[[21503,11029],[37,-13],[12,-24],[33,-17],[47,-41],[-15,-12],[15,-37],[-25,-34],[-1,-67],[23,-45],[42,4],[-17,-39],[6,-29]],[[19029,15803],[-3,-228],[-1,-145]],[[19025,15430],[-5,-373],[-3,-221],[-13,0]],[[15990,7970],[-5,-3],[-190,-271],[-167,-239],[-151,-211]],[[15477,7246],[-282,114],[-418,168],[-46,19]],[[14731,7547],[-1,63],[-1,539],[-2,372]],[[14727,8521],[52,65]],[[22235,16468],[0,-9],[-11,-409],[-7,-246]],[[21642,15919],[0,40],[3,452],[-2,293]],[[22238,16646],[-3,-178]],[[21592,15310],[0,46],[1,271]],[[22405,15631],[22,-19],[4,-37]],[[22438,15384],[1,-311]],[[22439,15073],[-49,7],[-33,26],[-24,-16],[-116,-153],[-89,-37],[-201,-84],[-24,2]],[[21591,14891],[1,351],[0,68]],[[16123,15130],[-6,-264]],[[16117,14866],[-3,-104]],[[15350,14765],[-190,4]],[[15160,14769],[0,484],[1,325],[0,163]],[[15161,15741],[279,-5],[1,124]],[[15441,15860],[339,-6],[357,-5]],[[16137,15849],[-3,-183],[-5,-243],[-6,-293]],[[17030,17832],[16,0],[39,-3],[49,30],[46,18],[32,-9]],[[17206,16801],[-179,1],[-396,0],[-235,0]],[[16396,16802],[-114,0],[0,73]],[[16284,17811],[19,-17],[58,-7],[75,-47],[59,-19],[59,18],[59,50],[1,31],[41,24],[-11,18],[50,13],[-6,34],[57,5],[30,25],[35,65],[49,31],[72,-22],[46,-29],[38,-36],[-14,-84],[20,-27],[9,-5]],[[18615,12367],[-120,206]],[[18495,12573],[-36,60],[-105,176],[-105,177]],[[18249,12986],[176,102],[224,132]],[[18649,13220],[269,-26],[149,-15]],[[19067,13179],[64,-110],[152,-263],[272,-474]],[[19555,12332],[-3,-2],[-154,-83],[2,-40]],[[19400,12207],[-176,-102],[-239,-139],[-106,-60]],[[18879,11906],[-218,379],[-37,66],[-9,16]],[[18562,5715],[-1,-8]],[[18479,5269],[20,122]],[[18499,5391],[28,-71],[-2,-32],[-46,-19]],[[19392,6275],[2,-72],[-56,-295],[-29,-153],[-20,-110]],[[19289,5645],[-65,-106],[-56,-56],[-144,-74],[-77,-44],[-134,-92],[-116,-88],[-110,-92],[-114,-104],[-76,-74]],[[18397,4915],[44,116]],[[18441,5031],[38,28],[-20,83]],[[18459,5142],[1,10]],[[18460,5152],[62,48],[79,-1],[51,11],[37,18],[-9,29],[54,20],[35,49],[92,83],[5,19],[40,20],[65,8],[12,25],[30,14],[108,22],[51,22],[13,46],[-36,37],[10,26],[51,27],[1,28],[-62,4],[-110,-78],[-72,-31],[-66,-41],[-76,-77],[-59,4],[-16,-19],[-36,11],[-6,30],[-33,46],[11,71],[-13,53],[-78,10],[-21,71],[-46,31],[-31,59],[-52,-35],[32,-23],[32,6],[18,-26]],[[592,12874],[-36,85],[-46,40],[-14,38],[-69,44],[-62,27],[-40,-29],[-32,-6],[-74,74],[2,16],[-37,40],[-56,7],[-20,26],[-33,13],[-1,41],[-16,0],[-40,44],[12,38],[-30,25],[8,22],[55,34],[-23,12],[-1,79],[-28,42],[39,45],[555,2],[420,2],[191,0]],[[1216,13635],[4,-383],[6,-728],[-1,-48],[64,0],[1,-122],[-72,-80]],[[1218,12274],[-15,12],[-131,11],[-19,9],[-51,48],[-39,4],[-50,31],[-39,40],[-44,15],[-30,39],[-11,45],[-23,28],[-14,53],[-68,53],[-14,54],[-36,95],[-42,63]],[[17830,10217],[-337,-121]],[[20237,7501],[-172,-183],[-138,-89],[-411,-258],[-97,-59]],[[11470,21637],[302,0],[712,-1]],[[12484,21636],[0,-706],[0,-259]],[[12484,20671],[-349,0],[-663,1]],[[11472,20672],[2,286],[-1,168],[-3,511]],[[13018,13406],[-10,-713]],[[12276,12701],[-217,3],[-15,12],[-2,234]],[[12042,12950],[0,296],[0,54],[1,512]],[[12043,13812],[157,1]],[[12200,13813],[543,-3],[279,1]],[[13022,13811],[-4,-405]],[[11306,18748],[-599,-2]],[[10710,19710],[182,0],[362,-1],[215,-1]],[[11469,19708],[235,0]],[[11704,19708],[0,-413],[-4,-547]],[[11700,18748],[-187,1]],[[11513,18749],[-207,-1]],[[16132,3584],[0,-148],[1,-290]],[[16133,3146],[-327,3]],[[15800,4909],[662,-3]],[[16621,4771],[-255,-244],[1,-57],[0,-184],[-16,-311]],[[16351,3975],[-221,0],[2,-391]],[[17769,13165],[-169,-98]],[[17600,13067],[-62,35],[-30,59],[34,28],[59,72],[-10,22],[-40,11],[-44,-15],[-67,52],[-38,13],[2,30],[40,14],[-71,42],[-19,-4],[-57,57],[65,44],[45,42],[5,18],[-49,13],[-36,47],[-5,44],[-31,-29],[-62,-10],[-21,17],[1,56],[-12,37],[40,60],[-3,24],[-44,67],[1,24],[49,21],[22,32],[-35,23]],[[18316,13793],[118,-206],[65,-109],[7,-14],[143,-244]],[[18249,12986],[-75,126],[-23,40],[-68,120],[-32,55],[-282,-162]],[[20267,16863],[0,3],[4,373],[2,425],[16,36]],[[20289,17700],[34,-8],[12,45],[39,10],[57,-35],[36,35],[-21,29],[12,41],[44,7],[42,-24],[48,11],[47,44],[37,-11],[25,6],[20,44],[23,4],[14,28],[29,-18],[50,-13],[17,-106],[45,18],[31,15],[14,-46],[47,14],[59,-31],[26,9],[47,-14],[33,9],[42,-4],[52,23],[9,19],[37,-18]],[[8382,8866],[-31,-20],[-44,6],[-75,31],[-71,51],[-36,3]],[[8125,8937],[-463,385]],[[9177,8723],[-47,14],[-5,-20],[-42,10],[13,43],[-40,11],[12,-39],[-38,9],[-23,29],[-60,-32],[-119,18],[-28,-8],[-11,34],[-26,5],[-64,-40],[-17,13],[-32,-8],[-1,-22],[-60,-6],[-20,18],[-46,-7],[-27,23],[-36,1],[-68,51],[-10,46]],[[20926,6607],[-236,-142],[-262,-165],[-116,-69],[-106,-54],[-160,-75],[-25,-9],[-178,-85],[-229,-126],[-122,-80],[-48,-37],[-45,-46],[-19,2],[-46,-33],[-45,-43]],[[9560,16715],[-407,-3],[-72,-1],[-496,-7]],[[8585,16704],[-7,352],[-3,193],[-4,192],[-5,225]],[[8566,17666],[338,5],[280,4],[41,0],[322,4]],[[8413,20672],[397,0],[135,-1],[491,1]],[[9436,20672],[-4,-372],[-3,-189],[-5,-403]],[[9424,19708],[-694,2]],[[8730,19710],[-320,-2]],[[19280,14357],[30,-24],[68,-32],[15,6],[50,-18],[23,-42],[-1,-34],[45,-31],[50,1],[9,-31],[75,-75],[64,28],[-1,-43],[-39,-31],[19,-34],[40,-29],[61,9],[20,-33],[-24,-34],[6,-24],[-11,-46],[33,-32],[64,12],[-5,-43],[4,-64],[22,-56]],[[19897,13657],[-186,-105],[-178,-103],[-171,-98],[-295,-172]],[[19897,13657],[4,-14]],[[20400,12785],[-386,-205],[-124,-67],[-335,-181]],[[1216,13635],[501,-2],[485,-2],[600,0],[443,0]],[[3245,13631],[-1,-255],[2,-269],[7,-228],[9,-1105],[0,-356],[3,-131],[0,-233],[-17,1],[-1,-382]],[[3247,10673],[-118,-76]],[[3129,10597],[-12,75],[-28,21],[-12,31],[-77,-13],[-39,48],[-54,31],[-41,74],[-79,8],[11,36],[-39,-4],[-36,54],[-41,30],[-45,-8],[-30,-17],[-20,33],[-45,37],[-46,-34],[-6,37],[-36,28],[-72,19],[-34,1],[3,60],[-19,7],[-18,44],[-54,22],[-17,34],[-69,41],[-22,50],[-27,0],[-34,41],[-45,10],[-47,84],[3,22],[-10,43],[-20,19],[-20,45],[-40,29],[-28,2],[-12,37],[-114,45],[-19,28],[-41,34],[-60,6],[-21,71],[-18,7],[-78,98],[-63,93],[-52,10],[-22,43],[-45,1],[-29,59],[4,30],[-15,25],[-30,3],[-51,47]],[[13620,6198],[341,7],[302,3],[475,5]],[[14738,6213],[-2,-49],[2,-337],[-1,-493],[2,-106],[-4,-219],[-2,-101]],[[14733,4908],[-306,-14],[-794,-46],[-9,350],[-1,35]],[[20265,16748],[-288,-44],[-106,-17],[-183,-29],[-243,-37]],[[19277,16722],[4,277],[1,167],[5,282]],[[19287,17448],[19,-20],[14,-55],[45,-7],[40,22],[16,37],[1,43],[21,68],[15,12],[47,-8],[65,-43],[54,9],[41,18],[29,63],[-4,64],[30,3],[2,41],[47,5],[44,-21],[-1,39],[96,-25],[55,9],[40,23],[107,23],[29,52],[150,-100]],[[17600,13067],[-111,-63],[-218,-123],[-239,-139],[-48,-24]],[[16681,12905],[-125,213],[-78,132],[-246,419]],[[16496,13823],[37,22],[271,162],[132,82],[30,-9]],[[8585,16704],[-455,-2],[-520,-1]],[[7610,16701],[-10,246],[-14,349],[-15,371]],[[7571,17667],[403,0],[224,0],[368,-1]],[[12274,8372],[184,0]],[[12458,8372],[487,3],[286,5]],[[13231,8380],[359,1]],[[13590,8381],[-2,-370],[0,-741],[-2,-71],[0,-4]],[[12276,7184],[-2,786],[0,402]],[[19547,11359],[5,53],[-42,24],[21,53],[6,43],[-27,56],[-17,3],[-20,39],[7,45],[-33,49],[-9,101],[-20,36],[-1,37],[-18,54],[-17,10],[27,43],[-25,46],[4,54],[16,28],[-4,74]],[[21567,9968],[130,-393]],[[20369,9404],[-1,344]],[[20368,9748],[0,204],[-20,278],[-29,369]],[[20319,10599],[435,-268],[201,0],[244,-1],[5,-9]],[[9310,15293],[2,-501]],[[9312,14792],[-385,-2],[-580,-3]],[[8347,14787],[-5,397],[-1,257],[-5,310]],[[8336,15751],[248,2]],[[8584,15753],[114,1],[609,4]],[[9307,15758],[3,-465]],[[17099,15829],[-419,9],[-27,1],[-263,6]],[[16390,15845],[4,379],[2,578]],[[12833,19109],[40,-51],[52,-36],[22,-36],[71,-41],[7,-26],[33,-28],[31,4],[30,-14],[27,19],[45,-19],[45,2],[30,37],[8,56],[33,2],[118,-18],[46,-30]],[[13471,18930],[0,-686]],[[13471,18244],[-29,-45],[-28,26],[-55,-7],[-7,-25],[-65,3],[-19,32],[-60,9],[-20,27],[-51,9],[-49,-12],[-45,0],[-25,12],[-32,-12],[-25,17],[-36,-18],[-22,8],[-414,283]],[[12489,18551],[0,193]],[[12489,18744],[1,550]],[[12490,19294],[48,4],[49,38],[45,-20],[65,-47],[64,-83],[58,-30],[14,-47]],[[17692,4060],[4,26],[-4,-26]],[[17199,4427],[19,-29],[34,-8],[51,20],[35,-23],[13,25],[46,15],[13,-17],[-25,-43],[-1,-6],[-2,-61],[34,-74],[60,-56],[51,-25],[67,-18],[46,-28],[-22,-37],[-59,-153],[9,-30],[-52,-52],[-5,-18]],[[17511,3809],[-151,-2],[-275,1],[-526,-4],[-14,0],[-36,49],[-29,15],[-7,47],[-26,27],[-56,4],[-40,29]],[[17986,4561],[26,-81],[-11,-28]],[[18001,4452],[-2,-15],[-116,-15],[7,26],[41,74],[21,-17],[34,56]],[[17865,4569],[5,-7]],[[17870,4562],[-3,-7]],[[17863,4545],[-22,-19]],[[17703,3844],[-37,14],[-49,-16]],[[17617,3842],[53,127],[37,1],[32,19],[12,30],[0,63],[24,25],[42,93],[6,33],[25,44],[38,15],[10,69],[-15,39],[133,31],[3,-37],[-99,-138],[-86,-146],[-85,-165],[-44,-101]],[[17662,4470],[23,-56]],[[17662,4419],[-1,52]],[[13586,7195],[302,0],[99,-1],[150,0],[55,0],[538,-1]],[[14730,7193],[1,-124],[3,-370],[4,-486]],[[24068,12714],[26,-62],[75,-72],[72,3],[17,-30],[38,3],[-27,-57],[-27,-12],[-14,-33],[52,-33],[33,-1],[22,-28],[-23,-50],[58,-45],[15,-72],[-7,-60],[-28,-43],[1,-37],[31,-10],[15,-34],[29,-23],[40,1],[16,-23],[-7,-63],[36,-20],[-16,-41],[13,-65]],[[23684,11714],[-18,39],[19,54],[0,92],[16,50],[0,37],[-16,68],[-16,18],[19,82],[-9,17],[36,51],[-7,39],[-31,58],[-2,5],[82,85],[32,42],[-2,226]],[[8566,17666],[-3,447],[-1,32],[-2,262],[-2,340]],[[8558,18747],[173,0]],[[8731,18747],[443,0],[371,-1]],[[9545,18746],[1,-560],[0,-85],[1,-422]],[[19142,10856],[29,53],[34,50],[25,74],[42,84],[41,45],[7,27],[46,54],[139,95],[42,21]],[[19684,11026],[-11,-49],[-18,-13],[39,-57],[-14,-45],[15,-20],[-4,-39],[-25,-29],[14,-43],[-5,-22],[13,-78],[-27,-51],[-3,-31],[-5,-42],[43,-40],[0,-63],[25,-30],[31,-84],[-15,-40],[20,-14],[17,-53],[29,4],[35,-18],[-2,-40],[-36,2],[-25,-69],[-48,-6],[3,-105],[-21,-15]],[[19709,9936],[4,44],[-11,62],[-24,-10],[-14,46],[-29,12],[-10,-38],[-67,-29],[-51,-11],[-44,0],[-25,32]],[[19438,10044],[-14,28],[45,77],[-16,38],[-59,33],[-32,79],[-33,43],[-3,62],[-27,10],[-28,-31],[-47,16],[-20,43],[-1,42],[-27,-7],[-62,71],[-25,-7],[-63,50],[-48,3],[-47,17],[-56,8],[30,55],[-3,43],[33,27]],[[18935,10744],[196,102],[11,10]],[[13870,8377],[368,-4],[156,-1],[15,-22],[-21,-64],[15,-20],[-11,-25],[20,-27],[31,18],[59,6],[225,283]],[[14731,7547],[-1,-354]],[[13590,8381],[280,-4]],[[22162,10297],[139,-10],[80,2]],[[22922,9455],[1,-178],[4,-316]],[[23676,15163],[1,-665]],[[22669,14503],[-38,11],[-78,-4],[-58,53],[-39,12],[-17,-12],[0,360],[0,51],[0,99]],[[8188,18747],[370,0]],[[7571,17667],[0,614],[0,291],[1,174]],[[7572,18746],[168,1]],[[7740,18747],[448,0]],[[14430,11243],[403,-2],[234,4],[338,-1]],[[15583,10281],[-114,35],[-338,-5]],[[14431,10308],[0,457],[-1,478]],[[19442,15616],[0,162],[0,24]],[[20258,15797],[-155,0],[-47,-159],[-31,-77],[54,-60],[44,-19]],[[19856,15485],[-415,7]],[[19441,15492],[1,124]],[[19151,14423],[380,0],[0,-8],[100,0],[1,7],[225,-1]],[[13471,18930],[42,-17],[27,-38],[16,22],[43,-18],[19,15],[17,72],[-17,16],[4,50],[26,33],[49,-11],[-3,-22],[52,-43],[17,-30],[47,14],[107,-107],[7,-30],[45,-35],[7,-45],[-13,-14],[10,-60],[22,-5],[-2,-82],[15,-67],[78,-10],[52,-17],[76,21],[68,-29],[14,19],[43,-8],[23,32],[37,0],[13,-31],[41,20]],[[14453,18525],[-1,-359],[0,-479]],[[14452,17687],[-394,0],[-588,0]],[[13470,17687],[1,557]],[[16502,1177],[0,32],[-1,106],[-19,0],[-67,3],[-180,31],[14,95],[8,-1],[15,100],[38,-7],[-9,40],[21,133]],[[16322,1709],[180,-30],[178,0],[266,3],[235,3],[112,-2]],[[17293,1683],[32,-98],[5,-44],[27,-80],[-12,-41],[61,-1],[60,-154]],[[17466,1265],[-71,-1],[-15,-13],[-12,-42],[-38,-43],[-14,-3],[-16,-61],[-19,-27],[-85,26],[-54,-24],[-12,-59],[-91,15],[-213,37],[-324,56]],[[16502,1126],[0,51]],[[17545,1684],[31,0]],[[17576,1684],[26,-77],[-34,23],[-23,54]],[[17699,1266],[-35,0]],[[17664,1266],[1,46],[-21,87],[-22,68],[-42,104],[-59,28],[93,1],[7,-49],[78,-285]],[[5007,13630],[484,0],[744,1]],[[6235,13631],[-1,-484],[-1,-288]],[[5701,12859],[-39,47],[-8,38],[19,33],[-63,12],[-31,27],[-19,43],[-28,14],[-44,-20],[-57,4],[-57,75],[-25,4],[-21,39],[1,74],[-15,14],[3,40],[-31,46],[3,34],[-49,-13],[-15,-18],[-35,2],[1,37],[-56,23],[-12,32],[5,31],[-12,26],[-35,4],[-15,22],[-6,73],[-46,-17],[-7,45]],[[18833,10822],[47,-9],[-2,-21],[53,-35],[4,-13]],[[19438,10044],[-27,11],[-51,-36],[-34,10],[-35,-37],[-77,-6],[-8,-21],[-67,0],[-13,-16],[-48,-1],[-11,-26],[-30,4],[-60,-16],[-24,11],[-31,-29],[-56,-7],[-5,-12],[-65,-11]],[[18796,9862],[-43,-3],[-43,48],[-24,8],[-79,-3],[-24,21],[-29,79],[-73,70],[-71,77],[-41,6],[-27,62],[-33,-4],[-7,30],[15,29],[-25,80],[-31,45],[-37,0],[-34,31]],[[12577,15753],[395,-4],[242,-2]],[[13214,15747],[-1,-162],[1,-423],[0,-394]],[[13214,14768],[-33,0]],[[13181,14768],[0,14],[-448,0],[-523,4]],[[12210,14786],[1,268],[1,245],[2,454]],[[12214,15753],[292,1]],[[12506,15754],[71,-1]],[[17426,3183],[42,0]],[[17468,3183],[-18,-82],[-25,-166],[-12,-140],[-4,-204],[6,-110],[9,-110],[14,-99],[49,-250],[48,-192],[41,-146]],[[17545,1684],[-10,35],[-32,68],[-13,48],[-73,232],[-12,58],[-18,37],[4,51],[-18,63],[13,35],[-5,70],[13,93],[-12,31],[7,101],[-2,63],[9,87],[-16,86],[9,13],[5,100],[15,77],[-6,81],[22,8],[18,50],[-17,12]],[[16269,3031],[56,21],[13,30],[29,12],[123,6],[31,20],[20,-12],[48,26],[0,35],[34,0],[7,20],[67,6],[37,-22]],[[16734,3173],[20,-26],[34,3],[117,30],[30,-76],[65,2],[75,-25],[51,-6],[37,14],[19,20],[116,43],[30,-14],[-36,-207],[19,-7],[-6,-35],[-9,-151],[-9,-198],[-24,-232],[83,-9],[1,-16],[-79,7],[-12,-60],[37,-50],[-45,-1],[-3,-32],[-23,-6],[19,-146],[7,-103],[37,-134],[-1,-54],[9,-21]],[[16322,1709],[-52,9],[0,366]],[[16270,2084],[-1,482],[0,379],[0,86]],[[10265,14100],[13,621],[0,68]],[[10278,14789],[0,8]],[[10278,14797],[386,-1],[80,-1],[204,-2],[65,-1],[231,0]],[[11244,14792],[-3,-304],[-4,-508],[-2,-161]],[[11235,13819],[-236,2],[-58,0]],[[10941,13821],[-330,1],[-351,1]],[[10260,13823],[5,277]],[[19825,9703],[8,8],[260,18],[51,1],[224,18]],[[19726,9360],[-9,33],[-77,110],[29,45],[29,-26],[12,75],[-9,65],[26,27],[32,-16],[19,28],[36,-21],[11,23]],[[19709,9936],[65,-55],[43,12],[-6,-40],[30,-11],[-27,-66],[27,-15],[-39,-41],[23,-17]],[[18507,9560],[95,79],[1,49],[12,33],[10,23],[39,4],[49,23],[83,91]],[[17699,1266],[60,-268],[26,-157],[34,-283],[-11,3],[-15,81],[-14,39],[6,75],[-19,115],[-9,24],[-6,76],[-29,129],[-24,59],[11,15],[-45,92]],[[17586,941],[-6,-1],[-19,-8],[-20,-69],[-15,-11],[41,-71],[-15,-47],[8,-52],[25,-42],[-10,-52],[40,-42],[42,-12],[73,-2],[19,-29],[5,-44],[57,38],[26,-8],[-4,-47],[12,-151],[0,-38],[-50,25],[-27,-23],[-70,10],[-41,-24],[-56,9],[0,-37],[-52,1],[-38,-26],[-30,11],[-63,-52],[16,-7],[-2,-38],[15,-29],[-20,-31],[-6,-40],[-49,-2],[-55,7],[-28,13],[-3,42],[-26,38],[-23,9],[-21,-19],[-29,2],[2,33],[-44,-21],[-26,59],[-49,43],[-43,12],[1,51],[-38,-7],[-12,42],[-70,67],[16,18],[-15,28],[-41,-19],[-8,33],[-7,-17],[-52,11],[-141,-4],[-37,24],[-5,42],[-70,-15],[-45,4],[-1,34]],[[16502,510],[0,355],[0,261]],[[17466,1265],[89,-237],[11,-18],[27,-33],[-7,-28],[0,-8]],[[13476,16725],[0,-172],[2,-508],[0,-298]],[[13478,15747],[-264,0]],[[12506,15754],[-1,273],[0,15],[-1,407],[-2,272]],[[20686,15223],[-42,392],[-15,139]],[[21298,15759],[256,-1],[39,114]],[[18442,11652],[182,103],[255,151]],[[22702,11548],[-181,-104],[48,-243],[21,-106],[43,-226],[99,-498]],[[14190,11287],[1,426],[0,235],[2,489]],[[15185,11928],[-3,-27],[-9,-45],[50,-8],[27,-49],[34,-37],[-36,-5],[4,-29],[-38,-25],[45,-89],[43,64],[40,1],[19,-48],[22,-18],[-51,-49],[16,-28],[48,-23],[20,-29],[0,-1]],[[14430,11243],[-240,2],[0,42]],[[10280,15567],[0,194]],[[10280,15761],[146,9],[108,6]],[[11253,15761],[-6,-499],[0,-10],[-3,-460]],[[10278,14797],[2,770]],[[5344,10118],[234,194],[444,366]],[[8125,8937],[-9,-35],[-29,14],[-44,-53],[3,-27],[-27,-73],[-24,-39],[6,-37],[-43,-2],[-48,26],[-44,-4],[-15,19],[-26,-16],[-13,23],[-44,-30],[-5,-16],[-66,-47],[-36,60],[-8,-33],[-31,-16],[-46,-3],[-18,-26],[-73,-1],[-24,19],[-33,-51],[5,-37],[-15,-13],[-13,-61],[-17,-29],[-55,-57],[4,-74],[-53,-9],[11,-34],[-28,-40],[2,-32],[-61,-55],[3,-62],[-31,-101],[-17,-34],[13,-80],[-17,-41],[-20,-11],[11,-32],[-39,-16],[-33,6],[-12,-75],[-16,-25],[8,-38],[-27,-34],[-6,-32],[34,-37],[31,-9],[6,-41],[-18,-18],[-65,-19],[-12,-18],[-47,-15],[-22,-29],[-33,17],[-47,-23],[5,-32],[-24,-28],[-52,-110],[-35,4],[-48,-30],[6,-24],[-43,-34],[-12,-51],[16,-23],[-37,-60],[4,-33],[-37,-4],[-37,-26],[-30,20],[-103,21],[-45,-21],[-32,34],[-24,-42],[-13,51],[-32,17],[-9,25],[-44,-6],[-9,25],[17,25],[-33,14],[-29,-59],[-52,13],[-52,30],[-65,60],[-44,13],[6,32],[-26,20],[-30,47],[-46,12],[1,34],[-50,43],[-78,-13],[-34,35],[-55,-11],[-121,52],[-29,-7],[-43,60],[-3,30],[-35,24],[-37,-11],[13,44],[-33,32]],[[15664,6180],[-51,-44]],[[15613,6136],[0,79],[-537,0],[-338,-2]],[[15477,7246],[247,-308],[53,-71],[107,-134]],[[15884,6733],[41,-46],[77,-99],[56,-67]],[[16058,6521],[-394,-341]],[[13233,12506],[55,4],[67,-23],[13,-51],[19,-31],[28,-18],[22,14],[27,-27],[31,0],[45,28],[-21,28],[16,38],[26,-21],[33,-7],[8,-30],[72,-24],[55,-46],[56,-4],[10,38],[121,112],[67,-35]],[[14190,11287],[-357,0],[-380,-1]],[[13453,11286],[-223,0],[0,89],[0,236]],[[14826,18330],[37,25],[82,-7],[80,70],[49,-16],[42,8],[42,-26],[32,-35],[-1,-21],[46,-36],[60,-78],[34,-21],[82,45],[36,0]],[[15447,17692],[-534,-3],[-461,-2]],[[14453,18525],[60,-65],[92,-41],[66,-18],[10,12],[50,-18],[73,-39],[22,-26]],[[9148,13822],[152,1]],[[9300,13823],[253,-1],[557,0]],[[10110,13822],[-4,-632],[-2,-333]],[[10104,12857],[-955,1]],[[9149,12858],[-1,567],[0,397]],[[15451,16875],[1,-157]],[[15452,16718],[-370,-1],[-252,1],[-380,3]],[[14450,16721],[1,297],[1,669]],[[18088,12327],[-214,-128],[-275,-163]],[[18495,12573],[-407,-246]],[[16784,3402],[26,-40],[11,-56],[31,-47],[39,-16],[-12,-36],[-74,-30],[-46,-13],[-25,9]],[[16269,3031],[0,114],[-136,1]],[[17511,3809],[-37,-106],[-12,-69],[-31,-85],[-4,-73],[-59,-149],[-25,-47],[-39,-18],[-30,0],[-60,-35],[-48,-50],[-45,8],[28,58],[38,13],[-10,25],[40,40],[-12,27],[17,43],[-36,1],[-56,-50],[-12,-22],[-94,-68],[-44,-49],[-26,4],[-26,22],[10,23],[-6,34],[-35,0],[-31,47],[15,27],[-30,17],[-7,24],[-54,20],[-6,-19]],[[17703,3844],[-99,-224],[-53,-147],[-29,-87],[-54,-203]],[[17426,3183],[-2,46],[28,22],[-19,49],[8,63],[48,96],[11,70],[43,104],[19,24],[-12,34],[67,151]],[[4924,13630],[83,0]],[[5749,10901],[-167,130],[-740,569],[-64,50]],[[4778,11650],[25,345],[121,1635]],[[8730,19710],[0,-224],[0,-259],[1,-178],[0,-302]],[[7740,18747],[1,482],[0,478]],[[13022,13811],[155,-1]],[[13177,13810],[247,-4],[145,1],[324,0],[103,-2]],[[12086,5216],[185,2]],[[14743,3351],[0,-190],[-294,3]],[[14449,3164],[-371,5],[-341,4],[-70,101],[-156,-119]],[[13511,3155],[-18,7],[-32,-19],[-30,26],[15,34],[-12,37],[-65,5],[-16,26],[31,16],[32,33],[-6,32],[29,58],[9,71],[-16,58],[2,28],[18,29],[7,53],[-29,26],[-59,-3],[12,100],[20,45],[-35,35],[-14,37],[-8,20],[-32,6],[-40,-14],[4,37],[-48,51],[-67,-34],[-50,20],[14,26],[-20,27],[-33,4],[-34,-15],[-32,25],[-30,58],[-38,43],[-24,45],[-40,0],[-18,21],[-22,71],[-41,-24],[-15,13],[-15,56],[-51,15],[7,33],[-14,77],[-37,30],[-5,34],[19,30],[-11,42],[-33,13],[-17,39],[-20,11],[-3,30],[13,59],[-58,6],[-51,21],[-33,62],[-20,97],[-66,44],[-5,36],[-41,61],[-11,34],[-68,26],[-40,28],[-32,-2],[-31,27],[-71,38]],[[20257,11117],[62,-518]],[[8188,13822],[143,0]],[[8331,13822],[590,0],[68,0],[159,0]],[[9149,12858],[-402,1],[-401,0],[-158,-1]],[[15640,2088],[630,-4]],[[16502,510],[-13,-28],[-35,22],[-12,-15],[-64,-9],[-42,13],[-32,-23],[-22,18],[-42,12],[-39,-12],[-15,13],[-17,-54],[-58,23],[-12,36],[-28,-19],[-27,18],[-59,-13],[-15,-26],[-47,37],[-12,19],[-30,-48],[-53,51],[-53,-10],[-37,47],[-5,47],[-39,14],[-36,-12],[-17,6],[-28,43],[-6,31],[-91,15],[-59,58],[-46,33],[4,44],[-42,14],[-71,-35],[-1,28],[-39,-2],[-48,29],[-33,-17],[-28,18],[-13,50]],[[15140,926],[110,254],[80,189],[36,81],[71,156],[203,482]],[[16390,15845],[-253,4]],[[15441,15860],[8,475],[3,166],[0,217]],[[15161,15741],[-373,6],[-332,0]],[[14456,15747],[-1,218],[-2,239],[-2,271],[-1,246]],[[3245,13631],[726,-1],[380,0],[573,0]],[[4778,11650],[-206,-131],[-360,-225],[-965,-621]],[[15614,4908],[0,461],[0,259],[-1,508]],[[16058,6521],[123,-151],[52,-62]],[[11473,13815],[239,-3],[162,-2],[169,2]],[[12042,12950],[-387,1],[-229,1],[-492,6]],[[10934,12958],[3,340],[4,523]],[[11235,13819],[238,-4]],[[10445,22293],[-1,-643]],[[10444,21650],[-388,-1],[-620,-2]],[[9436,21647],[0,119],[0,44],[0,388],[-1,403]],[[10445,22601],[0,-308]],[[10528,18228],[0,-196],[1,-346]],[[9545,18746],[175,-1]],[[10528,18746],[0,-518]],[[8421,22601],[392,1],[622,-1]],[[9436,21647],[0,-8]],[[9436,21639],[-634,-1],[-380,0]],[[8422,21655],[-1,400],[0,546]],[[11187,12183],[2,-219],[2,-355]],[[11191,11609],[-514,-9]],[[10090,11593],[5,475],[8,519]],[[10103,12587],[476,-2],[604,-8],[4,-394]],[[12484,23055],[0,-453]],[[12484,22602],[-333,0],[-355,0],[-326,2]],[[11470,22604],[-12,0]],[[11458,22604],[1,351],[0,629]],[[11459,23584],[550,0],[475,0],[0,-529]],[[9559,15960],[0,416],[1,339]],[[10280,15761],[-505,-3],[-216,-2]],[[9559,15756],[0,204]],[[11513,18749],[-2,-324],[1,-362],[-2,-372]],[[11510,17691],[-767,-3],[-214,-2]],[[12086,5216],[-10,67],[-11,18],[-43,-3],[-21,14],[-69,98],[15,53],[-4,19],[-48,64],[-6,25],[-46,61],[-15,39],[25,61],[-10,43],[-49,56],[58,37],[4,19],[-98,31],[-34,48],[-12,35],[27,53],[-6,25],[-59,23],[-29,27],[2,69],[-32,1],[-31,31],[-35,10],[-22,69],[4,110],[-54,82],[1,62],[-23,45],[-50,6],[3,44],[-33,32],[0,20],[-43,65],[-48,33],[1,25],[-23,31],[9,99],[-32,136],[-8,80]],[[11231,7179],[784,2],[261,3]],[[14449,3164],[0,-400],[0,-340],[1,-330]],[[14450,2094],[-107,-245],[-298,-228]],[[14045,1621],[-16,108],[-42,79],[-18,83],[2,68],[-58,47],[-5,94],[-37,60],[-12,61],[-22,33],[-28,17],[-40,0],[-23,31],[13,60],[-29,35],[-56,14],[-40,34],[-9,44],[15,38],[-35,35],[-22,44],[-36,-12],[-21,26],[0,44],[-12,43],[33,35],[8,36],[-21,23],[21,47],[-14,61],[22,49],[-13,78],[-23,26],[7,59],[-23,34]],[[6760,17666],[320,1],[491,0]],[[7610,16701],[-420,0],[-448,0]],[[6742,16701],[8,403],[2,177],[8,385]],[[7572,18746],[-546,0],[-260,0]],[[6766,18746],[1,750],[1,212]],[[16753,7483],[-392,-338],[-16,-14],[-243,-210],[-95,-85],[-123,-103]],[[9149,12858],[0,-637],[0,-527],[-1,-100]],[[19441,15492],[0,-61],[-157,-1],[-259,0]],[[6727,15752],[463,-1],[420,0]],[[7610,15751],[303,0],[423,0]],[[8347,14787],[-16,0]],[[8331,14787],[-756,0],[-719,0],[-129,-2]],[[6727,14785],[0,355],[0,612]],[[8422,23586],[465,0],[166,-2],[381,0]],[[8421,22601],[1,979],[0,6]],[[14184,15310],[-1,-541]],[[14183,14769],[-34,0]],[[14149,14769],[-426,0],[-105,0],[-404,-1]],[[13478,15747],[528,-1],[177,1]],[[14183,15747],[1,-434],[0,-3]],[[13179,14324],[2,444]],[[14149,14769],[-6,-585],[-2,-378]],[[13177,13810],[2,514]],[[12268,11612],[-377,1],[-368,-2],[-332,-2]],[[10103,12587],[0,61]],[[10103,12648],[444,8],[312,5],[8,317],[67,-20]],[[14183,15747],[273,0]],[[15160,14769],[-316,1],[-355,-1],[-306,0]],[[11700,18748],[331,-3],[458,-1]],[[12489,18551],[-18,35],[-57,-4],[-17,-19],[-2,-315],[-1,-557]],[[12394,17691],[-884,0]],[[11510,17691],[2,-587],[1,-382]],[[15259,3155],[-15,-23],[39,-11],[9,-25],[24,-8],[0,-133]],[[15316,2955],[0,-72],[49,-1],[1,-193],[91,2],[-9,-602]],[[15448,2089],[-413,2],[-392,2],[-193,1]],[[13453,11286],[2,-508]],[[13455,10778],[-540,0],[-648,-1]],[[12267,10777],[0,517],[1,318]],[[6760,17666],[6,332],[1,306],[-1,442]],[[8128,22602],[293,-1]],[[6771,21644],[0,63],[0,413],[1,481]],[[6772,22601],[591,0],[412,0],[353,1]],[[6235,13631],[493,0],[0,191]],[[6728,13822],[371,0],[127,-2]],[[8331,14346],[0,-524]],[[6728,13822],[-1,548],[0,415]],[[8331,14787],[0,-441]],[[13476,16725],[652,-2],[322,-2]],[[10278,14789],[-376,1],[-590,2]],[[9307,15758],[252,-2]],[[11513,16722],[489,-1],[13,2],[487,-2]],[[12214,15753],[-334,4],[-371,3]],[[15917,9993],[-119,-360],[-115,-344]],[[12205,14467],[5,319]],[[12200,13813],[4,439],[1,215]],[[17986,4561],[35,3],[7,-52],[-10,-36],[-17,-24]],[[17706,4945],[79,-35],[2,-31],[30,9],[15,-34],[28,-14],[49,82],[25,31],[25,2],[60,31],[14,20],[-3,32],[44,-7],[-22,-83],[7,-48],[15,-48],[-35,-9],[-34,-71],[-12,-68],[-36,12],[-63,-106],[-20,-14],[-4,-34]],[[18459,5142],[1,10]],[[18397,4915],[-140,-153],[-64,-79],[-85,-115],[-34,-53],[-39,-89],[-18,17],[23,62],[-3,35],[22,48],[53,35],[5,25],[34,51],[0,47],[31,73],[64,85],[15,72],[37,27],[48,12],[-13,23],[25,38],[57,-55],[26,10]],[[18515,5487],[-36,-64],[20,-32]],[[18479,5269],[-29,-48],[-39,-43],[-32,-16],[-45,-39],[-4,-15],[-48,-23],[-32,-30],[-55,-2],[30,57],[6,49],[13,6],[21,56],[-32,54],[53,89],[-72,-42],[0,-21],[-34,-34],[43,-52],[-7,-23],[-39,-35],[-25,-100],[-21,23],[-23,-1],[-33,31],[12,77],[21,15],[-21,25]],[[7239,23586],[416,0],[767,0]],[[6772,22601],[-1,385],[-1,600],[469,0]],[[14162,8908],[356,-186]],[[13231,8380],[0,621]],[[13231,9001],[609,-8],[37,-4],[154,-16],[131,-65]],[[13472,17465],[-2,222]],[[23616,9375],[44,4],[10,-27],[28,-17],[-8,-38],[7,-30],[63,3],[29,-41],[48,2],[6,-23],[44,-23],[32,11],[20,-23],[81,-18],[31,-50],[9,-56],[-29,-143]],[[24031,8906],[-107,-79],[-31,-43],[10,-54],[45,-30],[15,-22],[3,-43],[36,-15],[60,-99],[0,-26],[-215,10],[-92,-5],[-104,-22],[-73,-24],[-168,-71],[-204,-95],[-114,-51]],[[23540,9560],[4,-27],[74,-70],[-24,-30],[-12,-43],[34,-15]],[[12484,22602],[0,-386],[0,-580]],[[11470,21637],[-2,283],[2,684]],[[11472,20672],[-530,0],[-282,0],[-216,-2]],[[10444,20670],[1,419],[0,547]],[[10445,21636],[247,1],[148,-1],[167,3],[463,-2]],[[16117,14866],[130,-2],[326,-2],[300,-2],[89,-1]],[[16965,14335],[-241,-4],[-73,-1],[-306,-184]],[[12492,17691],[-98,0]],[[15640,2088],[-192,1]],[[15904,12443],[-171,-104]],[[12545,9377],[1,10],[94,-8],[-1,-11],[301,1]],[[12940,9369],[128,0],[-3,-366],[166,-2]],[[12458,8372],[13,20],[-43,68],[25,29],[-54,42],[-2,25],[39,37],[-7,29],[15,20],[-26,75],[42,34],[-7,39],[-19,27],[-8,36],[22,64],[-7,30],[40,30],[23,285],[32,-2],[9,117]],[[12267,10777],[-541,-4],[-441,-4],[-396,-2],[-209,0]],[[15140,926],[-49,-11],[-16,13],[-23,-31],[-39,-19],[-28,1],[-18,20],[-9,42],[-65,15],[0,35],[-58,84],[-36,1],[-40,13],[-16,64],[-17,20],[-38,-1],[-27,-22],[-43,14],[-60,-26],[-12,41],[-24,3],[-22,46],[-14,-44],[-40,7],[6,32],[-42,20],[-21,-18],[-47,-1],[-20,34],[-28,13],[-47,-36],[-37,-2],[-14,26],[-41,40],[16,36],[21,76],[-26,52],[-42,55],[-74,24],[-8,30],[3,49]],[[24311,9595],[17,-54],[-11,-87],[-41,-41],[14,-55],[-8,-36],[-31,-34],[-5,-30],[-28,-19],[-31,-43],[-29,-12],[-39,-79],[-17,-75],[-26,-59],[-45,-65]],[[24311,9745],[-26,-56],[0,-22],[26,-72]],[[9436,20672],[552,-3],[456,1]],[[10444,20670],[-2,-344],[-6,-616]],[[9720,19708],[-296,0]],[[10445,22606],[446,0],[567,-2]],[[10445,21636],[-1,14]],[[7610,16056],[1,382],[-1,263]],[[8585,16704],[0,-268],[1,-449],[-2,-234]],[[7610,15751],[0,305]],[[19000,17662],[29,-43],[2,-34],[29,-34],[77,6],[21,13],[48,-11],[17,-41],[64,-70]],[[18225,17942],[43,23],[31,-27],[11,-30],[7,-83],[24,-63],[31,-33],[47,0],[18,48],[71,-13],[27,-24],[20,-67],[14,-7],[93,16],[40,40],[16,53],[3,50],[14,35],[25,10],[60,-49],[66,2],[14,-14],[-22,-31],[-28,-13],[-32,-37],[11,-24],[68,-30],[27,-20],[76,8]],[[12267,10777],[-1,-465],[0,-465]],[[12266,9847],[-994,-4],[-103,0]],[[9436,20672],[0,182],[0,785]],[[13455,10778],[-1,-148],[-1,-320],[340,1]],[[13797,9839],[-329,4],[-521,5]],[[12947,9848],[-295,0],[-386,-1]],[[9306,14229],[-6,-406]],[[9312,14792],[-6,-563]],[[12210,14786],[-118,2],[-591,2],[-257,2]],[[12940,9369],[7,479]],[[10260,13823],[-150,-1]],[[10103,12648],[1,209]],[[11704,19708],[780,-3]],[[12484,19705],[0,-389],[6,-22]],[[10446,23583],[524,1],[489,0]],[[11471,20253],[-2,-214],[0,-331]],[[11472,20672],[-1,-419]],[[12484,19942],[0,-237]],[[12484,20671],[0,-729]],[[11170,8373],[234,-1],[376,1],[494,-1]],[[11231,7179],[-14,35],[-33,34],[-33,10],[-52,43],[-4,25],[-31,12],[-37,38],[19,28],[-16,53],[-38,70]],[[6727,15752],[3,236],[11,583],[1,130]]],"transform":{"scale":[0.0005322651432275841,0.00045201937590095827],"translate":[-106.645296,25.839109999999998]},"objects":{"cb_2019_48_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[5,6,7,8,9,10,11,12,13,14,15]],"type":"Polygon","properties":{"COUNTYFP":"391"}},{"arcs":[[16,17,18,19,20,21]],"type":"Polygon","properties":{"COUNTYFP":"475"}},{"arcs":[[22,23,24,25,26,27,28]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[29,30,31,32,33,34,35]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[36,37,38,39,40]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[41,42,43,44,45,46,47,48]],"type":"Polygon","properties":{"COUNTYFP":"387"}},{"arcs":[[49,50,51,52,53,54]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[55,56,57,58,59,60,61]],"type":"Polygon","properties":{"COUNTYFP":"239"}},{"arcs":[[62,63,64,65,66,67,68]],"type":"Polygon","properties":{"COUNTYFP":"467"}},{"arcs":[[69,70,71,72,73]],"type":"Polygon","properties":{"COUNTYFP":"359"}},{"arcs":[[74,75,76,77,78,79,80]],"type":"Polygon","properties":{"COUNTYFP":"465"}},{"arcs":[[81,82,83,84,85,86,87,88,89,90,91,92,93,94]],"type":"Polygon","properties":{"COUNTYFP":"201"}},{"arcs":[[97,98,99,100,-19,101]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[102,103,104,105,106,107,-78,108,109]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-65,110,111,112,113,114,115]],"type":"Polygon","properties":{"COUNTYFP":"423"}},{"arcs":[[116,117,118,119,120]],"type":"Polygon","properties":{"COUNTYFP":"455"}},{"arcs":[[121,122,123,124,125,126,127]],"type":"Polygon","properties":{"COUNTYFP":"199"}},{"arcs":[[128,129,130,131,132,133]],"type":"Polygon","properties":{"COUNTYFP":"223"}},{"arcs":[[134,-103,135,-20,-101,136]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[137,138,139,140,141,142,143]],"type":"Polygon","properties":{"COUNTYFP":"331"}},{"arcs":[[144,145,146,147,148]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[149,-16,150,151,152,153,154,155,156,157,158]],"type":"Polygon","properties":{"COUNTYFP":"409"}},{"arcs":[[163,164,165,166,167,168,169]],"type":"Polygon","properties":{"COUNTYFP":"453"}},{"arcs":[[170,171,172,173,174]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-37,175,176,177,-26,178]],"type":"Polygon","properties":{"COUNTYFP":"259"}},{"arcs":[[179,180,181,182,183,184,185]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[186,187,188,189,190,191]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[192,193,194,195,196,197,198]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[199,200,201,202,203,204]],"type":"Polygon","properties":{"COUNTYFP":"195"}},{"arcs":[[205,206,207,208,209,210]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[211,212,213,214,215]],"type":"Polygon","properties":{"COUNTYFP":"351"}},{"arcs":[[216,217,218,219,220]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[-73,221,222,223,224]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[-53,225,226,-142,227,228,229]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[230,231,232,233,234,235,236,237]],"type":"Polygon","properties":{"COUNTYFP":"251"}},{"arcs":[[238,239,-173,240,241,-117,242,243]],"type":"Polygon","properties":{"COUNTYFP":"225"}},{"arcs":[[244,245,246,247,248,249]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[250,251,252,253,254,255]],"type":"Polygon","properties":{"COUNTYFP":"419"}},{"arcs":[[256,257,-241,-172,258,-115,259,260]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[261,-255,262,263,-257,-261]],"type":"Polygon","properties":{"COUNTYFP":"347"}},{"arcs":[[264,265,266,267,-187,-192,268,269,270]],"type":"Polygon","properties":{"COUNTYFP":"177"}},{"arcs":[[271,272,273,274,275,276,277]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[278,279,280,281,-212,-216,282,-122,-128]],"type":"Polygon","properties":{"COUNTYFP":"241"}},{"arcs":[[283,-1,-5,284,-43,285]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[[286]],[[287,288,-92,289]],[[290]],[[293,294]]],"type":"MultiPolygon","properties":{"COUNTYFP":"167"}},{"arcs":[[295,296,297]],"type":"Polygon","properties":{"COUNTYFP":"377"}},{"arcs":[[298,299,300,301,302,-237,303,304]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[305,306,307,-251,308]],"type":"Polygon","properties":{"COUNTYFP":"365"}},{"arcs":[[309,310,-181,311,-94,312]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[313,314,315,316,-304,-236,317]],"type":"Polygon","properties":{"COUNTYFP":"439"}},{"arcs":[[318,319,-47,320,-129,-134,321]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[322,323,324,-184,325,326,-267,327,328]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[329,330,331,332,-195,333]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[334,335,336,337,338,339]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[340,-6,-150,-159,341,342,343]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[344,-229,345,-169,346,347,348]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[349,-118,-242,-258,-264,350,-280,351,352]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[[353,354,355,-294,356,-292,357,-84]],[[358]],[[-96,359]]],"type":"MultiPolygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-190,363,-7,-341,-344,364]],"type":"Polygon","properties":{"COUNTYFP":"175"}},{"arcs":[[-3,365,366,367,368]],"type":"Polygon","properties":{"COUNTYFP":"315"}},{"arcs":[[-313,-93,-289,369,370,371,-310]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[372,373,374,375,376,377,378]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[379,-165,380,381,-323,-329,382]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-219,383,-375,384,-316,385]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[386,387,388,389,390]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[-40,391,392,-265,-271,393,394]],"type":"Polygon","properties":{"COUNTYFP":"187"}},{"arcs":[[395,-21,-136,-110,396,397,398,399]],"type":"Polygon","properties":{"COUNTYFP":"371"}},{"arcs":[[-327,400,-56,-62,401,-188,-268]],"type":"Polygon","properties":{"COUNTYFP":"285"}},{"arcs":[[402,403,404,405,406]],"type":"Polygon","properties":{"COUNTYFP":"275"}},{"arcs":[[-326,-183,407,-57,-401]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-114,408,409,-306,-309,-256,-262,-260]],"type":"Polygon","properties":{"COUNTYFP":"401"}},{"arcs":[[-189,-402,-61,410,-8,-364]],"type":"Polygon","properties":{"COUNTYFP":"469"}},{"arcs":[[411,412,413,414,415,416]],"type":"Polygon","properties":{"COUNTYFP":"263"}},{"arcs":[[417,-166,-380,-383,-328,-266,-393,418]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[419,420,-196,-333,421,422]],"type":"Polygon","properties":{"COUNTYFP":"333"}},{"arcs":[[423,424,425,426,427,428,-331,429]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[430,431,-209,432,433]],"type":"Polygon","properties":{"COUNTYFP":"507"}},{"arcs":[[434,-239,-244,435,436,437,438]],"type":"Polygon","properties":{"COUNTYFP":"313"}},{"arcs":[[439,440,441,442,-120,443]],"type":"Polygon","properties":{"COUNTYFP":"407"}},{"arcs":[[-317,-385,-374,444,445,-299,-305]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[-395,446,447,448,449,-176,-41]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[450,-245,-250,451,-45,452]],"type":"Polygon","properties":{"COUNTYFP":"449"}},{"arcs":[[453,-247,454,-368,455,456,-112,457]],"type":"Polygon","properties":{"COUNTYFP":"459"}},{"arcs":[[458,459,-425,460,461,462,463,464]],"type":"Polygon","properties":{"COUNTYFP":"363"}},{"arcs":[[465,-221,466,467,-147,468]],"type":"Polygon","properties":{"COUNTYFP":"337"}},{"arcs":[[469,470,471,472,473,474,475,476]],"type":"Polygon","properties":{"COUNTYFP":"293"}},{"arcs":[[[478,479]],[[-411,-60,480,481,482,483,484,485,-9]]],"type":"MultiPolygon","properties":{"COUNTYFP":"057"}},{"arcs":[[486,487,488]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[-141,489,-381,-164,-170,-346,-228]],"type":"Polygon","properties":{"COUNTYFP":"491"}},{"arcs":[[-408,-182,-311,-372,490,-58]],"type":"Polygon","properties":{"COUNTYFP":"481"}},{"arcs":[[491,492,493,494]],"type":"Polygon","properties":{"COUNTYFP":"483"}},{"arcs":[[495,-335,-340,496,497,498,499,500]],"type":"Polygon","properties":{"COUNTYFP":"399"}},{"arcs":[[501,-274,502,503,504,505,506]],"type":"Polygon","properties":{"COUNTYFP":"191"}},{"arcs":[[507,508,-30,-36,509,-157,510,511]],"type":"Polygon","properties":{"COUNTYFP":"249"}},{"arcs":[[512,513,-231,-238,-303,514,-472,515]],"type":"Polygon","properties":{"COUNTYFP":"217"}},{"arcs":[[-320,516,517,-48]],"type":"Polygon","properties":{"COUNTYFP":"277"}},{"arcs":[[518,519,-397,-109,-77,520]],"type":"Polygon","properties":{"COUNTYFP":"443"}},{"arcs":[[-491,-371,521,-481,-59]],"type":"Polygon","properties":{"COUNTYFP":"321"}},{"arcs":[[-390,522,523,524]],"type":"Polygon","properties":{"COUNTYFP":"303"}},{"arcs":[[525,526,527,528,-222]],"type":"Polygon","properties":{"COUNTYFP":"381"}},{"arcs":[[-302,529,530,-473,-515]],"type":"Polygon","properties":{"COUNTYFP":"349"}},{"arcs":[[-531,531,-175,532,-474]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[-488,533,534,535,536]],"type":"Polygon","properties":{"COUNTYFP":"229"}},{"arcs":[[537,538,539,-206,-211]],"type":"Polygon","properties":{"COUNTYFP":"283"}},{"arcs":[[-517,-319,540,-377,541,542]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[-514,543,-51,544,-428,545,-232]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-524,546,547,548]],"type":"Polygon","properties":{"COUNTYFP":"219"}},{"arcs":[[549,550,551,552,-431,-434,553]],"type":"Polygon","properties":{"COUNTYFP":"463"}},{"arcs":[[-240,-435,-439,554,-475,-533,-174]],"type":"Polygon","properties":{"COUNTYFP":"289"}},{"arcs":[[-442,555,-82,556,557,558]],"type":"Polygon","properties":{"COUNTYFP":"339"}},{"arcs":[[559,560,561,562,563,564]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[-467,-220,-386,-315,565,566]],"type":"Polygon","properties":{"COUNTYFP":"497"}},{"arcs":[[567,568,569,570,571,572]],"type":"Polygon","properties":{"COUNTYFP":"197"}},{"arcs":[[[-156,574,575,-511]],[[576,577]],[[578,579,-152]],[[581,582]],[[-163,583,-160,584]]],"type":"MultiPolygon","properties":{"COUNTYFP":"355"}},{"arcs":[[585,586,-538,-210,-432]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[-253,587,-213,-282,588]],"type":"Polygon","properties":{"COUNTYFP":"403"}},{"arcs":[[-525,589,590,591,592]],"type":"Polygon","properties":{"COUNTYFP":"189"}},{"arcs":[[593,-438,594,595,596,597]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[598,-449,599,-586,-553,600]],"type":"Polygon","properties":{"COUNTYFP":"325"}},{"arcs":[[-441,601,-125,602,-354,-83,-556]],"type":"Polygon","properties":{"COUNTYFP":"291"}},{"arcs":[[-254,-589,-281,-351,-263]],"type":"Polygon","properties":{"COUNTYFP":"405"}},{"arcs":[[-367,603,-307,-410,604,-456]],"type":"Polygon","properties":{"COUNTYFP":"203"}},{"arcs":[[605,-590,-549,606,607,608]],"type":"Polygon","properties":{"COUNTYFP":"279"}},{"arcs":[[609,-348,610,-24,611]],"type":"Polygon","properties":{"COUNTYFP":"299"}},{"arcs":[[612,-378,-541,-322,-133,613,-68,614,615]],"type":"Polygon","properties":{"COUNTYFP":"231"}},{"arcs":[[616,-66,-116,-259,-171,-532,-530,-301]],"type":"Polygon","properties":{"COUNTYFP":"213"}},{"arcs":[[617,618,619,620,-569]],"type":"Polygon","properties":{"COUNTYFP":"487"}},{"arcs":[[[621,622,623,624,625]],[[626,627]],[[628,629]]],"type":"MultiPolygon","properties":{"COUNTYFP":"489"}},{"arcs":[[630,631,-17,632]],"type":"Polygon","properties":{"COUNTYFP":"301"}},{"arcs":[[-139,633,-597,634,635]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[636,637,638,639,640,641,642]],"type":"Polygon","properties":{"COUNTYFP":"253"}},{"arcs":[[[643,644,-627,645]],[[646,647,-623,648,649]]],"type":"MultiPolygon","properties":{"COUNTYFP":"261"}},{"arcs":[[650,651,652,653,654,655,656]],"type":"Polygon","properties":{"COUNTYFP":"335"}},{"arcs":[[657,-557,-95,-312,-180,-186,658]],"type":"Polygon","properties":{"COUNTYFP":"473"}},{"arcs":[[-596,659,-659,-185,-325,660,-635]],"type":"Polygon","properties":{"COUNTYFP":"477"}},{"arcs":[[-140,-636,-661,-324,-382,-490]],"type":"Polygon","properties":{"COUNTYFP":"287"}},{"arcs":[[[-629,661]],[[662,663,-625,664]]],"type":"MultiPolygon","properties":{"COUNTYFP":"061"}},{"arcs":[[-403,-407,665,666,-637,-643,667]],"type":"Polygon","properties":{"COUNTYFP":"207"}},{"arcs":[[-111,-64,668,-131,669,-248,-454,-458]],"type":"Polygon","properties":{"COUNTYFP":"499"}},{"arcs":[[670,-476,-555,-594,-598,-634,-138,-144]],"type":"Polygon","properties":{"COUNTYFP":"395"}},{"arcs":[[-119,-350,-353,671,-126,-602,-440,-444]],"type":"Polygon","properties":{"COUNTYFP":"373"}},{"arcs":[[672,-197,-421,673,-349,-610,674]],"type":"Polygon","properties":{"COUNTYFP":"411"}},{"arcs":[[675,676,-416,677,-653,678]],"type":"Polygon","properties":{"COUNTYFP":"415"}},{"arcs":[[679,-398,-520,680,-297]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[681,682,-587,-600,-448,683,684,685]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-337,686,-198,-673,687,688]],"type":"Polygon","properties":{"COUNTYFP":"307"}},{"arcs":[[689,-145,690,-619,691]],"type":"Polygon","properties":{"COUNTYFP":"485"}},{"arcs":[[-352,-279,-127,-672]],"type":"Polygon","properties":{"COUNTYFP":"457"}},{"arcs":[[692,693,694,695,696]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[-149,697,698,699,-691]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[700,-226,-52,-544,-513,-516,-471,701]],"type":"Polygon","properties":{"COUNTYFP":"309"}},{"arcs":[[[702,-647,703,-508,-512,-576,704]],[[-582,705,-644,706]]],"type":"MultiPolygon","properties":{"COUNTYFP":"273"}},{"arcs":[[707,-633,-22,-396,-400,708,709]],"type":"Polygon","properties":{"COUNTYFP":"389"}},{"arcs":[[-614,-132,-669,-63,-69]],"type":"Polygon","properties":{"COUNTYFP":"379"}},{"arcs":[[-223,-529,710,-591,-606,-609,711]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-496,-501,712,713,-199,-687,-336]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[714,-207,-540,-33,715,716,717]],"type":"Polygon","properties":{"COUNTYFP":"479"}},{"arcs":[[-595,-437,718,-558,-658,-660]],"type":"Polygon","properties":{"COUNTYFP":"185"}},{"arcs":[[719,720,-697,721,-99]],"type":"Polygon","properties":{"COUNTYFP":"329"}},{"arcs":[[722,-649,-622,-626,-664,723,724]],"type":"Polygon","properties":{"COUNTYFP":"215"}},{"arcs":[[-148,-468,-567,725,-464,726,-698]],"type":"Polygon","properties":{"COUNTYFP":"237"}},{"arcs":[[-727,-463,727,728,-699]],"type":"Polygon","properties":{"COUNTYFP":"503"}},{"arcs":[[729,-710,730,-535]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-342,-158,-510,-35,731,-682,-686,732]],"type":"Polygon","properties":{"COUNTYFP":"297"}},{"arcs":[[-452,-249,-670,-130,-321,-46]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[733,-498,734,735,-655,736]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-243,-121,-443,-559,-719,-436]],"type":"Polygon","properties":{"COUNTYFP":"471"}},{"arcs":[[737,738,739,-202,740]],"type":"Polygon","properties":{"COUNTYFP":"233"}},{"arcs":[[741,-387,-391,-593,742,-276,743]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[744,-740,745,746,-71,747]],"type":"Polygon","properties":{"COUNTYFP":"341"}},{"arcs":[[748,749,-106,750,751]],"type":"Polygon","properties":{"COUNTYFP":"235"}},{"arcs":[[752,753,754,755,756]],"type":"Polygon","properties":{"COUNTYFP":"295"}},{"arcs":[[757,-389,-417,-677,758,759]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[-275,-502,-507,760,761,-742,-744]],"type":"Polygon","properties":{"COUNTYFP":"345"}},{"arcs":[[-208,-715,762,763,-433]],"type":"Polygon","properties":{"COUNTYFP":"323"}},{"arcs":[[-717,764,765,766]],"type":"Polygon","properties":{"COUNTYFP":"505"}},{"arcs":[[767,-548,768,769]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[-143,-227,-701,-702,-470,-477,-671]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[-224,-712,-608,770,771]],"type":"Polygon","properties":{"COUNTYFP":"369"}},{"arcs":[[-447,-394,-270,772,-684]],"type":"Polygon","properties":{"COUNTYFP":"493"}},{"arcs":[[-722,773,-104,-135,-137,-100]],"type":"Polygon","properties":{"COUNTYFP":"461"}},{"arcs":[[-379,-613,-616,774,-445,-373]],"type":"Polygon","properties":{"COUNTYFP":"397"}},{"arcs":[[775,776,-562,777,778,779]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[780,-203,-745,781]],"type":"Polygon","properties":{"COUNTYFP":"421"}},{"arcs":[[782,783,784,-638,-667,785,786]],"type":"Polygon","properties":{"COUNTYFP":"417"}},{"arcs":[[-773,-269,-191,-365,-343,-733,-685]],"type":"Polygon","properties":{"COUNTYFP":"255"}},{"arcs":[[787,-639,-785,788,-193,-714,789]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-735,-497,-339,790,-749,-752,791,792]],"type":"Polygon","properties":{"COUNTYFP":"451"}},{"arcs":[[-787,793,-728,-462,794,-783]],"type":"Polygon","properties":{"COUNTYFP":"429"}},{"arcs":[[-761,-506,795,-571,796,797]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[-412,-388,-762,798]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[-731,-709,-399,-680,-296,-536]],"type":"Polygon","properties":{"COUNTYFP":"243"}},{"arcs":[[-716,-32,799,800,801,-765]],"type":"Polygon","properties":{"COUNTYFP":"247"}},{"arcs":[[-338,-689,802,803,804]],"type":"Polygon","properties":{"COUNTYFP":"327"}},{"arcs":[[-771,-607,-768,805]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[806,-748,-70,807,808]],"type":"Polygon","properties":{"COUNTYFP":"205"}},{"arcs":[[809,810,-102,-18,-632]],"type":"Polygon","properties":{"COUNTYFP":"495"}},{"arcs":[[811,-720,-98,-811,812,-779,813]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-729,-794,-786,-666,814]],"type":"Polygon","properties":{"COUNTYFP":"447"}},{"arcs":[[-679,-652,815,-560,-565,816,-759,-676]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[817,-668,-642,818,-414,-413]],"type":"Polygon","properties":{"COUNTYFP":"433"}},{"arcs":[[-611,-347,-168,819,-38,-179,-25]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[820,-640,-788,-790,-713,-500,821]],"type":"Polygon","properties":{"COUNTYFP":"441"}},{"arcs":[[[-577,822]],[[-15,823,-579,-151]],[[-483,825]],[[826,-479,827,-13]]],"type":"MultiPolygon","properties":{"COUNTYFP":"007"}},{"arcs":[[828,-782,-807,-809,829]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-330,-334,-194,-789,-784,-795,-461,-424,-430]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[830,-177,-450,-599,-601,-552,831,832]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-620,-700,-815,-406,833]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[834,835,-355,-603,-124,836]],"type":"Polygon","properties":{"COUNTYFP":"245"}},{"arcs":[[-754,837,-492,838]],"type":"Polygon","properties":{"COUNTYFP":"211"}},{"arcs":[[-495,839,840,841]],"type":"Polygon","properties":{"COUNTYFP":"179"}},{"arcs":[[842,-234,843,-426,-460]],"type":"Polygon","properties":{"COUNTYFP":"221"}},{"arcs":[[-844,-233,-546,-427]],"type":"Polygon","properties":{"COUNTYFP":"425"}},{"arcs":[[-797,-570,-621,-834,-405,844]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[-650,-723,845,-801,-800,-31,-509,-704]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-566,-314,-318,-235,-843,-459,-465,-726]],"type":"Polygon","properties":{"COUNTYFP":"367"}},{"arcs":[[-545,-50,-55,846,-422,-332,-429]],"type":"Polygon","properties":{"COUNTYFP":"193"}},{"arcs":[[847,848,-832,-551,849]],"type":"Polygon","properties":{"COUNTYFP":"385"}},{"arcs":[[-791,-805,850,-107,-750]],"type":"Polygon","properties":{"COUNTYFP":"413"}},{"arcs":[[-802,-846,-725,851,-766]],"type":"Polygon","properties":{"COUNTYFP":"427"}},{"arcs":[[852,-835,-837,-123,-283,-215,853]],"type":"Polygon","properties":{"COUNTYFP":"361"}},{"arcs":[[-798,-845,-404,-818,-799]],"type":"Polygon","properties":{"COUNTYFP":"269"}},{"arcs":[[-527,854,855,-272,-278,856]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-277,-743,-592,-711,-528,-857]],"type":"Polygon","properties":{"COUNTYFP":"437"}},{"arcs":[[-741,-201,857,-755,-839,-842,858,-738]],"type":"Polygon","properties":{"COUNTYFP":"393"}},{"arcs":[[859,-547,860,-563,-777,861]],"type":"Polygon","properties":{"COUNTYFP":"445"}},{"arcs":[[862,-542,-376,-384,-218,863]],"type":"Polygon","properties":{"COUNTYFP":"181"}},{"arcs":[[-851,864,865,-79,-108]],"type":"Polygon","properties":{"COUNTYFP":"435"}},{"arcs":[[-167,-418,-419,-392,-39,-820]],"type":"Polygon","properties":{"COUNTYFP":"209"}},{"arcs":[[-739,-859,-841,-855,866,-746]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-423,-847,-54,-230,-345,-674,-420]],"type":"Polygon","properties":{"COUNTYFP":"281"}},{"arcs":[[-4,-369,-455,-246,-451,-453,-44,-285]],"type":"Polygon","properties":{"COUNTYFP":"343"}},{"arcs":[[-804,867,-28,868,869,-865]],"type":"Polygon","properties":{"COUNTYFP":"267"}},{"arcs":[[870,-693,-721,-812,-814,-778,-561,871]],"type":"Polygon","properties":{"COUNTYFP":"317"}},{"arcs":[[-678,-415,-819,-641,872]],"type":"Polygon","properties":{"COUNTYFP":"151"}},{"arcs":[[-523,-758,-760,-817,-564,-861]],"type":"Polygon","properties":{"COUNTYFP":"305"}},{"arcs":[[-873,-821,-822,-499,-734,-737,-654]],"type":"Polygon","properties":{"COUNTYFP":"353"}},{"arcs":[[-178,-831,-833,-849,873,-869,-27]],"type":"Polygon","properties":{"COUNTYFP":"265"}},{"arcs":[[-67,-617,-300,-446,-775,-615]],"type":"Polygon","properties":{"COUNTYFP":"257"}},{"arcs":[[-657,874,-694,-871,-872,-816,-651]],"type":"Polygon","properties":{"COUNTYFP":"227"}},{"arcs":[[-688,-675,-612,-23,-29,-868,-803]],"type":"Polygon","properties":{"COUNTYFP":"319"}},{"arcs":[[-605,-409,-113,-457]],"type":"Polygon","properties":{"COUNTYFP":"183"}},{"arcs":[[-747,-867,-526,-72]],"type":"Polygon","properties":{"COUNTYFP":"375"}},{"arcs":[[-695,-875,-656,-736,-793,875]],"type":"Polygon","properties":{"COUNTYFP":"431"}},{"arcs":[[876,877,-572,-796,-505]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[-205,878,-756,-858,-200]],"type":"Polygon","properties":{"COUNTYFP":"357"}},{"arcs":[[879,-503,-273,-856,-840,880]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[881,-877,-504,-880,-881,-494,882]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-539,-683,-732,-34]],"type":"Polygon","properties":{"COUNTYFP":"311"}},{"arcs":[[-75,-81,883,-554,-764,884]],"type":"Polygon","properties":{"COUNTYFP":"271"}},{"arcs":[[-866,-870,-874,-848,-850,-550,-884,-80]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[-696,-876,-792,-751,-105,-774]],"type":"Polygon","properties":{"COUNTYFP":"383"}},{"arcs":[[-862,-776,885,-769,-860]],"type":"Polygon","properties":{"COUNTYFP":"501"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/ut.topo.json b/app/assets/topojson/states/ut.topo.json new file mode 100755 index 00000000..b9ac6530 --- /dev/null +++ b/app/assets/topojson/states/ut.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[2377,1135],[50,-14],[120,1],[162,-2],[465,0],[74,8],[394,0],[638,1],[310,1],[298,1]],[[4888,1131],[-19,-29],[-18,-103],[-68,8],[-18,-49],[-20,-11],[29,-36],[38,-10],[-11,-37],[-22,-28],[-22,14],[-22,-15],[42,-50],[-27,-64],[-51,-44],[-50,4],[-55,44],[-27,5],[6,-45],[36,-17],[5,-40],[-44,-19],[-8,-27],[17,-27],[-29,-24],[9,-53],[-26,-19],[7,-31],[-18,-59],[-30,7],[-16,-58],[-33,-7],[-3,-48],[-32,8],[-17,-35],[-30,9],[-37,-14],[-18,-20],[-72,7],[-27,11],[-19,-35],[-26,2],[-18,27],[-20,-5],[-55,-94],[-32,24],[-13,-38],[26,-25],[-25,-36],[-29,67],[-43,27],[-10,-34],[31,-24],[-35,-29],[-34,-10],[-19,-23],[-33,-14],[-65,-2]],[[3788,7],[-319,0],[-331,0],[-706,-1],[-262,0],[-515,-1]],[[1655,5],[0,378],[-3,207],[1,456]],[[1653,1046],[-1,90],[167,0],[145,1]],[[1964,1137],[24,-2],[389,0]],[[3319,10416],[333,0]],[[3652,10416],[-1,-24],[34,-26],[12,-37],[7,-61],[-20,-37],[-34,2],[22,-51],[-1,-28],[-19,-44],[67,-74],[25,-94],[2,-74],[35,-30],[-12,-94],[35,-47],[-22,-31],[9,-24],[-26,-15],[1,-88],[-21,-98],[-46,-64],[-1,-25],[-36,-50],[-15,-86]],[[3647,9216],[-42,-29],[-20,30],[-30,11],[-13,-22],[-49,8],[-49,-30],[-20,44],[-58,-33],[-28,-77],[-58,-13],[-44,47],[-56,-9],[-46,22],[-24,58]],[[3110,9223],[-40,90],[50,13],[-8,42],[-29,3],[-14,71],[-42,45],[-15,-6],[-41,-34],[-25,87],[-10,35],[-1,73],[-16,73],[-18,40],[-30,38],[13,22],[1,58],[13,59],[16,25],[19,33],[-27,25],[-1,27],[-26,65],[-57,109],[-28,16],[-24,36],[-24,75],[-17,13],[-12,58]],[[2717,10414],[8,-2],[594,4]],[[3070,7195],[57,50],[15,-16],[38,13],[29,29],[38,18],[3,33],[36,32],[36,-2],[24,-6],[33,22],[32,-6],[36,38],[18,35],[46,-7],[17,26]],[[3528,7454],[38,-62],[-5,-30],[-11,-106],[-60,-56],[14,-50],[25,0],[27,-83],[21,-7],[7,-45],[0,-7],[107,-2],[0,-15],[61,-69],[-28,-43],[41,-28],[26,16],[48,5],[24,-19],[70,-4],[67,-92],[-12,-43],[24,-50],[45,-63],[-8,-42],[14,-46],[-31,-82],[10,-35],[-19,-28],[15,-35],[47,18],[53,-108],[24,-22],[47,-35],[1,-52],[51,0],[1,-90],[176,-1],[98,0]],[[4536,6043],[48,0],[0,-61],[0,-119]],[[4584,5863],[-317,2],[0,-4],[-242,2]],[[4025,5863],[-403,-2],[-163,1]],[[3459,5862],[-49,0],[-113,-1],[12,79],[12,29],[-28,26],[0,29],[-42,39],[-11,46],[-32,23],[-15,10],[-19,-48],[-39,-36],[-60,-25],[-17,-42],[-36,-50],[-26,-53],[-10,-38],[-26,9],[-60,-63],[-34,-8],[-50,10],[30,84],[-17,89],[31,32],[-4,51],[-27,17],[-6,26],[-26,7],[1,63],[-10,31],[-33,7],[-39,61],[-29,10]],[[2687,6276],[12,58],[-16,41],[16,55],[21,26],[9,20],[-36,49],[42,98],[-4,71],[-28,15],[-15,27],[0,36],[-18,31],[6,61],[-15,40],[10,34],[23,14],[-27,50],[-7,47],[6,80],[-21,25],[-4,55],[31,19],[25,-3]],[[2697,7225],[19,-13],[23,20],[61,-52],[50,2],[41,38],[24,-54],[53,-45],[35,3],[52,44],[15,27]],[[3015,8006],[8,-42],[108,-1],[79,36],[49,11],[61,35]],[[3320,8045],[46,-17],[8,18],[39,-13],[19,-20],[-8,-28],[30,-17],[6,-52]],[[3460,7916],[-11,-53],[40,-32],[-2,-58],[41,-57],[-15,-76],[11,-14],[62,-105]],[[3586,7521],[-15,-51],[-43,-16]],[[2697,7225],[-21,98],[13,16],[-6,84],[9,73],[-30,59],[-10,120],[8,21],[-13,47],[-28,20],[-47,91]],[[2572,7854],[161,160],[201,156],[71,2],[0,-45],[-18,-49],[7,-46],[21,-26]],[[842,4],[-225,0],[-492,0],[-122,1],[-2,183],[0,687],[-1,235],[0,154]],[[0,1264],[667,-1],[0,29],[163,0],[0,-135],[0,-51],[209,0],[108,0],[0,-98],[154,-2],[0,-14],[156,0],[0,53],[196,1]],[[1655,5],[-259,0],[-554,-1]],[[6378,5132],[398,0],[320,0],[28,63],[52,11]],[[7176,5206],[0,-74],[1,-199],[-2,-717],[-3,-307],[-8,-323],[0,-458]],[[7164,3128],[-452,0],[-398,0],[-535,0]],[[5779,3128],[14,29],[30,28],[-16,34],[25,36],[-43,6],[-57,42],[34,42],[30,-35],[24,15],[-9,54],[-26,-19],[-30,17],[-11,29],[19,39],[-73,51],[-18,37],[16,19],[-35,59],[17,34],[27,18],[-12,29],[-44,45],[22,38],[-28,48],[-29,20],[14,37],[-38,6],[4,57],[-28,33],[13,42],[43,-6],[8,19],[-22,45],[16,17],[-17,34],[117,-1],[0,-31],[27,0],[13,-30],[53,0],[0,30],[-26,0],[0,31],[-54,15],[-52,0],[0,32],[-54,0],[-20,16],[11,33],[-23,16],[23,52],[-7,41],[9,24],[30,14],[12,36],[-10,82],[26,34],[-1,43],[37,24],[-6,36],[33,21],[-12,50],[0,30],[-21,19],[14,37],[26,14],[-16,30],[55,78],[-5,50],[22,84],[-19,14],[-1,96]],[[5780,5147],[1,0]],[[5781,5147],[101,0],[0,-16],[496,1]],[[3701,3149],[241,0]],[[3942,3149],[0,-21],[677,0],[1160,0]],[[5779,3128],[33,-39],[-26,-71],[24,-64],[-41,-65],[45,-30],[18,31],[21,-20],[-13,-51],[21,-22],[10,-49],[21,-22],[-2,-37],[23,-10],[6,-51],[27,24],[11,-59],[17,-24],[-44,-15],[3,-19],[39,-27],[7,-27],[-61,-78]],[[5918,2403],[-1289,0],[-495,2],[-22,-1],[-326,4],[0,-9],[-317,0],[-299,3]],[[3170,2402],[-3,303],[-5,267],[17,8],[20,59],[82,94]],[[3281,3133],[14,16],[406,0]],[[7164,3128],[0,-467],[26,-231],[-2,-397],[3,-139],[-2,-503],[1,-281],[-6,-357],[0,-380],[1,-371],[-646,0],[-307,-1],[-418,-1],[-30,1],[-365,0],[-279,-1],[-43,13],[-359,-2],[-453,-2],[-97,-3],[-207,-1],[-193,2]],[[4888,1131],[17,31],[44,32],[4,63],[50,30],[4,46],[45,-4],[13,31],[30,-2],[23,52],[-2,59],[25,20],[2,25],[30,25],[9,76],[-31,-3],[-20,60],[7,16],[49,-3],[5,47],[18,30],[28,17],[-3,58],[58,25],[84,-3],[20,-44],[20,4],[2,41],[19,17],[69,-14],[23,52],[-5,61],[53,45],[7,30],[34,47],[33,6],[30,-28],[29,25],[-5,34],[15,37],[25,16],[1,46],[44,74],[30,-12],[46,29],[13,34],[36,19],[2,25]],[[4584,5863],[488,-3],[0,-10],[253,0],[399,-1],[124,0]],[[5848,5849],[135,0],[-52,-42],[-14,-76],[-83,-18],[21,-73],[-31,-7],[14,-80],[-17,-37],[-21,0],[-5,-66],[-22,-30],[15,-32],[-27,-38],[13,-28],[9,-111],[11,-18],[-13,-46]],[[5780,5147],[-679,1],[-152,0],[-59,-1],[-163,0],[-458,1],[-12,108],[-31,34],[-34,144],[-56,-8],[-30,54],[-14,58],[-30,38],[1,31],[-38,29]],[[4025,5636],[0,227]],[[5814,8329],[595,2],[481,6],[288,-1],[2,-363],[1,-341]],[[7181,7632],[-108,0],[0,45],[-54,-1],[-4,213],[-54,0],[-3,151],[-274,-1],[0,-139],[-57,-29],[-3,-41],[-48,-5],[-3,-19],[-18,-12],[-39,22],[-11,65],[7,54],[-22,41],[-59,-22],[-14,17],[-31,-21],[-48,-10],[-59,-32],[-34,17],[-40,-17],[-32,16],[-20,-42],[-97,-14],[-3,-16],[-52,-9],[-38,38],[-24,1],[-90,56]],[[5849,7938],[-35,9]],[[5814,7947],[0,382]],[[1964,1137],[1,183],[-8,178],[-1,184],[66,2],[93,-4],[0,161],[-14,18],[173,0],[1,181],[-17,0],[1,354]],[[2259,2394],[49,5]],[[2308,2399],[456,-1],[94,-8],[157,1],[0,11],[91,0],[64,0]],[[3652,10416],[274,4],[387,1],[1,-462],[0,-417],[-1,-683]],[[4313,8859],[-41,-17],[-37,-75],[-13,15],[-33,-16],[-11,-41],[-50,-36],[-44,-16],[-38,-41],[-46,3]],[[4000,8635],[46,68],[10,30],[-11,56],[-63,56],[0,67],[23,41],[-47,33],[-1,36],[-84,68],[-44,24],[-52,-27]],[[3777,9087],[-37,11],[-45,37],[3,33],[-35,18],[-16,30]],[[3184,8412],[-8,-12],[66,-95],[26,-55],[-58,-4],[36,-62],[29,-82],[3,-27],[30,-8],[12,-22]],[[2572,7854],[-335,641]],[[2237,8495],[422,152],[18,7],[310,-1],[31,-31],[55,-7],[79,9]],[[3152,8624],[16,-36],[-16,-20],[11,-75],[-5,-19],[26,-62]],[[2975,3133],[306,0]],[[2308,2399],[17,12],[12,53],[42,52],[43,19],[2,25],[-23,35],[24,59],[17,20],[14,91],[-3,45],[-28,20],[-25,48],[-34,31],[1,42],[-59,-18],[-13,48],[-37,39],[-21,7],[-36,62],[0,61]],[[2201,3150],[450,4],[205,-4],[0,-17],[119,0]],[[3777,9087],[-20,-39],[-4,-39],[-18,-17],[10,-48],[-31,-72],[-42,-35],[-5,-22],[-42,-4],[-48,24],[-53,-3],[-21,-60],[-42,-23],[-26,-27],[-37,-11],[-31,5],[-98,73],[-46,-5],[-16,-23],[-58,-15],[-21,-20],[-6,-38],[32,-31],[-2,-33]],[[2237,8495],[367,541],[150,0],[142,0],[102,60],[-17,26],[11,36],[-7,52],[27,17],[22,-26],[29,-7],[47,29]],[[1993,8406],[244,89]],[[2687,6276],[-65,-50],[-16,-56],[-48,-45],[-46,-5],[-6,19],[-48,-8],[3,-48],[-18,-30],[-154,-1],[-489,0],[-646,3],[-650,0],[-496,2]],[[8,6057],[1,678],[0,347],[5,777],[1,476]],[[15,8335],[1411,0],[372,0],[195,71]],[[2206,3280],[17,-3],[1,61],[26,0],[0,91],[27,31],[0,30],[26,16],[131,5],[0,-15],[67,-1],[39,22],[0,31],[59,23],[7,30],[26,1],[-1,49],[-13,27],[0,153],[5,57],[52,0],[24,29],[3,57],[27,1],[-2,60],[26,0],[0,50],[99,0],[-1,60],[13,16],[54,0],[7,103]],[[2925,4264],[236,0],[-5,-25],[73,0],[220,-2],[502,0]],[[3951,4237],[1,-30],[0,-477],[-1,-243],[-11,0],[2,-338]],[[2201,3150],[5,130]],[[4144,7408],[40,7],[23,67],[59,8],[35,-26],[34,-12],[29,33],[42,-1],[30,34],[-2,19],[25,61],[-5,31],[21,40],[46,-4]],[[4521,7665],[-1,-424],[-1,-91],[10,0],[0,-726],[6,0],[1,-381]],[[3586,7521],[37,6],[55,-26],[25,94],[60,42],[-10,33],[7,8],[61,-14],[-1,-36],[21,-57],[70,-21],[34,-36],[93,-59],[64,-20],[42,-27]],[[4000,8635],[-37,-2],[-28,-26],[-32,15],[-45,-20],[-20,-43],[-4,-43],[-53,-27],[-41,17],[-37,-36],[-51,-3],[-48,-38],[-20,-27],[-6,-44],[-38,-31],[-11,-9],[8,-55],[52,-24],[38,-1],[-3,-62],[27,-30],[-2,-24],[34,-51],[9,-31],[-27,-48],[-17,-30],[-13,-61],[-51,-24],[-47,28],[-34,36],[-43,-25]],[[1540,10414],[476,4],[662,2],[39,-6]],[[15,8335],[1,458],[2,566],[0,546],[-1,201],[2,72],[-3,227],[201,-11],[196,1],[677,13],[450,6]],[[5849,7938],[0,-544],[0,-747],[-1,-798]],[[4521,7665],[-2,40],[16,61],[42,-11],[22,8],[35,-31],[24,2],[33,41],[47,34],[41,-4],[14,15],[31,-24],[49,-2],[44,61],[38,-26],[23,12],[32,-9],[18,31],[35,-25],[74,22],[22,23],[35,-10],[77,19],[38,32],[14,43],[22,-8],[95,32],[84,-27],[63,-2],[30,-21],[50,-6],[74,9],[12,17],[61,-14]],[[1143,2397],[425,-1],[282,-2],[409,0]],[[0,1264],[1,294],[3,162],[-1,367],[1,310]],[[4,2397],[562,0],[577,0]],[[3459,5862],[0,-30],[29,0],[-1,-30],[54,1],[0,-92],[-83,-1],[0,-30],[-67,-31],[0,-32],[-40,-1],[3,-120],[-1,-185],[4,-183],[-50,0],[1,-47],[0,-114],[-251,-3],[1,-30],[-53,-2],[0,-61],[-82,0],[-1,-46]],[[2922,4825],[-80,0],[0,31],[-94,0],[-74,0],[-6,91],[0,243],[-27,45],[0,30],[27,0],[-27,58],[-204,0],[-155,-3],[-240,0],[-422,0],[-1280,0],[0,-17],[-333,-3]],[[7,5300],[1,757]],[[2922,4825],[3,-561]],[[2206,3280],[-340,0],[-523,-1],[-107,0],[-1232,1]],[[4,3280],[1,629],[2,8],[-2,264],[3,1030],[-1,89]],[[7181,7632],[-4,-454],[0,-565],[0,-621],[-1,-786]],[[3951,4237],[-1,372],[-2,371],[0,163],[77,0],[0,493]],[[4,2397],[1,241],[-2,490],[1,152]],[[4313,8859],[0,-528],[251,-2],[225,-2],[252,0],[56,-3],[377,1],[340,4]]],"transform":{"scale":[0.0006969376976544302,0.00048015871797332327],"translate":[-114.05273698383299,36.997968]},"objects":{"cb_2019_49_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[6,7,8,9,10]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[11,12,13,14,15,16,17,18]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[19,20,21,22,-12,-19,23,24]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[25,26,-4,27]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[28,29,30,31,32,33]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[34,35,36,37,38,39]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[-31,40,-2,41,-37]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-15,42,43,-33,44,45]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[46,47,48,49]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-38,-42,-1,-6,50,51,52]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-8,53,54,55,56]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[57,-20,-25,58,59,60]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[61,-39,-53,62,63]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-9,-57,64,-60,65]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[66,-59,-24,-18,67,68,69]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[70,71,72,-35,-40,-62,-64,73]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[74,75,-13,-23,76]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-65,-56,77,-21,-58,-61]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[78,-10,-66,-67,-70,79]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-49,80,-43,-14,-76,81]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[82,-51,-5,-27,83,84]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-68,-17,85,86,87]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-87,88,-71,89,90]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-81,-48,91,-29,-34,-44]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-45,-32,-36,-73,92]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-90,-74,-63,-52,-83,-85,93]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-78,-55,94,-50,-82,-75,-77,-22]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-93,-72,-89,-86,-16,-46]],"type":"Polygon","properties":{"COUNTYFP":"039"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/va.topo.json b/app/assets/topojson/states/va.topo.json new file mode 100755 index 00000000..04dbaf46 --- /dev/null +++ b/app/assets/topojson/states/va.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[12407,4773],[-9,-33],[41,-26],[34,23],[47,-18],[36,32],[-13,37],[26,82],[-86,33],[-54,-41],[-22,-89]],[[11924,4169],[-20,44],[-67,156],[-115,256],[-90,208]],[[11632,4833],[41,38],[70,33],[32,63],[1,56],[-22,64],[31,47],[17,104],[37,66],[8,40]],[[11847,5344],[56,81],[109,74],[29,-13],[28,31],[-14,56]],[[12055,5573],[167,-78],[373,-153],[100,-45],[1,0],[67,-25]],[[12763,5272],[58,-20],[325,-150]],[[13146,5102],[-107,-219],[-127,-181]],[[12912,4702],[-22,-33],[-122,-186],[-300,-453]],[[12468,4030],[-18,-40],[5,-65],[-33,-22],[-73,17],[-39,-1],[-57,-27],[-75,7],[-77,-74]],[[12101,3825],[-60,-27],[-42,41],[9,73],[-22,117],[-62,140]],[[11989,451],[31,22],[58,8],[32,-20],[40,-58],[69,-44],[39,-46],[35,5],[-142,102],[-39,72],[-22,11]],[[12090,503],[43,72],[331,549]],[[12464,1124],[71,-62],[80,-24],[24,-37],[60,28],[42,-8],[43,1],[25,-43],[73,10],[60,-43],[20,-36],[62,-18],[44,-35],[55,0],[57,-18],[66,-3],[116,-47],[48,29],[31,-8],[84,-54],[59,4]],[[13584,760],[-1,-18],[-14,-205],[-10,-198],[-21,-329]],[[13538,10],[-479,1],[-542,-7],[-94,-4],[-415,3],[-124,0]],[[11884,3],[-2,51],[24,66],[22,5],[7,178],[54,148]],[[9704,1011],[45,252],[37,210],[30,134],[0,1]],[[9816,1608],[71,-24],[49,29],[78,-36],[40,-34],[32,-51],[53,46],[-57,48],[8,26],[-27,52],[42,11],[74,-23]],[[10179,1652],[93,27],[6,93],[63,22],[26,62],[69,35],[86,-79],[67,17],[20,51],[30,18],[39,-101],[31,34],[23,20],[29,-63],[-12,-70],[28,-66],[32,47],[28,-11],[62,28],[40,45],[23,-11],[15,-57],[46,-23]],[[11023,1670],[-86,-470],[-73,-398],[-72,-401],[-73,-399]],[[10719,2],[-300,-2]],[[10419,0],[-20,33],[17,31],[96,68],[-58,2],[-5,61],[-49,-6],[-33,25],[-11,88],[-39,8],[-30,21],[-44,-88],[-14,-52],[-38,23],[-151,33],[-44,-51],[70,-69],[28,12],[53,-24],[-38,-52],[5,-63]],[[10114,0],[-382,2],[-207,1]],[[9525,3],[137,775],[42,233]],[[4160,1890],[76,9],[32,31]],[[4268,1930],[23,-94],[121,-153],[60,-89],[67,-197],[18,-57]],[[4557,1340],[-92,-37],[-44,-58]],[[4421,1245],[-55,-69],[-61,-58],[-146,-80],[-72,16],[-38,23],[-209,-70],[-70,-63],[-22,-56],[9,-67],[-38,-23],[-174,-60],[-257,-142],[-57,-57]],[[3231,539],[-1,1],[-58,226],[-32,87],[-73,186],[-16,37]],[[3051,1076],[89,55],[124,-18],[5,45],[42,11],[-70,211]],[[3241,1380],[82,66],[46,31],[39,-39],[149,134],[30,-13],[36,46],[47,1]],[[3670,1606],[5,-3],[82,-3],[39,32],[51,-37],[49,32],[33,1],[24,54],[33,11],[-7,48],[22,92],[59,36],[48,-5],[52,26]],[[4382,2395],[81,-26],[40,21],[99,-33],[50,-69],[4,-49]],[[4656,2239],[-4,-42],[-31,-17],[-8,-44],[-40,-9],[-32,-42],[-60,-19],[-145,-66],[13,-21],[-81,-49]],[[3670,1606],[30,28],[-57,163],[7,29],[-1,2],[-29,12],[-11,22],[6,25],[-69,86],[-85,180],[-22,122],[-12,73],[-102,106],[-34,-13]],[[3291,2441],[409,377],[207,196],[199,185],[59,-54],[1,-40],[-83,-77],[-45,-26],[10,-50],[45,-16],[13,-30],[45,-3],[41,-98],[9,-69],[-17,-49],[36,-74],[51,-46],[14,-35],[37,-4],[57,-72],[3,-61]],[[8426,1323],[33,-15],[53,47],[-8,24],[-11,30],[55,36],[-35,21],[56,51],[2,103],[-27,31],[35,72],[-49,144]],[[8530,1867],[52,49],[0,32],[69,39],[91,25],[24,22],[61,-23],[10,-52],[27,-26],[65,-20],[40,41],[61,34],[22,52],[36,13],[7,59],[52,52],[48,-1],[12,33]],[[9207,2196],[34,-30],[36,32],[35,-34],[22,50],[35,1],[4,-84],[49,-49],[95,-1],[37,-129],[24,21],[36,-2],[64,-92],[25,-76],[71,-53],[-26,-25],[72,-90],[-4,-27]],[[9704,1011],[-69,-91],[-52,3],[-72,-30],[-50,-40],[-18,-40],[-35,-7],[-56,27],[-36,-27],[-315,81],[-160,42],[-30,-131],[-32,-29],[-39,44]],[[8740,813],[-5,20],[-70,73],[15,57],[-42,25],[-44,-7],[-321,81]],[[8273,1062],[88,95],[38,128],[27,38]],[[15375,6916],[-52,37],[-22,-20],[-47,53],[-107,36],[-26,62],[-52,4],[-7,69],[-41,31],[-46,70],[-49,-23],[-60,14],[7,36],[-30,45],[-77,70]],[[14766,7400],[249,338],[7,9],[64,87],[123,165],[56,76]],[[15265,8075],[85,-36],[44,-40],[47,-13],[25,-32],[-26,-56],[26,-64],[56,-36],[58,-15],[77,4],[45,-12],[64,-96]],[[15766,7679],[-126,-132]],[[15640,7547],[-42,4],[0,-52],[87,-18],[10,10]],[[15695,7491],[93,-104]],[[15788,7387],[-33,-6],[-39,-47],[-9,-53],[16,-31],[82,9],[63,-8],[89,-50]],[[15957,7201],[-2,-191],[-28,-51],[-65,-3],[-62,-39],[-64,-74],[-8,-77],[13,-47],[-67,6],[-26,-37],[-79,-25],[-31,65],[52,42],[-25,24],[-73,9]],[[15492,6803],[-28,35],[-32,39],[-57,39]],[[15253,7429],[41,-64],[70,-1],[40,15],[0,81],[-78,10],[-62,-14],[-11,-27]],[[12341,8071],[216,-92],[23,62],[-8,29],[93,111],[50,31],[31,-27],[97,30],[-1,-88],[-27,-46],[36,-58],[27,-1],[16,-107]],[[12894,7915],[-38,-48],[33,-31],[-37,-65],[7,-34],[52,1],[16,-29],[-24,-61],[-27,-20],[-44,-140],[-52,-57],[-80,-110]],[[12700,7321],[-73,-78],[-108,-147],[-56,-35],[-39,-51],[-95,41],[-6,-20],[-66,-105],[-26,-42],[-90,-224],[-34,-38],[-1,-1]],[[12106,6621],[-404,371],[-143,137]],[[11559,7129],[116,218],[39,99],[40,75],[70,50],[48,85],[40,14],[19,-81],[89,69],[45,63],[29,67],[63,46],[46,-58],[51,84],[72,88],[-52,44],[67,79]],[[13308,8088],[40,88],[52,50],[-8,51],[40,87],[13,34],[29,64],[12,107],[45,59],[39,111]],[[13570,8739],[273,-236],[219,-188]],[[14062,8315],[-41,-53],[-42,-112],[-35,-10],[-38,-72],[-115,-103],[-50,-31],[-1,0]],[[13740,7934],[-45,-37],[-56,-73]],[[13639,7824],[-130,127],[-93,-20],[-69,41],[-62,35]],[[13285,8007],[23,81]],[[12101,3825],[-26,-63],[1,-42],[25,-60],[-49,-5],[-42,58],[-34,-17],[6,-57],[-41,-9],[-21,-35],[15,-66],[-15,-18],[-49,-12],[-117,34],[-30,-1],[-50,-32],[-5,-32],[30,-65],[-44,-22],[-2,-44],[34,-32],[-22,-59]],[[11665,3246],[-14,-55],[-61,29],[-31,-8]],[[11559,3212],[-30,20],[-44,-4],[-145,349],[-16,66],[-39,20],[-7,41],[-99,23],[-72,31],[-24,26],[3,83],[-20,112],[-38,22],[-58,-5],[-18,51],[-50,35],[-71,-33]],[[10831,4049],[66,170],[-7,64],[-24,48]],[[10866,4331],[26,-6],[133,70],[70,22],[24,-24],[19,-62],[64,5],[29,-35],[49,66],[63,59],[41,63],[103,28],[-19,124],[36,23],[44,109],[39,13],[45,47]],[[10596,2552],[28,62]],[[10624,2614],[60,-28],[45,-44],[41,36],[53,-8],[37,50],[62,56],[44,-15],[74,79]],[[11040,2740],[58,-13],[-7,101],[54,-10],[1,46],[46,-14]],[[11192,2850],[116,-255],[48,-105],[9,-79],[21,-27],[35,-22],[16,-102],[66,10],[77,-33],[8,-83],[79,-22]],[[11667,2132],[-20,-63],[-140,-428],[-33,-97]],[[11474,1544],[-173,84],[-60,-56],[-33,26],[-105,23],[-80,49]],[[10179,1652],[338,733],[18,41],[61,126]],[[11503,1398],[50,29],[131,-6],[29,-24],[41,-76],[29,9],[3,82],[60,88],[23,-22],[16,-168],[14,-38],[-50,-26],[-3,-30],[43,-27],[73,-91],[35,-62],[38,-19],[13,-52],[-51,-53],[48,-43],[-26,-24],[-3,-67],[31,-61],[-60,-73],[48,-67],[13,-45],[42,-29]],[[11884,3],[-551,1],[-614,-2]],[[11474,1544],[31,-68],[-25,-44],[23,-34]],[[19389,3337],[32,-31],[-167,-279],[-35,10],[-16,-45],[33,-34]],[[19236,2958],[-15,-26],[-72,-16],[-36,32],[-86,11],[-30,-28],[-25,32],[-37,-7],[-25,37],[48,57],[-29,74],[40,46],[-34,24],[-78,56],[-119,-14],[-39,25],[-80,-16]],[[18619,3245],[-18,37],[22,50],[35,20],[-19,34],[38,85],[29,-48],[50,28],[-38,67],[13,50],[45,49],[53,15],[-14,40],[39,78],[64,25],[21,50],[-61,-16],[-9,22],[51,36],[51,35],[-41,78],[-29,25],[56,49],[54,0],[64,-59],[62,34],[3,99],[34,71],[33,-43],[41,47],[-41,28],[25,92],[-43,43],[-57,1],[-55,32],[58,72],[61,-13],[36,39],[74,-22],[27,32],[-27,68],[57,88],[396,45],[328,37],[195,24],[-135,-227],[-124,-254],[-64,-76],[-20,-7],[-31,59],[21,21],[45,-33],[48,43],[-5,32],[-130,32],[-23,-28],[-22,-67],[-66,-21],[-88,-99],[-94,-149],[-57,-122],[-26,-37],[-37,-130],[-27,-52],[-24,-138],[-36,-88],[2,-91]],[[18461,4135],[2,50],[60,-38],[-53,-67],[-9,55]],[[1998,982],[22,3],[154,-154]],[[2174,831],[-54,-72],[-36,-15],[-50,-82],[15,-44],[-70,-53],[-66,-24],[-139,-89],[-26,-25],[-88,-258]],[[1660,169],[-664,1],[-57,13],[-216,-2],[-438,0],[-158,2],[-127,9],[62,51],[59,27],[25,28],[90,25],[35,31],[50,17],[24,27],[91,16],[95,-17],[74,8],[67,31],[24,31],[190,80],[48,8],[219,80],[144,14],[20,24],[-13,104],[34,20],[49,80],[-7,47],[64,38],[6,44],[60,-9],[50,12],[50,-24],[18,28],[68,3],[193,85],[28,28]],[[1917,1129],[65,-74],[16,-73]],[[15880,3388],[13,22],[66,-53],[50,-16],[-1,-48],[46,-18],[46,17],[-28,45],[70,6],[17,-83],[-42,-51],[65,-18],[9,69],[52,38],[45,-10],[-6,-54],[28,-11],[46,22],[-18,77],[33,16],[36,-28],[-25,-75],[-33,-61],[31,-21],[33,8],[79,78],[62,-106]],[[16554,3133],[7,-44],[91,-64],[23,-54]],[[16675,2971],[-53,-42],[9,-35],[-34,-27],[-43,3],[-76,49],[-87,-13],[-38,-20],[-40,-52],[-2,-41],[-27,-109]],[[16284,2684],[-32,22],[0,35],[-122,36],[-35,44],[-79,-20],[-24,42],[-30,7],[-91,39],[-48,-3],[-55,53],[-19,47],[-27,-6],[-29,24],[-65,43]],[[15628,3047],[-71,73],[-60,84],[-22,-5]],[[15475,3199],[60,59],[13,26],[95,103],[67,-18],[14,85],[33,30]],[[15757,3484],[62,-31],[17,-42],[44,-23]],[[16236,535],[25,46],[-7,37],[54,43],[-16,33],[40,29],[-4,37],[50,37],[-8,61],[22,87],[101,149],[5,104],[-47,19],[-58,121],[19,52],[4,70]],[[16416,1460],[58,37],[274,153],[32,12],[9,45],[24,49],[1,50],[22,15],[-12,57],[20,50]],[[16844,1928],[35,-96],[-2,-49],[-29,-118],[26,-56],[32,-20],[81,-2],[62,-22],[25,-43],[-15,-35],[7,-17],[6,-3],[34,18],[53,-50],[38,-14],[28,-51],[65,-37],[2,-57],[-23,-52]],[[17269,1224],[-63,-52],[-40,20],[-178,-179],[-311,-318],[-376,-364]],[[16301,331],[-29,13]],[[16272,344],[-6,68],[-23,40],[23,53],[-30,30]],[[12694,1749],[36,11],[54,53],[142,-21],[64,14],[20,25],[64,27]],[[13074,1858],[33,-41],[3,-57],[132,-71],[-3,-43],[24,-22],[79,-31],[142,-85],[97,22],[60,16]],[[13641,1546],[-10,-132],[-47,-654]],[[12464,1124],[17,86],[38,204],[64,313]],[[12583,1727],[111,22]],[[14951,7159],[76,-60],[16,28],[-33,52],[-25,-26],[-75,35]],[[14910,7188],[-65,-71],[-57,-83],[18,-55],[31,-32],[9,30],[-30,65],[34,7],[71,-33],[47,34],[10,73],[-27,36]],[[15492,6803],[24,-49],[-55,-35],[4,-46],[-46,-119],[17,-72],[-47,-45],[-35,-101],[-19,-14]],[[15335,6322],[-30,-32],[-55,41],[-72,22],[-56,39],[-37,59],[-55,43],[-55,52],[-37,-8],[-30,44],[-36,-6],[-19,-33],[-76,-76]],[[14777,6467],[-116,228],[-200,402],[-114,227],[42,203],[29,20],[37,76],[24,83]],[[14479,7706],[43,-3],[47,-36],[47,-89],[42,-38],[68,-14],[15,-120],[25,-6]],[[2174,831],[56,105],[23,-17],[78,-14],[18,-20],[40,46],[60,45],[24,70],[30,36],[44,8],[499,14],[5,-28]],[[3231,539],[58,-287],[33,-77]],[[3322,175],[-415,-3],[-49,4],[-205,-4],[-259,-3],[-357,0],[-377,0]],[[6119,1595],[-84,-43],[-31,1],[-77,66],[-50,-7],[-132,-78],[-69,-66],[-55,-74],[-42,-35],[-28,8],[-29,-47]],[[5522,1320],[-138,185]],[[5384,1505],[-61,81],[88,31],[63,41],[99,2],[76,28],[136,83],[21,70],[-19,42],[-60,9],[-53,27],[-29,38],[35,27],[120,44],[-28,76],[-22,61],[99,27],[44,34]],[[5893,2226],[140,90],[131,50],[181,38],[139,39],[-2,-31]],[[6482,2412],[-43,-41],[-39,-15],[88,-85],[0,-1],[201,-222],[55,46],[23,-49],[-47,-24],[64,-75]],[[6784,1946],[-100,-79],[-83,-25],[43,-134]],[[6644,1708],[-112,-42],[-49,-23],[-127,-20],[-163,-64],[-34,-14],[-40,50]],[[7443,1760],[58,33],[15,60],[43,-18],[41,64],[-35,3]],[[7565,1902],[7,46],[-15,29],[-46,15],[-31,39],[26,51],[87,11],[-10,44],[-102,-30],[-51,-48],[-69,105],[0,57],[19,37]],[[7380,2258],[97,45],[80,20],[130,65],[116,100]],[[7803,2488],[191,105],[64,63],[37,-29],[114,-59]],[[8209,2568],[9,-105],[17,-25],[145,-218],[18,-183],[14,-137],[-1,-63]],[[8411,1837],[-91,-46],[-136,-54],[-35,-21],[-140,-158],[-65,-20],[-41,4],[-38,-22],[-43,-13],[-96,1],[3,-25],[-55,-48],[-46,11],[-32,35],[-65,-58]],[[7531,1423],[-28,82],[0,77],[-24,43],[46,33],[-82,102]],[[17563,3774],[24,74],[-13,106],[-79,22],[-44,84],[2,53],[-117,-3],[-22,43],[-76,11]],[[17238,4164],[-8,35],[-54,23],[-35,39],[16,41],[-12,99],[-23,61],[-89,54],[-29,2],[-70,56]],[[16934,4574],[6,36],[41,78],[57,5],[47,61],[41,10]],[[17126,4764],[43,-16],[53,17],[84,-35],[42,-59],[-26,-36],[53,-3],[12,5],[15,-11],[1,-6],[1,-2],[3,-4],[51,-39],[76,-34],[59,-13],[112,-61],[115,-70],[37,-50],[33,-17],[-31,-124],[-2,-54],[-37,-57],[-40,-10],[-41,26],[-19,-71],[-21,-24],[16,-57],[2,-110],[-28,-9],[0,-58],[42,-56],[1,-36],[-70,-19]],[[17662,3671],[-43,50],[-65,38],[9,15]],[[15335,4132],[-74,-74],[-37,-53]],[[15224,4005],[-31,25],[-40,-66],[-74,16],[25,67],[-43,9],[5,57],[-33,6],[-11,55],[18,74],[-57,95],[-93,-36],[-23,46],[-50,21],[-80,70],[-69,103],[-18,-25],[-72,29],[-71,65],[2,35]],[[14509,4651],[40,41],[179,225],[296,371],[117,158],[23,26]],[[15164,5472],[24,-13],[47,33],[34,-24]],[[15269,5468],[41,-34],[70,-33],[12,74],[62,11],[51,-50],[-54,-30],[22,-49],[-29,-69],[58,-4],[37,29],[62,-71],[58,-31],[34,16],[42,-19],[41,-46]],[[15776,5162],[-2,-94],[-67,1],[6,-61],[-27,-44],[-38,-23],[23,-54],[91,-98],[-22,-42],[26,-24],[75,2],[48,-135],[-3,-22]],[[15886,4568],[-71,-1],[-15,23],[-103,1],[-45,-26],[-35,-46],[8,-66],[-19,-57],[12,-62]],[[15618,4334],[-64,-20],[-8,50],[-78,-16],[-15,-76],[-118,-140]],[[14748,425],[-32,4],[-11,72],[11,53],[84,-3],[30,15],[0,-110],[-49,-31],[-33,0]],[[8894,3928],[-6,51],[32,36],[-1,35],[-60,-11],[-10,-57],[-31,-61],[31,-37],[41,7],[4,37]],[[8300,4000],[14,71],[41,51],[94,159],[49,24],[94,116],[15,-3],[53,78],[44,32]],[[8704,4528],[69,-30],[62,56],[62,-21],[103,-2],[94,-177],[17,-16],[78,-17],[112,-22],[44,4],[98,11],[68,-55],[67,-77],[78,89],[31,8]],[[9687,4279],[44,1],[47,-34],[-38,-111],[-52,-81],[-65,-133]],[[9623,3921],[-343,122],[-16,-16],[-53,-44],[3,-25],[-55,-83],[-56,-34],[-65,-116],[-58,-10],[-38,-48],[-152,-117]],[[8790,3550],[-15,21],[-57,-22],[-89,-66],[-42,-12],[-44,-50],[-51,-34],[-56,37],[-2,23],[-88,3],[-38,37]],[[8308,3487],[-44,32],[-68,27],[-28,35],[-41,111],[22,15],[84,107],[-25,28],[92,158]],[[9623,3921],[-35,-91],[22,-86],[29,-43],[-10,-65],[-28,-40],[107,-86],[72,-58],[84,-67],[-10,-49],[191,-154]],[[10045,3182],[-49,-78],[-34,-10],[-30,-51],[-23,30],[-29,-35],[-63,-125],[-57,29],[-21,-9],[-20,6],[-13,45],[-46,45],[-75,-28],[-52,-69],[-107,-94],[-73,-47],[-67,-23],[53,-73],[33,3],[-24,-104],[-76,-59],[-58,-43],[-8,-27]],[[9206,2465],[-44,62],[-16,10],[-136,78],[-40,22],[-281,146],[-28,45]],[[8661,2828],[64,66],[41,104],[44,89],[7,25],[97,107],[-141,256],[-11,47],[28,28]],[[10045,3182],[48,50],[35,4],[14,33],[42,11],[-41,137],[51,36]],[[10194,3453],[34,-50],[44,19],[58,-55],[24,-69],[7,-57],[67,-111],[62,-20],[38,-30],[74,27],[22,-49],[42,39],[75,-92],[48,-7],[9,-31]],[[10798,2967],[-55,7],[-91,-66],[-49,3],[-4,-55],[33,1],[32,-39],[-30,-45],[48,-32],[-58,-127]],[[9207,2196],[2,70],[-29,64],[26,36],[0,99]],[[9557,5389],[116,-23],[220,-47],[120,-59]],[[10013,5260],[-36,-30],[43,-52],[66,50],[55,-24],[53,1],[-20,-50],[-58,-74],[-58,-94],[26,-30]],[[10084,4957],[-57,-97],[-44,-47],[32,-19],[-71,-106],[-20,-45],[-79,-108],[-66,-60],[-92,-196]],[[8704,4528],[129,130],[103,228],[13,53],[68,86],[-31,14],[-14,64],[38,27],[31,74],[-12,56],[55,41],[125,150],[61,27],[60,58]],[[9330,5536],[140,-99],[87,-48]],[[15769,4094],[61,-22],[-32,-51],[9,-26],[49,-15],[21,-26],[-36,-63],[16,-21],[55,7],[24,-48],[57,-36],[37,-4],[42,-47],[49,-5],[5,-41],[33,-16],[70,8],[52,-64],[-4,-51],[69,6],[58,-76],[-34,-28],[35,-33],[32,12],[47,-38],[17,-54],[70,-63],[18,-68],[-26,-35],[-9,-63]],[[15757,3484],[-14,28],[52,74],[-133,23],[-56,-26],[5,94],[-72,6],[-49,-12],[-22,45],[28,43],[-8,41],[-60,-37],[-46,0],[-42,34],[9,49],[-19,37],[-80,11],[30,49],[-23,71],[-33,-9]],[[15618,4334],[78,-48],[22,-80],[39,-40],[3,-49],[9,-23]],[[15776,5162],[51,38],[29,-48],[38,3],[12,45]],[[15906,5200],[23,-56],[6,-110],[52,-61],[32,8],[29,54],[32,-11],[13,-62],[113,-33]],[[16206,4929],[21,-11],[39,-146],[-3,-47],[18,-45]],[[16281,4680],[-30,-2],[-20,-58],[26,-23],[58,4],[34,-15],[-24,-59],[66,-60],[30,-54],[36,-1],[24,-42],[68,-25],[28,-103],[28,-27],[17,-62],[31,-36],[41,-82],[45,-41],[62,-2],[16,-47]],[[16817,3945],[-48,-48],[-48,4],[-68,-91]],[[16653,3810],[-23,72],[-70,67],[-3,48],[-31,26],[-37,-8],[-56,18],[-71,-49],[-82,43],[-39,-5],[-50,-37],[5,63],[-10,82],[-59,1],[-31,35],[-50,-11],[-37,29],[-3,51],[-54,39],[54,39],[-9,63],[-24,66],[-51,18],[-43,49],[7,59]],[[14972,2950],[70,-43]],[[15042,2907],[-18,-40],[24,-43],[48,-1],[29,-108],[51,12],[39,-40],[90,-17],[16,-47],[78,-17],[16,73],[39,19]],[[15454,2698],[13,-41],[-49,-80],[-14,-75]],[[15404,2502],[-32,-25]],[[15372,2477],[-94,-15],[-31,15]],[[15247,2477],[-40,-9],[-19,-106],[-32,-33],[-8,-71]],[[15148,2258],[-64,-24]],[[15084,2234],[56,26],[3,71],[41,53],[-111,-11],[-57,-15],[42,-48],[-5,-89]],[[15053,2221],[-74,-33]],[[14979,2188],[-126,4],[-55,-23],[-33,30],[-58,-2],[-17,39],[-52,27],[-59,79],[-89,-19]],[[14490,2323],[-41,88],[-117,14],[-3,-38],[-43,-2],[-6,-45],[-50,-5],[-26,52],[-37,37],[-53,26],[-5,34],[31,28],[-6,33],[-93,13],[-35,53],[-62,37],[-2,55],[16,51],[-9,53],[49,8]],[[13998,2815],[110,25],[25,60],[3,45],[84,82],[72,69],[184,176],[2,10]],[[14478,3282],[15,-14],[129,-12]],[[14622,3256],[-2,-64],[43,-12],[63,31],[18,-44],[39,12],[3,-72],[37,-118],[27,-28],[23,-24],[77,25],[22,-12]],[[14140,2091],[28,14],[88,-14],[151,138],[57,16],[26,78]],[[14979,2188],[0,-20],[13,-19],[-18,-70],[63,-25],[-1,-52],[58,19]],[[15094,2021],[8,-161],[-2,-202],[5,-71],[-6,-94],[-3,-43]],[[15096,1450],[-453,-316],[-77,-53]],[[14566,1081],[-29,31],[-65,22]],[[14472,1134],[-44,32],[-44,7],[-94,125],[-29,43],[-38,8],[-10,42],[-70,32],[-37,-4],[-74,41],[-23,-18],[-94,-5]],[[13915,1437],[-25,461],[-1,36],[72,21],[36,44],[118,37],[25,55]],[[13198,8547],[75,-28],[46,-36],[-25,-29],[-85,-144],[-40,69],[25,72],[-27,17],[31,79]],[[3241,1380],[-50,-42],[-73,73],[-61,18],[-151,114],[-59,69],[-12,64],[-105,182],[-16,40],[-17,225]],[[2697,2123],[81,33],[29,29],[142,70],[44,9],[192,66],[64,51],[23,41],[19,19]],[[12831,3116],[-34,-60],[-190,-352],[-76,-141]],[[12531,2563],[-21,-18],[-26,17],[-65,-31],[-29,42],[-62,33],[-101,88],[26,35],[-33,21]],[[12220,2750],[-53,-31],[-51,14],[3,76],[-41,6],[-80,48],[-44,75],[-289,308]],[[12468,4030],[17,-14],[48,-104],[101,-63],[33,-8],[107,-22],[32,-31],[160,-52],[45,-37],[62,-11]],[[13073,3688],[-20,-159],[-2,-17],[-72,-130],[-148,-266]],[[15475,3199],[-60,44],[-96,30],[-75,47],[-62,37],[-68,35],[-36,44],[2,44],[-31,24],[-15,50],[-64,101],[-50,24],[-17,-20],[-39,65],[-79,-16],[-36,-34],[-58,-7],[-68,42],[-37,43],[-48,-15]],[[14538,3737],[-69,14],[-56,-16],[-70,4],[-90,33],[-84,16],[-32,25]],[[14137,3813],[114,385],[150,508]],[[14401,4706],[39,-12],[26,-35],[43,-8]],[[15807,11],[-120,-1],[-40,10],[-86,-9],[-220,1]],[[15341,12],[-94,31],[-35,-7],[-25,40],[12,51],[-48,129],[-49,82],[-51,23],[-112,-3],[-68,61],[25,29],[124,87]],[[15020,535],[205,144],[286,175],[45,29],[66,42],[140,91],[124,86],[164,116],[116,76]],[[16166,1294],[250,166]],[[16236,535],[-67,3],[-36,-20],[-2,-63],[14,-49],[127,-62]],[[16301,331],[9,-59],[-44,-25],[6,-125],[-21,-4],[-30,-59],[36,-23]],[[16257,36],[-1,-27],[-449,2]],[[14802,8283],[84,-43],[21,-27],[49,-88],[81,-21],[116,-18],[83,6],[29,-17]],[[14479,7706],[-397,123],[-342,105]],[[14062,8315],[14,49],[42,85],[28,115],[53,85],[22,78],[36,109],[30,56],[46,27],[44,-7],[52,18],[60,-43],[84,-26],[67,-2],[52,13],[14,-64],[42,-62],[84,-46],[52,-16],[70,-72],[-38,-54],[-4,-43],[-26,-30],[-46,-11],[-27,-36],[-25,-104],[14,-51]],[[12010,2271],[20,63],[97,147],[93,98],[-17,21],[17,150]],[[12531,2563],[91,-44],[34,-6],[26,-35],[17,-26],[59,7],[36,-6],[30,43],[50,-32],[30,38],[42,13],[33,59],[48,-1],[6,30],[51,51]],[[13084,2654],[9,-231]],[[13093,2423],[-11,-234],[-5,-91],[-3,-240]],[[12583,1727],[-76,22],[-68,65],[3,25],[-32,60],[-32,26],[-44,30],[-37,-2],[-52,-29],[-88,55],[-34,39],[-24,78],[-87,10],[-28,24],[26,141]],[[10013,5260],[74,116],[40,18],[63,-19],[12,43],[57,43],[24,56],[-21,56],[41,46],[17,61],[80,140],[63,85],[39,4],[-9,94]],[[10493,6003],[79,39],[95,147],[38,25]],[[10705,6214],[706,-527],[48,-33],[42,10],[94,-90],[252,-230]],[[10866,4331],[-64,75],[-96,72],[-346,261],[-276,218]],[[11100,5281],[-81,-2],[-48,-99],[22,-54],[65,-39],[18,15],[49,-32],[71,72],[21,122],[-54,56],[-63,-39]],[[11554,4811],[14,70],[23,40],[-16,49],[-99,31],[-75,-73],[-20,-48],[-9,-32],[51,-28],[131,-9]],[[14015,6450],[88,-85],[25,-70],[45,-57],[18,-70],[31,-15],[0,-57],[17,-37],[32,-12],[15,-40],[108,44],[134,-54]],[[14528,5997],[5,-55],[22,-8],[12,-73]],[[14567,5861],[-62,-17],[-3,50],[-65,-26],[-17,-32],[-56,3]],[[14364,5839],[-105,75],[-58,28],[-40,-56],[-97,22],[-137,-10],[-19,30],[-40,-23],[-35,-56],[-46,-5],[-38,-28],[-34,17],[-7,-38],[-44,7],[-54,-57],[-35,-12],[-21,-52],[-34,20],[-98,-21]],[[13422,5680],[17,74],[-62,61],[-11,50],[16,41],[47,28],[-24,53],[-60,60],[-7,48],[-246,295]],[[13092,6390],[40,19],[58,-46],[54,-1],[191,236],[117,99],[148,127],[105,90]],[[13805,6914],[70,0],[7,-83],[46,-11],[30,-58],[8,-81],[20,-8],[-33,-44],[28,-27],[-35,-46],[69,-106]],[[12923,7918],[-29,-3]],[[12341,8071],[51,47],[15,34],[92,90],[45,11],[49,61],[29,66],[57,47],[-58,60],[-26,38],[79,107],[14,41],[-47,43],[77,115],[66,78],[47,115],[-64,19],[57,94],[-39,76],[31,49],[-1,123],[203,-166],[251,-227],[82,-67],[219,-186]],[[13285,8007],[-30,-60],[-332,-29]],[[14140,2091],[-66,28],[-337,107],[-50,16],[-338,101],[-27,9],[-229,71]],[[13084,2654],[-10,18],[46,46],[7,29],[30,41],[7,53],[31,-4],[10,62],[32,-6],[31,33],[64,6]],[[13332,2932],[19,-30],[71,-2],[9,37],[59,-14],[38,63],[80,-1],[5,65],[38,21],[31,-38],[91,-21],[118,-14],[5,-60],[27,-24],[47,24],[-4,-31],[30,-49],[2,-43]],[[1917,1129],[2,48],[42,56],[9,87],[-34,42],[3,28],[58,31],[54,65],[97,13],[93,106],[42,3],[9,51],[1,199],[90,50],[19,-2],[60,54],[44,8],[99,91],[92,64]],[[2612,1315],[-38,26],[-81,-44],[-52,-84],[64,-41],[37,1],[-9,63],[23,25],[52,4],[4,50]],[[11559,3212],[-30,-32],[-40,-2],[7,-59],[-68,-50],[-25,4],[-23,-55],[-73,-37],[-55,-63],[-36,-21],[-24,-47]],[[11040,2740],[-28,20],[-42,-11],[-60,61],[-18,58],[-47,24],[-47,75]],[[10194,3453],[10,-3],[31,30],[43,1],[52,54],[35,9],[49,48],[11,58],[44,45],[10,65],[37,90],[92,172],[74,57],[84,-78],[65,48]],[[9525,3],[-136,1],[-357,1],[-321,0]],[[8711,5],[8,214],[-23,76],[3,77],[-26,55],[-60,162],[20,41],[-20,25],[12,53],[-13,57],[47,36],[81,12]],[[9245,338],[11,42],[-42,37],[11,66],[6,40],[-90,36],[-71,-100],[24,-39],[30,-5],[53,-27],[0,-37],[68,-13]],[[17393,3062],[14,61]],[[17407,3123],[58,-5],[23,73],[104,-23]],[[17592,3168],[19,-75],[40,-2],[26,-59],[24,9],[66,81],[41,-78],[-25,-13],[2,-62],[59,-44],[11,-103],[9,-134],[-65,-94],[0,-116],[-82,51],[-85,128],[-26,1],[-73,48],[-28,57],[-5,47],[-37,-10]],[[17463,2800],[-73,16],[-12,30],[18,77],[-10,42],[-13,63],[20,34]],[[15042,2907],[-4,158],[35,46],[34,-18],[-3,142],[-40,10],[-3,88],[-41,6],[-42,68],[-56,-14],[-28,-81],[-82,27],[-36,33],[-38,-62],[50,-15],[-8,-28],[-73,-12],[-85,1]],[[14478,3282],[40,9],[54,35],[-24,68],[-33,12],[-28,56],[-1,35],[-5,31],[57,209]],[[15628,3047],[-106,-258],[16,-54],[-28,-43],[-56,6]],[[16653,3810],[0,-54],[70,-124],[10,-49],[53,-77],[33,-53],[68,-45]],[[16887,3408],[-18,-145],[-19,-91],[4,-31],[47,-77],[-8,-73],[-39,-57],[-76,-14],[-32,-63]],[[16746,2857],[-49,60],[-22,54]],[[4656,2239],[39,5],[18,-37],[70,-51],[20,-37],[283,17],[39,45],[86,38],[13,64],[56,-5],[47,47],[56,27],[49,-3],[44,120],[28,32],[30,-6],[29,61],[102,-123],[98,-89],[130,-118]],[[5384,1505],[-86,-39],[-17,58],[-37,-3],[-37,-37],[-124,-43],[-34,-1],[-156,-133],[-79,-44],[-28,10],[-56,126],[-124,-54],[-49,-5]],[[13507,7673],[43,18],[65,108],[24,25]],[[14777,6467],[-71,-95],[-67,-74],[-109,-119],[13,-47],[-1,-70],[-14,-65]],[[13805,6914],[-64,10],[-81,37],[-45,53],[-5,87],[-28,17],[13,34],[-22,76],[-118,100],[-45,18],[-74,110]],[[13336,7456],[10,26],[82,41],[44,3],[29,44],[-33,37],[39,66]],[[15640,7547],[55,-56]],[[8209,2568],[149,119],[126,13],[177,128]],[[8530,1867],[-81,-44],[-38,14]],[[8902,2549],[-74,-64],[-42,-23]],[[8786,2462],[-27,51],[-120,-84],[-82,-31],[17,-30],[53,10],[16,-52],[73,-44],[43,34]],[[8759,2316],[11,-62],[52,18],[31,-26],[40,-18],[55,-75],[25,35],[37,-2],[21,58],[37,14],[11,41],[-21,65],[74,45],[-21,57],[-44,39],[-87,2],[-78,42]],[[13334,7446],[-90,-90],[-24,-57],[-15,-74],[-39,-52],[-148,-58],[-53,3]],[[12965,7118],[-25,79],[-63,17],[-45,44],[-132,63]],[[13336,7456],[-2,-10]],[[14364,5839],[-39,-62],[-17,-52],[-110,-138],[-34,-40],[-335,-402],[-68,-84]],[[13761,5061],[-64,4],[-64,62],[-36,10],[-41,-23],[-90,21],[-62,36],[-30,-36],[-72,5],[-65,-43],[-29,-2],[-38,2],[-21,4],[-3,1]],[[12763,5272],[21,38],[171,246]],[[12955,5556],[51,-29],[3,-45],[39,-50],[70,-13],[8,39],[62,11],[93,117],[33,-3],[66,24],[42,73]],[[8074,969],[-24,-39],[-33,8],[-11,-69],[-36,-28],[-61,-18],[-25,-107],[6,-63],[-41,-9],[-77,20],[-28,-28],[-21,-98]],[[7723,538],[-247,432],[-161,284]],[[7315,1254],[16,19],[72,17],[80,83],[26,4],[22,46]],[[8273,1062],[-62,-26],[-69,-20],[-14,-32],[-54,-15]],[[13073,3688],[26,23],[9,45],[31,38],[92,77],[35,3]],[[13266,3874],[60,-33],[100,-96],[5,-37],[-47,-60],[55,-26],[37,-40]],[[13476,3582],[-18,-11],[-38,-179],[-88,-460]],[[13267,3877],[11,45],[221,453]],[[13499,4375],[17,-5],[90,-33],[64,-113],[104,-33],[46,-78],[34,-54],[36,-121],[27,-24],[136,-26],[26,-23],[20,-17],[38,-35]],[[14478,3282],[-120,81],[-72,7],[-77,69],[-62,-1],[-46,-18],[-24,10],[-2,47],[-28,37],[-75,43],[-75,60],[-45,74],[-70,-36],[-27,-62],[29,-55],[-30,-60],[-64,-1],[-82,57],[-61,0],[-50,19],[-21,29]],[[13266,3874],[1,3]],[[12821,6670],[-38,-20],[-61,-99],[12,-67],[-80,-47],[-14,-41],[-46,-57],[-17,-53],[-16,-79]],[[12561,6207],[-23,-67],[-25,-23],[-32,-83]],[[12481,6034],[-125,26],[-25,-11],[-25,67],[-154,60],[-28,102],[-29,-19],[-108,62],[37,74],[31,121],[32,88],[19,17]],[[12965,7118],[-45,-65],[-37,-4],[-31,-113],[28,-14],[13,-51],[-22,-33],[20,-66],[-25,-67],[-30,-11]],[[12836,6694],[-15,-24]],[[6780,986],[105,16],[43,32],[131,50]],[[7059,1084],[139,52],[6,40],[50,19],[61,59]],[[7723,538],[22,-11],[-26,-103],[-143,-93],[-21,-4],[-38,-1],[-68,63],[-40,-3],[-24,-78],[-41,-55],[-9,-44],[25,-57],[7,-98]],[[7367,54],[-223,14],[-320,-10]],[[6824,58],[-183,292]],[[6641,350],[61,81],[12,62],[-78,0],[-39,-74]],[[6597,419],[-137,222],[-128,211]],[[6332,852],[214,65],[234,69]],[[4222,241],[-34,-70],[-193,0],[-316,1]],[[3679,172],[40,58],[56,55],[-2,48],[-32,42],[-12,45],[-47,-3],[0,-4],[25,-1],[29,-72]],[[3736,340],[-30,-42],[-106,-22],[-156,-100]],[[3444,176],[-122,-1]],[[4421,1245],[233,-315]],[[4654,930],[105,-151],[115,-296],[72,-185],[31,13]],[[4977,311],[-12,-68],[-86,-16]],[[4879,227],[-217,2],[-440,12]],[[15948,5517],[-9,-243],[-34,-35],[1,-39]],[[15269,5468],[-44,52],[14,134],[30,51],[-8,48],[20,36],[83,11]],[[15364,5800],[47,-48],[66,-9],[86,30],[100,18],[59,71],[129,1],[34,30],[41,68],[29,4],[71,-82],[-7,-37],[0,-97],[-38,-68],[69,-96],[2,-18]],[[16052,5567],[-104,-50]],[[17467,1973],[-2,-56],[43,-100]],[[17508,1817],[-6,-34],[-66,-14],[-30,6]],[[17406,1775],[-51,22],[-113,170],[-26,79],[-23,-5],[-93,139],[-62,-23]],[[17038,2157],[-24,80],[-53,-10],[-68,13],[-35,80],[-34,6]],[[16824,2326],[-13,89],[-38,-35],[-42,4],[-22,70]],[[16709,2454],[-4,23],[-12,59],[-45,23],[-5,51],[33,51],[79,-18],[84,10],[37,39]],[[16876,2692],[142,-216],[32,-32],[39,-44],[58,-38],[71,-91],[24,-17]],[[17242,2254],[30,-58],[59,-29],[198,31],[-36,-63],[27,-43],[-8,-60],[-26,7],[-2,-53]],[[17484,1986],[-17,-13]],[[6644,1708],[47,-147],[105,-114],[144,-187],[1,-2],[118,-174]],[[6332,852],[-71,-51],[-35,-10],[-4,-65],[-65,2],[-51,-16],[-47,19],[-72,-33],[-183,14]],[[5804,712],[-25,94],[-71,184],[-27,66],[-33,94],[-126,170]],[[15341,12],[-672,1],[-459,1]],[[14210,14],[267,540],[-1,140],[-4,440]],[[14566,1081],[58,-22],[44,-63],[47,-19],[65,23],[47,-24],[46,10],[39,41],[39,6],[-51,-312],[-24,-144],[42,-5],[102,-37]],[[7803,2488],[-34,19],[22,56],[-20,60],[-69,209]],[[7702,2832],[114,84],[150,97],[152,90],[42,81],[-65,-19],[-50,28],[43,32],[-39,58],[168,100],[45,37],[46,67]],[[13915,1437],[-74,-20],[-83,28],[-32,-13],[-85,114]],[[16746,2857],[97,-114],[33,-51]],[[16709,2454],[-16,-18],[-10,-125],[16,-24],[62,-19],[80,-1],[-17,59]],[[17038,2157],[24,-99],[-40,-13],[-30,-35]],[[16992,2010],[-22,79],[-25,47],[-48,45],[-104,9],[-23,-21],[-64,-14],[-33,-64],[-36,-3],[-55,56],[-31,71],[-69,39],[-114,-4],[-13,59]],[[16355,2309],[-5,10],[-11,70],[24,32],[-20,46],[16,105],[0,67],[-27,16],[-50,-57],[-25,6],[27,80]],[[14217,4852],[39,-17],[-2,-62],[42,8],[44,-53],[61,-22]],[[13499,4375],[-285,149],[-58,20],[-60,68],[-102,37],[-82,53]],[[13761,5061],[72,-12],[57,-17],[153,-26],[40,-28],[21,-41],[59,-12],[10,-27],[44,-46]],[[17662,3671],[16,-33],[-36,-61],[20,-84],[29,-9],[16,49],[49,-19],[32,-58],[-31,-10],[-49,31],[-101,-14],[-19,-32],[-45,53],[-50,2],[-24,26],[-42,18],[-25,36],[-30,-12],[-42,69],[37,23],[-48,56],[-31,-30],[10,-33],[-45,-101],[-25,4],[-53,51],[-3,86],[-16,65],[-33,28],[-33,57],[-5,40],[-34,79],[-39,4],[-41,35],[-25,54]],[[16946,4041],[7,20],[95,18],[11,41],[42,39],[115,-8],[22,13]],[[5804,712],[-42,-13],[-51,-17],[-200,-44],[-101,-62],[-199,-45],[-39,3],[-20,-100],[-34,-64],[-30,7],[-50,-39],[-61,-27]],[[6784,1946],[96,67],[32,36],[102,45],[59,14],[1,0],[118,59],[31,25],[157,66]],[[7565,1902],[-46,41],[-58,-22],[-47,-38],[-5,-50],[34,-73]],[[6597,419],[-28,15],[-14,-67],[11,-25],[57,-13],[18,21]],[[6824,58],[-260,13],[-139,2],[-239,14],[-242,14],[-249,8],[-162,-1],[-162,7],[-82,11],[-108,1],[-192,21],[-184,3],[74,76]],[[16355,2309],[-54,-32],[-49,-53],[-63,2]],[[16189,2226],[-68,44]],[[16121,2270],[-46,95],[3,54],[-48,33],[-54,-35],[-88,-79],[-25,15],[-19,123],[-90,-31],[-26,2],[-47,10],[-77,15],[-80,25],[-74,-33],[-46,38]],[[12010,2271],[-67,-38],[-42,-37],[-60,-15],[-61,27],[-74,-88],[-39,12]],[[14779,5673],[8,37],[60,17],[56,-30],[28,7],[48,-110]],[[14979,5594],[-27,-37],[-37,-8],[-91,30],[9,40],[-20,45],[-34,9]],[[17463,2800],[0,-145],[-34,42],[-54,-1],[-19,20],[-20,-67],[26,-23],[29,23],[56,-75],[11,-45],[-52,-23],[-1,-26],[46,-20],[48,18],[6,-33],[36,-33],[47,-77],[-67,-17],[-65,5],[-40,-26],[-74,-22],[-41,12],[-59,-33]],[[16887,3408],[82,-47],[58,-1],[50,-46],[3,-35],[74,4],[61,-50],[44,-38],[43,-2],[60,-49],[45,-21]],[[10419,0],[-305,0]],[[12481,6034],[-18,-49],[-93,-129],[-21,-3],[-31,-54],[-15,-56],[-66,-20],[-37,-57],[-117,-43],[-28,-50]],[[10705,6214],[33,49],[11,101],[77,135],[37,83],[8,60],[57,129],[27,29],[66,3],[21,81],[-21,51],[49,145],[51,80],[12,63],[46,0],[18,83],[33,21],[29,82],[300,-280]],[[11528,5996],[75,13],[50,28],[14,40],[-49,61],[-32,69],[-31,23],[-11,7],[-32,-95],[-28,13],[-36,-70],[23,-50],[-28,-82],[66,-18],[19,61]],[[15285,1574],[265,176],[87,60],[44,22]],[[15681,1832],[17,-34],[93,-9],[24,-48],[53,-6],[22,-44],[57,7],[91,-38],[34,-27],[55,15],[3,-56],[6,-118],[30,-180]],[[15096,1450],[189,124]],[[15164,5472],[-54,0],[-66,37],[-65,85]],[[14779,5673],[-36,51],[-52,33],[-9,41],[-77,2],[-38,61]],[[15335,6322],[-56,-142],[-9,-75],[37,-148],[-15,-13],[-1,-32],[52,-44],[21,-68]],[[14210,14],[-149,-1],[-523,-3]],[[8786,2462],[-2,-58],[22,-32],[-11,-51],[-36,-5]],[[15681,1832],[38,46],[124,137],[37,50],[117,53],[29,36],[-1,66],[45,12],[51,38]],[[16189,2226],[24,-49],[76,-63],[89,29],[113,-12],[39,-22],[47,-64],[50,-33],[35,-56],[38,-16],[39,8],[69,158],[55,-75],[-18,-49],[-1,-54]],[[17449,1044],[45,0],[35,-49],[8,-44],[-48,-75],[67,-90],[202,45],[4,71]],[[17762,902],[37,19],[41,-23],[33,51],[43,10]],[[17916,959],[-5,-23],[59,-202],[41,-19],[104,-22],[110,-131],[37,-12],[34,-64],[-28,-44],[-102,-42],[-1,-369]],[[18165,31],[-459,0],[-428,0]],[[17278,31],[22,250],[59,598],[40,88],[50,77]],[[16715,5112],[86,83],[59,-40],[61,-82],[17,17],[-26,67],[34,15],[43,-15],[25,-123],[52,-48],[106,-69],[35,-88],[-71,-18],[-10,-47]],[[16934,4574],[-33,5],[-20,45],[-106,8],[-69,47],[-47,-14],[-39,23],[22,75],[-8,21],[-107,91],[-46,15],[-100,126],[-30,64],[-33,-31],[-98,-90],[-14,-30]],[[16052,5567],[47,-6],[47,-57],[12,-63],[-25,-31],[12,-42],[61,-37],[63,-17],[86,-80],[48,-15],[74,-13],[59,17],[95,-7],[84,-104]],[[10206,4019],[-54,-4],[-8,-84],[87,60],[11,15],[-36,13]],[[10330,3859],[13,-16],[-1,-88],[35,-28],[64,122],[-1,57],[-20,12],[-64,-53],[-26,-6]],[[8431,7],[-302,2],[-199,13],[-563,32]],[[8711,5],[-280,2]],[[13092,6390],[-27,33],[-229,271]],[[17046,3616],[25,-60],[49,-50],[19,-40],[53,-32],[170,6],[61,-7],[-5,-56],[43,-42],[77,-24],[122,-9],[47,-24],[2,-52],[-119,-38],[2,-20]],[[16817,3945],[14,-46],[89,-17],[49,-20],[1,-44],[53,-44],[2,-56],[41,-85],[-20,-17]],[[6482,2412],[78,10],[114,61],[76,76],[47,27],[-82,119],[49,89],[14,49],[50,-9],[72,-65],[53,-30],[34,-72],[136,62],[273,175],[116,88],[98,26],[44,-77],[-5,-72],[53,-37]],[[15094,2021],[35,14],[94,-4],[12,52],[26,23],[-40,45],[-12,41],[-28,51],[-33,15]],[[15247,2477],[18,-67],[0,-65],[42,-18],[90,39],[48,59],[-48,63],[-25,-11]],[[14910,7188],[41,-29]],[[16946,4041],[-96,38],[-26,42],[-31,-9],[-70,45],[-46,60],[-15,66],[-44,11],[-7,64],[-72,83],[-53,26],[-29,-5],[-42,62],[-9,75],[-42,37],[-50,1],[-33,43]],[[15766,7679],[63,-91],[64,-22],[43,-91],[21,2],[21,-67],[-30,-35]],[[15948,7375],[-47,17],[-53,-3],[-5,-53],[-55,51]],[[15053,2221],[31,13]],[[3679,172],[-235,4]],[[18948,2428],[7,-139],[-31,-112],[-31,-23],[6,-61],[-35,-59],[-59,-53],[-98,-130],[-74,40],[-91,-39],[9,-34],[50,-29],[-3,-29],[-44,-21],[-49,40],[25,47],[4,45],[-18,97],[-88,166],[7,82],[-37,83],[28,76],[7,44],[-25,18],[22,107],[28,42],[80,169],[-38,52],[9,72],[47,107],[2,91],[61,168]],[[19236,2958],[39,0],[4,-52],[-38,-48],[-126,-229],[-12,-51],[-59,-98],[-52,-54],[-44,2]],[[17406,1775],[-32,-55],[6,-127],[26,-56],[32,17],[48,-102],[41,-12]],[[17527,1440],[-50,-66],[-40,-9],[-65,102],[10,30],[-39,64],[-149,114],[-1,50],[-40,33],[-57,-17],[-75,89],[-48,26],[-10,73],[38,49],[-9,32]],[[17746,1376],[-8,-4]],[[17738,1372],[8,4]],[[17508,1817],[68,18],[55,-52],[117,42]],[[17748,1825],[38,-28],[21,-43],[-52,-169],[-27,-108],[-25,26],[-63,19],[-17,-28],[-96,-54]],[[17665,1118],[30,-14],[9,56],[-28,4],[-11,123],[35,42],[37,4],[1,39]],[[17746,1376],[69,-17],[112,-80],[107,-31]],[[18034,1248],[-38,-38],[26,-37],[-40,-64],[13,-69],[39,-26],[-43,-87],[-75,32]],[[17762,902],[-27,91],[-85,79],[15,46]],[[12561,6207],[39,-67],[5,-113],[-16,-31],[12,-49],[30,-38],[-15,-51],[33,-34],[24,-59],[58,-64],[43,-8],[13,-81],[63,-59],[89,17],[16,-14]],[[17269,1224],[36,-26],[-28,-107],[89,10],[32,70],[83,-27]],[[17481,1144],[4,-53],[-36,-47]],[[17278,31],[-759,0],[-262,5]],[[9330,5536],[20,22],[-19,54],[-35,48],[33,59],[56,39],[21,67],[49,-8],[44,32],[-14,30],[60,136],[41,51],[3,61],[-26,79],[11,61],[34,53],[44,15],[-26,43],[24,133],[33,68],[270,-130],[49,-81],[97,-220],[394,-145]],[[17484,1986],[58,-14],[53,42],[39,-18],[26,-60],[51,-19],[39,-44],[-2,-48]],[[17481,1144],[47,6],[4,76],[75,-1],[12,-89],[46,-18]],[[18034,1248],[90,-22],[118,-49],[78,29],[40,42],[81,-3],[28,-22],[58,-256],[16,-96],[38,-165],[67,-221],[74,-197],[40,-151],[17,-106],[-614,0]],[[15948,7375],[17,-81],[-8,-93]]],"transform":{"scale":[0.00041579375801203007,0.0003116661759242516],"translate":[-83.675395,36.5410249389509]},"objects":{"cb_2019_51_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[1,2,3,4,5,6,7,8,9],[0]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[10,11,12,13,14,15]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[16,17,18,19,20,21,22,23]],"type":"Polygon","properties":{"COUNTYFP":"143"}},{"arcs":[[24,25,26,27,28,29,30,31]],"type":"Polygon","properties":{"COUNTYFP":"167"}},{"arcs":[[32,33,-25,-32,34,35]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[36,37,38,-17,39,40,41]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[42,43,44,45,46,47,48,49,50],[51]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[52,53,54,55,56]],"type":"Polygon","properties":{"COUNTYFP":"171"}},{"arcs":[[57,58,59,60,61,62]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-2,-10,63,64,65,66,67]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[68,69,70,71,72,73,-19,74]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[75,-11,-16,76,-20,-74,77]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[[78,79,80]],[[81]]],"type":"MultiPolygon","properties":{"COUNTYFP":"001"}},{"arcs":[[82,83,84,85]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[86,87,88,89,90,91,92]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[93,94,95,96,97,98]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[99,100,101,-13,102,103]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[-43,-51,106,107,108,109],[104,105]],"type":"Polygon","properties":{"COUNTYFP":"153"}},{"arcs":[[-84,110,-29,111,112]],"type":"Polygon","properties":{"COUNTYFP":"169"}},{"arcs":[[113,114,115,116,117,118,119]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[120,121,122,123,124,125,126]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[127,128,129,130,131]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[132,133,134,135,136,137,138,139]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[140]],"type":"Polygon","properties":{"COUNTYFP":"595"}},{"arcs":[[142,143,144,145,146,147],[141]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-146,148,149,150,151]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-150,152,153,154,-69,-75,-18,-39,155]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[156,157,158,-144,159,160]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[161,-87,-93,162,-133,-140,163]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[164,165,166,167,168,169,-138]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[170,171,172,173,174,175,176,177,178,179,180,181,182,183]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[184,-180,185,186,187,188,189,190]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[191]],"type":"Polygon","properties":{"COUNTYFP":"840"}},{"arcs":[[-35,-31,192,193]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[194,195,196,-64,-9,197,198]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-163,-92,199,200,201,202,-134]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[203,204,205,206,-94,207,-98,208,209]],"type":"Polygon","properties":{"COUNTYFP":"175"}},{"arcs":[[210,-44,-110,211,-60,212]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[213,-196,214,215,216,-100,-104,217]],"type":"Polygon","properties":{"COUNTYFP":"147"}},{"arcs":[[218,219,220,-3,-68,221,-158],[222],[223]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[224,225,226,227,228,229,230]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[231,-53,232,-58,-63,233],[-192]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-181,-185,234,-216,235,236]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-193,-30,-111,-83,-86,237],[238]],"type":"Polygon","properties":{"COUNTYFP":"195"}},{"arcs":[[-66,239,-71,240,-154,241]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-40,-24,242,243],[244]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[245,246,247,248]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[249,-183,250,-200,-91,251,-172]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[-170,252,253,254,-88,-162,-164,-139]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[255,-116,256,-26,-34]],"type":"Polygon","properties":{"COUNTYFP":"185"}},{"arcs":[[257,-61,-212,-109,258,-225,-231,259,260]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[261,-47]],"type":"Polygon","properties":{"COUNTYFP":"610"}},{"arcs":[[262,-151,-156,-38,263,-125],[264,265,266]],"type":"Polygon","properties":{"COUNTYFP":"161"}},{"arcs":[[267,268,-54,-232,-234,-62,-258,-261,269]],"type":"Polygon","properties":{"COUNTYFP":"187"}},{"arcs":[[-228,270,271,-6,272,273]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[274,275,276,-126,-264,-37,-42,277]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-195,-199,278,279,280,-236,-215]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[281,282,-201,-251,283,-280,284]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[285,286,287,-55,-269,288,289]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[290,291,-276,292,293,294,295,296,297]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[298,299,300,301,-112,-28,302,303,304,305]],"type":"Polygon","properties":{"COUNTYFP":"191"}},{"arcs":[[306,-165,-137,307,308,309]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[310,311,312,313,314,315,316,317,318]],"type":"Polygon","properties":{"COUNTYFP":"199"}},{"arcs":[[-120,319,-291,-298,320,321,-114]],"type":"Polygon","properties":{"COUNTYFP":"197"}},{"arcs":[[-205,322,323,-189,324],[-141]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-124,325,326,-147,-152,-263]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-217,-235,-191,327,-101]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[-237,-281,-284,-182]],"type":"Polygon","properties":{"COUNTYFP":"145"}},{"arcs":[[-89,-255,328,-316,329,-314,330,331,332]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[333,-202,-283,334,-7,-272,335]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-132,336,337,-128]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[-27,-257,-115,-322,338,-304,-303]],"type":"Polygon","properties":{"COUNTYFP":"173"}},{"arcs":[[-320,-119,339,-122,340,-127,-277,-292]],"type":"Polygon","properties":{"COUNTYFP":"155"}},{"arcs":[[-339,-321,-297,341,-295,342,-305]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-90,-333,343,344,345,-173,-252]],"type":"Polygon","properties":{"COUNTYFP":"036"}},{"arcs":[[-65,-197,-214,346,-72,-240]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[347,348]],"type":"Polygon","properties":{"COUNTYFP":"630"}},{"arcs":[[-249,349,-317,-329,-254,350,-246]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[-22,351]],"type":"Polygon","properties":{"COUNTYFP":"590"}},{"arcs":[[-245]],"type":"Polygon","properties":{"COUNTYFP":"690"}},{"arcs":[[-335,-282,-285,-279,-198,-8]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-56,-288,352,-4,-221,353],[354]],"type":"Polygon","properties":{"COUNTYFP":"165"}},{"arcs":[[355,356,-206,-325,-188,357]],"type":"Polygon","properties":{"COUNTYFP":"183"}},{"arcs":[[-308,-136,358,-348,359,-226,-259,-108,360]],"type":"Polygon","properties":{"COUNTYFP":"179"}},{"arcs":[[-99,-208]],"type":"Polygon","properties":{"COUNTYFP":"620"}},{"arcs":[[-190,-324,361,-14,-102,-328]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[362,-266]],"type":"Polygon","properties":{"COUNTYFP":"775"}},{"arcs":[[-95,-207,-357,363,-345,364]],"type":"Polygon","properties":{"COUNTYFP":"181"}},{"arcs":[[-224]],"type":"Polygon","properties":{"COUNTYFP":"820"}},{"arcs":[[-271,-227,-360,-349,-359,-135,-203,-334,-336]],"type":"Polygon","properties":{"COUNTYFP":"177"}},{"arcs":[[365,366,367,368,369]],"type":"Polygon","properties":{"COUNTYFP":"550"}},{"arcs":[[370,-130,371,-166,-307,-310,372]],"type":"Polygon","properties":{"COUNTYFP":"193"}},{"arcs":[[-145,-159,-222,-67,-242,-153,-149],[373],[374]],"type":"Polygon","properties":{"COUNTYFP":"163"}},{"arcs":[[-142]],"type":"Polygon","properties":{"COUNTYFP":"580"}},{"arcs":[[375,-293,-275,-278,-41,-244,376]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[-270,-260,-230,377,-289,-268]],"type":"Polygon","properties":{"COUNTYFP":"157"}},{"arcs":[[378,-247,-351,-253,-169,379]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[380,-326,-123,-340,-118]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[-346,-364,-356,-358,-187,381,-176,382,-174]],"type":"Polygon","properties":{"COUNTYFP":"149"}},{"arcs":[[-106,383]],"type":"Polygon","properties":{"COUNTYFP":"683"}},{"arcs":[[-103,-12,-76,-78,-73,-347,-218]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-250,-171,-184]],"type":"Polygon","properties":{"COUNTYFP":"760"}},{"arcs":[[-52]],"type":"Polygon","properties":{"COUNTYFP":"600"}},{"arcs":[[-129,-338,384,-167,-372]],"type":"Polygon","properties":{"COUNTYFP":"159"}},{"arcs":[[-46,385,386,-48,-262]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[-1]],"type":"Polygon","properties":{"COUNTYFP":"540"}},{"arcs":[[-186,-179,387,-177,-382]],"type":"Polygon","properties":{"COUNTYFP":"730"}},{"arcs":[[-374]],"type":"Polygon","properties":{"COUNTYFP":"678"}},{"arcs":[[-175,-383]],"type":"Polygon","properties":{"COUNTYFP":"670"}},{"arcs":[[-296,-342]],"type":"Polygon","properties":{"COUNTYFP":"640"}},{"arcs":[[-384,-105]],"type":"Polygon","properties":{"COUNTYFP":"685"}},{"arcs":[[-301,-300,388]],"type":"Polygon","properties":{"COUNTYFP":"520"}},{"arcs":[[-178,-388]],"type":"Polygon","properties":{"COUNTYFP":"570"}},{"arcs":[[-223]],"type":"Polygon","properties":{"COUNTYFP":"790"}},{"arcs":[[389,-80,390]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-331,-313,391,392]],"type":"Polygon","properties":{"COUNTYFP":"700"}},{"arcs":[[-312,395,396,-392]],"type":"Polygon","properties":{"COUNTYFP":"650"}},{"arcs":[[397,-394,398,399,-367,400]],"type":"Polygon","properties":{"COUNTYFP":"710"}},{"arcs":[[-241,-70,-155]],"type":"Polygon","properties":{"COUNTYFP":"680"}},{"arcs":[[-353,-287,401,-273,-5]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[-209,-97,402,403,-370,404]],"type":"Polygon","properties":{"COUNTYFP":"800"}},{"arcs":[[-239]],"type":"Polygon","properties":{"COUNTYFP":"720"}},{"arcs":[[-161,405,-219,-157]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-319,406,-396,-311]],"type":"Polygon","properties":{"COUNTYFP":"735"}},{"arcs":[[-286,-290,-378,-229,-274,-402]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[407,-401,-366,-404]],"type":"Polygon","properties":{"COUNTYFP":"740"}},{"arcs":[[-375]],"type":"Polygon","properties":{"COUNTYFP":"530"}},{"arcs":[[-363,-265,-267]],"type":"Polygon","properties":{"COUNTYFP":"770"}},{"arcs":[[-121,-341]],"type":"Polygon","properties":{"COUNTYFP":"750"}},{"arcs":[[-400,408,-368]],"type":"Polygon","properties":{"COUNTYFP":"810"}},{"arcs":[[-355]],"type":"Polygon","properties":{"COUNTYFP":"660"}},{"arcs":[[-387,409,-49]],"type":"Polygon","properties":{"COUNTYFP":"510"}},{"arcs":[[-315,-330]],"type":"Polygon","properties":{"COUNTYFP":"830"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/vi.topo.json b/app/assets/topojson/states/vi.topo.json new file mode 100755 index 00000000..9062aff8 --- /dev/null +++ b/app/assets/topojson/states/vi.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[3246,7803],[-87,-4],[1,90],[-84,10],[-25,-87],[24,-26],[-22,-56],[-31,11],[-9,56],[-51,-6],[30,-109],[32,-13],[30,-58],[33,4],[3,-78],[-16,-68],[1,-76],[17,-96],[-48,13],[-26,50],[-44,-3],[-63,52],[16,58],[-48,28],[-57,-62],[-114,102],[-68,-78],[-46,25],[-21,-41],[-32,47],[-50,-30],[-70,-3],[-25,47],[-71,21],[-22,67],[38,52],[-35,51],[89,60],[-6,101],[62,-56],[8,70],[73,-2],[28,46],[73,-35],[69,39],[36,39],[-4,84],[-42,14],[-13,49],[57,4],[70,-20],[20,-89],[101,-4],[13,49],[87,-25],[28,-47],[77,10],[61,-43],[0,-46],[54,-14],[10,-54],[40,22],[109,-82],[-47,-70],[-18,-71],[-51,16],[8,100],[-52,65]],[[2182,7977],[96,46],[-1,-61],[-57,-22],[-38,37]],[[1348,8472],[37,16],[60,-34],[33,-66],[-16,-59],[-36,-53],[-45,88],[4,67],[-37,41]],[[887,8365],[8,70],[51,-94],[-27,-17],[-32,41]],[[877,8256],[67,-17],[19,-79],[-63,41],[-23,55]],[[862,8096],[180,-36],[54,47],[48,-27],[16,-62],[108,-74],[38,66],[-3,35],[-109,122],[68,-19],[123,-118],[65,-12],[62,-45],[34,20],[25,-33],[1,-66],[27,19],[166,-79],[14,-51],[142,-153],[4,-90],[58,-53],[-46,-30],[2,-41],[-77,34],[-30,38],[-73,-40],[-12,44],[-59,-40],[-52,8],[0,-41],[62,-106],[-41,-19],[-11,57],[-50,16],[-35,51],[-50,-10],[-10,-33],[-112,74],[-77,70],[-23,110],[41,33],[-55,62],[-96,-12],[-24,-50],[-46,16],[-48,-22],[-30,-79],[-36,16],[-23,67],[-77,-51],[-29,161],[-19,18],[-41,7],[-27,49],[-61,9],[-33,-47],[-79,-34],[-85,3],[-18,-38],[-47,14],[-104,114],[49,8],[16,80],[49,28],[74,-8],[85,15],[22,64],[84,-79],[24,116],[107,7]],[[230,7999],[59,-12],[-11,-43],[-48,55]],[[0,7688],[24,56],[52,61],[17,-51],[-37,-74],[-56,8]],[[2005,7329],[61,82],[-6,-89],[-55,7]],[[1679,7965],[156,-7],[23,29],[39,-25],[10,-47],[-130,13],[-98,37]],[[1172,7653],[37,-24],[36,-68],[-24,-38],[-49,130]],[[995,7423],[40,35],[-18,36],[48,36],[49,77],[38,-32],[-21,-74],[-58,-23],[-9,-112],[-37,-36],[-32,93]],[[2999,860],[27,-21],[49,8],[42,34],[21,59],[74,-12],[37,67],[106,9],[56,-18],[40,49],[122,-57],[134,4],[63,29],[38,-49],[60,-34],[145,52],[87,3],[74,-44],[-99,-112],[-32,15],[-34,-26],[-29,23],[-115,-21],[-42,-91],[-182,-112],[-52,-64],[-96,18],[-62,-26],[-48,-44],[-10,-36],[-46,-2],[-120,-80],[-54,-24],[-116,-7],[-86,-62],[-88,50],[-54,4],[-39,-42],[-47,15],[-47,-15],[-28,-38],[-71,2],[-47,130],[-25,-60],[66,-114],[-11,-53],[-88,73],[-60,14],[-73,-32],[-70,-6],[-159,-71],[-134,-86],[-23,81],[-62,6],[-99,-17],[-38,9],[-91,-27],[-55,16],[-64,-70],[-70,-57],[-15,67],[87,133],[55,116],[18,102],[-6,89],[-51,210],[-24,74],[41,211],[79,99],[63,15],[117,-70],[131,-36],[35,3],[103,51],[93,70],[22,60],[85,15],[124,58],[91,-31],[78,0],[17,-20],[-12,-73],[9,-57],[18,72],[42,4],[-11,78],[40,25],[97,-190],[131,-153],[68,-62]],[[3668,1332],[26,9],[86,-19],[11,-31],[-75,-23],[-48,64]]],"transform":{"scale":[0.000124711308097751,0.00008612201963534363],"translate":[-65.085452,17.674637999999998]},"objects":{"cb_2019_78_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]]],"type":"MultiPolygon","properties":{"COUNTYFP":"020"}},{"arcs":[[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]]],"type":"MultiPolygon","properties":{"COUNTYFP":"030"}},{"arcs":[[[12]],[[13]]],"type":"MultiPolygon","properties":{"COUNTYFP":"010"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/vt.topo.json b/app/assets/topojson/states/vt.topo.json new file mode 100755 index 00000000..c18eb1c3 --- /dev/null +++ b/app/assets/topojson/states/vt.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[1006,1752],[-163,63],[19,47],[-17,7],[49,106],[-19,46],[-47,18],[-9,-18],[-48,19],[-2,34],[-115,-58]],[[654,2016],[-29,102],[37,-14],[104,51],[3,-70],[13,-5],[66,140],[35,44]],[[883,2264],[11,-60],[103,-35],[5,-1],[177,-66],[156,-65],[167,-52],[181,-71]],[[1683,1914],[-38,-42],[-52,-26],[-44,-57],[-3,-19],[-1,-48],[-12,-46],[-17,-8],[-10,-41],[9,-15],[-30,-34],[-31,-15],[-14,-31],[4,-40],[-22,-39],[0,-21],[21,-27],[-16,-52],[-5,-66],[-10,-68],[-17,-28],[4,-25],[30,-15],[-21,-31],[-3,-19],[18,-27],[-17,-55],[-19,-35],[-18,-10],[2,-46]],[[1371,928],[-159,5],[-8,-1],[-166,-22],[-11,-1],[-61,19],[-35,12],[-87,29]],[[844,969],[0,80],[-58,3],[-8,0]],[[778,1052],[2,85],[17,1],[1,43],[37,17],[91,-48],[1,51],[29,73],[17,65],[-3,21],[-60,17],[1,25],[-25,15],[19,146],[3,22],[20,-7],[78,174]],[[603,1060],[-173,7],[-180,10]],[[250,1077],[5,173],[3,97],[4,144],[-17,45],[-36,27],[-24,81],[-21,7],[-56,-5],[-24,-22],[-14,-40],[3,-28],[-19,-14],[-42,29],[15,72],[-14,21],[28,71],[8,36],[43,59],[10,51]],[[102,1881],[180,21],[34,4],[-17,129],[86,5],[-1,5],[173,8],[18,-77],[79,40]],[[778,1052],[-147,7],[-1,-24],[-20,0],[-7,25]],[[1371,928],[-9,-26],[3,-30],[-17,-18],[-9,-85],[26,-39],[4,-28],[-11,-16],[11,-27],[-14,-28],[-30,-34],[10,-59],[21,-18],[-21,-19],[-2,-32],[-17,-20],[-64,-19],[-19,-21],[11,-18],[3,-40],[-11,-41],[-28,-20],[-6,-59],[16,-53],[8,-35],[42,-46],[24,-13],[21,-27],[24,-57],[-147,5],[-164,7],[-168,6],[-165,5]],[[693,23],[6,166],[1,48],[5,129],[-118,7],[7,170]],[[594,543],[8,172],[0,4],[175,-11],[5,97],[4,72],[15,0],[4,105],[39,-13]],[[1304,3496],[156,-77],[-9,-15]],[[1451,3404],[-75,-132],[-6,-11]],[[1370,3261],[-77,-147],[-3,-5],[-142,103],[-78,-148],[-153,81],[-53,17]],[[864,3162],[-46,13],[48,87],[-37,18],[29,58],[-27,8],[-111,144],[-19,4]],[[701,3494],[2,31],[27,-7],[17,20],[54,99],[76,-34],[13,65],[20,23],[6,47],[14,1],[16,36],[94,15],[87,13],[26,-20],[21,-17]],[[1174,3766],[68,-35],[151,-72],[-8,-14],[-73,-135],[-8,-14]],[[102,1881],[17,35],[-10,25],[-25,24],[-23,43],[27,38],[-11,30],[10,27],[-30,53],[-16,49],[1,69],[-8,23],[7,74],[-41,45],[12,63],[22,53],[-4,45],[21,36],[13,67],[39,36],[17,40],[36,25],[14,37]],[[170,2818],[59,-8],[100,12],[71,13],[88,16],[16,-4],[71,10],[-5,33],[64,-18],[11,-116],[18,-127]],[[663,2629],[24,5],[24,-169],[11,2],[16,2],[103,-39],[108,-42]],[[949,2388],[-66,-124]],[[1595,2957],[57,103],[15,27],[-9,25],[-131,68],[-3,2],[-154,79]],[[1451,3404],[153,-76],[35,63],[47,87],[77,145],[79,-36],[-35,121],[139,-93],[99,128]],[[2045,3743],[111,-75],[29,-21],[-100,-127],[93,-66],[-76,-98],[-14,-19],[71,-94],[-64,-76],[-41,-25],[131,-171]],[[2185,2971],[-44,-20],[-45,20],[-36,-19],[-76,-2],[-35,-26],[-31,-3],[-6,-41],[-29,-22],[-13,-28],[12,-27],[16,-32],[-25,-89],[31,-61]],[[1904,2621],[-168,63],[-6,2],[-183,-17],[-87,39]],[[1460,2708],[44,77],[27,48],[-2,48],[66,76]],[[1096,2498],[-67,-141],[-80,31]],[[663,2629],[41,112],[36,99],[-21,10],[44,89],[32,65],[40,-12],[30,57],[-48,24],[47,89]],[[1460,2708],[-70,31],[-32,-169],[-18,8],[-141,54],[-6,-17],[-35,13],[-10,-32],[-44,-100],[-8,2]],[[693,23],[-121,3],[-169,5],[-183,4],[-20,103],[17,65],[6,178],[6,176],[8,170],[7,171],[6,179]],[[1174,3766],[62,96],[-8,109],[-1,59],[5,1],[-26,151]],[[1206,4182],[165,-1],[142,-6],[113,0],[118,3],[148,0],[211,4]],[[2103,4182],[-28,-119],[-4,-21],[-10,-45],[24,-22],[49,-35],[-62,-72],[-74,-93],[47,-32]],[[2103,4182],[177,6],[95,0],[319,4],[-31,-24],[-28,14],[-30,-16],[-11,-28],[31,-47],[0,-57],[26,-34],[-83,-110],[6,-21],[-13,-23],[-18,-21],[5,-34],[-63,-72],[-18,-13],[50,-119],[15,-16],[-4,-25],[25,-14],[21,-43],[-6,-24],[12,-37],[18,-18],[-31,-30],[-16,-15],[-29,6],[-10,-19],[34,-35],[-19,-40],[4,-21],[-31,-33],[-24,-18],[-21,5],[-30,-69],[-63,-52],[-42,-7],[-71,-15],[-33,-33],[-6,-53],[-25,-10]],[[826,4197],[178,-2],[154,-4],[48,-9]],[[701,3494],[-155,33],[-72,38],[-189,94]],[[285,3659],[-41,83],[4,26],[19,40],[45,35],[2,42],[19,74],[3,37],[-47,23],[-6,15],[-12,47],[13,11],[52,100]],[[336,4192],[29,0],[115,3],[127,-2],[219,4]],[[170,2818],[3,18],[-18,66],[-4,61],[-9,53],[26,30],[29,91],[-18,114],[-20,36],[-30,58],[-25,22]],[[104,3367],[93,27],[38,26],[15,28],[3,61],[26,16],[7,70],[-1,64]],[[1904,2621],[2,-36],[-15,-32],[6,-42],[17,-15],[-37,-68],[-20,-13],[-3,-26],[-35,-32],[-16,-33],[3,-46],[22,-22],[-26,-20],[-4,-51],[-42,-31],[-23,-56],[-27,-28],[8,-41],[-9,-23],[6,-30],[-27,-34],[-1,-28]],[[132,3817],[-34,32],[-21,34],[17,39],[12,56],[24,31],[5,7],[0,88],[-22,40],[16,43],[207,5]],[[104,3367],[-28,47],[7,19],[-18,32],[25,106],[8,41],[1,81],[18,35],[26,52],[-11,37]]],"transform":{"scale":[0.0007324368968077211,0.0005455459332144151],"translate":[-73.43773999999999,42.726853000000006]},"objects":{"cb_2019_50_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[7,8,9,-1,-7,10]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-5,11,12,13]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[14,15,16,17,18,19]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-2,-10,20,21,22,23]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[24,-16,25,26,27,28,29]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[30,-23,31,-17,-25,-30,32]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-8,-11,-6,-14,-13,33]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-20,34,35,36,-26,-15]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[-37,37,-27]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[38,-35,-19,39,40,41]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-32,-22,42,43,-40,-18]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-29,44,-3,-24,-31,-33]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[45,-41,-44,46]],"type":"Polygon","properties":{"COUNTYFP":"013"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/wa.topo.json b/app/assets/topojson/states/wa.topo.json new file mode 100755 index 00000000..fe6b0592 --- /dev/null +++ b/app/assets/topojson/states/wa.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[5352,2267],[207,0],[17,60],[-35,52],[-13,80],[-35,50],[22,39],[-44,28],[-2,82],[52,29],[12,37],[-20,31],[31,33],[-3,51],[34,52],[1,41],[-45,34],[1,73],[23,33],[37,-4],[1,50],[30,18],[-18,38],[-65,6],[-38,36],[-40,113]],[[5462,3329],[21,24],[-52,74],[-38,114],[-43,27],[43,95],[36,13],[43,57],[-9,81],[15,42],[65,50],[19,65],[-8,28],[42,63],[-9,81]],[[5587,4143],[0,1]],[[5587,4144],[54,-24],[59,-5],[50,32],[40,-18],[112,-106],[39,-19],[48,-48],[21,-49],[55,-22],[1,-58],[34,-30],[44,-97],[26,-29],[351,-1],[297,3],[1,-232],[207,-2],[-3,-233],[99,-1],[788,-2]],[[7910,3203],[1,-37],[43,-127],[48,-55],[26,-53],[46,-20]],[[8074,2911],[-1,-296],[1,-814],[12,-52],[2,-183],[-1,-231]],[[8087,1335],[-768,1],[-15,0],[-470,-1],[-702,5],[-340,6],[-281,-2],[-159,-1]],[[5352,1343],[0,924]],[[11389,6177],[-76,-26],[-38,-33],[-88,31],[-40,-78],[-55,-28],[-52,13],[-35,63],[-31,25],[-4,51],[-39,88],[-93,118],[-10,37],[-74,1],[-15,-21],[-94,-70],[-39,-39]],[[10606,6309],[-25,94],[12,114],[-36,37],[-13,48],[-38,52],[8,24],[62,47],[71,-20],[67,-3],[29,51],[41,15],[3,62],[-33,60],[-5,48],[19,18],[58,8],[27,54],[-6,145],[67,68],[24,79],[-24,77],[-35,63],[-8,119],[-37,148],[0,63],[-15,21],[9,54],[28,30],[17,95],[53,13],[15,118],[21,51],[-5,54],[38,131],[-26,131],[3,44],[-24,104],[1,52],[-40,38],[-6,48],[-30,77],[-27,8],[-5,71],[-27,57],[22,71],[-33,60],[23,70],[-17,27],[-2,58],[36,15]],[[10843,9278],[530,0],[737,0]],[[12110,9278],[-1,-208],[-113,0],[1,-231],[-108,-1],[0,-216],[0,-35],[-108,-1],[0,-233],[214,1],[0,-9],[-3,-453],[2,-110],[0,-486],[-3,-104],[0,-238],[106,0],[2,-234]],[[12099,6720],[-163,1],[0,-680],[-29,20],[-43,-23],[-35,26],[-49,84],[-51,25],[-20,121],[-32,-14],[-9,-73],[-91,-79],[-47,-1],[-15,-40],[-51,38]],[[11464,6125],[-12,20],[-63,32]],[[6952,510],[-63,35],[-72,-2],[-90,-81],[-164,-79],[-78,-28],[-33,-11],[-65,-77],[-30,-8],[-50,44],[-66,-22],[-39,13],[-94,-1],[-34,-13],[-78,-102],[-85,-9],[-21,27],[-7,89],[-25,58],[-118,42],[-41,35],[-65,11],[-35,-3],[-48,-27],[-101,23],[-60,52],[-41,11]],[[5349,487],[2,60],[-26,63],[35,30],[-152,1],[1,203],[-6,33],[0,466],[149,0]],[[8087,1335],[-2,-41],[-2,-509]],[[8083,785],[-65,-21],[-96,-10],[-172,-106],[-118,-32],[-48,-30],[-66,-96],[-118,-13],[-78,-27],[-123,-32],[-130,-13],[-39,15],[-78,90]],[[4336,9283],[637,-13],[588,6],[83,3],[815,-2]],[[6459,9277],[-51,-85],[56,-34],[22,-44],[25,5],[47,49],[38,-13],[24,-49],[-27,-24],[13,-75],[-7,-62],[52,-32],[-11,-114],[11,-95],[42,-40],[31,-64],[58,-62],[-36,-19],[0,-58],[-42,2],[-25,-60],[-55,-47]],[[6624,8356],[-259,0],[0,-43],[-902,4],[-454,3],[-647,5],[-158,1],[-75,-1],[-374,0]],[[3755,8325],[-35,51],[33,18],[-15,72],[-33,52],[46,67],[-73,91],[-61,-7],[-23,-3],[-84,-99],[-17,-48],[-45,53],[45,98],[1,30],[-59,49],[-40,-3],[-4,46],[-22,90],[-41,23],[-63,63],[24,50],[33,20],[8,53],[-40,31],[-28,-29],[-51,20],[2,46],[98,124],[342,0],[236,0],[447,0]],[[3370,8556],[31,33],[58,-94],[83,-102],[13,-54],[-42,3],[-63,78],[-30,82],[-45,15],[-5,39]],[[2762,9282],[91,0],[17,-48],[-27,-18],[-71,-16],[-10,82]],[[8301,6855],[-61,18],[-6,-41],[-56,-6],[-50,-25],[-88,-71],[42,-88],[3,-30],[-28,-92],[22,-33]],[[8079,6487],[-294,0],[-29,16],[4,40],[-28,31],[-21,71],[-87,48],[5,74],[-135,53],[-55,69],[-67,52],[-34,-14],[-69,89],[0,40],[25,74],[-19,52],[-42,1],[-15,61],[-48,18],[-79,53],[-49,70],[-16,41],[-64,-10],[-59,33],[-5,48],[42,65],[-11,39],[-53,27],[-36,35],[-48,-2],[-8,148],[28,55],[-32,90],[5,44],[-79,22]],[[6706,8020],[-11,27],[34,91],[-57,55],[-13,-37],[-49,1],[-39,51],[-7,63],[60,85]],[[6459,9277],[223,0],[562,2],[620,-4],[135,2],[810,0],[490,0],[488,1]],[[9787,9278],[-1,-465],[0,-465],[-53,0],[0,-463],[42,1],[-3,-800],[0,-591],[-10,-15]],[[9762,6480],[-81,-27],[-93,-19],[-27,7]],[[9561,6441],[-14,50]],[[9547,6491],[26,56],[25,96],[-46,49],[-43,20],[-23,68],[-18,119],[-47,63],[-77,5],[-36,30],[-40,-12],[-43,-48],[-38,-8],[-87,-61],[-76,35],[-48,-51],[0,-71],[-26,-56],[-97,3],[-56,71],[-107,15],[-28,-53],[-128,-112],[-42,-65],[-62,16],[-58,79],[38,96],[-22,67],[-28,-24],[-40,0],[-19,37]],[[7473,5594],[7,-81],[-43,-105],[-59,-73],[-13,-30],[-25,-168],[15,-65],[37,-108],[34,-19],[49,-20],[58,-6],[59,-23],[60,-4],[76,-87],[-11,-39],[7,-51],[-14,-102]],[[7710,4613],[-487,-4],[-28,36],[-34,0],[-49,64],[-68,52],[-56,-6],[-43,-23],[-21,11],[-15,71],[-66,22],[-75,-6],[-59,59],[-37,20],[-6,40],[-92,32],[-34,62],[-43,3],[-25,-32],[-46,10],[-33,33],[-54,15],[-10,65],[-26,40],[-61,55],[-22,69],[-45,14],[-85,73],[-35,103],[-28,21]],[[6027,5512],[-1,56],[-33,74],[18,47],[-10,35],[67,72],[16,97],[-67,109]],[[6017,6002],[44,56],[36,69],[-15,21],[-44,-14],[-46,38],[-39,90],[-37,59],[15,39],[11,111],[41,77],[36,37],[-18,61],[-40,53],[38,15],[24,34],[131,51],[34,-5],[58,54],[46,59],[-21,62],[28,40],[68,22],[-22,65],[-73,64],[8,44],[-84,135],[15,48]],[[6211,7387],[-74,36],[-37,29],[0,51],[47,24],[-5,43],[-30,42],[-1,69],[41,71],[-6,37],[-36,39],[22,68],[22,26],[141,12],[1,80],[76,-16],[31,39],[37,-22],[10,48],[51,-3],[27,-51],[-11,-22],[47,-33],[130,43],[12,23]],[[8079,6487],[18,-50],[-91,-109],[11,-59],[-18,-46],[-67,-44],[-8,-53],[-46,-115],[-167,-53],[-43,31],[-19,4],[-99,-46],[-27,-25],[-25,-72],[29,-57],[10,-53],[-29,-50],[-35,-96]],[[4649,4292],[76,35],[58,-8],[43,-26],[74,81],[110,-41],[16,-18],[59,-3],[32,25],[55,-16],[81,-93],[83,15],[68,-21],[59,-73],[124,-6]],[[5462,3329],[-501,-1],[-29,-19],[-68,-78],[-26,-48],[-29,-1],[-111,27],[-58,42],[-34,-24],[-57,18],[-25,-28],[-97,27],[-55,-9],[-22,15],[-81,2],[-42,21]],[[4227,3273],[-54,27],[-56,-17],[-71,78],[17,35],[-27,52],[-89,45],[-64,3],[-66,17],[-65,42],[-12,109],[-49,44],[-54,22],[-19,74],[11,15],[-23,29],[-53,-27],[-42,26],[11,57],[-69,45],[-9,76],[-44,77],[17,86]],[[3417,4188],[25,-3],[34,65],[52,40],[16,41],[5,33],[34,17],[21,93],[22,30],[5,58],[51,89],[0,108],[153,-147],[32,22],[20,49],[-42,51],[27,35]],[[3872,4769],[138,-154],[67,-16],[248,1],[46,-70],[0,-41],[37,-58],[63,-41],[12,-21],[59,12],[35,-34],[55,-16],[17,-39]],[[3362,4466],[37,63],[41,0],[51,-41],[11,-40],[-59,-26],[-62,21],[-19,23]],[[3338,4325],[29,58],[47,33],[36,-38],[-3,-88],[-32,5],[-28,-43],[-49,73]],[[3240,4871],[-1,121]],[[3239,4992],[176,0],[238,0]],[[3653,4992],[20,-74],[-58,-154],[43,-89],[-29,-54],[-34,-31],[-74,63],[-67,24],[-43,-6],[12,63],[31,91],[55,57],[17,53],[-93,-46],[-7,-20],[-70,-56],[2,-45],[-35,-75],[8,-85],[39,-43],[4,-63],[-50,-58],[-4,-72],[-32,-15],[-57,117],[-2,31],[-42,57],[27,85],[45,68],[-10,58],[12,57],[-21,41]],[[3456,4646],[34,2],[100,-103],[-23,-52],[-109,142],[-2,11]],[[4115,5995],[132,-2],[315,-3],[54,2],[369,4],[264,-2],[213,10],[429,-4],[126,2]],[[6027,5512],[-97,-19],[-17,-67],[-57,12],[-27,-25],[-4,-42],[-46,-57],[-36,-17],[-29,-84],[-59,-26],[-67,-58],[-10,-54],[-70,-37],[-21,-123],[-42,-22],[2,-33],[46,-36],[10,-18],[-23,-70],[19,-38],[80,-24],[40,3],[35,-34],[-1,-71],[-33,-16],[-9,-44],[79,-34],[18,-65],[-19,-40],[33,-65],[-9,-26],[-52,-17],[-49,24],[-49,-24],[-23,-39],[14,-44],[33,-38]],[[3872,4769],[134,56],[20,19],[-1,64],[-16,97],[-21,20],[-12,70],[-21,46],[11,60],[-62,97],[1,87],[-38,70],[56,53],[42,-32],[31,20],[-3,48],[-42,43],[-73,39],[-25,51],[33,47],[10,58],[30,18],[20,66],[-11,79],[-24,50]],[[3911,5995],[204,0]],[[3694,4872],[16,50],[-19,40],[22,58],[1,94],[26,72],[25,20],[10,75],[40,-21],[-12,-44],[44,-55],[-16,-35],[22,-80],[4,-58],[53,-7],[35,-29],[-105,-62],[-27,-60],[-38,21],[22,65],[-34,13],[-15,-134],[-42,9],[-12,68]],[[809,6275],[-274,4],[-284,-7]],[[251,6272],[-51,73],[-6,74],[-27,30],[-27,123],[-5,71],[-7,82],[-19,54],[13,62],[-5,42],[-66,166],[46,39],[22,75],[-25,74],[35,41],[-3,86],[34,32],[11,85],[-47,21],[-73,114],[24,23],[96,3],[33,-14],[48,-51],[32,19],[43,-16],[43,-48],[22,-2],[184,-130],[55,-43],[32,8],[37,-32],[66,-20],[5,-24],[50,-12],[45,20],[160,-94],[65,-28],[-9,-45],[58,-28],[36,-32],[127,-36],[44,4],[20,-14],[80,1],[33,-17],[146,2],[113,33],[111,-37],[10,-31],[75,-20],[43,36],[23,8],[72,-52],[75,7],[62,-44],[83,-11],[34,10],[65,-11],[41,19],[83,-7],[36,24],[88,104],[32,27],[12,-56],[42,-18],[44,-57],[32,-18],[45,-105],[98,39],[102,0],[-16,-82]],[[3031,6768],[-36,0],[0,-195],[-3,-181],[3,-157],[-334,1],[-10,0],[-512,0],[-63,0],[0,38],[-694,0],[-573,1]],[[2646,3354],[0,274]],[[2646,3628],[4,270],[-74,3],[3,47],[-1,189]],[[2578,4137],[209,0],[1,52],[23,26],[44,3],[31,23],[16,68],[87,56],[27,52],[42,-36],[6,-29],[45,-18],[36,25]],[[3145,4359],[51,-18],[10,42],[46,-65],[12,-69],[107,-76],[46,15]],[[4227,3273],[-734,1],[-412,1],[-225,2],[-211,-1],[1,78]],[[11413,2902],[78,-1],[54,56],[20,81],[32,51],[88,22],[65,-8],[36,-55],[47,-18],[80,21],[53,-9],[45,49],[36,13],[23,-23],[36,-86],[65,-15],[13,-16],[4,-89],[39,-34],[36,-54],[43,-3],[96,-98],[36,-117],[-12,-52],[18,-51]],[[12444,2466],[-2,-137],[-210,2],[1,-39],[-71,1],[0,-39],[-34,-1],[0,-283],[-1,-418],[-99,0],[0,-333]],[[12028,1219],[-204,3]],[[11824,1222],[0,329],[-15,0],[1,572],[-104,8],[1,123],[-34,0],[-1,38],[-35,0],[0,119],[-35,20],[1,59],[-209,-2],[3,241],[14,0],[2,173]],[[9083,2168],[21,-98],[-28,-78],[12,-44],[38,-22],[44,-60],[61,-27],[79,-11],[139,-86]],[[9449,1742],[45,-44],[76,-122],[-2,-32],[44,-119],[0,-32],[2,-96],[-34,-20],[-42,-52]],[[9538,1225],[-35,-56],[-140,-98],[-54,-26],[-115,-14],[-101,33],[-108,-18],[-70,-31],[-141,-12],[-62,-29],[-61,6],[-78,45],[-48,-16],[-37,-37],[-77,-131],[-170,-30],[-49,5],[-109,-31]],[[8074,2911],[85,-6],[36,12],[82,14],[66,35],[86,-22],[55,11],[73,68],[107,155],[51,-32],[59,-79],[-5,-19]],[[8769,3048],[-5,-22],[71,-49],[10,-89],[65,-99],[68,-52],[36,-66],[58,-49],[16,-64],[-7,-43],[8,-123],[-17,-172],[11,-52]],[[4150,739],[9,128],[-2,503]],[[4157,1370],[-1,238],[-1,155],[8,30],[2,466]],[[4165,2259],[445,9],[742,-1]],[[5349,487],[-15,4],[-162,-59],[-62,2],[-64,-28],[-46,-2],[-126,34],[-77,-30],[-72,-67],[1,-22],[-56,-49],[-113,-76],[-68,-17],[-94,-70],[-65,3],[-71,-18],[-30,-37],[-77,-44]],[[4152,11],[-2,313],[1,23],[-1,392]],[[9858,2005],[45,35],[-12,39],[22,27],[23,84],[81,10],[10,48],[35,19],[15,38],[45,31],[-7,52],[31,110],[2,72],[42,66],[45,25],[29,56],[33,32],[52,21],[34,52],[38,5],[49,-35],[55,-9],[46,47],[87,23],[36,-31],[71,15],[26,-19]],[[10791,2818],[1,-89],[-24,-2],[2,-242],[-1,-468],[94,1],[114,0],[0,-27],[-1,-208],[207,0],[-3,-505],[-6,-51]],[[11174,1227],[-396,-1],[-276,1],[-636,0],[-328,-2]],[[9449,1742],[29,64],[84,60],[85,11],[100,26],[51,78],[60,24]],[[12755,3821],[-1,-406],[1,-524],[0,-523]],[[12755,2368],[-30,10],[-47,-33],[-108,36],[-80,-28],[-24,32],[13,45],[-35,36]],[[11413,2902],[-43,-43],[-6,-45],[-45,-19],[-72,19],[-54,-14],[-82,-4],[-56,-29],[-40,0],[-42,-48],[-89,1],[-71,86]],[[10813,2806],[28,58],[-2,36],[-28,25],[-23,62],[21,61],[-52,143],[65,17]],[[10822,3208],[33,34],[44,-13],[12,34],[49,6],[51,47],[78,-29],[20,45],[39,15],[-12,58],[36,30],[10,39],[-21,27],[56,52],[6,127],[13,0],[-1,424],[-2,504]],[[11233,4608],[227,-1]],[[11460,4607],[414,-1],[131,-1],[531,1],[218,-1]],[[12754,4605],[0,-336],[1,-448]],[[10093,3200],[483,2],[246,6]],[[10813,2806],[-22,12]],[[8769,3048],[139,-3],[-1,160]],[[8907,3205],[477,0],[301,-4],[408,-1]],[[2701,4867],[36,15],[58,-35],[66,4],[77,63],[94,40],[25,-1],[63,92],[-46,-5],[-66,-49],[-60,-19],[-59,-47],[-18,-47],[-101,37],[-34,-7],[-23,52],[61,144],[81,131],[18,72]],[[2873,5307],[138,4],[229,-5],[0,-98],[-1,-147],[0,-69]],[[3240,4871],[-27,52],[-26,-4],[20,-91],[-52,-96],[8,-26],[-35,-45],[0,-77],[49,-112],[-32,-113]],[[2578,4137],[-211,-3],[-70,-4],[-184,0],[-11,20],[-1,452],[-24,1],[-1,695]],[[2076,5298],[0,234],[17,0],[195,0],[16,7],[637,-2]],[[2941,5537],[-66,-135],[-15,-44],[-29,-29],[-15,-76],[-73,-103],[-65,-159],[-11,-75],[-15,-12],[10,-57],[15,-7],[24,27]],[[9787,9278],[779,0],[277,0]],[[10606,6309],[-15,-31],[-12,-110],[-39,-29],[-63,13],[-62,50],[-1,55],[-123,0],[-21,24],[18,83],[-61,47],[-135,-14],[-17,28],[-43,14],[-32,-24],[-7,-82],[-30,-8],[-88,42],[-47,12],[-29,34],[-6,47],[-31,20]],[[9559,6234],[2,207]],[[11464,6125],[3,-567],[-4,-93],[-2,-457],[-1,-401]],[[11233,4608],[-799,1],[-883,2]],[[9551,4611],[3,663],[0,1],[1,366],[4,593]],[[1329,2239],[13,87],[-25,-4],[-8,82],[-36,26],[-4,53],[39,18],[46,-27],[0,60],[78,71],[-1,97],[-44,53],[-10,51],[-50,66],[11,61],[51,37],[10,76],[19,2],[65,52],[59,17],[-7,36],[-72,33],[-20,53],[-36,-10],[-5,-54],[-58,-3],[-33,29],[-18,-31],[10,-57],[-42,7],[-161,108],[-3,128]],[[1097,3356],[407,-6],[528,6],[266,-5]],[[2298,3351],[-2,-154],[6,-63],[6,-214],[0,-184],[11,-135],[0,-345]],[[2319,2256],[-218,-1],[-390,3],[-2,-255]],[[1709,2003],[-37,6],[-15,-46],[-60,26],[-38,-40],[-50,-25],[-44,-55],[-56,15],[-65,69],[-35,75],[-25,26],[-58,18],[-40,-42],[4,-64],[-59,0],[3,55],[19,81],[10,160],[2,287],[-8,169],[-10,121],[-1,123],[29,-11],[2,-53],[44,-109],[-1,-189],[-13,-43],[24,-214],[3,-102],[14,-19],[50,22],[31,-5]],[[4165,2259],[-82,1],[-121,5],[-560,-1],[-379,1],[-301,2],[-41,-4],[-130,-3]],[[2551,2260],[-68,-6],[-164,2]],[[2298,3351],[33,4],[315,-1]],[[12099,6720],[215,-3],[198,-1],[239,-1]],[[12751,6715],[-1,-554],[1,-277],[2,-406],[0,-167],[1,-706]],[[9125,3673],[-217,1],[-1,-469]],[[7910,3203],[5,48],[45,53],[26,64],[-1,50],[-61,112],[2,161],[-4,66],[-41,91],[-19,54],[-8,97],[-43,56],[-16,51],[25,85],[42,57],[2,51],[-16,43],[11,57],[-5,101]],[[7854,4500],[4,239],[36,30],[-1,38],[36,1],[35,39],[0,40],[36,0],[0,78],[35,0],[0,39],[36,1],[0,78],[458,10],[67,0],[40,0],[1,232],[34,39],[36,0],[1,39],[140,150],[105,0],[35,38],[0,117],[36,0],[0,156],[35,-1],[36,39],[0,78],[35,1],[1,77],[36,23],[0,71],[0,139],[35,1],[0,39],[72,1],[0,39],[35,0],[1,79],[35,0],[1,40],[201,1]],[[9551,4611],[-1,-78],[-2,-398],[-2,-464],[-421,2]],[[3031,6768],[81,-49],[20,-23],[25,-114],[27,36],[12,100],[-41,25],[-43,54],[-11,83],[86,74],[81,23],[58,-70],[-49,-29],[-38,-50],[51,-93],[36,-61],[26,164],[57,32],[21,-78],[6,-85],[22,-28],[-2,-40],[-28,-24],[-54,41],[-16,-10],[19,-86],[69,-78],[-14,-39],[19,-68],[59,-78],[6,-57],[-27,-13],[-72,12],[21,-66],[-11,-34],[-50,-52],[-45,-19],[-5,-98],[-17,-59],[-36,-56],[-5,-57],[16,-37],[-62,-24],[-31,21],[8,59],[19,13],[6,85],[16,29],[20,123],[-36,98],[-25,-51],[17,-38],[-12,-49],[-52,-24],[2,-93],[-50,-39],[-12,-67],[19,-43],[-50,-67],[7,-52],[-51,-4],[-11,-34],[-66,-67]],[[2076,5298],[-44,0],[-702,1],[-148,2],[1,40],[-510,0]],[[673,5341],[-18,131],[-49,223],[-27,69],[-31,148],[-62,59],[-22,55],[-5,52],[-22,39],[-41,25],[-58,58],[-36,56],[-51,16]],[[12110,9278],[502,-4],[155,0],[0,-333],[-4,-682],[-1,-381],[0,-290],[-10,-660],[-1,-213]],[[2885,8170],[8,5],[51,10],[65,-19],[36,2],[25,-30],[-29,-36],[-74,-35],[-24,50],[-58,53]],[[2861,8283],[33,68],[43,53],[36,24],[33,49],[42,31],[65,-2],[67,-35],[70,-56],[87,-45],[-21,-34],[-67,-54],[-34,-64],[-53,44],[-58,103],[1,67],[-20,25],[-42,-23],[19,-41],[-2,-45],[47,-43],[32,-69],[-37,-63],[-69,7],[-35,16],[-14,57],[-46,63],[-28,-72],[-45,-12],[-4,51]],[[2799,8472],[96,59],[8,-75],[-52,-11],[-52,27]],[[3190,8129],[33,44],[66,-69],[-2,-28],[-58,-57],[-33,62],[-6,48]],[[3001,7875],[22,107],[27,14],[-7,75],[48,20],[54,-43],[-25,-97],[38,-76],[36,122],[59,6],[14,-41],[-52,-60],[-5,-74],[26,-81],[-33,-25],[-26,30],[-24,-33],[-43,18],[29,36],[-70,17],[-36,39],[-30,-7],[-2,53]],[[2575,8191],[39,71],[38,-14],[85,16],[8,-64],[43,-19],[64,-75],[32,-5],[35,-71],[42,2],[-4,-43],[-33,-15],[-40,11],[-6,-63],[23,-65],[75,-53],[-132,28],[-153,98],[-49,85],[2,49],[-24,38],[9,36],[-54,53]],[[2521,8431],[34,13],[54,-15],[56,-40],[-66,-23],[-51,27],[-27,38]],[[3690,7848],[1,14],[21,-19],[24,-13],[50,43],[-22,41],[1,74],[-35,121],[36,-14],[47,16],[34,43],[13,48],[-38,62],[-26,8],[-41,53]],[[6211,7387],[-732,0],[-316,7],[-208,1],[-156,-4],[-234,0],[-292,0],[-351,1]],[[3922,7392],[-28,69],[-62,39],[-33,37],[-42,15],[-7,2],[-5,30],[-11,7],[-51,13],[-11,55],[-29,61],[-24,-10],[-7,2],[26,10],[14,75],[-40,-10],[-17,-52],[-47,-32],[-69,-16],[-33,77],[35,48],[-22,86],[-57,15],[30,46],[22,-14],[93,47],[18,-26],[31,-122],[22,0],[-11,72],[33,18],[35,-89],[16,2],[-1,1]],[[3483,8066],[14,32],[-12,61],[122,-95],[-35,-30],[-67,-30],[-22,62]],[[3408,8260],[41,23],[13,-58],[-54,35]],[[3340,8163],[48,65],[24,-57],[42,-50],[-29,-34],[11,-31],[-66,-12],[-1,64],[-29,55]],[[7854,4500],[-20,17],[-96,1],[-25,41],[-3,54]],[[1251,3918],[-35,72],[-56,35],[-102,-4],[-32,-18],[-16,-37],[23,-59],[-1,-76],[17,-68],[-77,-49],[8,180],[-12,265],[-32,217],[-39,190],[-28,114],[-35,45],[-34,6],[-36,113],[-32,19],[-18,120],[-10,13],[-14,225],[-17,120]],[[1097,3356],[-16,114],[-41,161],[37,43],[29,-29],[6,-91],[27,-17],[30,24],[9,56],[59,33],[47,49],[46,-1],[132,53],[44,29],[-14,42],[-103,11],[-42,-8],[-20,35],[-54,-4],[-34,13],[12,49]],[[4152,11],[-76,-11],[-61,13],[-35,57],[-45,17],[-97,-33],[-55,35],[-126,54],[-90,29],[-68,6],[-51,22],[-63,52],[-84,53],[-18,62],[24,145],[-2,67],[-15,61],[-41,75],[16,109]],[[3265,824],[70,52],[37,-8],[-22,50],[-10,76],[32,48],[52,-7],[33,21],[89,-3],[62,50],[36,6],[55,73],[27,-10],[46,21],[53,-13],[7,-20],[72,-9],[39,-33],[70,13],[13,94],[22,77],[28,55],[42,28],[39,-15]],[[3911,5995],[-2,79],[70,91],[22,16],[17,61],[-6,29],[19,89],[16,28],[9,68],[95,28],[32,31],[-2,101],[8,26],[5,17],[-85,63],[-9,40],[-68,48],[-36,45],[-34,69],[-11,111],[21,47],[-21,23],[3,64],[-43,41]],[[3911,7210],[-18,59]],[[3893,7269],[28,69],[1,54]],[[3265,824],[1,46],[-44,121],[9,53],[-10,59],[-42,71],[-30,90],[-37,45],[-5,39],[-5,39],[-33,63],[-96,56],[-69,78],[-31,15],[-135,103],[-18,20],[-84,10],[-77,-44]],[[2559,1688],[-1,71],[-5,87],[3,140],[-5,274]],[[2873,5307],[85,135],[11,38],[70,34],[9,61],[95,48],[47,2],[76,55],[56,28],[9,61],[-2,77],[40,73],[13,52],[40,27],[11,54],[52,63],[48,38],[25,55],[50,-1],[8,48],[-38,124],[78,-3],[39,-18],[21,-82],[-3,-43],[14,-92],[39,-43],[-32,-67],[50,-66],[-9,-53],[-122,-10],[-2,-50],[35,-51],[32,10],[14,-39],[-10,-63],[14,-30],[-13,-43],[32,-28],[-19,-41],[-4,-70],[28,-29],[-70,-36],[-24,-30],[1,-85],[35,-1],[43,-38],[-62,-110],[1,-104],[-31,-72]],[[2144,1927],[-61,25],[-76,-32],[-109,3],[-93,18],[-16,15],[-2,64],[-33,23],[-39,-10],[-6,-30]],[[2559,1688],[-111,-74],[-37,-1],[-113,5],[-32,22],[-67,72],[5,112],[-13,40],[-47,63]],[[11824,1222],[-650,5]],[[12719,2211],[9,-59],[53,-25],[5,-57],[60,-59],[-11,-44],[34,-41],[24,-94],[-12,-71],[35,-39],[32,-66],[-19,-17],[-3,-50],[-24,-33],[-15,-65],[-38,-21],[6,-30],[36,-12],[24,-39],[44,-176],[-115,4],[-581,4],[-235,-2]],[[12755,2368],[8,-20],[-20,-104],[-24,-33]],[[3327,7303],[27,40],[15,66],[81,136],[14,54],[1,71],[67,-2],[24,29],[40,-44],[8,-63],[-28,-38],[76,-41],[74,-86],[-7,-44],[-33,-30],[-45,-1],[-28,34],[-72,-2],[-12,-61],[-44,-17],[-10,-55],[-37,-12],[-78,-20],[12,-50],[46,22],[107,1],[39,-43],[31,-65],[8,-61],[22,-29],[17,-83],[-24,-42],[55,-139],[15,-92],[33,64],[-11,36],[9,59],[-24,57],[57,-6],[70,-107],[74,-48],[45,-6],[12,-105],[25,-29],[5,-84],[-13,-42],[-52,-85],[-67,32],[-24,34],[-2,88],[-53,71],[-37,-7],[-33,-38],[-42,-15],[8,69],[-30,36],[-33,10],[-45,56],[20,68],[-31,44],[25,102],[-23,121],[-55,22],[-51,-27],[-16,56],[-41,50],[-39,17],[-58,66],[36,108]],[[3911,7210],[-34,-9],[-26,26],[-38,-20],[20,-52],[-61,-57],[5,-58],[55,-96],[32,-23],[72,-94],[37,-82],[-33,2],[-27,56],[-50,66],[-32,11],[-40,63],[-32,-26],[-42,35],[-3,39],[-39,95],[-2,51],[13,126],[51,19],[42,-4],[13,38],[101,-47]]],"transform":{"scale":[0.0006054995755845362,0.0003725967898308735],"translate":[-124.762658,45.543541]},"objects":{"cb_2019_53_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6,7]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[8,9,10,11,12,13]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[14,15,-7,16,17]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[[18,19,20,21]],[[22]],[[23]]],"type":"MultiPolygon","properties":{"COUNTYFP":"073"}},{"arcs":[[24,25,26,-20,27,28,29,30,31]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[32,33,34,35,36,-26,37]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[[38,-2,39,40,41,42]],[[43]],[[44]],[[45,46,47]],[[48]]],"type":"MultiPolygon","properties":{"COUNTYFP":"053"}},{"arcs":[[[49,-35,50,-3,-39,-43,51,52]],[[53]]],"type":"MultiPolygon","properties":{"COUNTYFP":"033"}},{"arcs":[[54,55,56]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[57,58,59,60,-41,61]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[62,63,64,65]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[66,67,68,-17,-6,69,70]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[71,72,73,-8,-16,74,75]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[76,77,78,-68,79]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[80,81,-63,82,83,84,85,86,87]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[88,-84,89,-77,-80,-67,-71,90,91]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[92,93,-46,94,-60,95,96,97]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-29,98,-10,99]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[100,-30,-100,-9,-14,101,-86,102,103]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[104,105,106,107,108]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[-74,109,110,-107,111,-62,-40,-1]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-13,112,113,-87,-102]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[114,-91,-70,-5,115,116,-31,-101,-104,117]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-57,118,-97,119,120,-55]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-12,121,-113]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]]],"type":"MultiPolygon","properties":{"COUNTYFP":"055"}},{"arcs":[[[129,-21,-27,-37,130,131]],[[132]],[[133]],[[134]]],"type":"MultiPolygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-38,-25,-32,-117,135,-33]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[136,-120,-96,-59,-58,-112,-106,137]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-76,138,139,-72]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-34,-136,-116,-4,-51]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-118,-103,-85,-89,-92,-115]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-131,-36,-50,-53,140,141,142]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[-110,-73,-140,143,144]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-94,145,-47]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[146,-108,-111,-145,147]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-90,-83,-66,148,-78]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[149,-64,-82,150]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[[151]],[[-142,152]]],"type":"MultiPolygon","properties":{"COUNTYFP":"029"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/wi.topo.json b/app/assets/topojson/states/wi.topo.json new file mode 100755 index 00000000..364b73b5 --- /dev/null +++ b/app/assets/topojson/states/wi.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[1585,14024],[3,14],[-8,20],[30,40],[25,12],[12,34],[-51,20],[-17,21],[39,51],[50,8],[49,-14],[19,80],[50,31],[62,2],[129,-136],[31,-17],[29,7],[46,-45],[61,-34],[69,-4],[104,28],[68,9],[87,-7],[69,15],[111,55],[106,41],[118,39],[127,66],[38,10],[53,-6]],[[3094,14364],[-2,-268],[0,-49],[-3,-243],[0,-292],[4,-140],[1,-438],[1,-294],[-1,-292]],[[3094,12348],[-24,2],[-547,0],[-289,-1],[-294,0]],[[1940,12349],[-154,-2],[-111,2],[-299,-1]],[[1376,12348],[1,589],[1,287],[2,389],[1,311],[-2,138],[61,-50],[22,26],[32,-32],[33,12],[37,-10],[21,16]],[[5953,6808],[0,290],[-1,291]],[[5952,7389],[226,0],[35,0],[24,0],[4,0],[10,0],[1,0],[16,0],[14,0],[4,0],[2,0],[53,0],[4,0],[5,0],[11,0],[139,0],[267,-1],[276,0]],[[7043,7388],[-1,-243],[1,-24],[0,-2],[-1,-23],[2,-292],[272,-1],[1,-209],[0,-13],[1,-72],[0,-3],[3,-290],[0,-301]],[[7321,5915],[-194,4],[-217,2],[-1,0]],[[6909,5921],[-395,-2],[-17,0],[-258,0],[-279,-1]],[[5960,5918],[-12,0],[1,146],[1,153],[2,294]],[[5952,6511],[1,0],[0,297]],[[1983,10894],[-2,302],[-1,286]],[[1980,11482],[-2,282],[-40,0],[1,293],[0,1],[1,291]],[[3094,12348],[1,-293],[0,-98],[-2,-195],[23,-2],[1,-278],[0,-53],[3,-240],[-3,-160],[2,-326],[0,-69],[0,-36]],[[3119,10598],[-282,3],[-286,0],[-284,1],[-284,3]],[[1983,10605],[0,289]],[[1742,6898],[1,195],[0,48],[-1,245]],[[1742,7386],[269,-1],[104,-1],[171,0],[2,0],[15,0],[281,0]],[[2584,7384],[281,0]],[[2865,7384],[0,-293]],[[2865,7091],[-282,-1],[-280,1]],[[2303,7091],[-255,0],[-60,-35],[-24,-75],[1,-58],[-20,-67],[6,-57],[-1,0],[-25,-71],[-7,-77],[-53,-141],[-3,-58]],[[1862,6452],[-64,23],[-31,28],[-88,17],[-125,39],[-37,22],[-28,39],[-74,56],[-33,40],[-26,50],[-1,54],[-31,83]],[[1324,6903],[231,-4],[187,-1]],[[10605,593],[0,-2],[-1,-16],[0,-41],[0,-24],[1,-110]],[[10605,400],[0,-98],[1,-80],[0,-18],[1,-97],[0,-24],[0,-25],[0,-37],[0,-12]],[[10607,9],[-15,0],[-2,0],[-10,0],[-3,0],[-49,0],[-194,0],[-272,1],[-273,-1],[-148,-5],[-35,-1],[-91,-3]],[[9515,0],[1,297],[-1,294],[-5,294],[4,269],[0,10],[0,9],[0,8]],[[9514,1181],[33,1],[11,0],[3,0],[77,-1],[14,0],[44,0],[1,0],[90,0],[272,1]],[[10059,1182],[272,-1]],[[10331,1181],[186,1],[86,-3]],[[10603,1179],[0,-4],[-3,-287]],[[10600,888],[2,-146],[0,-61],[1,-2],[0,-11]],[[10603,668],[2,-73],[0,-2]],[[5951,7682],[0,-1],[0,-37],[0,-27],[1,-228]],[[5952,6511],[-278,-7],[-283,-1]],[[5391,6503],[-282,0],[-57,0],[-224,1],[1,293],[0,1],[-281,0],[2,291],[-1,0]],[[4549,7089],[2,294],[0,293]],[[4551,7676],[-1,293]],[[4550,7969],[-1,293],[0,25],[0,12],[0,11],[0,1],[0,24],[0,25],[-2,194]],[[4547,8554],[285,2],[281,-1],[282,-1],[285,0],[275,9]],[[5955,8563],[-2,-96],[0,-3],[0,-9],[0,-18],[-2,-134],[0,-11],[1,-74],[1,-25],[2,-73],[0,-34],[-2,-111],[0,-51],[-2,-242]],[[3121,10308],[-2,-291],[-2,-291]],[[3117,9726],[0,-292]],[[3117,9434],[-2,-277],[0,-12],[-40,1],[-10,1],[-5,0],[-63,1],[-168,2]],[[2829,9150],[-285,1],[-229,1],[-32,0],[-23,0],[-283,1]],[[1977,9153],[-284,2]],[[1693,9155],[0,288],[0,49],[0,145],[0,96],[1,29],[0,43],[0,26],[0,193]],[[1694,10024],[3,290],[0,291]],[[1697,10605],[286,0]],[[3119,10598],[2,-290]],[[8890,10308],[0,288]],[[8890,10596],[-1,292],[-1,578]],[[8888,11466],[0,293],[265,0],[1,308]],[[9154,12067],[191,-113],[27,-34],[76,-29],[42,25],[12,-42],[51,11],[47,25],[131,-44]],[[9731,11866],[-2,-107],[23,-5],[-3,-285]],[[9749,11469],[0,-293],[0,-146],[-1,-145],[216,-1],[364,-1]],[[10328,10883],[-1,-340],[-1,-244],[1,-143],[0,-145],[-5,-291]],[[10322,9720],[-292,2],[-286,4],[-1,-1]],[[9743,9725],[-287,-1],[-1,0],[-286,1],[7,291],[-285,-2]],[[8891,10014],[-1,290],[0,4]],[[4827,9723],[96,0],[190,0]],[[5113,9723],[285,-2],[120,-1],[298,7],[195,6],[96,0],[190,1],[127,5],[162,-3]],[[6586,9736],[-9,-140],[0,-299],[2,-146],[4,-297]],[[6583,8854],[-83,1],[-203,0],[-71,1],[1,-293],[-272,0]],[[4547,8554],[1,297],[-7,7],[0,139],[0,144],[2,292]],[[4543,9433],[-1,294],[1,0],[284,-4]],[[6583,10465],[0,-145]],[[6583,10320],[2,-248],[0,-47],[1,-289]],[[5113,9723],[2,389],[-4,199]],[[5111,10311],[2,289]],[[5113,10600],[2,147],[0,145],[0,290],[0,121],[1,94],[-3,216],[4,143]],[[5117,11756],[437,0],[202,0],[229,0]],[[5985,11756],[311,2],[286,0]],[[6582,11758],[3,-286]],[[6585,11472],[-6,-268],[4,-294],[0,-290],[0,-155]],[[7015,1083],[-16,0]],[[6999,1083],[-214,0],[-270,1],[-273,3],[-137,0],[-92,-1],[-43,-1],[-274,-4]],[[5696,1081],[-1,146],[0,123],[-1,49]],[[5694,1399],[-1,124],[-1,62],[0,12],[0,7],[0,2],[0,11],[0,17],[0,86],[0,98],[-3,292],[1,207],[0,11],[0,31],[-1,2],[0,27]],[[5689,2388],[47,-2],[132,31],[39,1],[46,-8],[11,-2],[43,0],[18,-36],[30,0],[26,6],[43,-29],[54,-54],[57,-30]],[[6235,2265],[25,-24],[23,12],[33,20],[55,-3],[51,-18],[71,2],[47,-51],[20,3],[11,68],[32,20],[23,35],[70,41],[81,-11],[23,4],[106,-18],[64,28],[40,-3],[48,35],[0,1]],[[7058,2406],[1,-149],[0,-146],[-1,-148],[0,-145],[-1,-293],[1,-98],[0,-196]],[[7058,1231],[0,-147]],[[7058,1084],[-43,-1]],[[7595,5909],[-256,5],[-18,1]],[[7043,7388],[273,0],[101,0],[174,2],[273,1],[266,-10],[68,-5],[282,0]],[[8480,7376],[1,-302],[0,-296],[0,-291],[-2,-293],[-1,-294]],[[8478,5900],[-51,1],[-230,1],[-43,0],[-272,0],[-12,1],[-256,5]],[[7614,5908],[-19,1]],[[8983,3490],[-1,17],[0,55],[0,2],[0,6],[0,4],[0,270]],[[8982,3844],[280,2]],[[9262,3846],[279,-2]],[[9541,3844],[3,0],[14,0],[95,1],[2,0],[166,-1],[284,-4],[279,-3],[2,-294]],[[10386,3543],[-1,-293],[-2,-292],[-39,1],[-1,-78],[0,-73],[0,-1],[-1,-146],[3,-294]],[[10345,2367],[-92,4],[-181,1]],[[10072,2372],[-274,4],[-91,0],[-1,0],[-152,1],[-17,0],[-12,1],[-138,0],[-136,0],[-184,0],[-89,0]],[[8978,2378],[-1,293]],[[8977,2671],[-1,130],[1,12],[0,12],[0,66],[1,72],[9,1],[-3,293],[-1,233]],[[5302,4169],[-6,0],[-17,-12],[-148,2],[-277,-3],[-26,0],[-9,-1],[-243,0]],[[4576,4155],[0,294],[2,292]],[[4578,4741],[0,9],[0,11],[0,2],[0,2],[0,14],[-1,20],[-6,379],[0,143],[-93,-1],[-46,-1]],[[4432,5319],[-1,151],[15,67],[67,40],[38,0],[39,37],[28,0],[232,2],[278,2],[275,2],[272,3],[286,-20]],[[5961,5603],[0,-147],[0,-146],[-1,-292]],[[5960,5018],[1,-293],[1,-255],[-1,-294]],[[5961,4176],[-279,-19]],[[5682,4157],[-277,-1]],[[5405,4156],[-74,1],[-29,12]],[[4543,9433],[-287,0]],[[4256,9433],[-229,0],[-58,0],[-284,0],[-284,0],[-143,-1],[-141,2]],[[3119,10598],[280,0],[282,4],[249,-1],[36,0],[287,1],[1,0],[287,1],[284,-3],[288,0]],[[5607,15196],[18,35],[1,92],[19,87],[27,25],[46,14],[51,-2],[2,-65],[-30,-66],[9,-43],[-23,-41],[-41,-40],[-83,-24],[4,28]],[[5487,14770],[47,33],[26,5],[81,39],[-55,-81],[-57,-13],[-42,17]],[[5352,15302],[71,-56],[-4,-41],[-39,-29],[-15,103],[-13,23]],[[5238,15201],[44,10],[6,-39],[-33,-20],[-17,49]],[[5170,14926],[39,66],[45,9],[39,26],[57,21],[43,4],[67,29],[50,-36],[-30,-43],[-12,-42],[-44,-3],[-16,-49],[-39,26],[-40,-30],[-59,13],[-8,-24],[-57,-21],[-35,54]],[[5114,15041],[54,69],[48,9],[0,-29],[-44,-45],[-42,-29],[-16,25]],[[5080,15292],[10,41],[44,-8],[-21,-56],[-33,23]],[[5058,14807],[57,30],[24,-16],[-13,-27],[-38,-14],[-30,27]],[[5037,15146],[22,58],[50,8],[26,-24],[-59,-58],[-39,16]],[[4918,14626],[12,57],[19,41],[32,35],[35,-24],[-28,-61],[-26,-34],[-44,-14]],[[4913,15009],[57,58],[15,-15],[43,-5],[23,-47],[26,-26],[12,-65],[-110,-13],[-66,113]],[[4886,15269],[42,35],[47,-69],[-39,-50],[-36,19],[-14,65]],[[4852,14463],[57,22],[34,22],[45,7],[12,35],[35,35],[86,44],[43,32],[53,71],[40,34],[32,-6],[36,-50],[40,-28],[-34,-33],[-68,-7],[-66,-34],[-73,-27],[-6,-24],[15,-44],[34,-1],[-4,-35],[-91,-23],[-46,12],[-53,-59],[-74,-51],[-39,0],[14,51],[-22,57]],[[5406,12631],[0,-1],[292,-1],[-1,-292]],[[5697,12337],[139,4],[147,-1],[-4,-50],[2,-146],[7,-146],[1,-96],[-4,-146]],[[5117,11756],[-570,-1],[-4,0],[-3,48],[5,128],[-1,116],[0,1],[0,291]],[[4544,12339],[0,294],[0,54],[-9,89],[10,143],[-1,295],[0,3],[1,293],[-8,0],[1,110],[0,3],[0,16],[0,30],[0,37],[0,84]],[[4538,13790],[50,-6],[46,33],[24,29],[31,6],[91,53],[65,19],[56,38],[52,52],[24,12],[-24,49],[83,-13],[2,19],[-66,62],[6,8],[98,-94],[155,-137],[96,-81],[85,-53]],[[5412,13786],[-1,-135],[4,-148],[-1,-290]],[[5414,13213],[-1,-286],[-4,-95],[-3,-201]],[[10612,9],[-5,0]],[[10605,400],[272,2],[0,197],[45,-2],[226,2],[1,0],[271,-1],[1,0],[341,-6]],[[11762,592],[-21,-80],[-8,-58],[-3,-68],[18,-60],[-2,-109],[2,-121],[22,-94],[-344,7],[-273,3],[-274,2],[-45,-1],[-11,0],[-125,-3],[-45,-1],[-41,0]],[[10072,2372],[-6,-170],[0,-27],[-1,-14],[-1,-38],[0,-8],[0,-41],[-1,-91],[-4,-206],[-1,-298],[1,-297]],[[9514,1181],[-272,11],[-174,2],[-101,4]],[[8967,1198],[1,296],[1,225],[0,22],[0,7],[0,2],[0,4],[0,12],[0,9]],[[8969,1775],[1,16]],[[8970,1791],[2,170],[-2,123]],[[8970,2084],[6,196],[2,98]],[[5698,346],[0,53],[0,8],[0,86],[0,147],[0,147],[-1,147],[-1,147]],[[7058,1084],[-1,-146],[1,0],[3,-294],[-1,-293]],[[7060,351],[0,-305]],[[7060,46],[-273,0],[-273,9],[-341,-2],[-204,-1],[-137,-1],[-135,0]],[[5697,51],[0,61],[1,16],[0,11],[0,22],[0,185]],[[5697,51],[-273,2],[-228,2],[14,35],[-20,85],[-20,20],[-17,61],[-16,17],[-43,63],[-16,77],[-20,54],[-41,34],[-140,42],[-166,39],[-107,37],[-52,33],[-37,-7],[-35,11],[-65,41],[-35,50],[-50,20],[-29,24],[-13,35],[-37,-1],[-33,68],[12,16],[-22,32],[-19,119],[-1,71],[-27,5],[-7,48],[-10,55],[-7,78],[-39,43],[-30,17],[-37,31],[5,56],[-13,46],[7,78],[-23,50],[0,34]],[[4007,1672],[47,36],[81,4],[24,-19],[60,-8],[29,32],[69,20],[50,56],[36,6],[75,60],[30,61],[19,12],[37,-9],[30,11],[47,24],[24,-3],[62,18],[16,27],[37,8],[42,58],[45,23],[66,24],[33,15],[24,51],[29,38],[49,36],[19,41],[54,-4]],[[5141,2290],[23,0],[38,25],[73,21],[46,52],[71,20],[25,14],[63,-14],[55,-2],[132,-22],[22,4]],[[10634,5900],[-115,1]],[[10519,5901],[-26,1],[-116,1]],[[10377,5903],[-23,0],[-8,0],[-42,1],[-20,-1],[-13,0],[-108,0],[-65,0],[-217,-2],[-62,0],[-219,-1]],[[9600,5900],[3,245],[1,49],[3,145],[0,1],[0,142],[0,291],[0,72],[0,50],[0,175],[281,0],[22,0]],[[9910,7070],[271,-4],[283,-5],[281,-11]],[[10745,7050],[60,5],[57,2],[10,0],[0,-7],[0,-473],[-3,-177],[0,-117],[0,-33],[1,-35],[0,-5],[0,-24],[-3,-18],[0,-23],[0,-8],[4,-48],[-4,-193]],[[10867,5896],[-118,2],[-72,1],[-1,0],[-9,0],[-23,1],[-10,0]],[[9049,13],[-1,0],[-33,0],[-20,1],[-25,0],[-128,0],[-145,3],[-273,3],[-272,8]],[[8152,28],[-2,289],[-1,37],[0,26],[0,10],[0,7],[0,55],[0,11],[-1,144],[-1,38],[-2,252],[-1,40],[0,252]],[[8144,1189],[14,1],[261,2],[274,4],[91,1],[86,1],[5,0],[1,0],[91,0]],[[9515,0],[-273,7],[-193,6]],[[4502,7090],[-70,0],[-163,1],[-1,-1],[-282,2]],[[3986,7092],[-279,-1],[-281,-3],[-281,1]],[[3145,7089],[-280,2]],[[2865,7384],[1,326],[-2,254]],[[2864,7964],[235,4],[5,0],[19,0],[23,1],[1,0],[10,0],[22,0],[167,0],[11,0],[71,0],[139,-1],[278,-1]],[[3845,7967],[281,1],[47,0],[377,1]],[[4549,7089],[-47,1]],[[3986,6259],[2,245],[0,97],[-3,197],[1,294]],[[5960,5918],[1,-315]],[[4432,5319],[-195,2],[-219,-1],[0,29]],[[4018,5349],[0,116],[-1,149],[-3,301],[-28,-1],[-1,102],[0,85],[0,108],[1,50]],[[8152,5021],[-270,0],[-268,-1]],[[7614,5020],[0,291],[1,295],[-1,302]],[[8478,5900],[223,-1],[58,0],[224,0],[56,-1],[221,0]],[[9260,5898],[2,-293],[0,-292],[0,-289]],[[9262,5024],[-94,1],[-56,-1],[-60,0],[-69,0],[-282,0],[-93,-1]],[[8608,5023],[-93,-1],[-23,0],[-64,-1],[-2,0],[-273,0],[-1,0]],[[8430,2662],[-272,-3],[0,43],[-274,0],[-231,-3],[-45,0],[-277,0]],[[7331,2699],[-15,30],[7,42],[17,25],[29,28],[18,40],[43,64],[51,-4],[33,10],[33,13],[56,41],[5,6],[0,146],[1,243],[2,208],[-42,25],[-57,-7],[-40,14],[-32,7],[-48,-12],[-58,8],[-30,12],[-2,31],[35,48],[-12,15],[-37,-6],[-3,1],[-31,26],[-17,-8],[-32,40],[-3,49],[-22,37]],[[7180,3871],[2,0]],[[7182,3871],[30,1],[4,1],[25,1],[1,0],[23,1],[114,3],[93,-1],[139,-1]],[[7611,3876],[222,0],[46,0],[172,1],[103,-1],[276,2]],[[8430,3878],[274,2],[0,-40],[278,4]],[[8977,2671],[-92,-5],[-181,-3]],[[8704,2663],[-274,-1]],[[1697,10605],[-1,242],[2,47],[-299,1],[-1,0],[-284,2],[-281,7],[-2,-291],[-284,4],[-238,0],[-307,3]],[[2,10620],[19,72],[23,175],[65,42],[72,48],[59,67],[11,62],[18,43],[33,38],[-8,34],[-11,35],[10,23],[51,46],[13,69],[29,53],[32,37],[71,39],[2,19],[46,42],[39,0],[-2,27],[68,14],[83,39],[53,12],[5,55],[28,33],[36,21],[72,-29],[42,-9],[20,36],[25,32],[26,78],[50,36],[23,1],[42,-26],[70,-21],[24,8],[19,44],[0,48],[19,56],[52,38],[44,12],[1,279]],[[5685,3577],[279,1]],[[5964,3578],[276,3],[-1,-74],[0,-27],[0,-9],[1,-38],[0,-147],[0,-294],[0,-292],[-1,-196],[-1,-138],[0,-59],[-3,-42]],[[5141,2290],[0,114],[1,292],[1,294],[-6,1],[0,145]],[[5137,3136],[0,146],[-3,97],[-1,25],[-1,36],[-1,7],[-1,127],[276,0]],[[5406,3574],[279,3]],[[905,7986],[142,0],[141,0],[269,-15],[17,0],[1,0],[41,0],[1,0],[223,0]],[[1740,7971],[0,-231],[0,-60],[2,-294]],[[1324,6903],[-30,33],[-43,21],[-65,6],[-91,5],[-55,-26],[-46,34],[-52,19],[-37,-4],[-49,27],[-52,-26],[-21,5],[0,41],[-45,76],[-22,1],[-53,27],[-46,10],[-1,81],[-24,34],[-75,48],[-70,84],[-98,98],[-91,54],[-60,40],[-13,21],[5,44],[13,43],[27,35],[19,84],[18,30],[17,66],[-9,70]],[[275,7984],[253,3],[5,0],[1,0],[12,0],[6,0],[161,-1],[1,0],[191,0]],[[8480,7965],[0,73],[0,146],[1,12],[0,12],[0,49],[0,195],[-1,73],[0,23]],[[8480,8548],[282,1],[279,-2]],[[9041,8547],[0,-290],[283,0],[286,1],[-1,-292],[217,0],[354,-4]],[[10180,7962],[238,-3],[38,0],[282,-6],[-10,-289]],[[10728,7664],[19,-198],[4,-92],[0,-4]],[[10751,7370],[-4,0],[-8,0],[-11,-17],[0,-36],[22,-25],[-5,-242]],[[9910,7070],[2,296],[-170,1],[-10,0],[-32,0],[-12,0],[-80,1],[-283,2],[-36,0],[-26,0],[-45,0],[-28,0],[-150,1],[-279,2]],[[8761,7373],[-281,3]],[[8480,7376],[-1,296],[1,293]],[[8608,5023],[1,-199],[0,-98],[0,-62],[-70,0],[1,-218],[30,-25],[39,20],[1,-151],[-41,-2],[-117,10],[-21,-27],[-1,-98],[0,-50],[0,-245]],[[7611,3876],[1,297],[2,294],[2,258],[-2,295]],[[7182,3871],[-5,87],[-49,36],[-36,76],[-15,46],[-19,59],[-11,88],[-14,19],[-6,23],[-31,46],[-57,45],[-30,58],[-25,15],[-20,67],[-84,79],[-12,24],[2,49],[-37,53],[-9,57],[47,12],[26,23],[-12,47],[2,50],[-17,37],[-1,51],[-26,49],[-73,42],[16,52],[-45,81],[-8,68],[-8,1],[-1,79],[21,29],[28,7],[-13,37],[8,27],[30,18],[39,-15],[16,86],[-1,64],[67,-12],[20,-44],[24,17],[5,78],[31,-8],[16,27],[-8,24],[-35,-3],[-2,95],[27,6],[24,32],[-12,66]],[[9159,8846],[-120,1],[2,-300]],[[8480,8548],[-1,301],[-282,0],[-185,2]],[[8012,8851],[2,293],[1,293],[1,293],[-1,293]],[[8015,10023],[126,9],[160,-1],[197,-5],[97,1],[114,-3],[182,-10]],[[9743,9725],[-3,-342],[-1,-243],[97,-1],[-7,-294]],[[9829,8845],[-384,1],[-286,0]],[[11983,4349],[33,-68],[-32,-91],[14,-79],[2,-85],[-13,-37],[-78,-157],[-90,-172],[-21,-52],[-4,-67]],[[11794,3541],[-299,1],[-276,-3]],[[11219,3539],[-279,2]],[[10940,3541],[2,294],[-1,294],[-2,293],[0,36],[0,62],[-2,195]],[[10937,4715],[278,1],[1,0]],[[11216,4716],[276,1],[280,-1],[162,1]],[[11934,4717],[-11,-62],[17,-71],[-2,-70],[14,-88],[31,-77]],[[11161,2113],[-1,-50],[-1,-20],[-1,-132],[0,-77],[-1,-19],[0,-48],[-3,-120],[-2,-96],[0,-76],[-1,-291]],[[11151,1184],[-274,-2]],[[10877,1182],[-77,-3],[-197,0]],[[10345,2367],[90,-3],[183,-2],[273,-2],[273,-1],[2,0]],[[11166,2359],[-5,-225],[0,-16],[0,-5]],[[7729,10322],[278,-2],[2,-145],[6,-152]],[[8012,8851],[-153,1],[-325,1]],[[7534,8853],[-218,1],[-65,0],[-207,0],[-278,0],[-183,0]],[[6583,10320],[286,0]],[[6869,10320],[287,1]],[[7156,10321],[286,1],[287,0]],[[795,9157],[60,-1],[260,-2],[283,0],[295,1]],[[1693,9155],[-1,-296],[48,-1],[0,-180],[0,-121],[0,-1],[2,-293],[-2,-292]],[[275,7984],[12,47],[-25,57],[4,29],[32,22],[20,99],[-5,39],[-1,7],[-39,99],[-3,71],[9,30],[8,25],[-1,37],[-75,74],[-14,50],[25,45],[109,99],[13,28],[-14,22],[-26,97],[10,74],[-33,39],[6,66],[14,15]],[[301,9155],[246,2],[96,1],[152,-1]],[[10940,3541],[-242,-1],[-12,0],[-24,0],[-276,3]],[[9262,3846],[2,294],[-1,294],[0,293]],[[9263,4727],[279,-1],[279,-1]],[[9821,4725],[232,-3],[47,0],[279,-2],[-2,152]],[[10377,4872],[207,-2],[354,0],[-1,-155]],[[12277,6184],[93,0]],[[12370,6184],[-4,-70],[8,-46],[45,-112],[20,-66],[11,-36],[2,-63],[-28,-105],[-57,-77],[-44,-43],[-87,-42],[-44,-31],[-62,-60],[-20,-77],[3,-80],[-5,-21],[-7,-10],[-50,-83],[-34,-117],[-3,-34],[-5,-45],[-30,-57],[-19,-57],[-10,-61],[-16,-74]],[[11216,4716],[0,49],[0,55],[0,3],[-1,187]],[[11215,5010],[-2,294],[-2,294],[0,67],[0,1],[1,226]],[[11212,5892],[77,0],[200,-2],[82,1],[2,293],[281,-1]],[[11854,6183],[282,1],[141,0]],[[2994,5806],[86,30],[13,32],[30,5],[21,39],[1,295],[0,295],[1,295],[-1,292]],[[4018,5349],[-107,26],[-3,-34],[-29,-35],[-23,-47],[-71,26],[-34,39],[-39,-40],[-54,15],[-21,-28],[-54,-78],[-9,-52],[13,-36],[23,-25],[14,-52],[-182,-1],[-36,0],[-20,1]],[[3386,5028],[-24,48],[-36,20],[-29,15],[-40,-3],[-61,36],[-92,11],[-28,11]],[[3076,5166],[-28,42],[1,24],[27,27],[2,32],[41,51],[-7,14],[21,47],[-33,41],[0,55],[-23,58],[-16,24],[-56,31],[-37,20],[-17,33],[32,24],[0,44],[-18,17],[29,56]],[[4815,14570],[-33,-34],[-32,-57],[-48,-3],[-8,-49],[-16,-33],[-42,-27],[3,-32],[31,-80],[41,-80],[-20,-39],[-60,-68],[-9,1],[-53,-29],[-19,-104],[-38,-68],[-26,-18],[11,-47],[24,-6],[17,-7]],[[4544,12339],[-464,3],[-116,6],[-243,2],[-50,-3],[-284,0],[-245,3],[-48,-2]],[[3094,14364],[93,6],[43,31],[51,8],[73,25],[30,18],[38,41],[42,-12],[52,12],[71,80],[86,43],[60,8],[43,14],[55,78],[90,46],[-25,-50],[33,-35],[35,-14],[25,36],[65,20],[31,-16],[61,18],[7,62],[29,12],[30,-18],[38,13],[27,24],[13,47],[35,28],[56,21],[24,27],[25,53],[21,8],[92,-41],[26,6],[12,27],[64,35],[3,21],[37,16],[60,-18],[20,-30],[-2,-42],[35,-17],[22,23],[31,-14],[21,-44],[6,-39],[29,-3],[39,-51],[-9,-27],[-38,-8],[3,-21],[-42,-103],[-25,-76],[-20,-22]],[[4651,15158],[17,-15],[46,-5],[-12,-30],[-46,29],[-5,21]],[[4409,15127],[2,13],[74,15],[45,40],[16,-48],[-25,-19],[6,-65],[-78,-3],[-34,32],[-6,35]],[[5964,3578],[-3,293]],[[5961,3871],[188,2],[33,1],[57,-1],[1,0],[276,0],[272,-1],[271,-1],[89,0],[20,0],[2,0],[4,0],[6,0]],[[7331,2699],[17,-37],[-15,-40],[-17,-18],[-15,-46],[-44,-13],[-5,-15],[-65,-14],[-45,2],[-84,-112]],[[3903,3136],[31,0],[4,0],[183,1],[323,3],[324,-1],[139,-2],[49,5],[134,-8],[47,2]],[[4007,1672],[-43,184],[-10,83],[10,122],[-6,50],[6,54],[44,28],[30,45],[11,46],[33,60],[12,42],[22,18],[70,76],[39,51],[11,36],[-35,27],[3,32],[-33,69],[-50,73],[-31,26],[-38,28],[-102,55],[-48,11],[-29,56],[20,31],[19,68],[-6,59],[-12,34]],[[3894,3136],[4,0],[5,0]],[[6849,12052],[0,146],[-1,146],[1,292],[-1,192]],[[6848,12828],[287,-80],[579,-161],[137,-40],[731,-205],[204,-57],[368,-218]],[[8888,11466],[-171,0],[-130,13],[6,-144],[-143,15],[-49,3],[-99,-4],[1,137],[-144,-8],[-145,-2],[-288,1],[-48,0],[-431,-1],[-662,-4]],[[6582,11758],[267,0],[0,294]],[[9262,5024],[1,-297]],[[8152,28],[-273,4],[-273,7],[-273,6],[-273,1]],[[7058,1231],[273,1],[1,0],[272,-1],[126,-2],[23,-1],[29,1],[5,-1],[86,0],[1,0],[237,-1]],[[8111,1227],[33,1],[0,-39]],[[3894,3136],[-54,76],[-8,49],[28,38],[11,46],[-6,33],[-1,67],[-33,32],[-24,55],[-2,29],[26,53],[2,58],[-27,38],[-34,35],[-24,40],[11,108],[-18,25],[-3,73],[12,64],[-2,48],[25,53]],[[3773,4156],[248,0],[45,-2],[232,0],[278,1]],[[5961,4176],[0,-305]],[[10599,9419],[-2,-290],[1,0],[142,-5],[141,-8],[-7,-290],[163,-5],[-5,-292],[270,-7],[142,-4],[-3,-92],[141,0],[0,-9],[239,1],[47,0],[-6,-84]],[[11862,8334],[-117,-40],[-53,-61],[-19,-58],[10,-42],[27,-39],[-22,-57],[-25,-24],[-13,-37],[-1,-6],[-19,-31],[-76,-64],[-50,-101],[-5,-31],[-35,-83],[-49,-53],[-31,-35],[-33,-65],[-16,-73],[5,-71]],[[11340,7363],[-331,-2],[-116,-11],[-100,-4],[-8,0],[-7,24],[-1,0],[-26,0]],[[10180,7962],[2,298],[5,291],[6,292],[-175,0],[-189,2]],[[10322,9720],[283,-9],[-6,-292]],[[9600,5900],[-61,0],[-125,-2],[-154,0]],[[13277,9072],[11,24],[61,-3],[1,31],[-8,77],[33,114],[21,9],[51,-23],[24,145],[18,10],[18,-43],[68,5],[5,35],[29,-11],[23,12],[33,-9],[30,-57],[-32,-48],[-2,-89],[15,-36],[-6,-32],[-56,-14],[-12,44],[-31,21],[-26,-11],[8,-54],[-21,-7],[6,-42],[-17,-85],[1,-52],[38,-40],[-27,-34],[-24,0],[-13,38],[-33,18],[-24,-38],[20,-48],[35,-10],[15,-28],[9,-75],[-37,-49],[-53,52],[-24,-44],[38,-28],[2,-53],[-41,-7],[-1,36],[-29,16],[-31,-17],[-4,-81],[-34,-99],[-25,-9],[-31,-17],[-27,-64],[-33,-58],[3,-70],[34,-37],[-3,-31],[-68,-37],[-27,-34],[-3,-30],[25,-40],[4,-35],[-45,-24],[-28,-28],[-62,-34],[-19,-24],[-26,-95],[-52,-34],[-20,-39],[-1,-3],[-16,-36],[5,-34],[-14,-28],[-24,-45],[-19,-103],[-24,-58],[-49,-89]],[[12759,7356],[-52,0],[-282,-1],[-282,2],[-220,4]],[[11923,7361],[43,71],[-8,89],[35,46],[51,86],[49,55],[4,29],[34,34],[21,50],[63,84],[38,16],[35,34],[65,-7],[-22,-24],[-13,-47],[34,-11],[21,18],[4,37],[24,29],[25,-3],[34,18],[-33,39],[0,14],[34,-23],[7,-23],[35,-13],[16,31],[49,53],[33,21],[36,-11],[51,-75],[19,-62],[35,-25],[-5,60],[-4,73],[6,38],[-23,44],[-29,22],[2,24],[35,85],[35,66],[34,105],[35,53],[6,30],[24,11],[24,56],[1,20],[52,52],[34,-24],[7,92],[12,11],[33,31],[4,91],[22,61],[21,2],[-3,59],[13,67],[35,19],[4,-31],[58,-9],[9,-22],[25,-26],[18,8],[-5,73],[18,36],[32,7],[5,-3]],[[12753,9069],[2,48],[51,-1],[41,47],[11,-18],[-13,-123],[24,-42],[-114,67],[-2,22]],[[13728,9647],[20,37],[-18,58],[29,106],[29,8],[16,-68],[21,37],[50,2],[35,17],[37,-6],[20,-22],[52,18],[-1,51],[32,3],[26,-48],[-6,-23],[-37,1],[-39,-66],[-19,-56],[-33,-17],[-11,-52],[5,-47],[-20,-16],[-38,25],[-21,-8],[-20,-44],[-21,-20],[-21,43],[-48,19],[-19,24],[0,44]],[[12494,6701],[-25,-84],[-5,-45],[1,-24],[-22,-71],[-15,-68],[1,-63],[-37,-83],[0,-32],[-22,-47]],[[11854,6183],[2,294],[0,196],[0,98],[0,98],[2,196],[4,187]],[[11862,7252],[27,39],[6,37],[28,33]],[[12759,7356],[-8,-35],[-35,-82],[-28,-46],[-32,-32],[-42,-42],[-18,-56],[-16,-52],[-37,-71],[-13,-69],[-23,-68],[0,-40],[-13,-62]],[[10328,10883],[139,-1],[290,-8],[143,-5],[275,-17],[3,228]],[[11178,11080],[38,10],[5,20],[47,7],[60,13],[12,-9],[36,-90],[21,-27],[39,-5],[40,12],[68,-23],[47,5],[40,-34],[-5,-26],[21,-34],[42,-34],[58,-19],[7,-37],[50,-44],[14,-47],[-49,-22],[-47,-14],[-2,-52],[32,-29],[42,-74],[26,-7],[9,-64],[-25,-48],[-3,-52],[-20,-13],[-74,23],[-8,-32],[33,-25],[35,-46],[3,-85],[22,-44],[-14,-50],[-33,-71],[-50,-41],[-23,-12],[-39,-47],[2,-37],[25,-47],[-22,-35],[0,-37],[-27,-17],[-1,-32],[-31,-36],[9,-39],[24,17],[75,-38],[13,24],[43,-2],[55,6],[16,-12],[68,-1],[33,23],[48,71],[58,42],[45,-28],[36,-40],[5,-37],[21,-27],[-1,-38],[-32,-44],[1,-17],[-60,-78],[-25,-56],[-1,-41],[-27,-34],[0,-37],[-3,-28],[-29,-23],[-5,-80],[-36,-38],[15,-69],[65,-77],[54,-36],[12,-44],[40,-74],[78,-19],[82,-29],[-4,-32],[-34,-26],[-12,-29],[-27,-80],[2,-105],[-13,-126],[-55,-8],[-98,0],[-153,-29]],[[11219,3539],[-1,-296],[0,-50],[0,-25],[0,-15],[0,-9],[2,-195],[-52,0],[-2,-298],[0,-283],[0,-9]],[[9731,11866],[20,-12],[26,-77],[109,0],[29,96],[24,-6],[10,-31],[41,29],[27,1],[43,-1],[20,25],[53,-7],[28,-81],[25,-14],[65,28],[23,-32],[52,-19],[22,-30],[67,27],[18,28],[67,-48],[71,-58],[25,-2],[40,-28],[21,13],[87,26],[7,-42],[22,-10],[68,2],[14,17],[45,-20],[13,-20],[57,-12],[50,-54],[54,1],[19,-20],[-28,-54],[12,-55],[71,-30],[-15,-36],[-103,-108],[-33,-43],[16,-33],[49,-20],[12,-40],[21,-20],[83,-16]],[[11599,2045],[14,-58],[15,-38],[-73,-94],[-5,-76],[13,-44],[30,-49],[23,-20],[49,-68],[10,-75],[-5,-47],[14,-52],[-18,-73],[9,-67],[38,-104]],[[11713,1180],[-289,4],[-273,0]],[[11166,2359],[160,1],[81,0],[80,-1],[59,0],[16,-1]],[[11562,2358],[25,-75],[-46,-123],[6,-41],[52,-74]],[[301,9155],[15,31],[-14,40],[-6,64],[20,41],[-21,58],[4,41],[60,43],[53,59],[26,50],[-12,59],[17,33],[41,31],[10,35],[24,34],[28,16],[13,52],[-7,44],[7,51],[-14,44],[-57,28],[-15,19],[-43,83],[-56,72],[1,89],[-64,51],[-38,36],[-36,4],[-37,-17],[-50,-7],[-54,19],[-57,4],[-29,26],[-6,66],[9,51],[-13,61],[2,54]],[[11553,2375],[9,-17]],[[11794,3541],[-5,-62],[6,-109],[-29,-98],[-15,-24],[-39,-72],[-65,-98],[-22,-41],[-25,-70],[-4,-13],[-12,-60],[-15,-146],[-32,-92],[-20,-101],[4,-49],[30,-73],[2,-58]],[[10376,5412],[3,-327],[0,-72],[-2,-141]],[[10377,5903],[1,-31],[-1,-17],[0,-1],[0,-11],[0,-27],[0,-12],[0,-8],[0,-4],[0,-3],[0,-3],[-1,-53],[0,-222],[0,-16],[0,-83]],[[11212,5892],[-277,2],[-68,2]],[[11340,7363],[-32,-45],[-6,-62],[-12,-29],[14,-65],[-23,-11],[-6,-76],[-9,-38],[-37,-13],[-17,-24],[13,-31],[15,-4],[52,-60],[88,-38],[63,-2],[34,21],[28,41],[40,89],[-24,20],[52,40],[16,37],[25,10],[30,45],[37,-3],[38,29],[50,35],[64,5],[29,18]],[[6276,13300],[30,-17],[13,-86],[25,-34],[29,-67],[1,-25],[35,-42],[-4,-76],[443,-125]],[[5412,13786],[27,-10],[29,20],[45,9],[74,-52],[84,-43],[45,16],[58,-113],[60,29],[39,-3],[21,26],[22,17],[48,-46],[-7,-78],[71,9],[20,-12],[22,-39],[44,3],[34,17],[7,-28],[28,1],[34,-87],[19,-12],[13,-47],[23,-9],[4,-54]],[[11832,927],[-6,-15],[-8,-43],[9,-55],[-1,-50],[-21,-63],[-18,-34],[-25,-75]],[[11713,1180],[6,-25],[70,-96],[41,-38],[43,-44],[-37,-41],[-4,-9]],[[2829,9150],[-2,-294],[35,-1],[0,-25],[0,-280]],[[2862,8550],[1,-292],[0,-1],[1,-293]],[[3784,4351],[-22,29],[-32,126],[-18,59],[-62,69],[-22,71],[-41,31],[-22,48],[-23,18],[-21,68],[-49,60],[-42,29],[-44,69]],[[3773,4156],[5,65],[27,95],[-21,35]],[[2815,5385],[-23,24],[-60,21],[-7,56],[-25,34],[-27,9],[-43,5],[-53,43],[-51,23],[-48,34],[-27,47],[-107,78],[-12,51],[-29,63],[12,42],[-19,51],[1,34],[-66,61],[24,68],[-27,75],[-37,25],[-57,76],[-49,19],[-50,35],[-68,31],[-36,43],[-69,19]],[[3076,5166],[-55,7],[-34,25],[-23,42],[-86,52],[-35,38],[-28,55]]],"transform":{"scale":[0.0004321004546746243,0.00029682230602693944],"translate":[-92.888114,42.492023615741594]},"objects":{"cb_2019_55_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[5,6,7,8,9,10,11]],"type":"Polygon","properties":{"COUNTYFP":"141"}},{"arcs":[[12,13,-3,14,15,16]],"type":"Polygon","properties":{"COUNTYFP":"129"}},{"arcs":[[17,18,19,20,21,22,23,24]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[25,26,27,28,29,30,31,32,33,34]],"type":"Polygon","properties":{"COUNTYFP":"127"}},{"arcs":[[35,-6,-12,36,37,38,39,40,41,42]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[43,44,45,46,47,48,49,50,-16,51]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[52,53,54,55,56,57,58,59,60,61]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[62,63,64,65,-42,66,67]],"type":"Polygon","properties":{"COUNTYFP":"119"}},{"arcs":[[68,69,-64,70,71,72,73,74,75,76]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[77,78,79,80,81,82,83,84,85]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[86,-8,87,88,89,90]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[91,92,93,94,95,96,97,98,99]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[100,101,102,103,104,105,106,107,108]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-68,109,110,-45,-44,-52,111,-72,-71,-63]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125,126,-74,127,128,129,130,131]]],"type":"MultiPolygon","properties":{"COUNTYFP":"003"}},{"arcs":[[132,-27,133,134]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-98,135,-30,136,137,138,139,140]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[141,-79,-78,-86,142,143,144,145]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[-142,-146,146,147,148,-81,-80]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[149,150,151,152,153,154,155]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[156,157,158,-137,-29,159]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[160,161,162,-21,163,164,165,-40,-39,166]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[167,-161,-167,-38,-37,-11,168,-104,169,170]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[171,172,-90,173,174,175,176]],"type":"Polygon","properties":{"COUNTYFP":"137"}},{"arcs":[[177,178,179,180,181,182,-92,-100,183,184]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-17,-51,185,186,-4,-14,-13]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[187,188,-82,-149,189,190,191]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[192,193,-18,-25,194,195]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[196,197,198,199,200,201,-154,202,203,204]],"type":"Polygon","properties":{"COUNTYFP":"115"}},{"arcs":[[-172,-177,205,-182,206]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[-173,-207,-181,207,-9,-87,-91]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[208,-198,209,210,211,-61,212,213]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[214,215,216,217,218,219,220]],"type":"Polygon","properties":{"COUNTYFP":"117"}},{"arcs":[[221,222,223,-32,-31,-136,-97,224,225]],"type":"Polygon","properties":{"COUNTYFP":"133"}},{"arcs":[[226,-211,227,228,-65,-70,229,230,231]],"type":"Polygon","properties":{"COUNTYFP":"069"}},{"arcs":[[-88,-7,-36,-43,-66,-229,-228,-210,-197,-205]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[232,233,-193,-196,234,235]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[-218,236,-95,-94,237,238,239,240]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[241,242,-220,243,244,245,246]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[247,-162,-168,-171,248,249,250]],"type":"Polygon","properties":{"COUNTYFP":"121"}},{"arcs":[[[251,-129,252,-2,253]],[[254]],[[255]]],"type":"MultiPolygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-189,256,257,-179,258,-83]],"type":"Polygon","properties":{"COUNTYFP":"111"}},{"arcs":[[259,-190,-148,260,261]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[262,263,-55,264,-76,265]],"type":"Polygon","properties":{"COUNTYFP":"125"}},{"arcs":[[-238,-93,-183,-206,-176,266]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-158,267,-144,-143,-85,268,269]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-191,-260,-262,270,271,-101,-109,-108,-107,272,-257,-188,-192]],"type":"Polygon","properties":{"COUNTYFP":"123"}},{"arcs":[[-112,-15,-253,-128,-73]],"type":"Polygon","properties":{"COUNTYFP":"113"}},{"arcs":[[273,274,275,-201,-200,276,-213,-60,277]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[-203,-153,278,-174,-89,-204]],"type":"Polygon","properties":{"COUNTYFP":"135"}},{"arcs":[[[279,280,281]],[[282]],[[283]]],"type":"MultiPolygon","properties":{"COUNTYFP":"029"}},{"arcs":[[284,-242,-247,285,286,-281,287]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[-59,288,289,-274,-278]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[-217,290,-225,-96,-237]],"type":"Polygon","properties":{"COUNTYFP":"131"}},{"arcs":[[-58,-57,291,-289]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[292,293,-222,-226,294,295]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[-233,-236,296,-186,-50,-49]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[297,-295,-291,-216,298]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[299,-240,-239,-267,-175,-279,-152,300]],"type":"Polygon","properties":{"COUNTYFP":"139"}},{"arcs":[[-230,-69,-77,-265,-54,-53,-62,-212,-227,-232,-231]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[-246,301,-155,-202,-276,302,-286]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[303,-263,-266,-75,-127,-126,-132,-131,304]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[305,-134,-26,-35,-34,-33,-224,-223,-294,306]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[-234,-48,-47,307,308,-164,-20,-19,-194]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[-156,-302,-245,-244,-219,-241,-300,-301,-151,-150]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[-105,-169,-10,-208,-180,-258,-273,-106]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-308,-46,-111,-110,-67,-41,-166,-165,-309]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[309,-249,-170,-103,-102,-272,310]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[-159,-270,-269,-84,-259,-178,-185,-184,-99,-141,-140,-139,-138]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[311,-23,-22,-163,-248,-251,312]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[-209,-214,-277,-199]],"type":"Polygon","properties":{"COUNTYFP":"078"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/wv.topo.json b/app/assets/topojson/states/wv.topo.json new file mode 100755 index 00000000..9a90f10e --- /dev/null +++ b/app/assets/topojson/states/wv.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[3092,5051],[80,35],[72,20]],[[3244,5106],[37,-11],[7,-53],[39,-31],[-6,-89],[61,-28],[0,-97],[-15,-56],[45,-22],[10,-31],[50,-82],[26,-21],[3,-75],[10,-45],[-17,-36],[18,-80],[40,-57],[61,-32],[39,25],[58,-61],[-1,-20]],[[3709,4204],[-113,-138],[-131,-99],[-20,-15]],[[3445,3952],[-63,13],[-128,-30],[-70,39],[-109,19],[-276,26],[-15,-11],[-86,108],[-35,90]],[[2663,4206],[-37,99],[-21,79],[19,77],[22,149],[19,228],[-14,141],[0,88],[38,8],[21,40]],[[2710,5115],[12,18],[72,11],[46,42],[78,-62],[174,-73]],[[1069,2305],[253,87],[95,32],[184,25],[84,6]],[[1685,2455],[-70,-54],[-43,-47],[5,-26],[64,-32],[32,16],[60,-5],[25,-43],[97,-38],[109,-4],[71,-32],[64,-117],[-36,-75],[28,-68],[39,-15],[2,-45],[71,-57],[56,37],[73,30],[35,-43],[77,-61],[16,-26]],[[2460,1750],[-48,-9],[-25,-24],[-46,7],[-97,-36],[-108,-10],[-45,-43],[144,-145],[-75,-25],[-33,-40],[-21,18],[-35,-28],[-52,-15],[-25,-32]],[[1994,1368],[-28,-15],[-56,50],[-38,-18],[-48,14],[-77,-24],[-25,53],[-32,4],[-35,-32],[-51,-19],[-32,9],[-29,-62],[-5,-16],[-17,62],[-50,30],[-46,86],[-55,12],[-37,-16],[-14,95],[-13,30],[-58,30],[25,39],[13,65],[-15,42],[-40,10],[-23,16],[-3,49],[-30,35],[27,26],[49,17],[-34,76],[24,11],[-26,58],[-38,0],[-44,34],[1,33],[-42,80],[-39,37],[16,36]],[[788,3217],[-7,-74],[51,-67],[60,-13]],[[892,3063],[-3,-56],[-28,-14],[15,-108],[-33,-73],[68,-40],[-24,-50],[68,-67],[-1,-33],[27,-32],[53,-14],[-4,-23],[35,-35],[-30,-65],[-30,-13],[-61,-57],[-151,-171]],[[793,2212],[-232,-241],[28,-41],[-20,-19],[-34,38]],[[535,1949],[-19,25],[0,68],[-71,66],[-85,32],[-34,40],[73,78],[15,76],[-44,-2],[-13,45],[-60,0],[-27,81],[-59,131],[-80,61],[-4,49],[-84,74],[-39,21],[-4,96],[66,1],[29,77],[2,60],[-34,51],[13,34],[50,-1],[28,54],[-17,109],[23,39],[-11,44],[-51,50],[7,74],[-10,56],[7,87],[59,-38],[101,0],[51,17]],[[313,3604],[127,-103],[242,-197],[25,-9],[34,49],[43,17],[58,-30],[-11,-45],[-36,-26],[-7,-43]],[[7516,5974],[41,-7],[71,40],[37,33],[75,100],[34,30],[59,19],[23,46],[70,32],[59,-15],[19,71],[25,15]],[[8029,6338],[83,-18],[244,-29],[110,-66],[259,-157]],[[8725,6068],[-42,-76],[-10,-50],[-48,-74],[-33,-73],[-1,-35],[-2,-44],[-69,-96],[-18,-68],[-39,-78],[28,-50],[-9,-64],[85,-213],[-68,-89],[-26,-13],[11,-52],[-75,-125],[-52,-64]],[[8357,4804],[-99,83],[-172,144],[-177,144],[-66,58]],[[7843,5233],[-19,21]],[[7824,5254],[38,13],[27,41],[4,39],[44,103],[29,128],[-39,-9],[-47,37],[-50,12],[20,63],[37,33],[-1,86],[44,87],[35,26],[6,36],[-34,40],[-83,8],[-48,-43],[-41,13],[-25,-32],[-51,-13],[-67,8],[-12,-21],[-48,-16],[-47,48]],[[7515,5941],[1,33]],[[2366,3037],[-31,9],[-65,-16],[-21,27],[-64,-14],[-4,-51],[-30,-22],[-42,21],[-24,67],[-46,9],[-4,-49],[-52,-20],[-16,-26],[30,-58],[-46,22],[-30,68]],[[1921,3004],[56,55],[-6,37],[22,26],[-8,135],[-19,55],[-38,29],[-39,-27],[-93,4],[-70,32]],[[1726,3350],[36,218],[5,3],[42,25],[71,41],[35,21],[140,54],[128,63],[-26,95],[-43,70],[13,90],[-21,84],[40,52],[24,-9],[78,90]],[[2248,4247],[107,-151],[39,-36],[5,-27],[130,67],[134,106]],[[3445,3952],[-214,-165],[71,-297],[54,-324]],[[3356,3166],[0,-1]],[[3356,3165],[-199,-247],[-34,5],[-4,-41],[-119,-594]],[[3000,2288],[-40,-6],[-40,19],[-52,-16],[-49,57]],[[2819,2342],[-23,63],[16,55],[-44,99],[-37,22],[-28,-20],[-56,44],[-12,63],[39,40],[-39,33],[-30,51],[-55,-3],[-71,73],[-29,44],[-55,3],[-33,22],[4,106]],[[2167,874],[83,20],[98,65],[19,-30],[69,24],[32,-76],[150,-24],[25,-26],[77,-15],[16,21],[56,8],[72,-88],[125,21],[26,-53],[68,-29],[38,5],[45,-32]],[[3166,665],[-54,-116],[-67,-143]],[[3045,406],[-30,-57],[-29,6],[-28,-30],[-43,-111],[-49,2],[-56,-25],[-47,-43],[-45,20],[-23,-75],[-85,-36],[-39,-42],[-280,-15],[-20,35],[-69,46],[-18,35],[-37,-6],[-6,47],[-49,64],[-31,-2],[-37,27],[-31,6],[-39,-20],[-81,25],[-2,56],[-57,67],[-37,3],[-14,33],[-41,25],[-45,87],[17,45],[-9,64],[-41,91],[-44,2],[-13,29],[-45,14],[-10,47],[45,24],[83,71],[36,11]],[[1696,926],[44,44],[27,-8],[28,37],[41,4],[31,32]],[[1867,1035],[33,0],[45,-79],[13,-47],[54,10],[35,-26],[68,16],[52,-35]],[[8725,6068],[191,-115],[136,-43],[75,-31],[3,-1],[184,-71],[99,-10],[55,-39],[27,-23],[40,3],[39,-25],[51,65],[98,-26],[127,-128]],[[9850,5624],[-35,-52],[-42,-31],[-75,-86],[51,-41],[-72,-82],[-50,-77],[-45,53],[-62,-43],[-30,-62],[-51,-66],[-19,-1],[-66,-60],[-12,15],[9,78],[-52,-26],[-48,-79],[-69,-46],[-48,-87],[-31,-75],[-114,-202],[-291,254],[-22,-9],[-14,-62],[-32,-20],[-18,-77],[-66,-19],[-6,-72]],[[8540,4649],[-183,155]],[[3244,5106],[14,64],[37,38],[62,65],[164,178]],[[3521,5451],[18,30],[60,14],[37,-26],[28,-45],[65,-34],[99,-1]],[[3828,5389],[-6,-50],[59,-69],[21,-112],[-26,-28],[20,-151],[6,-78],[-23,-16],[0,-55],[-42,-30],[-53,-81],[34,-66],[43,-5],[53,-41],[30,-88]],[[3944,4519],[-111,-149]],[[3833,4370],[-124,-166]],[[5349,7259],[67,-11],[48,-65],[462,-4],[66,-92],[108,-85],[89,-84],[10,-46],[57,-17],[11,-43],[34,0],[68,-72],[69,-32]],[[6438,6708],[-172,-104],[-33,-48],[-149,-45],[-22,43],[-40,25],[-22,-23],[-178,-24]],[[5822,6532],[-185,115],[-45,7],[-478,106]],[[5114,6760],[4,31],[50,18],[9,52],[-31,33],[-41,145],[42,61],[4,40],[71,3],[-1,37],[37,29],[-23,27],[37,34],[77,-11]],[[4557,1240],[130,229],[31,60],[-7,51]],[[4711,1580],[20,-13],[353,-108],[104,7],[34,-21],[119,83],[33,-20],[0,-44],[56,-9],[33,13],[67,-23],[56,16]],[[5586,1461],[40,-103],[29,-33],[67,-25],[44,-30],[-46,-62],[-45,-34],[-166,-93],[39,-54],[-43,-29],[50,-27],[42,27],[22,-8],[-41,-76],[-151,-84],[-149,-90],[-42,-35],[-78,-45],[-45,36],[4,68],[-44,71],[-97,-24],[-80,-51],[-88,-69],[-197,-115],[-155,-67],[-33,66],[-53,29],[-72,60],[-52,12]],[[4246,676],[95,186],[57,110],[111,179],[48,89]],[[3828,5389],[84,5],[78,71],[69,28],[44,-3],[122,90],[134,76],[-5,30]],[[4354,5686],[202,-41]],[[4556,5645],[-1,-36],[28,-224],[42,-49],[14,-17],[209,-245]],[[4848,5074],[-34,-4],[-48,-38],[-71,8],[-75,-40],[-133,-97],[-123,-89],[-100,-73],[-197,-136],[-123,-86]],[[3198,5913],[-9,48],[25,67],[55,107],[44,32],[24,-7]],[[3337,6160],[1,0],[16,64],[26,54],[116,-5],[38,15],[91,12],[43,26],[48,21],[44,-23],[42,16],[11,41],[21,23],[55,2]],[[3889,6406],[108,-34],[33,31],[27,109],[81,-28],[50,-56],[-5,-82],[-18,-17],[20,-52],[-12,-40]],[[4173,6237],[-59,-64],[71,-140],[15,-31],[154,-316]],[[3521,5451],[-39,30],[-59,-7],[-10,19],[-102,-28],[-22,181],[-73,110],[-23,-9],[-58,38],[18,74],[45,32],[0,22]],[[8029,6338],[43,33],[10,49],[43,26],[41,-3],[41,75],[29,-10],[55,20],[-11,27],[40,40],[51,9],[-2,36],[64,65],[45,60],[67,0],[20,35],[47,-53],[168,-75],[6,43],[49,94],[40,0],[57,79],[6,37],[38,-8],[86,134],[41,-20],[-11,84],[72,54],[-14,61],[25,32],[44,-4],[-12,-45],[35,-9],[35,22],[35,-36],[-82,-16],[-24,-22],[25,-41],[51,-24],[29,21],[22,-67],[72,-32],[12,-22],[77,-32]],[[9494,6955],[-79,-97],[-31,-15],[-50,-82],[-77,-77],[-32,6],[-33,-55],[-55,-132],[-104,-156],[-88,-17],[-83,-97],[-10,-42],[-78,-54],[-49,-69]],[[1867,1035],[0,39],[66,73],[-4,31],[40,18],[42,86],[-16,32],[-1,54]],[[2460,1750],[58,-37],[15,-39],[32,13],[77,64],[40,7]],[[2682,1758],[51,0],[39,-31],[30,15],[30,-38],[14,-35],[42,-37],[253,-452],[27,-62],[-14,-42],[29,-48],[46,-17],[53,-40],[24,17],[73,-67]],[[3379,921],[-87,-35],[-48,-79],[-39,-9],[-30,-30],[5,-28],[42,-48],[12,-41],[-24,-20],[-44,34]],[[4891,6155],[10,-29],[49,-30],[-7,-78],[85,-25],[-19,-51],[-55,-49],[-83,-35]],[[4871,5858],[-21,-34],[-31,-7],[-46,-47],[-47,11],[-18,-35],[-40,-24],[0,-28],[-48,-65],[-64,16]],[[4173,6237],[142,146],[30,20],[199,136],[44,100],[58,-7],[76,18],[24,30],[71,22]],[[4817,6702],[90,1],[87,-64]],[[4994,6639],[13,-56],[-21,-20],[34,-139],[-26,-15],[-63,-98],[-34,-28],[-45,-71],[63,-11],[-24,-46]],[[3972,7112],[70,57]],[[4042,7169],[27,-22],[111,-58],[81,65],[16,-9],[4,-45],[39,-22],[-6,-31],[48,-12],[48,-32],[12,-43],[104,-72],[13,-64],[24,2],[22,-49],[55,-5],[50,11],[10,-39],[36,17],[81,-59]],[[3889,6406],[-17,178],[-19,92],[-6,61],[-70,41],[-5,-37],[-53,12],[-39,-30],[-27,19],[-35,-18]],[[3618,6724],[50,88],[72,86],[62,61],[121,103],[49,50]],[[3356,3165],[65,-44],[29,2],[-5,-57],[37,9],[48,-22],[60,28],[55,-67],[85,-50],[9,39],[48,12],[8,30],[67,-32],[28,26],[58,4],[34,-23],[59,-63],[-13,-77],[27,-43],[26,-8],[63,-84],[54,-27],[-9,-30]],[[4189,2688],[-6,-62],[-22,-9],[66,-63],[62,-17],[50,36],[16,-53],[-41,-11],[4,-35],[66,-14],[34,-62],[0,-49],[37,-15],[-96,-106],[148,-250],[-137,11]],[[4370,1989],[-331,-148]],[[4039,1841],[-46,36],[-32,5],[-119,-10],[-64,13],[-17,63],[-74,-13],[45,28],[1,47],[-280,20],[-249,20],[2,50],[-17,81],[9,35],[-57,20],[-16,45],[-45,29],[-80,-22]],[[10693,7040],[37,90],[55,0],[49,-35],[37,52],[48,-4],[58,53],[31,11]],[[11008,7207],[26,-47],[83,-13],[35,27],[24,-48],[31,-16],[31,61],[89,-31],[8,55],[113,-29],[19,-45],[-8,-59],[-21,-20],[-87,-3],[-19,-34],[53,-51],[-2,-55],[55,6],[-7,-37],[46,-35]],[[11477,6833],[-52,-137],[-90,-93],[-109,-107],[-29,-1],[-36,-41],[-63,-101],[-9,-40],[-71,-78],[-36,-86]],[[10982,6149],[-179,141],[-119,93],[-168,143]],[[10516,6526],[68,150],[26,115],[40,132],[43,117]],[[1564,3206],[162,144]],[[1921,3004],[-19,-10],[-25,-94],[-48,7],[-35,-30],[-8,-73],[-101,23],[-51,-95],[19,-28],[-44,-57],[-18,-98],[2,-26],[89,-42],[67,-13],[-64,-13]],[[1069,2305],[-276,-93]],[[892,3063],[12,51],[35,29],[3,33],[82,60],[3,43],[-29,27],[55,0],[4,38],[121,58],[72,23],[42,50],[39,2],[38,25],[42,-6]],[[1411,3496],[10,-111],[-14,-140],[77,-55],[59,-8],[21,24]],[[5289,5752],[-81,22],[-30,20],[-96,11],[-25,-10],[-67,17],[-6,21],[-91,30],[-22,-5]],[[4994,6639],[59,15],[17,73],[44,33]],[[5822,6532],[-16,-24],[4,-139],[0,-178],[5,-17],[30,-18],[51,-74]],[[5896,6082],[-138,-211],[-7,-175]],[[5751,5696],[-32,1],[-20,-37],[-122,10]],[[5577,5670],[-288,82]],[[4989,7510],[65,0]],[[5054,7510],[234,-1]],[[5288,7509],[35,-23],[0,-39],[27,-59],[-18,-41],[31,-67],[-14,-21]],[[4042,7169],[63,35],[60,-6],[28,12],[20,45],[13,50],[0,77],[20,51],[58,24],[1,51]],[[4305,7508],[684,2]],[[5751,5696],[42,-46],[24,4],[75,-33],[39,-48],[56,-100],[145,0],[20,-47],[15,-140],[-27,-51],[-50,-32]],[[6090,5203],[-19,-110],[-39,-39],[18,-116],[8,-53],[-66,-282],[-263,-7],[-36,-49],[-68,-96]],[[5625,4451],[-60,-31],[-62,49],[-6,57],[-47,31],[-95,-9]],[[5355,4548],[-39,122],[54,317],[46,59],[13,36],[33,26],[12,70],[52,50],[-31,122],[39,50],[17,80],[14,63],[12,127]],[[2819,2342],[-121,3],[-45,-51],[-31,-1],[-39,-49],[2,-25],[-40,-54],[43,-100],[-33,-80],[16,-78],[33,-40],[64,-20],[-2,-63],[16,-26]],[[7525,6713],[-3,-327],[-8,-192],[4,-45],[-2,-175]],[[7515,5941],[-49,63],[-265,102],[-163,63],[-292,-122]],[[6746,6047],[-22,30],[-74,18],[-6,69],[-51,75],[-51,14]],[[6542,6253],[1,276],[1,129]],[[6544,6658],[-12,138],[92,148],[27,43],[144,232],[9,100],[52,118],[0,71]],[[6856,7508],[245,1],[439,0],[-5,-564],[-8,0],[-2,-232]],[[5080,3022],[172,154]],[[5252,3176],[182,-123]],[[5434,3053],[-8,-333],[235,-201],[117,-14],[42,3],[69,-21],[148,59],[351,24]],[[6388,2570],[-101,-212],[-110,-105],[-62,-45],[-53,-72],[-15,2],[-93,-108],[-48,-22],[-51,-85],[-7,-27],[-77,-83],[-26,-52],[-2,-42],[-77,-119],[26,-25],[-84,-100],[-22,-14]],[[4711,1580],[-12,93],[-139,147],[-12,22],[-47,49],[-131,98]],[[4189,2688],[316,-51],[90,-21],[68,51],[304,259],[113,96]],[[4714,3920],[27,29]],[[4741,3949],[94,99],[245,256],[84,192],[38,87]],[[5202,4583],[28,-36],[45,11],[80,-10]],[[5625,4451],[168,-372],[61,-133],[-147,-409]],[[5707,3537],[-92,-70],[-110,-87],[-52,29],[-19,-356]],[[5252,3176],[-180,119],[-232,153],[-39,-12],[-24,64],[-62,109],[50,35],[-23,63],[-67,173],[39,40]],[[4039,1841],[45,-28],[11,-49],[49,-37],[16,-42],[-18,-30],[-38,-15],[-13,-29],[59,-38],[20,-83],[24,-19],[-18,-47],[-44,58],[-98,50],[-70,-2],[-30,-87],[-78,-48],[-14,-33],[-90,-50],[-18,-26],[21,-65],[-73,-67]],[[3682,1154],[-59,-1],[-38,28],[-151,-66],[-3,-107],[-30,-67],[-22,-20]],[[313,3604],[115,41],[56,15],[74,29],[36,-15],[118,20],[39,25],[19,39],[28,101],[4,80],[17,46],[10,120],[41,44],[67,14],[65,-20]],[[1002,4143],[390,-349]],[[1392,3794],[8,-143],[11,-155]],[[4475,8145],[9,74],[45,46],[-6,92],[21,83]],[[4544,8440],[252,-25],[259,-26]],[[5055,8389],[-1,-534],[0,-345]],[[4305,7508],[-30,51],[-46,46],[6,65],[88,70],[9,39],[-11,89],[25,34],[55,32],[-2,57],[-35,61],[13,46],[49,-5],[53,-24],[11,23],[-15,53]],[[5707,3537],[307,255],[211,-44],[393,273],[17,98],[34,75],[-10,63],[39,24],[47,126],[3,34],[37,73],[40,71],[98,-83],[-8,-97],[69,18],[29,-58],[42,-5],[4,52],[49,22],[74,-31],[0,-44]],[[7182,4359],[19,-20],[-37,-63],[36,-40],[-18,-45],[-38,-15],[-15,-33]],[[7129,4143],[-33,-63],[-24,-125],[26,-39],[-43,-14],[-34,-49],[-11,-57],[26,-74],[-4,-56],[-40,-47],[-47,-86],[-13,-40],[15,-29],[-44,-29],[-49,7],[-20,-62],[-56,-35],[-33,-56],[35,-44],[19,-51],[-80,-74],[-60,-25],[-124,-140],[-55,-38],[12,-51],[-30,-70],[-38,-24],[14,-60],[30,-13],[-67,-80],[-13,-49]],[[5202,4583],[15,29],[-13,78],[-69,75],[28,86],[-41,48],[-79,52],[-47,-27],[-34,41],[-69,-16],[-10,64],[-35,61]],[[1696,926],[-38,27],[-54,67],[-9,8],[-89,-38],[-51,12],[-85,-2],[-3,27],[-22,29],[-60,-9],[-11,22],[-68,-22],[-7,33],[28,37],[-19,51],[-58,-2],[-59,103],[19,11],[-22,54],[-20,-15],[12,-47],[-65,-9],[-30,83],[-34,25],[-40,-14],[-60,57],[-29,-16],[-6,91],[-25,20],[-26,75],[-38,31],[31,40],[-31,25],[-15,62],[-56,27],[-35,38],[-16,29],[-40,-14],[6,51],[-36,76]],[[8540,4649],[-36,-41],[-48,-135],[20,-47],[-21,-81],[-65,2],[-26,-20],[-58,-126],[-19,-83],[-101,-175],[-11,-94],[-36,-49],[-34,-20],[-95,-136],[-78,-37],[-138,46],[-253,89],[-107,229],[-39,52],[-266,120]],[[7182,4359],[72,-4],[-2,74],[87,88],[13,46],[47,42],[21,49],[41,52],[5,59],[-46,41],[9,48],[-37,32],[62,78],[-15,57],[18,23],[69,-23],[87,39],[-22,91],[29,8],[66,-28],[114,5],[43,97]],[[5288,7509],[823,1],[381,-2],[364,0]],[[6544,6658],[-106,50]],[[2548,6158],[26,188],[41,66],[93,60],[72,81],[41,27],[65,-12],[55,-61],[23,-87],[27,-36],[32,-5]],[[3023,6379],[18,-64],[90,0],[8,-65],[132,-9],[17,-42],[49,-39]],[[3198,5913],[-247,-142],[-56,-7],[-55,-44],[-84,-72],[-168,-141],[-66,-69]],[[2522,5438],[-214,110],[-182,96]],[[2126,5644],[11,34],[-4,124],[-28,86],[49,57],[27,60],[62,17],[17,17],[-12,87],[43,50],[53,11],[83,-11],[30,7],[91,-25]],[[7053,5402],[93,-26],[318,-90],[76,8],[133,-18],[29,6],[76,-24],[46,-4]],[[6090,5203],[225,37],[225,41],[28,103],[28,79],[23,114],[32,66],[54,29],[5,33]],[[6710,5705],[61,-23],[21,-27],[36,-67],[-4,-89],[-20,-28],[249,-69]],[[6171,6093],[67,6],[109,45],[38,18],[58,84],[26,-25],[57,43],[16,-11]],[[6746,6047],[-16,-34],[-38,-188],[-10,-85],[28,-35]],[[5896,6082],[39,-12],[236,23]],[[2248,4247],[-121,169],[-62,-7]],[[2065,4409],[-97,101],[53,55],[-94,137],[-172,251],[-18,37],[5,8]],[[1742,4998],[46,-13],[72,48],[25,33],[10,82],[30,44],[42,8],[68,-60],[46,-10],[20,21],[-57,104],[42,151],[-21,32],[-72,64],[-20,36],[9,72],[77,-16],[67,50]],[[2522,5438],[117,-61],[-12,-47],[18,-38],[-47,-29],[19,-50],[93,-98]],[[3682,1154],[561,-474]],[[4243,680],[-8,-53],[-48,-83],[80,-111],[-46,-24],[-76,-71],[-113,-57],[-77,-9],[2,28],[-175,-41],[-100,-17],[-172,-59],[-139,-83],[-226,192],[-100,114]],[[5055,9886],[3,-284],[-1,-71]],[[5057,9531],[-136,0],[-130,-14]],[[4791,9517],[43,27],[1,101],[31,61],[-2,72],[-45,58],[-19,88],[-63,93],[-35,33],[11,53],[84,85],[68,16],[52,-33],[39,28],[99,45],[0,-358]],[[4246,676],[-1,1],[-2,3]],[[9494,6955],[82,13],[73,-23],[63,-37],[103,16],[46,-18],[83,-6]],[[9944,6900],[44,-30],[155,-85],[91,-36]],[[10234,6749],[1,-115],[-31,-45],[39,-70],[-56,-88],[62,-18],[-46,-106],[-77,-98],[-65,-82],[47,-39],[-14,-39],[-79,-99],[47,-61],[37,-30],[-57,-44],[-28,-61],[-49,-56],[-44,-11],[-71,-63]],[[3023,6379],[56,11],[120,86],[64,34],[68,13],[59,-7],[42,83],[69,70],[78,14],[39,41]],[[5057,9531],[-2,-314],[0,-401]],[[5055,8816],[-181,51],[-158,5],[-49,21]],[[4667,8893],[33,42],[15,90],[41,64],[52,31],[28,107],[26,60],[-31,89],[6,33],[7,33],[-53,75]],[[1392,3794],[-20,362],[-2,36],[162,91],[93,54],[440,72]],[[3356,3166],[317,185],[135,80],[156,92],[156,93],[223,190],[-18,47],[-94,17],[-40,21]],[[4191,3891],[229,151],[101,-92],[14,17],[142,1],[64,-19]],[[1002,4143],[72,10],[27,26],[12,66],[-34,127],[-9,56],[19,64],[-39,146],[-43,32],[-12,56],[11,25],[62,58],[71,28],[34,39],[19,82],[-13,52],[3,46],[34,36],[41,67],[31,77],[23,52],[90,55],[37,93],[69,12],[47,-51],[24,-59],[62,10],[43,-25],[78,-149],[1,-36],[-32,-33],[-31,-39],[-1,-29],[44,-39]],[[11477,6833],[72,-14],[33,28],[24,-29],[-57,-22],[22,-103],[-35,-19],[19,-31],[71,-6],[24,-16],[40,-105],[-40,-29],[21,-39],[-4,-35],[-32,-24],[4,-29],[86,-51],[-32,-18],[-29,-52],[-58,-173],[-53,-80],[-27,-107],[-42,-79],[-13,-46],[-78,63],[-349,282],[-62,50]],[[4191,3891],[-29,91],[-37,16],[-9,60],[-59,63],[-80,79],[-17,47],[-127,123]],[[10617,7425],[36,8],[151,-40],[72,-40],[99,-98],[33,-48]],[[10516,6526],[-109,89],[-173,134]],[[9944,6900],[43,63],[79,35],[-22,28],[-66,46],[-7,39],[34,11],[83,-38],[26,35],[-56,39],[-31,45],[32,17],[101,-47],[-12,41],[49,12],[25,43],[203,-65],[30,64],[73,67],[-9,40],[58,2],[40,48]],[[4583,8622],[24,49],[-7,81],[12,50],[55,91]],[[5055,8816],[0,-427]],[[4544,8440],[6,43],[-19,83],[52,56]]],"transform":{"scale":[0.00041939582089552265,0.0003355445138617732],"translate":[-82.639054,37.201482999999996]},"objects":{"cb_2019_54_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"087"}},{"arcs":[[6,7,8,9]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[10,11,12,13,14]],"type":"Polygon","properties":{"COUNTYFP":"099"}},{"arcs":[[15,16,17,18,19,20,21]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[22,23,24,25,-4,26,27,28,29,30]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[31,32,33,34,35]],"type":"Polygon","properties":{"COUNTYFP":"047"}},{"arcs":[[-18,36,37,38]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[39,40,41,42,43,-2]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[44,45,46,47]],"type":"Polygon","properties":{"COUNTYFP":"049"}},{"arcs":[[48,49,50,51]],"type":"Polygon","properties":{"COUNTYFP":"063"}},{"arcs":[[52,53,54,55,-42]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[56,57,58,59,-53,-41,60]],"type":"Polygon","properties":{"COUNTYFP":"085"}},{"arcs":[[61,62,-17]],"type":"Polygon","properties":{"COUNTYFP":"057"}},{"arcs":[[-32,-36,63,-9,64,65,66]],"type":"Polygon","properties":{"COUNTYFP":"109"}},{"arcs":[[67,68,-54,-60,69,70,71]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[72,73,-70,-59,74,75]],"type":"Polygon","properties":{"COUNTYFP":"095"}},{"arcs":[[-29,76,77,78,79]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[80,81,82,83,84]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[85,-24,86,-7,87,-12,88,89]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[90,-68,-72,91,-47,92,93,94,95]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[96,97,98,-48,-92,-71,-74,99,100]],"type":"Polygon","properties":{"COUNTYFP":"103"}},{"arcs":[[-95,101,102,103,104]],"type":"Polygon","properties":{"COUNTYFP":"097"}},{"arcs":[[-87,-23,-31,105,-65,-8]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[106,-22,107,108,109,110,111]],"type":"Polygon","properties":{"COUNTYFP":"077"}},{"arcs":[[112,113,114,115,-50,116,-78,117]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[118,119,120,-104,121,122,-114,123]],"type":"Polygon","properties":{"COUNTYFP":"101"}},{"arcs":[[-106,-30,-80,124,125,-66]],"type":"Polygon","properties":{"COUNTYFP":"081"}},{"arcs":[[-89,-11,-15,126,127,128]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[129,130,131,-97,-101,132]],"type":"Polygon","properties":{"COUNTYFP":"051"}},{"arcs":[[-123,133,134,135,-115]],"type":"Polygon","properties":{"COUNTYFP":"075"}},{"arcs":[[-105,-121,136,-55,-69,-91,-96]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-10,-64,-35,137,-13,-88]],"type":"Polygon","properties":{"COUNTYFP":"059"}},{"arcs":[[-19,-39,138,-135,139]],"type":"Polygon","properties":{"COUNTYFP":"071"}},{"arcs":[[140,-111,141,-45,-99]],"type":"Polygon","properties":{"COUNTYFP":"061"}},{"arcs":[[142,143,-57,144,145,146]],"type":"Polygon","properties":{"COUNTYFP":"107"}},{"arcs":[[147,-20,-140,-134,-122,-103,148,149]],"type":"Polygon","properties":{"COUNTYFP":"083"}},{"arcs":[[150,-109,151,-149,-102,-94,152]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[-5,-26,153,154,155,-146,156]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[-33,-67,-126,157,158]],"type":"Polygon","properties":{"COUNTYFP":"055"}},{"arcs":[[159,160,161]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-125,-79,-117,-49,-52,162,-158]],"type":"Polygon","properties":{"COUNTYFP":"089"}},{"arcs":[[-37,-63,163,164,165]],"type":"Polygon","properties":{"COUNTYFP":"027"}},{"arcs":[[-75,-58,-144,166]],"type":"Polygon","properties":{"COUNTYFP":"073"}},{"arcs":[[-161,167,168,169]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-108,-21,-148,-150,-152]],"type":"Polygon","properties":{"COUNTYFP":"093"}},{"arcs":[[-25,-86,-90,-129,170,-154]],"type":"Polygon","properties":{"COUNTYFP":"079"}},{"arcs":[[-118,-77,-28,171,172,-119,-124,-113]],"type":"Polygon","properties":{"COUNTYFP":"067"}},{"arcs":[[-46,-142,-110,-151,-153,-93]],"type":"Polygon","properties":{"COUNTYFP":"091"}},{"arcs":[[-171,-128,173,-155]],"type":"Polygon","properties":{"COUNTYFP":"053"}},{"arcs":[[-83,174]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-145,-61,-40,-1,-6,-157]],"type":"Polygon","properties":{"COUNTYFP":"105"}},{"arcs":[[-56,-137,-120,-173,175,-43]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-3,-44,-176,-172,-27]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[176,-81,-85,177,-165,178]],"type":"Polygon","properties":{"COUNTYFP":"065"}},{"arcs":[[179,-169,180,-131,181]],"type":"Polygon","properties":{"COUNTYFP":"069"}}]}}} \ No newline at end of file diff --git a/app/assets/topojson/states/wy.topo.json b/app/assets/topojson/states/wy.topo.json new file mode 100755 index 00000000..a82d90f9 --- /dev/null +++ b/app/assets/topojson/states/wy.topo.json @@ -0,0 +1 @@ +{"type":"Topology","arcs":[[[7354,1678],[1,-303],[0,-125],[-9,0],[1,-143]],[[7347,1107],[1,-431],[-4,-6],[0,-108],[2,-359],[3,-197]],[[7349,6],[-570,-2],[-428,0],[-331,3]],[[6020,7],[-2,403],[0,239],[0,21],[146,-3],[178,3],[-4,226],[-2,503],[0,264],[-2,163],[1,580]],[[6335,2406],[161,-2],[316,-2],[181,0],[0,-41],[-24,0],[0,-48],[-50,0],[1,-122],[18,-12],[46,0],[59,-13],[180,1],[-4,48],[26,0],[-4,96],[12,47],[25,44],[62,1]],[[7340,2403],[2,-118],[1,-233],[0,-222],[10,0],[1,-152]],[[7603,6699],[567,-2],[468,-1],[261,-1],[2,-205],[1,-391],[0,-541],[1,-230]],[[8903,5328],[-517,1],[-786,-8]],[[7600,5321],[-7,68],[1,115],[0,237],[2,168],[-4,24],[0,240],[0,170],[11,-1],[0,357]],[[2136,3259],[36,-39],[19,-41],[8,-44],[13,-22],[41,-15],[18,-38],[27,-30],[43,-11],[-30,-38],[26,-28],[28,14],[20,-29],[38,-13],[2,-27],[17,-16],[0,-39],[78,-2],[5,-435],[32,1],[0,-285]],[[2557,2122],[-576,0],[-322,4],[-386,8]],[[1273,2134],[-173,0],[-21,10],[-278,-1],[0,7],[-149,-4],[0,15],[-2,271],[-59,0],[0,16],[0,421],[-43,0],[0,116],[46,0],[-1,106],[-1,330],[1,144],[12,0],[0,182]],[[605,3747],[1,95],[298,-1],[-1,145],[365,0],[0,145],[8,0]],[[1276,4131],[377,-2],[1,-163],[27,0],[32,14],[16,-14],[-4,-59],[33,-34],[-2,-23],[-24,-53],[20,-27],[9,-33],[-8,-23],[21,-21],[5,-44],[32,-45],[13,-40],[37,-17],[50,-79],[-10,-34],[9,-59],[64,-3],[13,-26],[41,-12],[2,-19],[60,-35],[15,-26],[31,5]],[[1274,5040],[25,-9],[18,-39],[22,-21],[10,-29],[45,25],[46,-31],[51,5],[31,-10],[-19,-25],[30,-11],[2,-35],[40,-33],[-16,-9],[4,-33],[-28,-4],[-11,-41],[84,-42],[74,50],[84,21],[-8,37],[25,31],[-2,34],[16,27],[36,7],[16,36],[17,-17],[26,27],[31,11],[14,-20],[36,-18],[20,17],[19,-28],[39,-3],[10,-27],[26,-8],[19,-42],[24,-2],[17,-67],[39,-1],[18,-14],[11,-35]],[[2215,4714],[37,-17],[28,-48],[36,-20],[50,-87],[29,-18],[0,-133],[302,-1],[0,-25],[152,1],[0,-49],[152,0],[0,-73],[151,1],[0,-49],[152,0],[0,-49],[151,0],[0,-24],[231,0],[0,18],[714,3],[0,49]],[[4400,4193],[77,0]],[[4477,4193],[-1,-48],[23,0],[2,-435],[-1,-142],[18,0],[0,-424],[1,-156],[-53,0],[2,-580],[24,0]],[[4492,2408],[0,-289]],[[4492,2119],[-143,0],[-623,1],[-271,2],[-250,-1],[-208,1],[-440,0]],[[1276,4131],[0,585],[-3,0],[1,324]],[[8905,1842],[0,-480],[1,-409]],[[8906,953],[-294,0],[-276,0],[-194,1],[0,147]],[[8142,1101],[-1,487],[-1,410],[0,93],[-1,217],[0,393]],[[8139,2701],[55,-1],[231,2],[225,3],[255,0]],[[8905,2705],[0,-587],[0,-276]],[[6414,5256],[2,-178],[1,-350],[-11,0],[-1,-329],[2,-217]],[[6407,4182],[-77,-1]],[[6330,4181],[-469,-3],[-315,-1],[-530,1],[0,13]],[[5016,4191],[-4,93],[0,435],[-17,0],[-2,577],[-23,8]],[[4970,5304],[2,265],[-35,18],[-15,40],[20,58],[-13,16],[-26,-6],[-3,78],[-52,-13],[-73,35],[2,62],[-36,46],[-10,28],[-24,3],[-20,29]],[[4687,5963],[93,-1],[217,-1],[164,1],[424,-4],[153,0],[145,0],[0,8],[318,1],[215,3]],[[6416,5970],[-6,-72],[-2,-362],[0,-225],[6,-55]],[[111,3882],[-98,0]],[[13,3882],[-2,574],[-2,571],[-2,33],[0,188],[-1,370],[1,202],[-4,7],[-2,314]],[[1,6141],[491,0],[0,-140],[372,1],[1,-25],[18,-24],[34,-10],[31,11],[25,-22],[-11,-19],[28,-24],[-7,-61],[-12,-14],[-4,-71],[21,-24],[29,-15],[2,-26],[31,-25],[4,-54],[30,-24],[-8,-21],[23,-25],[20,7],[31,-24],[3,-40],[15,-29],[22,-84],[17,-22],[-28,-44],[10,-45],[84,0],[1,-208]],[[605,3747],[-299,0],[0,132],[-145,-1],[-50,4]],[[5282,6693],[421,-2],[390,-2],[304,-1]],[[6397,6688],[2,-208],[12,-19],[-1,-252],[5,-23],[1,-216]],[[4687,5963],[-5,27],[-25,33],[-26,5],[-15,21],[-23,-9],[-33,11],[-43,46],[-32,-9],[-26,54],[-1,20],[-31,7],[-28,20],[-30,7],[-66,-32],[-34,42],[-38,19],[-17,-4],[-17,95],[-31,2],[-43,29],[-19,23],[15,24],[-21,13],[1,33],[-42,48],[14,68],[-36,32],[7,52],[-6,35],[-38,25]],[[3998,6700],[363,0],[181,2],[453,-3],[54,-5],[233,-1]],[[5268,2406],[366,-5],[698,5]],[[6332,2406],[3,0]],[[6020,7],[-168,5],[-514,1],[-182,2],[-384,-1],[-411,-2],[-372,0]],[[3989,12],[1,663],[-16,0],[0,437],[228,-2],[307,-2],[-1,139],[6,0],[2,582],[-23,0],[-1,290]],[[4492,2408],[776,-2]],[[4970,5304],[-291,3],[-392,-2],[-48,2],[-512,1],[-542,0]],[[3185,5308],[-30,0],[1,379],[0,112],[0,99],[-25,0],[1,212],[0,374],[-36,0],[-1,216]],[[3095,6700],[135,-1],[310,1],[458,0]],[[3989,12],[-163,0],[-171,-2],[-152,-1],[-421,0],[-321,0],[-467,1],[-400,-4],[-369,-1],[-245,0]],[[1280,5],[-1,387],[0,394],[1,190]],[[1280,976],[2,430],[0,287],[-10,0],[1,441]],[[6407,4182],[119,0],[303,1],[303,2],[467,3]],[[7599,4188],[229,2]],[[7828,4190],[2,-219],[1,-397],[-1,-23],[1,-367],[-1,-193],[6,0],[1,-291]],[[7837,2700],[-237,-1],[-264,-4],[4,-292]],[[6332,2406],[1,477],[3,100],[0,153],[-3,430],[2,0],[0,578],[-5,37]],[[4477,4193],[387,0],[152,-2]],[[6397,6688],[123,0],[19,12],[363,0],[326,0],[375,-1]],[[7600,5321],[-3,-584],[3,-23],[-2,-122],[0,-398],[1,-6]],[[4400,4193],[0,242],[-49,0],[-105,-1],[0,147],[-306,0],[0,142],[-277,1],[-32,20],[18,29],[-158,-3],[1,95],[-153,0],[3,148],[-79,0],[-2,147],[-76,-1]],[[3185,5159],[0,149]],[[8903,5328],[0,-249],[-1,-310],[1,-573]],[[8903,4196],[-186,-1],[-279,-1],[-418,-1],[-192,-3]],[[1280,976],[-19,-1],[-355,2],[-309,1],[-586,1]],[[11,979],[0,334],[-2,607],[1,432],[1,304],[3,234],[0,422],[-1,570]],[[3185,5159],[-308,1],[1,-148],[-158,-1],[4,-144],[-229,0],[-1,-145],[-50,-3],[-177,0],[-52,-5]],[[1,6141],[-1,560],[336,0],[109,-15],[329,3],[49,9],[105,1],[51,-4],[129,-1],[99,11],[132,0],[224,0],[82,-3],[207,2],[378,4],[252,1],[58,-11],[555,2]],[[7837,2700],[25,2],[277,-1]],[[8142,1101],[-242,1],[-345,5],[-208,0]],[[1280,5],[-241,-4],[-335,-1],[-135,3],[-559,2],[0,607],[1,367]],[[8906,953],[0,-245],[-1,-436],[0,-261],[-405,0],[-160,1],[-351,-3],[-104,-3],[-536,0]],[[8903,4196],[1,-443],[1,-398],[0,-650]]],"transform":{"scale":[0.0007862357960925223,0.000597863914145178],"translate":[-111.054556,40.994746]},"objects":{"cb_2019_56_cousub_500k":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"COUNTYFP":"001"}},{"arcs":[[6,7,8]],"type":"Polygon","properties":{"COUNTYFP":"011"}},{"arcs":[[9,10,11,12,13]],"type":"Polygon","properties":{"COUNTYFP":"035"}},{"arcs":[[14,15,16,17,18,19,-10,-14,20]],"type":"Polygon","properties":{"COUNTYFP":"013"}},{"arcs":[[21,22,23,24,25]],"type":"Polygon","properties":{"COUNTYFP":"015"}},{"arcs":[[26,27,28,29,30,31,32]],"type":"Polygon","properties":{"COUNTYFP":"019"}},{"arcs":[[33,34,35,-21,-13,36]],"type":"Polygon","properties":{"COUNTYFP":"039"}},{"arcs":[[37,38,-32,39,40]],"type":"Polygon","properties":{"COUNTYFP":"033"}},{"arcs":[[41,42,-4,43,44,-19,45]],"type":"Polygon","properties":{"COUNTYFP":"007"}},{"arcs":[[-40,-31,46,47,48]],"type":"Polygon","properties":{"COUNTYFP":"003"}},{"arcs":[[-20,-45,49,50,51,-11]],"type":"Polygon","properties":{"COUNTYFP":"037"}},{"arcs":[[-28,52,53,54,55,-5,-43,56]],"type":"Polygon","properties":{"COUNTYFP":"009"}},{"arcs":[[-29,-57,-42,-46,-18,57]],"type":"Polygon","properties":{"COUNTYFP":"025"}},{"arcs":[[-33,-39,58,-9,59,-53,-27]],"type":"Polygon","properties":{"COUNTYFP":"005"}},{"arcs":[[-47,-30,-58,-17,60,61]],"type":"Polygon","properties":{"COUNTYFP":"043"}},{"arcs":[[-8,62,63,-54,-60]],"type":"Polygon","properties":{"COUNTYFP":"045"}},{"arcs":[[-12,-52,64,65,-34,-37]],"type":"Polygon","properties":{"COUNTYFP":"023"}},{"arcs":[[-48,-62,66,-15,-36,67]],"type":"Polygon","properties":{"COUNTYFP":"029"}},{"arcs":[[-56,68,-24,69,-1,-6]],"type":"Polygon","properties":{"COUNTYFP":"031"}},{"arcs":[[-67,-61,-16]],"type":"Polygon","properties":{"COUNTYFP":"017"}},{"arcs":[[-65,-51,70]],"type":"Polygon","properties":{"COUNTYFP":"041"}},{"arcs":[[-70,-23,71,-2]],"type":"Polygon","properties":{"COUNTYFP":"021"}},{"arcs":[[-64,72,-25,-69,-55]],"type":"Polygon","properties":{"COUNTYFP":"027"}}]}}} \ No newline at end of file diff --git a/app/controllers/ajax_controller.rb b/app/controllers/ajax_controller.rb new file mode 100755 index 00000000..46c991eb --- /dev/null +++ b/app/controllers/ajax_controller.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +# Serves common AJAX requests. +class AjaxController < ApplicationController + def counties + @state = State.find_by(symbol: params[:state_symbol].upcase) + render json: @state.counties + end +end diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100755 index 00000000..c537f31c --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +class ApplicationController < ActionController::Base + before_action :authenticated + + private + + def authenticated + @authenticated = !session[:current_user_id].nil? + end +end diff --git a/app/controllers/events_controller.rb b/app/controllers/events_controller.rb new file mode 100755 index 00000000..d022a2b5 --- /dev/null +++ b/app/controllers/events_controller.rb @@ -0,0 +1,31 @@ +# frozen_string_literal: true + +class EventsController < ApplicationController + def index + @events = if params['filter-by'] + filter_events + else + Event.all + end + end + + def show + @event = Event.find(params[:id]) + end + + private + + def filter_events + @state = State.find_by(symbol: params['state'].upcase) + if params['filter-by'] == 'state-only' + return Event.where( + county: @state.counties + ) + end + + @county = County.find_by(state_id: @state.id, fips_code: params['county']) + Event.where( + county: @county + ) + end +end diff --git a/app/controllers/login_controller.rb b/app/controllers/login_controller.rb new file mode 100755 index 00000000..b30a3c20 --- /dev/null +++ b/app/controllers/login_controller.rb @@ -0,0 +1,75 @@ +# frozen_string_literal: true + +class LoginController < ApplicationController + before_action :already_logged_in, except: [:logout] + + def login; end + + def google_oauth2 + create_session(:create_google_user) + end + + def github + create_session(:create_github_user) + end + + def logout + session[:current_user_id] = nil + redirect_to root_path, notice: 'You have successfully logged out.' + end + + private + + def create_session(create_if_not_exists) + user_info = request.env['omniauth.auth'] + user = find_or_create_user(user_info, create_if_not_exists) + session[:current_user_id] = user.id + destination_url = session[:destination_after_login] || root_url + session[:destination_after_login] = nil + redirect_to destination_url + end + + def find_or_create_user(user_info, create_if_not_exists) + provider_sym = user_info['provider'].to_sym + user = User.find_by( + provider: User.providers[provider_sym], + uid: user_info['uid'] + ) + return user unless user.nil? + + send(create_if_not_exists, user_info) + end + + def create_google_user(user_info) + User.create( + uid: user_info['uid'], + provider: User.providers[:google_oauth2], + first_name: user_info['info']['first_name'], + last_name: user_info['info']['last_name'], + email: user_info['info']['email'] + ) + end + + def create_github_user(user_info) + # Unfortunately, Github doesn't provide first_name, last_name as separate entries. + name = user_info['info']['name'] + if name.nil? + first_name = 'Anon' + last_name = 'User' + else + first_name, last_name = user_info['info']['name'].strip.split(/\s+/, 2) + end + User.create( + uid: user_info['uid'], + provider: User.providers[:github], + first_name: first_name, + last_name: last_name, + email: user_info['info']['email'] + ) + end + + def already_logged_in + redirect_to user_profile_path, notice: 'You are already logged in. Logout to switch accounts.'\ + if session[:current_user_id].present? + end +end diff --git a/app/controllers/map_controller.rb b/app/controllers/map_controller.rb new file mode 100755 index 00000000..10289d62 --- /dev/null +++ b/app/controllers/map_controller.rb @@ -0,0 +1,48 @@ +# frozen_string_literal: true + +class MapController < ApplicationController + # Render the map of the United States. + def index + @states = State.all + @states_by_fips_code = @states.index_by(&:std_fips_code) + end + + # Render the map of the counties of a specific state. + def state + @state = State.find_by(symbol: params[:state_symbol].upcase) + handle_state_not_found && return if @state.nil? + + @county_details = @state.counties.index_by(&:std_fips_code) + end + + # Render the map of a specific county. + def county + @state = State.find_by(symbol: params[:state_symbol].upcase) + handle_state_not_found && return if @state.nil? + + @county = get_requested_county @state.id + handle_county_not_found && return if @state.nil? + + @county_details = @state.counties.index_by(&:std_fips_code) + end + + private + + def handle_state_not_found + state_symbol = params[:state_symbol].upcase + redirect_to root_path, alert: "State '#{state_symbol}' not found." + end + + def handle_county_not_found + state_symbol = params[:state_symbol] + std_fips_code = params[:std_fips_code] + redirect_to root_path, alert: "County with code '#{std_fips_code}' not found for #{state_symbol}" + end + + def get_requested_county(state_id) + County.find_by( + state: state_id, + fips_code: params[:std_fips_code].to_i(10) + ) + end +end diff --git a/app/controllers/my_events_controller.rb b/app/controllers/my_events_controller.rb new file mode 100755 index 00000000..86ba898c --- /dev/null +++ b/app/controllers/my_events_controller.rb @@ -0,0 +1,45 @@ +# frozen_string_literal: true + +class MyEventsController < SessionController + before_action :set_event, only: %i[edit update destroy] + + def new + @event = Event.new + end + + def edit; end + + def create + @event = Event.new(event_params) + + if @event.save + redirect_to events_path, notice: 'Event was successfully created.' + else + render :new + end + end + + def update + if @event.update(event_params) + redirect_to events_path, notice: 'Event was successfully updated.' + else + render :edit + end + end + + def destroy + redirect_to events_url, notice: 'Event was successfully destroyed.' if @event.destroy + end + + private + + # Use callbacks to share common setup or constraints between actions. + def set_event + @event = Event.find(params[:id]) + end + + # Only allow a list of trusted parameters through. + def event_params + params.require(:event).permit(:name, :county_id, :description, :start_time, :end_time) + end +end diff --git a/app/controllers/my_news_items_controller.rb b/app/controllers/my_news_items_controller.rb new file mode 100755 index 00000000..b272f36a --- /dev/null +++ b/app/controllers/my_news_items_controller.rb @@ -0,0 +1,59 @@ +# frozen_string_literal: true + +class MyNewsItemsController < SessionController + before_action :set_representative + before_action :set_representatives_list + before_action :set_news_item, only: %i[edit update destroy] + + def new + @news_item = NewsItem.new + end + + def edit; end + + def create + @news_item = NewsItem.new(news_item_params) + if @news_item.save + redirect_to representative_news_item_path(@representative, @news_item), + notice: 'News item was successfully created.' + else + render :new, error: 'An error occurred when creating the news item.' + end + end + + def update + if @news_item.update(news_item_params) + redirect_to representative_news_item_path(@representative, @news_item), + notice: 'News item was successfully updated.' + else + render :edit, error: 'An error occurred when updating the news item.' + end + end + + def destroy + @news_item.destroy + redirect_to representative_news_items_path(@representative), + notice: 'News was successfully destroyed.' + end + + private + + def set_representative + @representative = Representative.find( + params[:representative_id] + ) + end + + def set_representatives_list + @representatives_list = Representative.all.map { |r| [r.name, r.id] } + end + + def set_news_item + @news_item = NewsItem.find(params[:id]) + end + + # Only allow a list of trusted parameters through. + def news_item_params + params.require(:news_item).permit(:news, :title, :description, :link, :representative_id) + end +end diff --git a/app/controllers/news_items_controller.rb b/app/controllers/news_items_controller.rb new file mode 100755 index 00000000..7ff65770 --- /dev/null +++ b/app/controllers/news_items_controller.rb @@ -0,0 +1,24 @@ +# frozen_string_literal: true + +class NewsItemsController < ApplicationController + before_action :set_representative + before_action :set_news_item, only: %i[show] + + def index + @news_items = @representative.news_items + end + + def show; end + + private + + def set_representative + @representative = Representative.find( + params[:representative_id] + ) + end + + def set_news_item + @news_item = NewsItem.find(params[:id]) + end +end diff --git a/app/controllers/representatives_controller.rb b/app/controllers/representatives_controller.rb new file mode 100755 index 00000000..ed0f2f2b --- /dev/null +++ b/app/controllers/representatives_controller.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +class RepresentativesController < ApplicationController + def index + @representatives = Representative.all + end +end diff --git a/app/controllers/search_controller.rb b/app/controllers/search_controller.rb new file mode 100755 index 00000000..f4028dfa --- /dev/null +++ b/app/controllers/search_controller.rb @@ -0,0 +1,15 @@ +# frozen_string_literal: true + +require 'google/apis/civicinfo_v2' + +class SearchController < ApplicationController + def search + address = params[:address] + service = Google::Apis::CivicinfoV2::CivicInfoService.new + service.key = Rails.application.credentials[:GOOGLE_API_KEY] + result = service.representative_info_by_address(address: address) + @representatives = Representative.civic_api_to_representative_params(result) + + render 'representatives/search' + end +end diff --git a/app/controllers/session_controller.rb b/app/controllers/session_controller.rb new file mode 100755 index 00000000..216038db --- /dev/null +++ b/app/controllers/session_controller.rb @@ -0,0 +1,15 @@ +# frozen_string_literal: true + +class SessionController < ApplicationController + before_action :require_login! + + private + + def require_login! + @current_user = User.find(session[:current_user_id]) and return \ + if session[:current_user_id].present? + + session[:destination_after_login] = request.env['REQUEST_URI'] + redirect_to login_url + end +end diff --git a/app/controllers/user_controller.rb b/app/controllers/user_controller.rb new file mode 100755 index 00000000..a9234e55 --- /dev/null +++ b/app/controllers/user_controller.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +class UserController < SessionController + def profile + @user = User.find(session[:current_user_id]) + end +end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb new file mode 100755 index 00000000..f31bf496 --- /dev/null +++ b/app/helpers/application_helper.rb @@ -0,0 +1,39 @@ +# frozen_string_literal: true + +module ApplicationHelper + def self.state_ids_by_name + State.all.each_with_object({}) do |state, memo| + memo[state.name] = state.id + end.to_h + end + + def self.state_symbols_by_name + State.all.each_with_object({}) do |state, memo| + memo[state.name] = state.symbol + end + end + + def self.nav_items + [ + { + title: 'Home', + link: Rails.application.routes.url_helpers.root_path + }, + { + title: 'Events', + link: Rails.application.routes.url_helpers.events_path + }, + { + title: 'Representatives', + link: Rails.application.routes.url_helpers.representatives_path + } + ] + end + + def self.active(curr_controller_name, nav_link) + nav_controller = Rails.application.routes.recognize_path(nav_link, method: :get)[:controller] + return 'bg-primary-active' if curr_controller_name == nav_controller + + '' + end +end diff --git a/app/helpers/my_news_items_controller_helper.rb b/app/helpers/my_news_items_controller_helper.rb new file mode 100755 index 00000000..0a42ba89 --- /dev/null +++ b/app/helpers/my_news_items_controller_helper.rb @@ -0,0 +1,4 @@ +# frozen_string_literal: true + +module MyNewsItemsControllerHelper +end diff --git a/app/helpers/news_item_helper.rb b/app/helpers/news_item_helper.rb new file mode 100755 index 00000000..c084d5df --- /dev/null +++ b/app/helpers/news_item_helper.rb @@ -0,0 +1,4 @@ +# frozen_string_literal: true + +module NewsItemHelper +end diff --git a/app/helpers/ratings_helper.rb b/app/helpers/ratings_helper.rb new file mode 100755 index 00000000..c20397c9 --- /dev/null +++ b/app/helpers/ratings_helper.rb @@ -0,0 +1,4 @@ +# frozen_string_literal: true + +module RatingsHelper +end diff --git a/app/helpers/representatives_helper.rb b/app/helpers/representatives_helper.rb new file mode 100755 index 00000000..7c023a46 --- /dev/null +++ b/app/helpers/representatives_helper.rb @@ -0,0 +1,4 @@ +# frozen_string_literal: true + +module RepresentativesHelper +end diff --git a/app/helpers/session_helper.rb b/app/helpers/session_helper.rb new file mode 100755 index 00000000..48b757ed --- /dev/null +++ b/app/helpers/session_helper.rb @@ -0,0 +1,4 @@ +# frozen_string_literal: true + +module SessionHelper +end diff --git a/app/javascript/packs/application.js b/app/javascript/packs/application.js new file mode 100755 index 00000000..ffc23e48 --- /dev/null +++ b/app/javascript/packs/application.js @@ -0,0 +1,38 @@ +/* eslint no-console:0 */ +// This file is automatically compiled by Webpack, along with any other files +// present in this directory. You're encouraged to place your actual application logic in +// a relevant structure within app/javascript and only use these pack files to reference +// that code so it'll be compiled. +// +// To reference this file, add <%= javascript_pack_tag 'application' %> to the appropriate +// layout file, like app/views/layouts/application.html.erb + + +// Uncomment to copy all static images under ../images to the output folder and reference +// them with the image_pack_tag helper in views (e.g <%= image_pack_tag 'rails.png' %>) +// or the `imagePath` JavaScript helper below. +// +// const images = require.context('../images', true) +// const imagePath = (name) => images(name, true) + +// require('@rails/ujs').start(); +require('turbolinks').start(); + +require('jquery'); +require('timeago'); +require('bootstrap'); +require('select2'); + +// Import our customized bootstrap styles +require('../stylesheets/application.scss'); +// Use fontawesome icons improve page visuals +require('@fortawesome/fontawesome-free/css/all.css'); + +$(document).on('turbolinks:load', () => { + jQuery.timeago.settings.allowPast = true; + jQuery.timeago.settings.allowFuture = true; + $('time.timeago').timeago(); + $('.actionmap-select2').select2({ + theme: 'bootstrap', + }); +}); diff --git a/app/javascript/packs/county_map.js b/app/javascript/packs/county_map.js new file mode 100755 index 00000000..e7e80e99 --- /dev/null +++ b/app/javascript/packs/county_map.js @@ -0,0 +1,27 @@ +const d3 = require('d3'); +const stateMapUtils = require('./state_map_utils'); + +$(document).ready(() => { + const stateMap = new stateMapUtils.Map(); + const countyFipsCode = stateMap.infoContainer.attr('county-std-fips-code'); + d3.json(stateMap.topojsonUrl).then((topology) => { + const mapAssets = stateMapUtils.parseTopojson(stateMap, topology); + stateMap.svgElement.selectAll('path') + .data(mapAssets.geojson.features) + .enter() + .append('path') + .attr('class', 'actionmap-view-region') + .attr('d', mapAssets.path) + .attr('style', (d) => { + if (d.properties.COUNTYFP === countyFipsCode) { + return 'fill: #2780E3;'; + } + return ''; + }) + .attr('data-county-name', (d) => stateMap.counties[d.properties.COUNTYFP].name) + .attr('data-county-fips-code', (d) => d.properties.COUNTYFP); + + // We dont want to enable clicking in the county view. + // stateMapUtils.setupEventHandlers(stateMap); + }); +}); diff --git a/app/javascript/packs/events_index.js b/app/javascript/packs/events_index.js new file mode 100755 index 00000000..ccdc0217 --- /dev/null +++ b/app/javascript/packs/events_index.js @@ -0,0 +1,52 @@ +const filterUtils = require('./state_county_filter_util'); + +$(document).ready(() => { + filterUtils.filterByChangedCallback( + $('input:radio[name="filter-by"]:checked').val(), + $('#actionmap-events-filter-county'), + ); + + $('input:radio[name="filter-by"]').change((e) => { + filterUtils.filterByChangedCallback( + $(e.currentTarget).val(), + $('#actionmap-events-filter-county'), + ); + }); + + $('#actionmap-events-filter-state').change((e) => { + const filterBy = $('input:radio[name="filter-by"]:checked').val(); + const stateSelectElem = $(e.currentTarget); + const countySelectElem = $('#actionmap-events-filter-county'); + const submitButtonElem = $('#actionmap-events-filter-submit'); + + filterUtils.stateChangedCallback({ + filterBy, + stateSymbol: stateSelectElem.children('option:selected').val(), + countySelectElem, + submitButtonElem, + }); + const stateSymbol = stateSelectElem.children('option:selected').val(); + const countyCode = countySelectElem.children('option:selected').val(); + + filterUtils.toggleSubmitButton({ + filterBy, + stateSymbol, + countyCode, + submitButtonElem, + }); + }); + + $('#actionmap-events-filter-county').change((e) => { + const filterBy = $('input:radio[name="filter-by"]:checked').val(); + const stateSymbol = $('#actionmap-events-filter-state').children('option:selected').val(); + const countyCode = $(e.currentTarget).children('option:selected').val(); + const submitButtonElem = $('#actionmap-events-filter-submit'); + + filterUtils.toggleSubmitButton({ + filterBy, + stateSymbol, + countyCode, + submitButtonElem, + }); + }); +}); diff --git a/app/javascript/packs/events_new.js b/app/javascript/packs/events_new.js new file mode 100755 index 00000000..7cd78fa5 --- /dev/null +++ b/app/javascript/packs/events_new.js @@ -0,0 +1,26 @@ +$(document).ready(() => { + const stateSelect = $('#actionmap-event-state'); + const countySelect = $('#actionmap-event-county'); + stateSelect.change(() => { + const stateSymbol = stateSelect.children('option:selected').val(); + if (stateSymbol === '') { + countySelect.prop('disabled', true); + return; + } + + countySelect.prop('disabled', false); + $.getJSON({ + url: `/ajax/state/${stateSymbol}`, + }).done((countiesArray) => { + countySelect.empty(); + countySelect.append( + '', + ); + $.each(countiesArray, (_index, county) => { + countySelect.append( + ``, + ); + }); + }); + }); +}); diff --git a/app/javascript/packs/map_utils.js b/app/javascript/packs/map_utils.js new file mode 100755 index 00000000..20a43f1b --- /dev/null +++ b/app/javascript/packs/map_utils.js @@ -0,0 +1,23 @@ +// Event handlers for hover, mouseleave & mousemove & on-click +// The page must define a `#actionmap-info-box` div with `.d-none` +exports.handleMapMouseEvents = (jQueryTargets, hoverHtmlProvider, clickCallback) => { + const infoBox = $('#actionmap-info-box'); + jQueryTargets.hover((e) => { + infoBox.html(hoverHtmlProvider($(e.currentTarget))); + infoBox.css('display', 'block'); + }); + jQueryTargets.mouseleave(() => infoBox.css('display', 'none')); + $(document).mousemove((elem) => { + infoBox.css('top', elem.pageY - infoBox.height() - 30); + infoBox.css('left', elem.pageX - infoBox.width() / 2); + }).mouseover(); + jQueryTargets.click((e) => { + clickCallback($(e.currentTarget)); + }); +}; + +exports.zeroPad = (number, numZeros) => { + let s = String(number); + while (s.length < (numZeros || 1)) { s = `0${s}`; } + return s; +}; diff --git a/app/javascript/packs/national_states_map.js b/app/javascript/packs/national_states_map.js new file mode 100755 index 00000000..58a5ac93 --- /dev/null +++ b/app/javascript/packs/national_states_map.js @@ -0,0 +1,64 @@ +const d3 = require('d3'); +const topojson = require('topojson'); + +const mapUtils = require('./map_utils'); + +require('../stylesheets/map.scss'); + +$(document).ready(() => { + function Map() { + const map = Object.create(Map.prototype); + map.width = 950; + map.height = 600; + map.svgElement = d3.select('#actionmap-national-view') + .attr('width', map.width) + .attr('height', map.height) + .attr('preserveAspectRatio', 'xMinYMin meet'); + + map.infoContainer = $('#actionmap-info-container'); + map.topojsonUrl = `${window.location.origin}${map.infoContainer.attr('data-states-topojson-file')}`; + map.objectsKey = 'cb_2018_us_state_500k'; + return map; + } + + const nationalMap = new Map(); + d3.json(nationalMap.topojsonUrl).then((topology) => { /** Topology is a topojson object */ + /** Convert topojson to geojson */ + const geojson = topojson.feature( + topology, + topology.objects[nationalMap.objectsKey], + ); + const projection = d3.geoAlbersUsa() + .fitExtent( + [ + [20, 20], /** Padding of 20px on both x and y axis */ + [nationalMap.width, nationalMap.height], + ], + geojson, + ); + const path = d3.geoPath() + .projection(projection); + + nationalMap.svgElement.selectAll('path') + .data(geojson.features) + .enter() + .append('path') + .attr('class', 'actionmap-view-region') + .attr('d', path) + .attr('data-state-name', (d) => d.properties.NAME) + .attr('data-state-fips-code', (d) => d.properties.STATEFP) + .attr('data-state-symbol', (d) => d.properties.STUSPS); + + const targets = $('.actionmap-view-region'); + const hoverHtmlProvider = (elem) => { + const stateName = elem.attr('data-state-name'); + const stateSymbol = elem.attr('data-state-symbol'); + return `${stateName}, ${stateSymbol}`; + }; + const clickCallback = (elem) => { + const stateSymbol = elem.attr('data-state-symbol'); + window.location.href = `/state/${stateSymbol}`; + }; + mapUtils.handleMapMouseEvents(targets, hoverHtmlProvider, clickCallback); + }); +}); diff --git a/app/javascript/packs/state_county_filter_util.js b/app/javascript/packs/state_county_filter_util.js new file mode 100755 index 00000000..d0ea9c85 --- /dev/null +++ b/app/javascript/packs/state_county_filter_util.js @@ -0,0 +1,73 @@ +exports.filterByChangedCallback = (filterBy, countySelectElem) => { + switch (filterBy) { + case 'state-only': + countySelectElem.addClass('d-none'); + break; + case 'county': + countySelectElem.removeClass('d-none'); + break; + default: + throw new Error(`Unknown filter-by value ${filterBy}`); + } +}; + +/** + * @param args is an object with the following fields: + * filterBy - (string) eg. state-only. + * stateSymbol - (string) eg. CA. + * countySelectElem - jQuery element + * submitButtonElem - jQuery element + */ +exports.stateChangedCallback = (args) => { + const flushOptions = () => { + args.countySelectElem.empty(); + args.countySelectElem.append( + '', + ); + }; + + if (!args.stateSymbol || !args.stateSymbol.trim()) { + flushOptions(); + return; + } + if (args.filterBy === 'state-only') { + flushOptions(); + return; + } + + $.getJSON({ + url: `/ajax/state/${args.stateSymbol}`, + }).done((countiesArray) => { + args.countySelectElem.prop('disabled', false); + args.submitButtonElem.prop('disabled', true); + flushOptions(); + $.each(countiesArray, (_index, county) => { + args.countySelectElem.append( + ``, + ); + }); + }); +}; + +/** + * + * @param args is an object with the following fields: + * filterBy - (string) eg. state-only + * stateSybmol - (string) eg. CA + * county (string) eg. Alameda + * submitButtonElem - jQuery element + */ +exports.toggleSubmitButton = (args) => { + const isValidState = !!args.stateSymbol; + const isValidCounty = !!args.countyCode; + switch (args.filterBy) { + case 'state-only': + args.submitButtonElem.prop('disabled', !isValidState); + return; + case 'county': + args.submitButtonElem.prop('disabled', !isValidState || !isValidCounty); + return; + default: + throw new Error(`unknown filter-by value ${args.filterBy}`); + } +}; diff --git a/app/javascript/packs/state_map.js b/app/javascript/packs/state_map.js new file mode 100755 index 00000000..79dd5e8e --- /dev/null +++ b/app/javascript/packs/state_map.js @@ -0,0 +1,21 @@ +const d3 = require('d3'); +const stateMapUtils = require('./state_map_utils'); + +require('../stylesheets/map.scss'); + +$(document).ready(() => { + const stateMap = new stateMapUtils.Map(); + d3.json(stateMap.topojsonUrl).then((topology) => { + const mapAssets = stateMapUtils.parseTopojson(stateMap, topology); + stateMap.svgElement.selectAll('path') + .data(mapAssets.geojson.features) + .enter() + .append('path') + .attr('class', 'actionmap-view-region') + .attr('d', mapAssets.path) + .attr('data-county-name', (d) => stateMap.counties[d.properties.COUNTYFP].name) + .attr('data-county-fips-code', (d) => d.properties.COUNTYFP); + + stateMapUtils.setupEventHandlers(stateMap); + }); +}); diff --git a/app/javascript/packs/state_map_utils.js b/app/javascript/packs/state_map_utils.js new file mode 100755 index 00000000..3a6956d4 --- /dev/null +++ b/app/javascript/packs/state_map_utils.js @@ -0,0 +1,70 @@ +const d3 = require('d3'); +const topojson = require('topojson'); +const mapUtils = require('./map_utils'); + +exports.Map = () => { + const map = Object.create(Map.prototype); + map.infoContainer = $('#actionmap-info-container'); + map.state = JSON.parse( + map.infoContainer.attr('data-state'), + ); + map.counties = JSON.parse( + map.infoContainer.attr('data-counties'), + ); + map.state.std_fips_code = mapUtils.zeroPad(map.state.fips_code, 2); + map.objectKeys = `cb_2019_${map.state.std_fips_code}_cousub_500k`; + map.topojsonUrl = `${window.location.origin}${map.infoContainer.attr('data-state-topojson-file')}`; + map.width = 960; + map.height = 650; + + map.svgElement = d3.select('#actionmap-state-counties-view') + .attr('width', map.width) + .attr('height', map.height) + .attr('preserveAspectRatio', 'xMinYMin meet'); + return map; +}; + +const getProjection = (stateMap, geojson) => { + if (stateMap.state.symbol === 'AK') { + return d3.geoConicEqualArea().scale(1400) + .rotate([154, 0]) + .center([0, 62]) + .parallels([55, 65]) + .clipExtent([[-1, -1], [stateMap.width + 1, stateMap.height + 1]]); + } + return d3.geoMercator() + .fitExtent( + [ + [20, 20], + [stateMap.width, stateMap.height], + ], + geojson, + ); +}; + +exports.parseTopojson = (stateMap, topology) => { + const geojson = topojson.feature( + topology, + topology.objects[stateMap.objectKeys], + ); + const projection = getProjection(stateMap, geojson); + const path = d3.geoPath() + .projection(projection); + return { + geojson, + path, + }; +}; + +exports.setupEventHandlers = (stateMap) => { + const targets = $('.actionmap-view-region'); + const hoverHtmlProvider = (elem) => { + const countyName = elem.attr('data-county-name'); + return `${countyName}, ${stateMap.state.symbol}`; + }; + const clickCallback = (elem) => { + const countyFipsCode = elem.attr('data-county-fips-code'); + window.location.href = `/state/${stateMap.state.symbol}/county/${countyFipsCode}`; + }; + mapUtils.handleMapMouseEvents(targets, hoverHtmlProvider, clickCallback); +}; diff --git a/app/javascript/stylesheets/application.scss b/app/javascript/stylesheets/application.scss new file mode 100755 index 00000000..d48ea62f --- /dev/null +++ b/app/javascript/stylesheets/application.scss @@ -0,0 +1,24 @@ +/** Bootstrap Sass Overrides can be added before importing bootstrap and other custom themes. */ +@import "~bootswatch/dist/cosmo/variables"; +@import "~bootstrap/scss/bootstrap.scss"; +@import "~bootswatch/dist/cosmo/bootswatch"; + +path { + fill: #ccc; + stroke: #fff; + stroke-width: .5px; +} + +.bg-primary-active { + background-color: darken($primary, 10%); +} + +.map-container { + width: 100%; + overflow-x: auto; + white-space: nowrap; +} + +.field_with_errors { + color: red; +} diff --git a/app/javascript/stylesheets/map.scss b/app/javascript/stylesheets/map.scss new file mode 100755 index 00000000..2e31b798 --- /dev/null +++ b/app/javascript/stylesheets/map.scss @@ -0,0 +1,22 @@ +// Hovering over a map region should make the mouse cursor a pointer and highlight the region with blue color. +path:hover, circle:hover { + stroke: #2780E3 !important; + stroke-width:2px; + stroke-linejoin: round; + fill: #2780E3 !important; + cursor: pointer; +} + +// Display a div#actionmap-info-box with details when cursor hovers over a region. +#actionmap-info-box { + display: none; + position: absolute; + top: 0; + left: 0; + z-index: 1; + background-color: #ffffff; + border: 2px solid #BF0A30; + border-radius: 5px; + padding: 5px; + font-family: arial, serif; +} diff --git a/app/jobs/application_job.rb b/app/jobs/application_job.rb new file mode 100755 index 00000000..d92ffddc --- /dev/null +++ b/app/jobs/application_job.rb @@ -0,0 +1,4 @@ +# frozen_string_literal: true + +class ApplicationJob < ActiveJob::Base +end diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb new file mode 100755 index 00000000..d84cb6e7 --- /dev/null +++ b/app/mailers/application_mailer.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +class ApplicationMailer < ActionMailer::Base + default from: 'from@example.com' + layout 'mailer' +end diff --git a/app/models/application_record.rb b/app/models/application_record.rb new file mode 100755 index 00000000..71fbba5b --- /dev/null +++ b/app/models/application_record.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +class ApplicationRecord < ActiveRecord::Base + self.abstract_class = true +end diff --git a/app/models/county.rb b/app/models/county.rb new file mode 100755 index 00000000..5322f9e5 --- /dev/null +++ b/app/models/county.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +class County < ApplicationRecord + belongs_to :state + + # Standardized FIPS code eg. 001 for 1. + def std_fips_code + fips_code.to_s.rjust(3, '0') + end +end diff --git a/app/models/event.rb b/app/models/event.rb new file mode 100755 index 00000000..0a02e494 --- /dev/null +++ b/app/models/event.rb @@ -0,0 +1,17 @@ +# frozen_string_literal: true + +class Event < ApplicationRecord + belongs_to :county + + validates :start_time, :end_time, presence: true + validates :start_time, date: { after_or_equal_to: proc { Time.zone.now }, + message: 'must be after today' } + validates :end_time, date: { after_or_equal_to: :start_time, + message: 'must be after start time' } + + delegate :state, to: :county, allow_nil: true + + def county_names_by_id + county&.state&.counties&.map { |c| [c.name, c.id] }.to_h || [] + end +end diff --git a/app/models/news_item.rb b/app/models/news_item.rb new file mode 100755 index 00000000..d1572922 --- /dev/null +++ b/app/models/news_item.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +class NewsItem < ApplicationRecord + belongs_to :representative + has_many :ratings, dependent: :delete_all + + def self.find_for(representative_id) + NewsItem.find_by( + representative_id: representative_id + ) + end +end diff --git a/app/models/representative.rb b/app/models/representative.rb new file mode 100755 index 00000000..721a3625 --- /dev/null +++ b/app/models/representative.rb @@ -0,0 +1,27 @@ +# frozen_string_literal: true + +class Representative < ApplicationRecord + has_many :news_items, dependent: :delete_all + + def self.civic_api_to_representative_params(rep_info) + reps = [] + + rep_info.officials.each_with_index do |official, index| + ocdid_temp = '' + title_temp = '' + + rep_info.offices.each do |office| + if office.official_indices.include? index + title_temp = office.name + ocdid_temp = office.division_id + end + end + + rep = Representative.create!({ name: official.name, ocdid: ocdid_temp, + title: title_temp }) + reps.push(rep) + end + + reps + end +end diff --git a/app/models/state.rb b/app/models/state.rb new file mode 100755 index 00000000..2a2d505a --- /dev/null +++ b/app/models/state.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +class State < ApplicationRecord + has_many :counties, inverse_of: :state, dependent: :delete_all + + # Standardized FIPS code eg. 06 for 6. + def std_fips_code + fips_code.to_s.rjust(2, '0') + end +end diff --git a/app/models/user.rb b/app/models/user.rb new file mode 100755 index 00000000..e2c77f4d --- /dev/null +++ b/app/models/user.rb @@ -0,0 +1,34 @@ +# frozen_string_literal: true + +class User < ApplicationRecord + # Add more Authentication Providers here. + enum provider: { google_oauth2: 1, github: 2 }, _prefix: :provider + + # Each (uid, provider) pair should be unique. + validates :uid, uniqueness: { scope: :provider } + + def name + "#{first_name} #{last_name}" + end + + def auth_provider + { + 'google_oauth2' => 'Google', + 'github' => 'Github' + }[provider] + end + + def self.find_google_user(uid) + User.find_by( + provider: User.providers[:google_oauth2], + uid: uid + ) + end + + def self.find_github_user(uid) + User.find_by( + provider: User.providers[:github], + uid: uid + ) + end +end diff --git a/app/views/application/_favicon.html.haml b/app/views/application/_favicon.html.haml new file mode 100755 index 00000000..120dbfca --- /dev/null +++ b/app/views/application/_favicon.html.haml @@ -0,0 +1,9 @@ +%link{ href: asset_path('favicon/apple-touch-icon.png'), rel: 'apple-touch-icon', sizes: '180x180' }/ +%link{ href: asset_path('favicon/favicon-32x32.png'), rel: 'icon', sizes: '32x32', type: 'image/png' }/ +%link{ href: asset_path('favicon/favicon-16x16.png'), rel: 'icon', sizes: '16x16', type: 'image/png' }/ +%link{ href: asset_path('favicon/site.webmanifest'), rel: 'manifest' }/ +%link{ color: '#ddd', href: asset_path('favicon/safari-pinned-tab.svg'), rel: 'mask-icon' }/ +%link{ href: asset_path('favicon/favicon.ico'), rel: 'shortcut icon' }/ +%meta{ content: '#2d89ef', name: 'msapplication-TileColor' }/ +%meta{ content: asset_path('favicon/browserconfig.xml'), name: 'msapplication-config' }/ +%meta{ content: '#ffffff', name: 'theme-color' }/ diff --git a/app/views/events/index.html.haml b/app/views/events/index.html.haml new file mode 100755 index 00000000..7a975032 --- /dev/null +++ b/app/views/events/index.html.haml @@ -0,0 +1,73 @@ +.row + .col-12.col-md-10.offset-md-1 + %h1.text-center Events + .clearfix.my-4 + .float-right + .btn-group.btn-primary{ role: :group, 'aria-label': 'Events Links' } + = link_to events_path, class: 'btn btn-primary' do + %i.fas.fa-trash-restore + Reset Filters + = link_to new_my_event_path, class: 'btn btn-primary' do + %i.fas.fa-plus + Add New Event + %hr/ + .clearfix.my-4 + .float-right + = form_tag events_path, method: :get, class: 'form' do + .form-group + .row + %legend.col-form-label.col-sm-12.py-1 Filter By + .col-sm-12 + .form-check + = radio_button_tag 'filter-by', 'state-only', true, + id: 'actionmap-events-filter-state-radio', class: 'form-check-input' + %label.form-check-label{ for: 'actionmap-events-filter-state-radio' } State Only + .form-check + = radio_button_tag 'filter-by', 'county', false, + id: 'actionmap-events-filter-county-radio', class: 'form-check-input' + %label.form-check-label{ for: 'actionmap-events-filter-county-radio' } County + .form-group.row + .col-12 + = select_tag :state, options_for_select(ApplicationHelper.state_symbols_by_name), + { prompt: 'Select a state', class: 'form-control', id: 'actionmap-events-filter-state' } + .form-group.row + .col-12 + = select_tag :county, options_for_select([]), + { prompt: 'Select a county', class: 'form-control', id: 'actionmap-events-filter-county' } + = submit_tag 'Filter by State', name: nil, class: 'btn btn-primary my-2', + id: 'actionmap-events-filter-submit', disabled: true # Enabled by Javascript + - if @events.empty? + .jumbotron.jumbotron-fluid.text-center + %strong + There are no events that match the filters. + .table-responsive-md + %table.table.table-striped.table-hover#events + %caption Table of Events + %thead.thead-dark + %tr + %th # + %th Name + %th State + %th County + %th Start Time + %th End Time + %th Description + %th Link + %tbody + - @events.each_with_index do |event, index| + %tr + %td= index + 1 + %td= event.name + %td= event.state.name + %td= event.county.name + %td + %time.timeago{ datetime: event.start_time.iso8601 } + %td + %time.timeago{ datetime: event.end_time.iso8601 } + %td= event.description + %td + = link_to event_path(event.id), class: 'btn btn-info' do + %i.fas.fa-eye + View + += javascript_pack_tag 'events_index', 'data-turbolinks-track': 'reload' diff --git a/app/views/events/show.html.haml b/app/views/events/show.html.haml new file mode 100755 index 00000000..83d2c1f3 --- /dev/null +++ b/app/views/events/show.html.haml @@ -0,0 +1,43 @@ +.row.mt-2 + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + %h3.text-center Event Details + .card-body + .card-text + %dl.row + %dt.col-sm-3.text-md-right Name: + %dt.col-sm-9 + = @event.name + %dl.row + %dt.col-sm-3.text-md-right Description: + %dt.col-sm-9 + = @event.description + %dl.row + %dt.col-sm-3.text-md-right Location: + %dt.col-sm-9 + "#{@event.county.name}, #{@event.state.symbol}" + %dl.row + %dt.col-sm-3.text-md-right Start Time: + %dt.col-sm-9 + %time.timeago{ datetime: @event.start_time.iso8601 } + %dl.row + %dt.col-sm-3.text-md-right End Time: + %dt.col-sm-9 + %time.timeago{ datetime: @event.end_time.iso8601 } + %dl.row + %dt.col-sm-3.text-md-right Time Added: + %dt.col-sm-9 + %time.timeago{ datetime: @event.created_at.iso8601 } + %dl.row + %dt.col-sm-3.text-md-right Last Updated: + %dt.col-sm-9 + %time.timeago{ datetime: @event.updated_at.iso8601 } + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + .clearfix + .float-right + = link_to edit_my_event_path(@event), class: 'mx-1 btn btn-primary' do + %i.fas.fa-pencil + Edit + + = link_to events_path, class: 'mx-1 btn btn-info' do + %i.fas.fa-list + View all articles diff --git a/app/views/layouts/_footer.html.haml b/app/views/layouts/_footer.html.haml new file mode 100755 index 00000000..98bb3339 --- /dev/null +++ b/app/views/layouts/_footer.html.haml @@ -0,0 +1,29 @@ +.container-fluid + %footer.pt-4.my-md-5.pt-md-5.border-top + .row + .col-6.col-md-3.offset-md-3.text-center + %h5 Data Sources + %ul.list-unstyled.text-small + %li + %a.text-muted{ href: 'https://developers.google.com/civic-information', + target: :_blank } Google Civic Information + %li + %a.text-muted{ href: 'https://www.census.gov/data.html', + target: :_blank } Census.gov + .col-6.col-md-3.text-center + %h5 API Resources + %ul.list-unstyled.text-small + %li + %a.text-muted{ href: 'https://gnews.io/', + target: :_blank } Google News API + %li + %a.text-muted{ href: 'https://www.propublica.org/datastore/apis', + target: :_blank } ProPublica + .row + .col-12.col-md-4.offset-md-4.text-center + %small.d-block.mb-3.text-muted + %a{ href: 'http://www.saasbook.info/', + target: :_blank } + Engineering Software as a Service + .col-12.col-md-4.offset-md-4.text-center + %small.d-block.mb-3.text-muted © 2019-2020 diff --git a/app/views/layouts/_navbar.html.haml b/app/views/layouts/_navbar.html.haml new file mode 100755 index 00000000..0df343dd --- /dev/null +++ b/app/views/layouts/_navbar.html.haml @@ -0,0 +1,29 @@ +// A Bootswatch Cosmo navbar +// https://bootswatch.com/cosmo/ + +%nav.navbar.navbar-expand-lg.navbar-dark.bg-primary#navbar + %a.navbar-brand{ href: root_path.to_s } Actionmap + %button.navbar-toggler{ 'aria-controls': 'navbar-links-container', 'aria-expanded': 'false', + 'aria-label': 'Toggle navigation', 'data-target': '#navbar-links-container', + 'data-toggle': 'collapse', type: 'button' } + %span.navbar-toggler-icon + .collapse.navbar-collapse#navbar-links-container + %ul.navbar-nav.mr-auto + - ApplicationHelper.nav_items.each do |item| + %li.nav-item.py-1.text-center{ class: ApplicationHelper.active(controller_name, item[:link]) } + %a.nav-link.text-white{ href: item[:link].to_s } + = item[:title] + - if current_page? item[:link] + %span.sr-only (current) + - if authenticated + %li.nav-item.py-1.text-center{ class: ApplicationHelper.active(controller_name, user_profile_path) } + %a.nav-link.text-white{ href: user_profile_path } + Profile + - if current_page? user_profile_path + %span.sr-only (current) + - else + %li.nav-item.py-1.text-center{ class: ApplicationHelper.active(controller_name, login_path) } + %a.nav-link.text-white{ href: login_path } + Login + - if current_page? login_path + %span.sr-only (current) diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml new file mode 100755 index 00000000..a4636afd --- /dev/null +++ b/app/views/layouts/application.html.haml @@ -0,0 +1,24 @@ +!!! +%html + %head + %meta{ content: 'text/html; charset=UTF-8', 'http-equiv': 'Content-Type' }/ + %meta{ content: 'width=device-width, initial-scale=1.0, shrink-to-fit=no', name: 'viewport' }/ + %title Actionmap + = csrf_meta_tags + = csp_meta_tag + = render 'application/favicon' + = stylesheet_pack_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' + = javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' + %body.min-vh-100 + .d-flex.flex-column.min-vh-100 + .flex-shrink-0 + + .flex-grow-1 + .container-fluid + - if flash[:notice].present? || flash[:alert].present? + .row.my-4#actionmap-flash-container + .col-12.text-center + = render 'shared/flash_messages' + = yield + .flex-shrink-0 + = render 'layouts/footer' diff --git a/app/views/layouts/mailer.html.haml b/app/views/layouts/mailer.html.haml new file mode 100755 index 00000000..ab9f67ca --- /dev/null +++ b/app/views/layouts/mailer.html.haml @@ -0,0 +1,8 @@ +!!! +%html + %head + %meta{ content: 'text/html; charset=utf-8', 'http-equiv': 'Content-Type' }/ + :css + /* Email styles need to be inline */ + %body + = yield diff --git a/app/views/layouts/mailer.text.haml b/app/views/layouts/mailer.text.haml new file mode 100755 index 00000000..0a90f092 --- /dev/null +++ b/app/views/layouts/mailer.text.haml @@ -0,0 +1 @@ += yield diff --git a/app/views/login/login.html.haml b/app/views/login/login.html.haml new file mode 100755 index 00000000..091c9eec --- /dev/null +++ b/app/views/login/login.html.haml @@ -0,0 +1,15 @@ +.row + .col-sm-9.col-md-7.col-lg-5.mx-auto + .card.card-signin.my-5 + .card-body + %span.d-block.display-4.card-title.text-center Sign In + .alert.alert-primary.text-center{ role: :alert } + Select an authentication provider below to login. + = form_tag '/auth/google_oauth2', method: :post do + %button.btn.btn-lg.btn-google.btn-block.text-uppercase.bg-danger.text-white{ type: :submit } + %i.fab.fa-google.mr-2 + Sign in with Google + = form_tag '/auth/github', method: :post do + %button.btn.btn-lg.btn-google.btn-block.text-uppercase.bg-primary.text-white{ type: :submit } + %i.fab.fa-github.mr-2 + Sign in with GitHub diff --git a/app/views/map/county.html.haml b/app/views/map/county.html.haml new file mode 100755 index 00000000..38db17e8 --- /dev/null +++ b/app/views/map/county.html.haml @@ -0,0 +1,15 @@ +.row + .col-12 + %section.my-4 + %h2.text-center + = `#{@county.name}, #{@state.symbol}` + .overflow-hidden.bg-light.text-center.mb-3 + .overflow-auto.py-3 + %svg.d-inline#actionmap-state-counties-view{ version: 1.1, xmlns: 'http://www.w3.org/2000/svg' } + %title Map of #{@state.name} highlighting #{@county.name} + /* SVG element will be filled using d3.js and a topojson file. */ +#actionmap-info-box +.d-none#actionmap-info-container{ 'data-counties': @county_details.to_json, 'data-state': @state.to_json, +'data-state-topojson-file': asset_path("states/#{@state[:symbol].downcase}.topo.json"), +'county-std-fips-code': @county.std_fips_code } += javascript_pack_tag 'county_map', 'data-turbolinks-track': 'reload' diff --git a/app/views/map/index.html.haml b/app/views/map/index.html.haml new file mode 100755 index 00000000..9d0547f8 --- /dev/null +++ b/app/views/map/index.html.haml @@ -0,0 +1,15 @@ +.row + .col-12 + %section.mt-4#actionmap-national-section + %h2.text-center National Map + .overflow-hidden.bg-light.text-center.mb-3 + .overflow-auto.py-3 + %svg.d-block.mx-auto#actionmap-national-view{ height: '600px', width: '960px', + xmlns: 'http://www.w3.org/2000/svg' } + %title Map of US states + /* SVG element will be filled using d3.js and a topojson file. */ +/** div displays the details for each state when user hovers over the state region on the map. **/ +#actionmap-info-box +.d-none#actionmap-info-container{ 'data-states-topojson-file': asset_path('national/states/us-states.topo.json') } + += javascript_pack_tag 'national_states_map', 'data-turbolinks-track': 'reload' diff --git a/app/views/map/state.html.haml b/app/views/map/state.html.haml new file mode 100755 index 00000000..940c6de3 --- /dev/null +++ b/app/views/map/state.html.haml @@ -0,0 +1,43 @@ +%section.my-4 + %h2.text-center + = @state.name + .overflow-hidden.bg-light.text-center.mb-3 + .overflow-auto.py-3 + %svg.d-inline#actionmap-state-counties-view{ version: 1.1, xmlns: 'http://www.w3.org/2000/svg' } + %title Map of #{@state.name} + /* SVG element will be filled using d3.js and a topojson file. */ +.row + .col-12.col-lg-8.offset-lg-2 + #actionmap-state-counties-details + .card + .card-header#actionmap-counties-details-header + %h3.text-center + %button.btn.btn-link.collapsed{ 'data-toggle': 'collapse', + 'data-target': '#actionmap-state-details-collapse', 'aria-expanded': false, + 'aria-controls': 'actionmap-state-details-collapse' } Counties in #{@state.name} + .collapse#actionmap-state-details-collapse{ 'data-parent': '#actionmap-counties-details-header', + 'aria-labelledby': '#actionmap-counties-details-header' } + .card-body + .table-responsive-md + %table.table.table-striped.table-hover#actionmap-state-counties-table + %caption Table of Counties in #{@state.name} + %thead.thead-dark + %tr + %th # + %th Name + %th FIPS Code + %th View + %tbody + - @state.counties.each_with_index do |county, index| + %tr + %td= index + 1 + %td= county.name + %td= county.std_fips_code + %td + = link_to 'View', county_path(state_symbol: @state.symbol, + std_fips_code: county.std_fips_code), + class: 'btn btn-primary' +#actionmap-info-box +#actionmap-info-container{ 'data-counties': @county_details.to_json, 'data-state': @state.to_json, +'data-state-topojson-file': asset_path("states/#{@state[:symbol].downcase}.topo.json") } += javascript_pack_tag 'state_map', 'data-turbolinks-track': 'reload' diff --git a/app/views/my_events/_form.html.haml b/app/views/my_events/_form.html.haml new file mode 100755 index 00000000..fb81ada4 --- /dev/null +++ b/app/views/my_events/_form.html.haml @@ -0,0 +1,48 @@ += form_for event, url: form_url, html: { method: form_method } do |f| + - if event.errors.any? + .alert.alert-danger#error-explanation + %h2= `#{pluralize(event.errors.count, 'error')} prohibited this event from being saved:` + %ul + - event.errors.full_messages.each do |message| + %li= message + .form-group.row + .col-sm-2 + = label :event, :name, 'Name:', class: 'col-form-label' + .col-sm-10 + = text_field :event, :name, { class: 'form-control', placeholder: 'Name of the event...' } + .form-group.row + .col-sm-2 + = label :event, :description, 'Description:', class: 'col-form-label' + .col-sm-10 + = text_area :event, :description, { class: 'form-control', placeholder: 'Description of the event...' } + .form-group.row + .col-sm-2 + = label :event, :state, 'State:', class: 'col-form-label' + .col-sm-10 + = select :event, :state, ApplicationHelper.state_symbols_by_name, + { prompt: 'State it will be held in...' }, + { class: 'form-control', id: 'actionmap-event-state' } + .form-group.row + .col-sm-2 + = label :event, :county, 'County:', class: 'col-form-label' + .col-sm-10 + = select :event, :county_id, event.county_names_by_id, + { prompt: 'County it will be held in...' }, + { class: 'form-control', id: 'actionmap-event-county' } + .form-group.row + .col-sm-2 + = label :event, :start_time, 'Start:', class: 'col-form-label' + .col-sm-10 + = datetime_select :event, :start_time, { class: 'form-control' } + %small.form-text.text-muted Event start time + .form-group.row + .col-sm-2 + = label :event, :end_time, 'End:', class: 'col-form-label' + .col-sm-10 + = datetime_select :event, :end_time, { class: 'form-control' } + %small.form-text.text-muted Event end time + .clearfix + .float-right + = f.submit 'Save', class: 'btn btn-primary' + += javascript_pack_tag 'events_new' diff --git a/app/views/my_events/edit.html.haml b/app/views/my_events/edit.html.haml new file mode 100755 index 00000000..6aee786b --- /dev/null +++ b/app/views/my_events/edit.html.haml @@ -0,0 +1,13 @@ +.row + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + %h1.text-center Edit event + + = render 'form', event: @event, form_url: { controller: :my_events, action: :update }, + form_method: :put + + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + .clearfix.mt-3 + .float-right + = link_to events_path, class: 'btn btn-info' do + View all events + %i.fas.fa-arrow-right diff --git a/app/views/my_events/new.html.haml b/app/views/my_events/new.html.haml new file mode 100755 index 00000000..fd360d87 --- /dev/null +++ b/app/views/my_events/new.html.haml @@ -0,0 +1,13 @@ +.row + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + %h1.text-center New event + + = render 'form', event: @event, form_url: { controller: :my_events, action: :create }, + form_method: :post + + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + .clearfix.mt-3 + .float-right + = link_to events_path, class: 'btn btn-info' do + View all events + %i.fas.fa-arrow-right diff --git a/app/views/my_news_items/_form.html.haml b/app/views/my_news_items/_form.html.haml new file mode 100755 index 00000000..83c16915 --- /dev/null +++ b/app/views/my_news_items/_form.html.haml @@ -0,0 +1,32 @@ += form_for news_item, url: form_url, html: { method: form_method } do |f| + - if news_item.errors.any? + .alert.alert-danger + %h2 + "#{pluralize(news_item.errors.count, 'error')} prohibited this news from being saved:" + %ul + - news_item.errors.full_messages.each do |message| + %li= message + .form-group.row + .col-sm-2 + = label :news_item, :title, 'Title:', class: 'col-form-label' + .col-sm-10 + = text_field :news_item, :title, { class: 'form-control', placeholder: 'Brief title of article...' } + .form-group.row + .col-sm-2 + = label :news_item, :link, 'Link', class: 'col-form-label' + .col-sm-10 + = text_field :news_item, :link, { class: 'form-control', placeholder: 'Link to external article...' } + .form-group.row + .col-sm-2 + = label :news_item, :description, class: 'col-form-label' + .col-sm-10 + = text_area :news_item, :description, { class: 'form-control', + placeholder: 'Describe the contents of the article...' } + .form-group.row + .col-sm-2 + = label :news_item, :representative_id, class: 'col-form-label' + .col-sm-10 + = select :news_item, :representative_id, representatives_list, { include_blank: true }, + class: 'form-control' + .actions + = f.submit 'Save', class: 'btn btn-primary' diff --git a/app/views/my_news_items/edit.html.haml b/app/views/my_news_items/edit.html.haml new file mode 100755 index 00000000..68be1d8e --- /dev/null +++ b/app/views/my_news_items/edit.html.haml @@ -0,0 +1,19 @@ +.row.mt-2 + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + %h1.text-center Edit news article + + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + = render 'form', news_item: @news_item, + form_url: representative_edit_my_news_item_path(@representative, @news_item), + form_method: :put, + representatives_list: @representatives_list + + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + .clearfix.mt-3 + .float-right + = link_to representative_news_item_path(@news_item), class: 'mx-1 btn btn-info' do + Show article + %i.fas.fa-eye + = link_to representative_news_items_path(@representative), class: 'mx-1 btn btn-info' do + View all news articles + %i.fas.fa-arrow-right diff --git a/app/views/my_news_items/new.html.haml b/app/views/my_news_items/new.html.haml new file mode 100755 index 00000000..83310a9a --- /dev/null +++ b/app/views/my_news_items/new.html.haml @@ -0,0 +1,15 @@ +.row.mt-2 + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + %h1.text-center Edit news article + + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + = render 'form', news_item: @news_item, + form_url: representative_new_my_news_item_path(@representative), + form_method: :post, + representatives_list: @representatives_list + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + .clearfix.mt-3 + .float-right + = link_to representative_news_items_path(@representative), class: 'btn btn-info' do + View news articles + %i.fas.fa-arrow-right diff --git a/app/views/news_items/index.html.haml b/app/views/news_items/index.html.haml new file mode 100755 index 00000000..2de6c30e --- /dev/null +++ b/app/views/news_items/index.html.haml @@ -0,0 +1,46 @@ +.container-fluid.py-5 + .row + .col-md-8.offset-md-2 + %h1.text-center Listing News Articles for #{@representative.name} + .clearfix.my-4 + .float-right + = link_to representative_new_my_news_item_path(@representative), class: 'mx-1 btn btn-primary' do + %i.fas.fa-plus + Add News Article + = link_to representatives_path, class: 'mx-1 btn btn-info' do + %i.fas.fa-list + All Representatives + .table-responsive-md + %table.table.table-striped.table-hover#events + %caption Table of News Items for #{@representative.name} + %thead.thead-dark + %tr + %th # + %th Name + %th Description + %th Posted + %th{ colspan: 3 } Links + %tbody + - @news_items.each_with_index do |item, index| + %tr + %td= index + 1 + %td + %a{ href: item.link } + = item.title +   + %i.fas.fa-external-link-alt + %td= item.description + %td + %time.timeago{ datetime: item.created_at.iso8601 } + %td + = link_to representative_news_item_path(item.representative.id, item.id), + class: 'btn btn-info' do + %i.fas.fa-eye  Info + %td + = link_to representative_edit_my_news_item_path(item.representative.id, item.id), + class: 'btn btn-success' do + %i.fas.fa-pen  Edit + %td + = link_to representative_news_item_path(item.representative.id, item.id), + method: :delete, data: { confirm: 'Are you sure?' }, class: 'btn btn-danger' do + %i.fas.fa-trash  Delete diff --git a/app/views/news_items/show.html.haml b/app/views/news_items/show.html.haml new file mode 100755 index 00000000..7df16bcb --- /dev/null +++ b/app/views/news_items/show.html.haml @@ -0,0 +1,39 @@ +.row.mt-2 + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + %h3.text-center= @news_item.title + .card-body + .card-text + %dl.row + %dt.col-sm-3.text-md-right Link: + %dt.col-sm-9 + %a{ href: @news_item.link } + = @news_item.link + %dl.row + %dt.col-sm-3.text-md-right Description: + %dt.col-sm-9 + = @news_item.description + %dl.row + %dt.col-sm-3.text-md-right Representative: + %dt.col-sm-9 + %a{ href: representative_path(@representative) } + = @news_item.representative.name + %dl.row + %dt.col-sm-3.text-md-right Time Added: + %dt.col-sm-9 + %time.timeago{ datetime: @news_item.created_at.iso8601 } + %dl.row + %dt.col-sm-3.text-md-right Last Updated: + %dt.col-sm-9 + %time.timeago{ datetime: @news_item.updated_at.iso8601 } + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + .clearfix + .float-right + = link_to representative_edit_my_news_item_path(@representative, @news_item), + class: 'mx-1 btn btn-primary' do + %i.fas.fa-pencil + Edit + + = link_to representative_news_items_path(@representative), + class: 'mx-1 btn btn-info' do + %i.fas.fa-list + View all articles diff --git a/app/views/representatives/index.html.haml b/app/views/representatives/index.html.haml new file mode 100755 index 00000000..2bcd83a6 --- /dev/null +++ b/app/views/representatives/index.html.haml @@ -0,0 +1,15 @@ +.row.mt-2 + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + %h1.text-center Search for a Representative + + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + = form_tag search_representatives_path, method: :get do + .form-group.row + .col-md-4 + %label.col-form-label + Enter a location: + .col-md-6 + = text_field_tag(:address, nil, class: 'form-control') + + .actions + = submit_tag 'Search', class: 'btn btn-primary' diff --git a/app/views/representatives/search.html.haml b/app/views/representatives/search.html.haml new file mode 100755 index 00000000..8fdbf4df --- /dev/null +++ b/app/views/representatives/search.html.haml @@ -0,0 +1,20 @@ +.container-fluid + .row + .col-md-8.offset-md-2 + .table-responsive-md.pt-5 + %table.table.table-striped.table-hover#events + %caption Table of Representatives + %thead.thead-dark + %tr + %th Name + %th Office + %th Links + %tbody + - @representatives.each_with_index do |rep, _index| + %tr + %td= rep.name + %td= rep.title + %td + = link_to representative_news_items_path(rep.id), class: 'btn btn-primary' do + %i.fas.fa-newspaper + News Articles diff --git a/app/views/shared/_flash_messages.html.haml b/app/views/shared/_flash_messages.html.haml new file mode 100755 index 00000000..71b53c56 --- /dev/null +++ b/app/views/shared/_flash_messages.html.haml @@ -0,0 +1,7 @@ +#actionmap-flash-messages + - if flash[:notice] + .alert.alert-info + = flash[:notice] + - if flash[:alert] + .alert.alert-danger + = flash[:alert] diff --git a/app/views/user/profile.html.haml b/app/views/user/profile.html.haml new file mode 100755 index 00000000..3d7d8937 --- /dev/null +++ b/app/views/user/profile.html.haml @@ -0,0 +1,31 @@ +.row.mt-2 + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + %h3.text-center Your Profile + .card-body + .card-text + %dl.row + %dt.col-sm-3.text-md-right Name: + %dt.col-sm-9 + = @user.name + %dl.row + %dt.col-sm-3.text-md-right Authentication Provider: + %dt.col-sm-9 + = @user.auth_provider + %dl.row + %dt.col-sm-3.text-md-right Email: + %dt.col-sm-9 + = @user.email + %dl.row + %dt.col-sm-3.text-md-right Created: + %dt.col-sm-9 + %time.timeago{ datetime: @user.created_at.iso8601 } + %dl.row + %dt.col-sm-3.text-md-right Last Updated: + %dt.col-sm-9 + %time.timeago{ datetime: @user.updated_at.iso8601 } + .col-12.col-md-6.offset-md-3.col-xl-4.offset-xl-4 + .clearfix + .float-right + = link_to logout_path, class: 'mx-1 btn btn-info' do + %i.fas.fa-sign-out-alt + Logout diff --git a/babel.config.js b/babel.config.js new file mode 100755 index 00000000..c67a8427 --- /dev/null +++ b/babel.config.js @@ -0,0 +1,72 @@ +module.exports = (api) => { + const validEnv = ['development', 'test', 'production']; + const currentEnv = api.env(); + const isDevelopmentEnv = api.env('development'); + const isProductionEnv = api.env('production'); + const isTestEnv = api.env('test'); + + if (!validEnv.includes(currentEnv)) { + throw new Error( + `${'Please specify a valid `NODE_ENV` or ' + + '`BABEL_ENV` environment variables. Valid values are "development", ' + + '"test", and "production". Instead, received: '}${ + JSON.stringify(currentEnv) + }.`, + ); + } + + return { + presets: [ + isTestEnv && [ + '@babel/preset-env', + { + targets: { + node: 'current', + }, + }, + ], + (isProductionEnv || isDevelopmentEnv) && [ + '@babel/preset-env', + { + forceAllTransforms: true, + useBuiltIns: 'entry', + corejs: 3, + modules: false, + exclude: ['transform-typeof-symbol'], + }, + ], + ].filter(Boolean), + plugins: [ + 'babel-plugin-macros', + '@babel/plugin-syntax-dynamic-import', + isTestEnv && 'babel-plugin-dynamic-import-node', + '@babel/plugin-transform-destructuring', + [ + '@babel/plugin-proposal-class-properties', + { + loose: true, + }, + ], + [ + '@babel/plugin-proposal-object-rest-spread', + { + useBuiltIns: true, + }, + ], + [ + '@babel/plugin-transform-runtime', + { + helpers: false, + regenerator: true, + corejs: false, + }, + ], + [ + '@babel/plugin-transform-regenerator', + { + async: false, + }, + ], + ].filter(Boolean), + }; +}; diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 00000000..f19acf5b --- /dev/null +++ b/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) +load Gem.bin_path('bundler', 'bundle') diff --git a/bin/rails b/bin/rails new file mode 100755 index 00000000..5badb2fd --- /dev/null +++ b/bin/rails @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +APP_PATH = File.expand_path('../config/application', __dir__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/bin/rake b/bin/rake new file mode 100755 index 00000000..d87d5f57 --- /dev/null +++ b/bin/rake @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/bin/setup b/bin/setup new file mode 100755 index 00000000..94fd4d79 --- /dev/null +++ b/bin/setup @@ -0,0 +1,36 @@ +#!/usr/bin/env ruby +require 'fileutils' +include FileUtils + +# path to your application root. +APP_ROOT = File.expand_path('..', __dir__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +chdir APP_ROOT do + # This script is a starting point to setup your application. + # Add necessary setup steps to this file. + + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + + # Install JavaScript dependencies if using Yarn + # system('bin/yarn') + + # puts "\n== Copying sample files ==" + # unless File.exist?('config/database.yml') + # cp 'config/database.yml.sample', 'config/database.yml' + # end + + puts "\n== Preparing database ==" + system! 'bin/rails db:setup' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' +end diff --git a/bin/spring b/bin/spring new file mode 100755 index 00000000..d89ee495 --- /dev/null +++ b/bin/spring @@ -0,0 +1,17 @@ +#!/usr/bin/env ruby + +# This file loads Spring without using Bundler, in order to be fast. +# It gets overwritten when you run the `spring binstub` command. + +unless defined?(Spring) + require 'rubygems' + require 'bundler' + + lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read) + spring = lockfile.specs.detect { |spec| spec.name == 'spring' } + if spring + Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path + gem 'spring', spring.version + require 'spring/binstub' + end +end diff --git a/bin/update b/bin/update new file mode 100755 index 00000000..58bfaed5 --- /dev/null +++ b/bin/update @@ -0,0 +1,31 @@ +#!/usr/bin/env ruby +require 'fileutils' +include FileUtils + +# path to your application root. +APP_ROOT = File.expand_path('..', __dir__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +chdir APP_ROOT do + # This script is a way to update your development environment automatically. + # Add necessary update steps to this file. + + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + + # Install JavaScript dependencies if using Yarn + # system('bin/yarn') + + puts "\n== Updating database ==" + system! 'bin/rails db:migrate' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' +end diff --git a/bin/webpack b/bin/webpack new file mode 100755 index 00000000..1031168d --- /dev/null +++ b/bin/webpack @@ -0,0 +1,18 @@ +#!/usr/bin/env ruby + +ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development" +ENV["NODE_ENV"] ||= "development" + +require "pathname" +ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", + Pathname.new(__FILE__).realpath) + +require "bundler/setup" + +require "webpacker" +require "webpacker/webpack_runner" + +APP_ROOT = File.expand_path("..", __dir__) +Dir.chdir(APP_ROOT) do + Webpacker::WebpackRunner.run(ARGV) +end diff --git a/bin/webpack-dev-server b/bin/webpack-dev-server new file mode 100755 index 00000000..dd966273 --- /dev/null +++ b/bin/webpack-dev-server @@ -0,0 +1,18 @@ +#!/usr/bin/env ruby + +ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development" +ENV["NODE_ENV"] ||= "development" + +require "pathname" +ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", + Pathname.new(__FILE__).realpath) + +require "bundler/setup" + +require "webpacker" +require "webpacker/dev_server_runner" + +APP_ROOT = File.expand_path("..", __dir__) +Dir.chdir(APP_ROOT) do + Webpacker::DevServerRunner.run(ARGV) +end diff --git a/bin/yarn b/bin/yarn new file mode 100755 index 00000000..460dd565 --- /dev/null +++ b/bin/yarn @@ -0,0 +1,11 @@ +#!/usr/bin/env ruby +APP_ROOT = File.expand_path('..', __dir__) +Dir.chdir(APP_ROOT) do + begin + exec "yarnpkg", *ARGV + rescue Errno::ENOENT + $stderr.puts "Yarn executable was not detected in the system." + $stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install" + exit 1 + end +end diff --git a/config.ru b/config.ru new file mode 100755 index 00000000..842bccc3 --- /dev/null +++ b/config.ru @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +# This file is used by Rack-based servers to start the application. + +require_relative 'config/environment' + +run Rails.application diff --git a/config/application.rb b/config/application.rb new file mode 100755 index 00000000..74dbd3ed --- /dev/null +++ b/config/application.rb @@ -0,0 +1,38 @@ +# frozen_string_literal: true + +require_relative 'boot' + +require 'rails' +# Pick the frameworks you want: +require 'active_model/railtie' +require 'active_job/railtie' +require 'active_record/railtie' +require 'active_storage/engine' +require 'action_controller/railtie' +require 'action_mailer/railtie' +require 'action_view/railtie' +# require "action_cable/engine" +require 'sprockets/railtie' +# require "rails/test_unit/railtie" + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module Actionmap + class Application < Rails::Application + # Initialize configuration defaults for originally generated Rails version. + config.load_defaults 5.2 + config.session_store :cookie_store, key: '_interslice_session' + config.middleware.use ActionDispatch::Cookies # Required for all session management + config.middleware.use ActionDispatch::Session::CookieStore, config.session_options + + # Settings in config/environments/* take precedence over those specified here. + # Application configuration can go into files in config/initializers + # -- all .rb files in that directory are automatically loaded after loading + # the framework and any gems in your application. + + # Don't generate system test files. + config.generators.system_tests = nil + end +end diff --git a/config/boot.rb b/config/boot.rb new file mode 100755 index 00000000..c04863fa --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) + +require 'bundler/setup' # Set up gems listed in the Gemfile. +require 'bootsnap/setup' # Speed up boot time by caching expensive operations. diff --git a/config/cucumber.yml b/config/cucumber.yml new file mode 100755 index 00000000..5aa9c13b --- /dev/null +++ b/config/cucumber.yml @@ -0,0 +1,9 @@ +<% +rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" +rerun = rerun.strip.gsub /\s/, ' ' +rerun_opts = rerun.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}" +std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} --strict --tags 'not @wip'" +%> +default: <%= std_opts %> features +wip: --tags @wip:3 --wip features +rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags 'not @wip' diff --git a/config/database.yml b/config/database.yml new file mode 100755 index 00000000..c7886611 --- /dev/null +++ b/config/database.yml @@ -0,0 +1,95 @@ +# PostgreSQL. Versions 9.1 and up are supported. +# +# Install the pg driver: +# gem install pg +# On OS X with Homebrew: +# gem install pg -- --with-pg-config=/usr/local/bin/pg_config +# On OS X with MacPorts: +# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config +# On Windows: +# gem install pg +# Choose the win32 build. +# Install PostgreSQL and put its /bin directory on your path. +# +# Configure Using Gemfile +# gem 'pg' +# +postgresql: &postgresql + adapter: postgresql + encoding: unicode + # For details on connection pooling, see Rails configuration guide + # http://guides.rubyonrails.org/configuring.html#database-pooling + pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> + +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +# +sqlite3: &sqlite3 + adapter: sqlite3 + pool: 5 + timeout: 5000 + +development: + <<: *sqlite3 + database: db/development.sqlite3 + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *sqlite3 + database: db/test.sqlite3 + +# As with config/secrets.yml, you never want to store sensitive information, +# like your database password, in your source code. If your source code is +# ever seen by anyone, they now have access to your database. +# +# Instead, provide the password as a unix environment variable when you boot +# the app. Read http://guides.rubyonrails.org/configuring.html#configuring-a-database +# for a full rundown on how to provide these environment variables in a +# production deployment. +# +# On Heroku and other platform providers, you may have a full connection URL +# available as an environment variable. For example: +# +# DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase" +# +# You can use this database configuration with: +# +# production: +# url: <%= ENV['DATABASE_URL'] %> +# +production: + <<: *postgresql + database: actionmap_production + username: actionmap + password: <%= ENV['ACTIONMAP_DATABASE_PASSWORD'] %> + # The specified database role being used to connect to postgres. + # To create additional roles in postgres see `$ createuser --help`. + # When left blank, postgres will use the default role. This is + # the same name as the operating system user that initialized the database. + #username: actionmap + + # The password associated with the postgres role (username). + #password: + + # Connect on a TCP socket. Omitted by default since the client uses a + # domain socket that doesn't need configuration. Windows does not have + # domain sockets, so uncomment these lines. + #host: localhost + + # The TCP port the server listens on. Defaults to 5432. + # If your server runs on a different port number, change accordingly. + #port: 5432 + + # Schema search path. The server defaults to $user,public + #schema_search_path: myapp,sharedapp,public + + # Minimum log levels, in increasing order: + # debug5, debug4, debug3, debug2, debug1, + # log, notice, warning, error, fatal, and panic + # Defaults to warning. + #min_messages: notice diff --git a/config/environment.rb b/config/environment.rb new file mode 100755 index 00000000..d5abe558 --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +# Load the Rails application. +require_relative 'application' + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100755 index 00000000..7aaf0c6d --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,55 @@ +# frozen_string_literal: true + +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports. + config.consider_all_requests_local = true + + # Enable/disable caching. By default caching is disabled. + # Run rails dev:cache to toggle caching. + if Rails.root.join('tmp/caching-dev.txt').exist? + config.action_controller.perform_caching = true + + config.cache_store = :memory_store + config.public_file_server.headers = { + 'Cache-Control' => "public, max-age=#{2.days.to_i}" + } + else + config.action_controller.perform_caching = false + + config.cache_store = :null_store + end + + # Store uploaded files on the local file system (see config/storage.yml for options) + config.active_storage.service = :local + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + config.action_mailer.perform_caching = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Highlight code that triggered database queries in logs. + config.active_record.verbose_query_logs = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true + + # Use an evented file watcher to asynchronously detect changes in source code, + # routes, locales, etc. This feature depends on the listen gem. + config.file_watcher = ActiveSupport::EventedFileUpdateChecker +end diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100755 index 00000000..4b171059 --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,82 @@ +# frozen_string_literal: true + +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"] + # or in config/master.key. This key is used to decrypt credentials (and other encrypted files). + # config.require_master_key = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = 'http://assets.example.com' + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Store uploaded files on the local file system (see config/storage.yml for options) + config.active_storage.service = :local + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + config.force_ssl = true + + # Use the lowest log level to ensure availability of diagnostic information + # when problems arise. + config.log_level = :debug + + # Prepend all log lines with the following tags. + config.log_tags = [:request_id] + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Use a real queuing backend for Active Job (and separate queues per environment) + # config.active_job.queue_adapter = :resque + # config.active_job.queue_name_prefix = "actionmap_#{Rails.env}" + + config.action_mailer.perform_caching = false + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Use a different logger for distributed setups. + # require 'syslog/logger' + # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name') + + if ENV['RAILS_LOG_TO_STDOUT'].present? + logger = ActiveSupport::Logger.new($stdout) + logger.formatter = config.log_formatter + config.logger = ActiveSupport::TaggedLogging.new(logger) + end + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100755 index 00000000..3091ac4b --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,48 @@ +# frozen_string_literal: true + +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure public file server for tests with Cache-Control for performance. + config.public_file_server.enabled = true + config.public_file_server.headers = { + 'Cache-Control' => "public, max-age=#{1.hour.to_i}" + } + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Store uploaded files on the local file system in a temporary directory + config.active_storage.service = :test + + config.action_mailer.perform_caching = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/favicon.json b/config/favicon.json new file mode 100755 index 00000000..765459e9 --- /dev/null +++ b/config/favicon.json @@ -0,0 +1,62 @@ +{ + "master_picture": "app/assets/images/saasbook.jpeg", + "favicon_design": { + "ios": { + "picture_aspect": "background_and_margin", + "background_color": "#ffffff", + "margin": "0%", + "assets": { + "ios6_and_prior_icons": false, + "ios7_and_later_icons": false, + "precomposed_icons": false, + "declare_only_default_icon": true + } + }, + "desktop_browser": { + "design": "background", + "backgroundColor": "#ffffff", + "backgroundRadius": 0.2, + "imageScale": 1 + }, + "windows": { + "picture_aspect": "no_change", + "background_color": "#2d89ef", + "on_conflict": "override", + "assets": { + "windows_80_ie_10_tile": false, + "windows_10_ie_11_edge_tiles": { + "small": false, + "medium": true, + "big": false, + "rectangle": false + } + } + }, + "android_chrome": { + "picture_aspect": "no_change", + "theme_color": "#ffffff", + "manifest": { + "name": "Actionmap", + "display": "standalone", + "orientation": "not_set", + "on_conflict": "override", + "declared": true + }, + "assets": { + "legacy_icon": false, + "low_resolution_icons": false + } + }, + "safari_pinned_tab": { + "picture_aspect": "silhouette", + "theme_color": "#ddd" + } + }, + "settings": { + "scaling_algorithm": "Mitchell", + "error_on_image_too_small": false, + "readme_file": false, + "html_code_file": false, + "use_path_as_is": false + } +} diff --git a/config/initializers/application_controller_renderer.rb b/config/initializers/application_controller_renderer.rb new file mode 100755 index 00000000..f4556db3 --- /dev/null +++ b/config/initializers/application_controller_renderer.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true +# Be sure to restart your server when you modify this file. + +# ActiveSupport::Reloader.to_prepare do +# ApplicationController.renderer.defaults.merge!( +# http_host: 'example.org', +# https: false +# ) +# end diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb new file mode 100755 index 00000000..d0f0d3b5 --- /dev/null +++ b/config/initializers/backtrace_silencers.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb new file mode 100755 index 00000000..ee8dff9c --- /dev/null +++ b/config/initializers/cookies_serializer.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +# Be sure to restart your server when you modify this file. + +# Specify a serializer for the signed and encrypted cookie jars. +# Valid options are :json, :marshal, and :hybrid. +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100755 index 00000000..7a4f47b4 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100755 index 00000000..aa7435fb --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,17 @@ +# frozen_string_literal: true +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100755 index 00000000..6e1d16f0 --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/config/initializers/omniauth.rb b/config/initializers/omniauth.rb new file mode 100755 index 00000000..85fc9460 --- /dev/null +++ b/config/initializers/omniauth.rb @@ -0,0 +1,54 @@ +# frozen_string_literal: true + +def omniauth_google_mock + { + provider: 'google_oauth2', + uid: '100000000000000000000', + info: { + name: 'Google Test Developer', + email: 'google_test@example.com', + first_name: 'Google', + last_name: 'Test Developer' + } + } +end + +def omniauth_github_mock + { + uid: '12345', + info: { + name: 'Github Test Developer', + nickname: 'example', + email: 'github_test@example.com' + } + } +end + +def setup_omniauth_mocks + OmniAuth.config.test_mode = true + OmniAuth.config.add_mock( + :google_oauth2, + omniauth_google_mock + ) + OmniAuth.config.add_mock( + :github, + omniauth_github_mock + ) +end + +Rails.application.config.middleware.use OmniAuth::Builder do + provider :developer unless Rails.env.production? + setup_omniauth_mocks unless Rails.env.production? + + provider :google_oauth2, Rails.application.credentials[:GOOGLE_CLIENT_ID], + Rails.application.credentials[:GOOGLE_CLIENT_SECRET], + { + scope: 'userinfo.email, userinfo.profile', + prompt: 'select_account', + image_aspect_ratio: 'square', + image_size: 50 + } + + provider :github, Rails.application.credentials[:GITHUB_CLIENT_ID], + Rails.application.credentials[:GITHUB_CLIENT_SECRET] +end diff --git a/config/initializers/web_app_manifest.rb b/config/initializers/web_app_manifest.rb new file mode 100755 index 00000000..a8e50bea --- /dev/null +++ b/config/initializers/web_app_manifest.rb @@ -0,0 +1,23 @@ +# frozen_string_literal: true + +# This file was generated by rails_favicon_generator, from +# https://realfavicongenerator.net/ + +# It makes files with .webmanifest extension first class files in the asset +# pipeline. This is to preserve this extension, as is it referenced in a call +# to asset_path in the _favicon.html.erb partial. + +Rails.application.config.assets.configure do |env| + mime_type = 'application/manifest+json' + extensions = ['.webmanifest'] + + if Sprockets::VERSION.to_i >= 4 + extensions << '.webmanifest.erb' + env.register_preprocessor(mime_type, Sprockets::ERBProcessor) + end + + env.register_mime_type(mime_type, extensions: extensions) + + env.register_mime_type('application/xml', extensions: %w[.xml .xml.erb]) + env.register_preprocessor('application/xml', Sprockets::ERBProcessor) +end diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb new file mode 100755 index 00000000..2f3c0db4 --- /dev/null +++ b/config/initializers/wrap_parameters.rb @@ -0,0 +1,16 @@ +# frozen_string_literal: true + +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100755 index 00000000..decc5a85 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,33 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# The following keys must be escaped otherwise they will not be retrieved by +# the default I18n backend: +# +# true, false, on, off, yes, no +# +# Instead, surround them with single quotes. +# +# en: +# 'true': 'foo' +# +# To learn more, please read the Rails Internationalization guide +# available at http://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/config/puma.rb b/config/puma.rb new file mode 100755 index 00000000..283a21a9 --- /dev/null +++ b/config/puma.rb @@ -0,0 +1,40 @@ +# frozen_string_literal: true + +# Puma can serve each request in a thread from an internal thread pool. +# The `threads` method setting takes two numbers: a minimum and maximum. +# Any libraries that use thread pools should be configured to match +# the maximum value specified for Puma. Default is set to 5 threads for minimum +# and maximum; this matches the default thread size of Active Record. +# +threads_count = ENV.fetch('RAILS_MAX_THREADS', 5) +threads threads_count, threads_count + +# Specifies the `port` that Puma will listen on to receive requests; default is 3000. +# +port ENV.fetch('PORT', 3000) + +# Specifies the `environment` that Puma will run in. +# +environment ENV.fetch('RAILS_ENV', 'development') + +# Specifies the `pidfile` that Puma will use. +# pidfile ENV.fetch('PIDFILE', 'tmp/pids/server.pid') +# tim 2023-11-05: removed the pidfile. Heroku doesn't like it + +# Specifies the number of `workers` to boot in clustered mode. +# Workers are forked webserver processes. If using threads and workers together +# the concurrency of the application would be max `threads` * `workers`. +# Workers do not work on JRuby or Windows (both of which do not support +# processes). +# +# workers ENV.fetch("WEB_CONCURRENCY") { 2 } + +# Use the `preload_app!` method when specifying a `workers` number. +# This directive tells Puma to first boot the application and load code +# before forking the application. This takes advantage of Copy On Write +# process behavior so workers use less memory. +# +# preload_app! + +# Allow puma to be restarted by `rails restart` command. +plugin :tmp_restart diff --git a/config/routes.rb b/config/routes.rb new file mode 100755 index 00000000..a1c48f77 --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,43 @@ +# frozen_string_literal: true + +# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html +Rails.application.routes.draw do + get '/login' => 'login#login', :as => :login + get '/login/google', to: redirect('auth/google_oauth2'), as: :google_login + get '/login/github', to: redirect('auth/github'), as: :github_login + get '/auth/google_oauth2/callback', to: 'login#google_oauth2', as: :google_oauth2_callback + get '/auth/github/callback', to: 'login#github', as: :github_callback + get '/logout' => 'login#logout', :as => :logout + get '/user/profile', to: 'user#profile', as: :user_profile + + root to: 'map#index', as: 'root' + get '/state/:state_symbol' => 'map#state', :as => :state_map + get '/state/:state_symbol/county/:std_fips_code' => 'map#county', :as => :county + + get '/ajax/state/:state_symbol' => 'ajax#counties' + + # Routes for Events + resources :events, only: %i[index show] + get '/my_events/new' => 'my_events#new', :as => :new_my_event + match '/my_events/new', to: 'my_events#create', via: [:post] + get '/my_events/:id' => 'my_events#edit', :as => :edit_my_event + match '/my_events/:id', to: 'my_events#update', via: %i[put patch] + match '/my_events/:id', to: 'my_events#destroy', via: [:delete] + + # Routes for Representatives + resources :representatives, only: [:index] + resources :representatives do + resources :news_items, only: %i[index show] + get '/representatives/:representative_id/my_news_item/new' => 'my_news_items#new', + :as => :new_my_news_item + match '/representatives/:representative_id/my_news_item/new', to: 'my_news_items#create', + via: [:post] + get '/representatives/:representative_id/my_news_item/:id' => 'my_news_items#edit', + :as => :edit_my_news_item + match '/representatives/:representative_id/my_news_item/:id', to: 'my_news_items#update', + via: %i[put patch] + match '/representatives/:representative_id/my_news_item/:id', to: 'my_news_items#destroy', + via: [:delete] + end + get '/search/(:address)' => 'search#search', :as => 'search_representatives' +end diff --git a/config/spring.rb b/config/spring.rb new file mode 100755 index 00000000..c5933e49 --- /dev/null +++ b/config/spring.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +%w[ + .ruby-version + .rbenv-vars + tmp/restart.txt + tmp/caching-dev.txt +].each { |path| Spring.watch(path) } diff --git a/config/storage.yml b/config/storage.yml new file mode 100755 index 00000000..d32f76e8 --- /dev/null +++ b/config/storage.yml @@ -0,0 +1,34 @@ +test: + service: Disk + root: <%= Rails.root.join("tmp/storage") %> + +local: + service: Disk + root: <%= Rails.root.join("storage") %> + +# Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key) +# amazon: +# service: S3 +# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %> +# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %> +# region: us-east-1 +# bucket: your_own_bucket + +# Remember not to checkin your GCS keyfile to a repository +# google: +# service: GCS +# project: your_project +# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %> +# bucket: your_own_bucket + +# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key) +# microsoft: +# service: AzureStorage +# storage_account_name: your_account_name +# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %> +# container: your_container_name + +# mirror: +# service: Mirror +# primary: local +# mirrors: [ amazon, google, microsoft ] diff --git a/config/webpack/development.js b/config/webpack/development.js new file mode 100755 index 00000000..89d35d93 --- /dev/null +++ b/config/webpack/development.js @@ -0,0 +1,5 @@ +process.env.NODE_ENV = process.env.NODE_ENV || 'development'; + +const environment = require('./environment'); + +module.exports = environment.toWebpackConfig(); diff --git a/config/webpack/environment.js b/config/webpack/environment.js new file mode 100755 index 00000000..a78a32c4 --- /dev/null +++ b/config/webpack/environment.js @@ -0,0 +1,25 @@ +const { environment } = require('@rails/webpacker'); + +environment.loaders.prepend('expose', { + test: require.resolve('jquery'), + use: [{ + loader: 'expose-loader', + options: '$', + }, { + loader: 'expose-loader', + options: 'jQuery', + }], +}); + +// https://mentalized.net/journal/2019/10/19/use-sass-modules-in-rails/ +// Get the actual sass-loader config +const sassLoader = environment.loaders.get('sass'); +const sassLoaderConfig = sassLoader.use.find((element) => element.loader === 'sass-loader'); + +// Use Dart-implementation of Sass (default is node-sass) +// This means we don't need Ruby-sass +const { options } = sassLoaderConfig; +options.implementation = require('sass'); + + +module.exports = environment; diff --git a/config/webpack/production.js b/config/webpack/production.js new file mode 100755 index 00000000..7684a100 --- /dev/null +++ b/config/webpack/production.js @@ -0,0 +1,5 @@ +process.env.NODE_ENV = process.env.NODE_ENV || 'production'; + +const environment = require('./environment'); + +module.exports = environment.toWebpackConfig(); diff --git a/config/webpack/test.js b/config/webpack/test.js new file mode 100755 index 00000000..89d35d93 --- /dev/null +++ b/config/webpack/test.js @@ -0,0 +1,5 @@ +process.env.NODE_ENV = process.env.NODE_ENV || 'development'; + +const environment = require('./environment'); + +module.exports = environment.toWebpackConfig(); diff --git a/config/webpacker.yml b/config/webpacker.yml new file mode 100755 index 00000000..c1adf282 --- /dev/null +++ b/config/webpacker.yml @@ -0,0 +1,97 @@ +# Note: You must restart bin/webpack-dev-server for changes to take effect + +default: &default + source_path: app/javascript + source_entry_path: packs + public_root_path: public + public_output_path: packs + cache_path: tmp/cache/webpacker + check_yarn_integrity: false + webpack_compile_output: true + + # Additional paths webpack should lookup modules + # ['app/assets', 'engine/foo/app/assets'] + resolved_paths: [] + + # Reload manifest.json on all requests so we reload latest compiled packs + cache_manifest: false + + # Extract and emit a css file + extract_css: false + + static_assets_extensions: + - .jpg + - .jpeg + - .png + - .gif + - .tiff + - .ico + - .svg + - .eot + - .otf + - .ttf + - .woff + - .woff2 + + extensions: + - .vue + - .mjs + - .js + - .sass + - .scss + - .css + - .module.sass + - .module.scss + - .module.css + - .png + - .svg + - .gif + - .jpeg + - .jpg + +development: + <<: *default + compile: true + + # Verifies that correct packages and versions are installed by inspecting package.json, yarn.lock, and node_modules + check_yarn_integrity: true + + # Reference: https://webpack.js.org/configuration/dev-server/ + dev_server: + https: false + host: localhost + port: 3035 + public: localhost:3035 + hmr: false + # Inline should be set to true if using HMR + inline: true + overlay: true + compress: true + disable_host_check: true + use_local_ip: false + quiet: false + pretty: false + headers: + 'Access-Control-Allow-Origin': '*' + watch_options: + ignored: '**/node_modules/**' + + +test: + <<: *default + compile: true + + # Compile test packs to a separate directory + public_output_path: packs-test + +production: + <<: *default + + # Production depends on precompilation of packs prior to booting for performance. + compile: false + + # Extract and emit a css file + extract_css: false + + # Cache manifest.json for performance + cache_manifest: true diff --git a/db/migrate/20200519225752_create_users.rb b/db/migrate/20200519225752_create_users.rb new file mode 100755 index 00000000..277e053c --- /dev/null +++ b/db/migrate/20200519225752_create_users.rb @@ -0,0 +1,18 @@ +# frozen_string_literal: true + +class CreateUsers < ActiveRecord::Migration[5.2] + def up + create_table :users do |t| + t.integer :provider, null: false # Authentication provider eg. Google or Twitter + t.string :uid, null: false + t.string :email + t.string :first_name + t.string :last_name + t.timestamps null: false + end + end + + def down + drop_table :users + end +end diff --git a/db/migrate/20200519230125_create_states.rb b/db/migrate/20200519230125_create_states.rb new file mode 100755 index 00000000..5b4eea77 --- /dev/null +++ b/db/migrate/20200519230125_create_states.rb @@ -0,0 +1,21 @@ +# frozen_string_literal: true + +class CreateStates < ActiveRecord::Migration[5.2] + def up + create_table :states do |t| + t.string :name, unique: true, null: false # eg. California + t.string :symbol, unique: true, null: false # eg. CA + t.integer :fips_code, unique: true, limit: 1, null: false # Tinyint column + t.integer :is_territory, null: false + t.float :lat_min, null: false # Most westerly lat for state + t.float :lat_max, null: false # Most easterly lat for state + t.float :long_min, null: false # Most southerly long for state + t.float :long_max, null: false # Most northerly long for state + t.timestamps null: false + end + end + + def down + drop_table :states + end +end diff --git a/db/migrate/20200519230441_create_counties.rb b/db/migrate/20200519230441_create_counties.rb new file mode 100755 index 00000000..0835e9e3 --- /dev/null +++ b/db/migrate/20200519230441_create_counties.rb @@ -0,0 +1,17 @@ +# frozen_string_literal: true + +class CreateCounties < ActiveRecord::Migration[5.2] + def up + create_table :counties do |t| + t.string :name, unique: true, null: false + t.belongs_to :state, index: true, null: false, references: :states + t.integer :fips_code, unique: true, limit: 2, null: false # Smallint column + t.string :fips_class, limit: 2, null: false # Varchar(2) + t.timestamps null: false + end + end + + def down + drop_table :counties + end +end diff --git a/db/migrate/20200519231212_create_events.rb b/db/migrate/20200519231212_create_events.rb new file mode 100755 index 00000000..f24f1ec4 --- /dev/null +++ b/db/migrate/20200519231212_create_events.rb @@ -0,0 +1,18 @@ +# frozen_string_literal: true + +class CreateEvents < ActiveRecord::Migration[5.2] + def up + create_table :events do |t| + t.string :name, null: false + t.text :description + t.belongs_to :county, index: true, null: false # Where the event will take place + t.datetime :start_time + t.datetime :end_time + t.timestamps null: false + end + end + + def down + drop_table :events + end +end diff --git a/db/migrate/20200520030218_create_representatives.rb b/db/migrate/20200520030218_create_representatives.rb new file mode 100755 index 00000000..2b745766 --- /dev/null +++ b/db/migrate/20200520030218_create_representatives.rb @@ -0,0 +1,14 @@ +# frozen_string_literal: true + +class CreateRepresentatives < ActiveRecord::Migration[5.2] + def up + create_table :representatives do |t| + t.string :name + t.timestamps null: false + end + end + + def down + drop_table :representatives + end +end diff --git a/db/migrate/20200614064017_add_uid_provider_index_to_users.rb b/db/migrate/20200614064017_add_uid_provider_index_to_users.rb new file mode 100755 index 00000000..5ffd9e77 --- /dev/null +++ b/db/migrate/20200614064017_add_uid_provider_index_to_users.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +class AddUidProviderIndexToUsers < ActiveRecord::Migration[5.2] + def up + # Enforce uniqueness of (uid, provider) pairs. + add_index :users, %i[uid provider], unique: true, name: 'index_users_on_uid_provider' + end + + def down + remove_index :users, name: 'index_users_on_uid_provider' + end +end diff --git a/db/migrate/20200616205245_create_news_items.rb b/db/migrate/20200616205245_create_news_items.rb new file mode 100755 index 00000000..88f53552 --- /dev/null +++ b/db/migrate/20200616205245_create_news_items.rb @@ -0,0 +1,17 @@ +# frozen_string_literal: true + +class CreateNewsItems < ActiveRecord::Migration[5.2] + def up + create_table :news_items do |t| + t.string :title, null: false + t.string :link, null: false + t.text :description + t.belongs_to :representative, null: false, index: true + t.timestamps null: false + end + end + + def down + drop_table :news_items + end +end diff --git a/db/migrate/20200728065604_add_columns_to_representatives.rb b/db/migrate/20200728065604_add_columns_to_representatives.rb new file mode 100755 index 00000000..ebe7f91a --- /dev/null +++ b/db/migrate/20200728065604_add_columns_to_representatives.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +class AddColumnsToRepresentatives < ActiveRecord::Migration[5.2] + def change + add_column :representatives, :ocdid, :string + add_column :representatives, :title, :string + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100755 index 00000000..1212f6dc --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,78 @@ +# This file is auto-generated from the current state of the database. Instead +# of editing this file, please use the migrations feature of Active Record to +# incrementally modify your database, and then regenerate this schema definition. +# +# Note that this schema.rb definition is the authoritative source for your +# database schema. If you need to create the application database on another +# system, you should be using db:schema:load, not running all the migrations +# from scratch. The latter is a flawed and unsustainable approach (the more migrations +# you'll amass, the slower it'll run and the greater likelihood for issues). +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema.define(version: 2020_07_28_065604) do + + create_table "counties", force: :cascade do |t| + t.string "name", null: false + t.integer "state_id", null: false + t.integer "fips_code", limit: 2, null: false + t.string "fips_class", limit: 2, null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["state_id"], name: "index_counties_on_state_id" + end + + create_table "events", force: :cascade do |t| + t.string "name", null: false + t.text "description" + t.integer "county_id", null: false + t.datetime "start_time" + t.datetime "end_time" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["county_id"], name: "index_events_on_county_id" + end + + create_table "news_items", force: :cascade do |t| + t.string "title", null: false + t.string "link", null: false + t.text "description" + t.integer "representative_id", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["representative_id"], name: "index_news_items_on_representative_id" + end + + create_table "representatives", force: :cascade do |t| + t.string "name" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.string "ocdid" + t.string "title" + end + + create_table "states", force: :cascade do |t| + t.string "name", null: false + t.string "symbol", null: false + t.integer "fips_code", limit: 1, null: false + t.integer "is_territory", null: false + t.float "lat_min", null: false + t.float "lat_max", null: false + t.float "long_min", null: false + t.float "long_max", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "users", force: :cascade do |t| + t.integer "provider", null: false + t.string "uid", null: false + t.string "email" + t.string "first_name" + t.string "last_name" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["uid", "provider"], name: "index_users_on_uid_provider", unique: true + end + +end diff --git a/db/seed_data.rb b/db/seed_data.rb new file mode 100755 index 00000000..06a993df --- /dev/null +++ b/db/seed_data.rb @@ -0,0 +1,655 @@ +# frozen_string_literal: true + +module SeedData + def self.states + # Missing Micronesia and Marshall Islands. + [ + { + name: 'Alabama', + symbol: 'AL', + fips_code: '01', + is_territory: 0, + lat_min: '-88.473227', + lat_max: '-84.88908', + long_min: '30.223334', + long_max: '-84.88908' + }, + { + name: 'Alaska', + symbol: 'AK', + fips_code: '02', + is_territory: 0, + lat_min: '-179.148909', + lat_max: '179.77847', + long_min: '51.214183', + long_max: '179.77847' + }, + { + name: 'American Samoa', + symbol: 'AS', + fips_code: '60', + is_territory: 1, + lat_min: '-171.089874', + lat_max: '-168.1433', + long_min: '-14.548699', + long_max: '-168.1433' + }, + { + name: 'Arizona', + symbol: 'AZ', + fips_code: '04', + is_territory: 0, + lat_min: '-114.81651', + lat_max: '-109.045223', + long_min: '31.332177', + long_max: '-109.045223' + }, + { + name: 'Arkansas', + symbol: 'AR', + fips_code: '05', + is_territory: 0, + lat_min: '-94.617919', + lat_max: '-89.644395', + long_min: '33.004106', + long_max: '-89.644395' + }, + { + name: 'California', + symbol: 'CA', + fips_code: '06', + is_territory: 0, + lat_min: '-124.409591', + lat_max: '-114.131211', + long_min: '32.534156', + long_max: '-114.131211' + }, + { + name: 'Colorado', + symbol: 'CO', + fips_code: '08', + is_territory: 0, + lat_min: '-109.060253', + lat_max: '-102.041524', + long_min: '36.992426', + long_max: '-102.041524' + }, + { + name: 'Commonwealth of the Northern Mariana Islands', + symbol: 'MP', + fips_code: '69', + is_territory: 1, + lat_min: '144.886331', + lat_max: '146.064818', + long_min: '14.110472', + long_max: '146.064818' + }, + { + name: 'Connecticut', + symbol: 'CT', + fips_code: '09', + is_territory: 0, + lat_min: '-73.727775', + lat_max: '-71.786994', + long_min: '40.980144', + long_max: '-71.786994' + }, + { + name: 'Delaware', + symbol: 'DE', + fips_code: '10', + is_territory: 0, + lat_min: '-75.788658', + lat_max: '-75.048939', + long_min: '38.451013', + long_max: '-75.048939' + }, + { + name: 'District of Columbia', + symbol: 'DC', + fips_code: '11', + is_territory: 1, + lat_min: '-77.119759', + lat_max: '-76.909395', + long_min: '38.791645', + long_max: '-76.909395' + }, + { + name: 'Florida', + symbol: 'FL', + fips_code: '12', + is_territory: 0, + lat_min: '-87.634938', + lat_max: '-80.031362', + long_min: '24.523096', + long_max: '-80.031362' + }, + { + name: 'Georgia', + symbol: 'GA', + fips_code: '13', + is_territory: 0, + lat_min: '-85.605165', + lat_max: '-80.839729', + long_min: '30.357851', + long_max: '-80.839729' + }, + { + name: 'Guam', + symbol: 'GU', + fips_code: '66', + is_territory: 1, + lat_min: '144.618068', + lat_max: '144.956712', + long_min: '13.234189', + long_max: '144.956712' + }, + { + name: 'Hawaii', + symbol: 'HI', + fips_code: '15', + is_territory: 0, + lat_min: '-178.334698', + lat_max: '-154.806773', + long_min: '18.910361', + long_max: '-154.806773' + }, + { + name: 'Idaho', + symbol: 'ID', + fips_code: '16', + is_territory: 0, + lat_min: '-117.243027', + lat_max: '-111.043564', + long_min: '41.988057', + long_max: '-111.043564' + }, + { + name: 'Illinois', + symbol: 'IL', + fips_code: '17', + is_territory: 0, + lat_min: '-91.513079', + lat_max: '-87.494756', + long_min: '36.970298', + long_max: '-87.494756' + }, + { + name: 'Indiana', + symbol: 'IN', + fips_code: '18', + is_territory: 0, + lat_min: '-88.09776', + lat_max: '-84.784579', + long_min: '37.771742', + long_max: '-84.784579' + }, + { + name: 'Iowa', + symbol: 'IA', + fips_code: '19', + is_territory: 0, + lat_min: '-96.639704', + lat_max: '-90.140061', + long_min: '40.375501', + long_max: '-90.140061' + }, + { + name: 'Kansas', + symbol: 'KS', + fips_code: '20', + is_territory: 0, + lat_min: '-102.051744', + lat_max: '-94.588413', + long_min: '36.993016', + long_max: '-94.588413' + }, + { + name: 'Kentucky', + symbol: 'KY', + fips_code: '21', + is_territory: 0, + lat_min: '-89.571509', + lat_max: '-81.964971', + long_min: '36.497129', + long_max: '-81.964971' + }, + { + name: 'Louisiana', + symbol: 'LA', + fips_code: '22', + is_territory: 0, + lat_min: '-94.043147', + lat_max: '-88.817017', + long_min: '28.928609', + long_max: '-88.817017' + }, + { + name: 'Maine', + symbol: 'ME', + fips_code: '23', + is_territory: 0, + lat_min: '-71.083924', + lat_max: '-66.949895', + long_min: '42.977764', + long_max: '-66.949895' + }, + { + name: 'Maryland', + symbol: 'MD', + fips_code: '24', + is_territory: 0, + lat_min: '-79.487651', + lat_max: '-75.048939', + long_min: '37.911717', + long_max: '-75.048939' + }, + { + name: 'Massachusetts', + symbol: 'MA', + fips_code: '25', + is_territory: 0, + lat_min: '-73.508142', + lat_max: '-69.928393', + long_min: '41.237964', + long_max: '-69.928393' + }, + { + name: 'Michigan', + symbol: 'MI', + fips_code: '26', + is_territory: 0, + lat_min: '-90.418136', + lat_max: '-82.413474', + long_min: '41.696118', + long_max: '-82.413474' + }, + { + name: 'Minnesota', + symbol: 'MN', + fips_code: '27', + is_territory: 0, + lat_min: '-97.239209', + lat_max: '-89.491739', + long_min: '43.499356', + long_max: '-89.491739' + }, + { + name: 'Mississippi', + symbol: 'MS', + fips_code: '28', + is_territory: 0, + lat_min: '-91.655009', + lat_max: '-88.097888', + long_min: '30.173943', + long_max: '-88.097888' + }, + { + name: 'Missouri', + symbol: 'MO', + fips_code: '29', + is_territory: 0, + lat_min: '-95.774704', + lat_max: '-89.098843', + long_min: '35.995683', + long_max: '-89.098843' + }, + { + name: 'Montana', + symbol: 'MT', + fips_code: '30', + is_territory: 0, + lat_min: '-116.050003', + lat_max: '-104.039138', + long_min: '44.358221', + long_max: '-104.039138' + }, + { + name: 'Nebraska', + symbol: 'NE', + fips_code: '31', + is_territory: 0, + lat_min: '-104.053514', + lat_max: '-95.30829', + long_min: '39.999998', + long_max: '-95.30829' + }, + { + name: 'Nevada', + symbol: 'NV', + fips_code: '32', + is_territory: 0, + lat_min: '-120.005746', + lat_max: '-114.039648', + long_min: '35.001857', + long_max: '-114.039648' + }, + { + name: 'New Hampshire', + symbol: 'NH', + fips_code: '33', + is_territory: 0, + lat_min: '-72.557247', + lat_max: '-70.610621', + long_min: '42.69699', + long_max: '-70.610621' + }, + { + name: 'New Jersey', + symbol: 'NJ', + fips_code: '34', + is_territory: 0, + lat_min: '-75.559614', + lat_max: '-73.893979', + long_min: '38.928519', + long_max: '-73.893979' + }, + { + name: 'New Mexico', + symbol: 'NM', + fips_code: '35', + is_territory: 0, + lat_min: '-109.050173', + lat_max: '-103.001964', + long_min: '31.332301', + long_max: '-103.001964' + }, + { + name: 'New York', + symbol: 'NY', + fips_code: '36', + is_territory: 0, + lat_min: '-79.762152', + lat_max: '-71.856214', + long_min: '40.496103', + long_max: '-71.856214' + }, + { + name: 'North Carolina', + symbol: 'NC', + fips_code: '37', + is_territory: 0, + lat_min: '-84.321869', + lat_max: '-75.460621', + long_min: '33.842316', + long_max: '-75.460621' + }, + { + name: 'North Dakota', + symbol: 'ND', + fips_code: '38', + is_territory: 0, + lat_min: '-104.0489', + lat_max: '-96.554507', + long_min: '45.935054', + long_max: '-96.554507' + }, + { + name: 'Ohio', + symbol: 'OH', + fips_code: '39', + is_territory: 0, + lat_min: '-84.820159', + lat_max: '-80.518693', + long_min: '38.403202', + long_max: '-80.518693' + }, + { + name: 'Oklahoma', + symbol: 'OK', + fips_code: '40', + is_territory: 0, + lat_min: '-103.002565', + lat_max: '-94.430662', + long_min: '33.615833', + long_max: '-94.430662' + }, + { + name: 'Oregon', + symbol: 'OR', + fips_code: '41', + is_territory: 0, + lat_min: '-124.566244', + lat_max: '-116.463504', + long_min: '41.991794', + long_max: '-116.463504' + }, + { + name: 'Pennsylvania', + symbol: 'PA', + fips_code: '42', + is_territory: 0, + lat_min: '-80.519891', + lat_max: '-74.689516', + long_min: '39.7198', + long_max: '-74.689516' + }, + { + name: 'Puerto Rico', + symbol: 'PR', + fips_code: '72', + is_territory: 1, + lat_min: '-67.945404', + lat_max: '-65.220703', + long_min: '17.88328', + long_max: '-65.220703' + }, + { + name: 'Rhode Island', + symbol: 'RI', + fips_code: '44', + is_territory: 0, + lat_min: '-71.862772', + lat_max: '-71.12057', + long_min: '41.146339', + long_max: '-71.12057' + }, + { + name: 'South Carolina', + symbol: 'SC', + fips_code: '45', + is_territory: 0, + lat_min: '-83.35391', + lat_max: '-78.54203', + long_min: '32.0346', + long_max: '-78.54203' + }, + { + name: 'South Dakota', + symbol: 'SD', + fips_code: '46', + is_territory: 0, + lat_min: '-104.057698', + lat_max: '-96.436589', + long_min: '42.479635', + long_max: '-96.436589' + }, + { + name: 'Tennessee', + symbol: 'TN', + fips_code: '47', + is_territory: 0, + lat_min: '-90.310298', + lat_max: '-81.6469', + long_min: '34.982972', + long_max: '-81.6469' + }, + { + name: 'Texas', + symbol: 'TX', + fips_code: '48', + is_territory: 0, + lat_min: '-106.645646', + lat_max: '-93.508292', + long_min: '25.837377', + long_max: '-93.508292' + }, + { + name: 'United States Virgin Islands', + symbol: 'VI', + fips_code: '78', + is_territory: 1, + lat_min: '-65.085452', + lat_max: '-64.564907', + long_min: '17.673976', + long_max: '-64.564907' + }, + { + name: 'Utah', + symbol: 'UT', + fips_code: '49', + is_territory: 0, + lat_min: '-114.052962', + lat_max: '-109.041058', + long_min: '36.997968', + long_max: '-109.041058' + }, + { + name: 'Vermont', + symbol: 'VT', + fips_code: '50', + is_territory: 0, + lat_min: '-73.43774', + lat_max: '-71.464555', + long_min: '42.726853', + long_max: '-71.464555' + }, + { + name: 'Virginia', + symbol: 'VA', + fips_code: '51', + is_territory: 0, + lat_min: '-83.675395', + lat_max: '-75.242266', + long_min: '36.540738', + long_max: '-75.242266' + }, + { + name: 'Washington', + symbol: 'WA', + fips_code: '53', + is_territory: 0, + lat_min: '-124.763068', + lat_max: '-116.915989', + long_min: '45.543541', + long_max: '-116.915989' + }, + { + name: 'West Virginia', + symbol: 'WV', + fips_code: '54', + is_territory: 0, + lat_min: '-82.644739', + lat_max: '-77.719519', + long_min: '37.201483', + long_max: '-77.719519' + }, + { + name: 'Wisconsin', + symbol: 'WI', + fips_code: '55', + is_territory: 0, + lat_min: '-92.888114', + lat_max: '-86.805415', + long_min: '42.491983', + long_max: '-86.805415' + }, + { + name: 'Wyoming', + symbol: 'WY', + fips_code: '56', + is_territory: 0, + lat_min: '-111.056888', + lat_max: '-104.05216', + long_min: '40.994746', + long_max: '-104.05216' + } + ] + end + + # Sample seed data for dev environment + def self.representatives + [ + { + name: 'Gavin Newsom', + news_items: [ + { + title: 'Newsom Orders Second Shutdown of Restaurants and Indoor Businesses amid COVID-19', + description: 'The new order affects 19 California counties with a surging number of coronavirus cases', + link: 'https://people.com/human-interest/california-gov-gavin-newsom-orders-second-shutdown-of-restaurants-and-indoor-businesses-amid-covid-19/' + }, + { + title: "Newsom warns that young adults are not 'invincible' to Coronavirus", + description: 'Gov. Gavin Newsom said Monday that the surge in coronavirus cases hitting California was due in part to younger people who might believe “they are invincible” but nonetheless are becoming sick from COVID-19.', + link: 'https://www.latimes.com/california/story/2020-07-06/young-adult-who-think-they-are-invincible-hit-hard-by-coronavirus-newsom-says' + } + ] + }, + { + name: 'Alexander Ocasio Cortez', + news_items: [ + { + title: 'What AOC and other House Dems want to do about Climate Change', + description: 'A new select committee report is perfectly in tune with the growing climate policy alignment on the left around standards, investments, and justice.', + link: 'https://www.vox.com/energy-and-environment/2020/6/30/21305891/aoc-climate-change-house-democrats-select-committee-report' + }, + { + title: 'AOC among Dems who launch a fundraising campaign on a progressive platform', + description: 'Democratic Reps. Alexandria Ocasio-Cortez of New York, Ilhan Omar of Minnesota, Rashida Tlaib of Michigan and Ayanna Pressley of Massachusetts are launching a joint fundraising committee called the "Squad Victory Fund," the latest effort by the well-known freshmen lawmakers to support one another and their advocacy for progressive priorities.', + link: 'https://www.cnn.com/2020/07/01/politics/squad-ocasio-cortez-tlaib-omar-pressley/index.html' + }, + { + title: 'AOC opts to skip debate citing social distancing rules', + description: 'New York Rep. Alexandria Ocasio-Cortez insisted Monday she’s “not skipping debates” like her predecessor, Joe Crowley, did to disastrous effect two years ago — even though she is ducking one Wednesday citing social distancing rules despite having been out at a George Floyd protest and other group events this month.', + link: 'https://nypost.com/2020/06/15/aoc-defends-decision-not-to-attend-wednesdays-debate-in-person/' + } + ] + } + ] + end + + def self.events + [ + { + name: 'Pride Parade', + description: 'Annual pride parade', + start_time: Time.zone.now + 4.weeks, + end_time: Time.zone.now + 4.weeks + 1.hour, + state_symbol: 'CA', + fips_code: 1 + }, + { + name: 'First Fridays', + description: 'Oakland\'s monthly first Fridays', + start_time: Time.zone.now + 4.weeks, + end_time: Time.zone.now + 4.weeks + 1.hour, + state_symbol: 'CA', + fips_code: '001' + }, + { + name: 'BLM', + description: 'Black Lives Matter Parade', + start_time: Time.zone.now + 4.weeks, + end_time: Time.zone.now + 4.weeks + 1.hour, + state_symbol: 'OR', + fips_code: '051' + }, + { + name: 'Disability Pride Parade', + description: 'Celebrate disabled people!', + start_time: Time.zone.now + 4.weeks, + end_time: Time.zone.now + 4.weeks + 1.hour, + state_symbol: 'IL', + fips_code: '031' + }, + { + name: 'Climate Strike', + description: 'Earth Day march', + start_time: Time.zone.now + 4.weeks, + end_time: Time.zone.now + 4.weeks + 1.hour, + state_symbol: 'WA', + fips_code: '033' + } + ] + end +end diff --git a/db/seeds.rb b/db/seeds.rb new file mode 100755 index 00000000..bfbb6485 --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,50 @@ +# frozen_string_literal: true + +# This file should contain all the record creation needed to seed the database with its default values. +# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup). +# +# Examples: +# +# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }]) +# Character.create(name: 'Luke', movie: movies.first) + +require_relative 'seed_data' + +State.destroy_all +County.destroy_all +Representative.destroy_all + +SeedData.states.each { |state| State.create state } + +SeedData.states.each do |state| + state = State.find_by(symbol: state[:symbol]) + county_filename = "lib/assets/counties_fips_data/#{state[:symbol].downcase}.json" + File.open(Rails.root.join(county_filename), 'r:UTF-8') do |f| + state.counties = JSON.parse(f.read, object_class: County) + end + state.save +end + +SeedData.representatives.each do |rep| + rep_model = Representative.create(name: rep[:name]) + rep[:news_items].each do |news_item| + NewsItem.create( + representative: rep_model, + title: news_item[:title], + description: news_item[:description], + link: news_item[:link] + ) + end +end + +SeedData.events.each do |event| + state = State.find_by(symbol: event[:state_symbol]) + county = County.find_by(state_id: state.id, fips_code: event[:fips_code]) + Event.create( + name: event[:name], + description: event[:description], + county: county, + start_time: event[:start_time], + end_time: event[:end_time] + ) +end diff --git a/docs/Checkpoint-1-Spec-1a05.md b/docs/Checkpoint-1-Spec-1a05.md new file mode 120000 index 00000000..29127681 --- /dev/null +++ b/docs/Checkpoint-1-Spec-1a05.md @@ -0,0 +1 @@ +../../scaffolding/content/Checkpoint-1-Spec-1a05.md \ No newline at end of file diff --git a/docs/Checkpoint-2-Spec-2684.md b/docs/Checkpoint-2-Spec-2684.md new file mode 120000 index 00000000..bdf9dfb7 --- /dev/null +++ b/docs/Checkpoint-2-Spec-2684.md @@ -0,0 +1 @@ +../../scaffolding/content/Checkpoint-2-Spec-2684.md \ No newline at end of file diff --git a/docs/Checkpoint-3-Spec-b9c9.md b/docs/Checkpoint-3-Spec-b9c9.md new file mode 120000 index 00000000..e60fc7fa --- /dev/null +++ b/docs/Checkpoint-3-Spec-b9c9.md @@ -0,0 +1 @@ +../../scaffolding/content/Checkpoint-3-Spec-b9c9.md \ No newline at end of file diff --git a/docs/Credentials-Management--Heroku--and-Travis-CI-6b5d.md b/docs/Credentials-Management--Heroku--and-Travis-CI-6b5d.md new file mode 120000 index 00000000..20deae6c --- /dev/null +++ b/docs/Credentials-Management--Heroku--and-Travis-CI-6b5d.md @@ -0,0 +1 @@ +../../scaffolding/content/Credentials-Management--Heroku--and-Travis-CI-6b5d.md \ No newline at end of file diff --git a/docs/End-of-Iteration-1-b43f.md b/docs/End-of-Iteration-1-b43f.md new file mode 120000 index 00000000..ab4e26cd --- /dev/null +++ b/docs/End-of-Iteration-1-b43f.md @@ -0,0 +1 @@ +../../scaffolding/content/End-of-Iteration-1-b43f.md \ No newline at end of file diff --git a/docs/End-of-Iteration-2-3d4f.md b/docs/End-of-Iteration-2-3d4f.md new file mode 120000 index 00000000..73ed2191 --- /dev/null +++ b/docs/End-of-Iteration-2-3d4f.md @@ -0,0 +1 @@ +../../scaffolding/content/End-of-Iteration-2-3d4f.md \ No newline at end of file diff --git a/docs/Getting-Started-a6c3.md b/docs/Getting-Started-a6c3.md new file mode 120000 index 00000000..a152f9c2 --- /dev/null +++ b/docs/Getting-Started-a6c3.md @@ -0,0 +1 @@ +../../scaffolding/content/Getting-Started-a6c3.md \ No newline at end of file diff --git a/docs/Intro-23fe.md b/docs/Intro-23fe.md new file mode 120000 index 00000000..a375b5e0 --- /dev/null +++ b/docs/Intro-23fe.md @@ -0,0 +1 @@ +../../scaffolding/content/Intro-23fe.md \ No newline at end of file diff --git a/docs/Iteration-Instructions-581b.md b/docs/Iteration-Instructions-581b.md new file mode 120000 index 00000000..5e8ef509 --- /dev/null +++ b/docs/Iteration-Instructions-581b.md @@ -0,0 +1 @@ +../../scaffolding/content/Iteration-Instructions-581b.md \ No newline at end of file diff --git a/docs/Linters-ef5d.md b/docs/Linters-ef5d.md new file mode 120000 index 00000000..17bec19e --- /dev/null +++ b/docs/Linters-ef5d.md @@ -0,0 +1 @@ +../../scaffolding/content/Linters-ef5d.md \ No newline at end of file diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 00000000..faa23c70 --- /dev/null +++ b/docs/README.md @@ -0,0 +1,14 @@ +If you're using Codio, all of the below documentation is built into +the Codio guides in the assignment. They are reproduced here for +learners trying to do the assignment without Codio. + +1. [Intro](https://github.com/cs169/hw-agile-iterations/blob/master/docs/Intro-23fe.md) +2. [Getting Started](https://github.com/cs169/hw-agile-iterations/blob/master/docs/Getting-Started-a6c3.md) +3. [Linters](https://github.com/cs169/hw-agile-iterations/blob/master/docs/Linters-ef5d.md) +4. [Credentials Management, CI, and Issue Tracking](https://github.com/cs169/hw-agile-iterations/blob/master/docs/Credentials-Management--Heroku--and-Travis-CI-6b5d.md) +6. [Iteration Instructions](https://github.com/cs169/hw-agile-iterations/blob/master/docs/Iteration-Instructions-581b.md) +7. [Checkpoint 1 Spec](https://github.com/cs169/hw-agile-iterations/blob/master/docs/Checkpoint-1-Spec-1a05.md) +9. [Checkpoint 2 Spec](https://github.com/cs169/hw-agile-iterations/blob/master/docs/Checkpoint-2-Spec-2684.md) +10. [End of Iteration 1](https://github.com/cs169/hw-agile-iterations/blob/master/docs/End-of-Iteration-1-b43f.md) +11. [Checkpoint 3 Spec](https://github.com/cs169/hw-agile-iterations/blob/master/docs/Checkpoint-3-Spec-b9c9.md) +12. [End of Iteration 2](https://github.com/cs169/hw-agile-iterations/blob/master/docs/End-of-Iteration-2-3d4f.md) diff --git a/features/step_definitions/.gitkeep b/features/step_definitions/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/features/step_definitions/web_steps.rb b/features/step_definitions/web_steps.rb new file mode 100644 index 00000000..4d9aab64 --- /dev/null +++ b/features/step_definitions/web_steps.rb @@ -0,0 +1,254 @@ +# TL;DR: YOU SHOULD DELETE THIS FILE +# +# This file was generated by Cucumber-Rails and is only here to get you a head start +# These step definitions are thin wrappers around the Capybara/Webrat API that lets you +# visit pages, interact with widgets and make assertions about page content. +# +# If you use these step definitions as basis for your features you will quickly end up +# with features that are: +# +# * Hard to maintain +# * Verbose to read +# +# A much better approach is to write your own higher level step definitions, following +# the advice in the following blog posts: +# +# * http://benmabey.com/2008/05/19/imperative-vs-declarative-scenarios-in-user-stories.html +# * http://dannorth.net/2011/01/31/whose-domain-is-it-anyway/ +# * http://elabs.se/blog/15-you-re-cuking-it-wrong +# + + +require 'uri' +require 'cgi' +require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "paths")) +require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "selectors")) + +module WithinHelpers + def with_scope(locator) + locator ? within(*selector_for(locator)) { yield } : yield + end +end +World(WithinHelpers) + +# Single-line step scoper +When /^(.*) within (.*[^:])$/ do |step, parent| + with_scope(parent) { When step } +end + +# Multi-line step scoper +When /^(.*) within (.*[^:]):$/ do |step, parent, table_or_string| + with_scope(parent) { When "#{step}:", table_or_string } +end + +Given /^(?:|I )am on (.+)$/ do |page_name| + visit path_to(page_name) +end + +When /^(?:|I )go to (.+)$/ do |page_name| + visit path_to(page_name) +end + +When /^(?:|I )press "([^"]*)"$/ do |button| + click_button(button) +end + +When /^(?:|I )follow "([^"]*)"$/ do |link| + click_link(link) +end + +When /^(?:|I )fill in "([^"]*)" with "([^"]*)"$/ do |field, value| + fill_in(field, :with => value) +end + +When /^(?:|I )fill in "([^"]*)" for "([^"]*)"$/ do |value, field| + fill_in(field, :with => value) +end + +# Use this to fill in an entire form with data from a table. Example: +# +# When I fill in the following: +# | Account Number | 5002 | +# | Expiry date | 2009-11-01 | +# | Note | Nice guy | +# | Wants Email? | | +# +# TODO: Add support for checkbox, select or option +# based on naming conventions. +# +When /^(?:|I )fill in the following:$/ do |fields| + fields.rows_hash.each do |name, value| + When %{I fill in "#{name}" with "#{value}"} + end +end + +When /^(?:|I )select "([^"]*)" from "([^"]*)"$/ do |value, field| + select(value, :from => field) +end + +When /^(?:|I )check "([^"]*)"$/ do |field| + check(field) +end + +When /^(?:|I )uncheck "([^"]*)"$/ do |field| + uncheck(field) +end + +When /^(?:|I )choose "([^"]*)"$/ do |field| + choose(field) +end + +When /^(?:|I )attach the file "([^"]*)" to "([^"]*)"$/ do |path, field| + attach_file(field, File.expand_path(path)) +end + +Then /^(?:|I )should see "([^"]*)"$/ do |text| + if page.respond_to? :should + page.should have_content(text) + else + assert page.has_content?(text) + end +end + +Then /^(?:|I )should see \/([^\/]*)\/$/ do |regexp| + regexp = Regexp.new(regexp) + + if page.respond_to? :should + page.should have_xpath('//*', :text => regexp) + else + assert page.has_xpath?('//*', :text => regexp) + end +end + +Then /^(?:|I )should not see "([^"]*)"$/ do |text| + if page.respond_to? :should + page.should have_no_content(text) + else + assert page.has_no_content?(text) + end +end + +Then /^(?:|I )should not see \/([^\/]*)\/$/ do |regexp| + regexp = Regexp.new(regexp) + + if page.respond_to? :should + page.should have_no_xpath('//*', :text => regexp) + else + assert page.has_no_xpath?('//*', :text => regexp) + end +end + +Then /^the "([^"]*)" field(?: within (.*))? should contain "([^"]*)"$/ do |field, parent, value| + with_scope(parent) do + field = find_field(field) + field_value = (field.tag_name == 'textarea') ? field.text : field.value + if field_value.respond_to? :should + field_value.should =~ /#{value}/ + else + assert_match(/#{value}/, field_value) + end + end +end + +Then /^the "([^"]*)" field(?: within (.*))? should not contain "([^"]*)"$/ do |field, parent, value| + with_scope(parent) do + field = find_field(field) + field_value = (field.tag_name == 'textarea') ? field.text : field.value + if field_value.respond_to? :should_not + field_value.should_not =~ /#{value}/ + else + assert_no_match(/#{value}/, field_value) + end + end +end + +Then /^the "([^"]*)" field should have the error "([^"]*)"$/ do |field, error_message| + element = find_field(field) + classes = element.find(:xpath, '..')[:class].split(' ') + + form_for_input = element.find(:xpath, 'ancestor::form[1]') + using_formtastic = form_for_input[:class].include?('formtastic') + error_class = using_formtastic ? 'error' : 'field_with_errors' + + if classes.respond_to? :should + classes.should include(error_class) + else + assert classes.include?(error_class) + end + + if page.respond_to?(:should) + if using_formtastic + error_paragraph = element.find(:xpath, '../*[@class="inline-errors"][1]') + error_paragraph.should have_content(error_message) + else + page.should have_content("#{field.titlecase} #{error_message}") + end + else + if using_formtastic + error_paragraph = element.find(:xpath, '../*[@class="inline-errors"][1]') + assert error_paragraph.has_content?(error_message) + else + assert page.has_content?("#{field.titlecase} #{error_message}") + end + end +end + +Then /^the "([^"]*)" field should have no error$/ do |field| + element = find_field(field) + classes = element.find(:xpath, '..')[:class].split(' ') + if classes.respond_to? :should + classes.should_not include('field_with_errors') + classes.should_not include('error') + else + assert !classes.include?('field_with_errors') + assert !classes.include?('error') + end +end + +Then /^the "([^"]*)" checkbox(?: within (.*))? should be checked$/ do |label, parent| + with_scope(parent) do + field_checked = find_field(label)['checked'] + if field_checked.respond_to? :should + field_checked.should be_true + else + assert field_checked + end + end +end + +Then /^the "([^"]*)" checkbox(?: within (.*))? should not be checked$/ do |label, parent| + with_scope(parent) do + field_checked = find_field(label)['checked'] + if field_checked.respond_to? :should + field_checked.should be_false + else + assert !field_checked + end + end +end + +Then /^(?:|I )should be on (.+)$/ do |page_name| + current_path = URI.parse(current_url).path + if current_path.respond_to? :should + current_path.should == path_to(page_name) + else + assert_equal path_to(page_name), current_path + end +end + +Then /^(?:|I )should have the following query string:$/ do |expected_pairs| + query = URI.parse(current_url).query + actual_params = query ? CGI.parse(query) : {} + expected_params = {} + expected_pairs.rows_hash.each_pair{|k,v| expected_params[k] = v.split(',')} + + if actual_params.respond_to? :should + actual_params.should == expected_params + else + assert_equal expected_params, actual_params + end +end + +Then /^show me the page$/ do + save_and_open_page +end diff --git a/features/support/env.rb b/features/support/env.rb new file mode 100755 index 00000000..4546c50a --- /dev/null +++ b/features/support/env.rb @@ -0,0 +1,71 @@ +# frozen_string_literal: true + +# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril. +# It is recommended to regenerate this file in the future when you upgrade to a +# newer version of cucumber-rails. Consider adding your own code to a new file +# instead of editing this one. Cucumber will automatically load all features/**/*.rb +# files. + +# See: https://github.com/codecov/example-ruby + +require 'simplecov' +SimpleCov.start 'rails' + +if ENV['CI'] + require 'codecov' + SimpleCov.formatter = SimpleCov::Formatter::Codecov +end + +require 'cucumber/rails' + +# frozen_string_literal: true + +# Capybara defaults to CSS3 selectors rather than XPath. +# If you'd prefer to use XPath, just uncomment this line and adjust any +# selectors in your step definitions to use the XPath syntax. +# Capybara.default_selector = :xpath + +# By default, any exception happening in your Rails application will bubble up +# to Cucumber so that your scenario will fail. This is a different from how +# your application behaves in the production environment, where an error page will +# be rendered instead. +# +# Sometimes we want to override this default behaviour and allow Rails to rescue +# exceptions and display an error page (just like when the app is running in production). +# Typical scenarios where you want to do this is when you test your error pages. +# There are two ways to allow Rails to rescue exceptions: +# +# 1) Tag your scenario (or feature) with @allow-rescue +# +# 2) Set the value below to true. Beware that doing this globally is not +# recommended as it will mask a lot of errors for you! +# +ActionController::Base.allow_rescue = false + +# Remove/comment out the lines below if your app doesn't have a database. +# For some databases (like MongoDB and CouchDB) you may need to use :truncation instead. +begin + DatabaseCleaner.strategy = :transaction +rescue NameError + raise 'You need to add database_cleaner to your Gemfile (in the :test group) if you wish to use it.' +end + +# You may also want to configure DatabaseCleaner to use different strategies for certain features and scenarios. +# See the DatabaseCleaner documentation for details. Example: +# +# Before('@no-txn,@selenium,@culerity,@celerity,@javascript') do +# # { except: [:widgets] } may not do what you expect here +# # as Cucumber::Rails::Database.javascript_strategy overrides +# # this setting. +# DatabaseCleaner.strategy = :truncation +# end +# +# Before('not @no-txn', 'not @selenium', 'not @culerity', 'not @celerity', 'not @javascript') do +# DatabaseCleaner.strategy = :transaction +# end +# + +# Possible values are :truncation and :transaction +# The :transaction strategy is faster, but might give you threading problems. +# See https://github.com/cucumber/cucumber-rails/blob/master/features/choose_javascript_database_strategy.feature +Cucumber::Rails::Database.javascript_strategy = :truncation diff --git a/features/support/paths.rb b/features/support/paths.rb new file mode 100644 index 00000000..290543c3 --- /dev/null +++ b/features/support/paths.rb @@ -0,0 +1,38 @@ +# TL;DR: YOU SHOULD DELETE THIS FILE +# +# This file is used by web_steps.rb, which you should also delete +# +# You have been warned +module NavigationHelpers + # Maps a name to a path. Used by the + # + # When /^I go to (.+)$/ do |page_name| + # + # step definition in web_steps.rb + # + def path_to(page_name) + case page_name + + when /^the home\s?page$/ + '/' + + # Add more mappings here. + # Here is an example that pulls values out of the Regexp: + # + # when /^(.*)'s profile page$/i + # user_profile_path(User.find_by_login($1)) + + else + begin + page_name =~ /^the (.*) page$/ + path_components = $1.split(/\s+/) + self.send(path_components.push('path').join('_').to_sym) + rescue NoMethodError, ArgumentError + raise "Can't find mapping from \"#{page_name}\" to a path.\n" + + "Now, go and add a mapping in #{__FILE__}" + end + end + end +end + +World(NavigationHelpers) diff --git a/features/support/selectors.rb b/features/support/selectors.rb new file mode 100644 index 00000000..33bebc1d --- /dev/null +++ b/features/support/selectors.rb @@ -0,0 +1,44 @@ +# TL;DR: YOU SHOULD DELETE THIS FILE +# +# This file is used by web_steps.rb, which you should also delete +# +# You have been warned +module HtmlSelectorsHelpers + # Maps a name to a selector. Used primarily by the + # + # When /^(.+) within (.+)$/ do |step, scope| + # + # step definitions in web_steps.rb + # + def selector_for(locator) + case locator + + when "the page" + "html > body" + + # Add more mappings here. + # Here is an example that pulls values out of the Regexp: + # + # when /^the (notice|error|info) flash$/ + # ".flash.#{$1}" + + # You can also return an array to use a different selector + # type, like: + # + # when /the header/ + # [:xpath, "//header"] + + # This allows you to provide a quoted selector as the scope + # for "within" steps as was previously the default for the + # web steps: + when /^"(.+)"$/ + $1 + + else + raise "Can't find mapping from \"#{locator}\" to a selector.\n" + + "Now, go and add a mapping in #{__FILE__}" + end + end +end + +World(HtmlSelectorsHelpers) diff --git a/lib/assets/counties_fips_data/ak.json b/lib/assets/counties_fips_data/ak.json new file mode 100755 index 00000000..205470b1 --- /dev/null +++ b/lib/assets/counties_fips_data/ak.json @@ -0,0 +1,147 @@ +[ + { + "fips_code": "013", + "name": "Aleutians East Borough", + "fips_class": "H1" + }, + { + "fips_code": "016", + "name": "Aleutians West Census Area", + "fips_class": "H5" + }, + { + "fips_code": "020", + "name": "Anchorage Municipality", + "fips_class": "H6" + }, + { + "fips_code": "050", + "name": "Bethel Census Area", + "fips_class": "H5" + }, + { + "fips_code": "060", + "name": "Bristol Bay Borough", + "fips_class": "H1" + }, + { + "fips_code": "068", + "name": "Denali Borough", + "fips_class": "H1" + }, + { + "fips_code": "070", + "name": "Dillingham Census Area", + "fips_class": "H5" + }, + { + "fips_code": "090", + "name": "Fairbanks North Star Borough", + "fips_class": "H1" + }, + { + "fips_code": "100", + "name": "Haines Borough", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Hoonah Angoon Census Area", + "fips_class": "H5" + }, + { + "fips_code": "110", + "name": "Juneau City And Borough", + "fips_class": "H6" + }, + { + "fips_code": "122", + "name": "Kenai Peninsula Borough", + "fips_class": "H1" + }, + { + "fips_code": "130", + "name": "Ketchikan Gateway Borough", + "fips_class": "H1" + }, + { + "fips_code": "150", + "name": "Kodiak Island Borough", + "fips_class": "H1" + }, + { + "fips_code": "164", + "name": "Lake And Peninsula Borough", + "fips_class": "H1" + }, + { + "fips_code": "170", + "name": "Matanuska Susitna Borough", + "fips_class": "H1" + }, + { + "fips_code": "180", + "name": "Nome Census Area", + "fips_class": "H5" + }, + { + "fips_code": "185", + "name": "North Slope Borough", + "fips_class": "H1" + }, + { + "fips_code": "188", + "name": "Northwest Arctic Borough", + "fips_class": "H1" + }, + { + "fips_code": "195", + "name": "Petersburg Census Area", + "fips_class": "H5" + }, + { + "fips_code": "198", + "name": "Prince Of Wales Hyder Census Area", + "fips_class": "H5" + }, + { + "fips_code": "220", + "name": "Sitka City And Borough", + "fips_class": "H6" + }, + { + "fips_code": "230", + "name": "Skagway Municipality", + "fips_class": "H1" + }, + { + "fips_code": "240", + "name": "Southeast Fairbanks Census Area", + "fips_class": "H5" + }, + { + "fips_code": "261", + "name": "Valdez Cordova Census Area", + "fips_class": "H5" + }, + { + "fips_code": "158", + "name": "Kusilvak Census Area", + "fips_class": "H5" + }, + { + "fips_code": "275", + "name": "Wrangell City And Borough", + "fips_class": "H1" + }, + { + "fips_code": "282", + "name": "Yakutat City And Borough", + "fips_class": "H1" + }, + { + "fips_code": "290", + "name": "Yukon Koyukuk Census Area", + "fips_class": "H5" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/al.json b/lib/assets/counties_fips_data/al.json new file mode 100755 index 00000000..af507646 --- /dev/null +++ b/lib/assets/counties_fips_data/al.json @@ -0,0 +1,337 @@ +[ + { + "fips_code": "001", + "name": "Autauga County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Baldwin County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Barbour County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Bibb County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Blount County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Bullock County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Butler County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Calhoun County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Chambers County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Cherokee County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Chilton County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Choctaw County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Clarke County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Cleburne County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Coffee County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Colbert County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Conecuh County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Coosa County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Covington County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Crenshaw County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Cullman County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Dale County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Dallas County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "De Kalb County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Elmore County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Escambia County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Etowah County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Fayette County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Geneva County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Hale County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Henry County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Houston County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Lamar County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Lauderdale County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Lawrence County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Lee County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Limestone County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Lowndes County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Macon County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Marengo County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Marshall County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Mobile County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Morgan County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Perry County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Pickens County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Pike County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Randolph County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Russell County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "St. Clair County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Shelby County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Sumter County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Talladega County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Tallapoosa County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Tuscaloosa County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Walker County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Wilcox County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Winston County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ar.json b/lib/assets/counties_fips_data/ar.json new file mode 100755 index 00000000..1d5dd461 --- /dev/null +++ b/lib/assets/counties_fips_data/ar.json @@ -0,0 +1,377 @@ +[ + { + "fips_code": "001", + "name": "Arkansas County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Ashley County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Baxter County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Benton County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Boone County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Bradley County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Calhoun County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Carroll County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Chicot County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Clark County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Cleburne County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Cleveland County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Columbia County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Conway County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Craighead County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Crawford County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Crittenden County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Cross County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Dallas County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Desha County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Drew County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Faulkner County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Fulton County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Garland County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Hempstead County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Hot Spring County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Howard County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Independence County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Izard County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Johnson County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Lafayette County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Lawrence County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Lee County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Little River County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Logan County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Lonoke County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Miller County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Mississippi County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Nevada County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Newton County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Ouachita County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Perry County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Phillips County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Pike County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Poinsett County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Polk County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Pope County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Prairie County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Pulaski County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Randolph County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "St. Francis County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Saline County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Scott County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Searcy County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Sebastian County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Sevier County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Sharp County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Stone County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Van Buren County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "White County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Woodruff County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Yell County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/as.json b/lib/assets/counties_fips_data/as.json new file mode 100755 index 00000000..d68d60c9 --- /dev/null +++ b/lib/assets/counties_fips_data/as.json @@ -0,0 +1,27 @@ +[ + { + "fips_code": "010", + "name": "Eastern District", + "fips_class": "H1" + }, + { + "fips_code": "020", + "name": "Manu'a District", + "fips_class": "H1" + }, + { + "fips_code": "030", + "name": "Rose Island", + "fips_class": "H4" + }, + { + "fips_code": "040", + "name": "Swains Island", + "fips_class": "H4" + }, + { + "fips_code": "050", + "name": "Western District", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/az.json b/lib/assets/counties_fips_data/az.json new file mode 100755 index 00000000..df0d96eb --- /dev/null +++ b/lib/assets/counties_fips_data/az.json @@ -0,0 +1,77 @@ +[ + { + "fips_code": "001", + "name": "Apache County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Cochise County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Coconino County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Gila County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Graham County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Greenlee County", + "fips_class": "H1" + }, + { + "fips_code": "012", + "name": "La Paz County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Maricopa County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Mohave County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Navajo County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Pima County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Pinal County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Santa Cruz County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Yavapai County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Yuma County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ca.json b/lib/assets/counties_fips_data/ca.json new file mode 100755 index 00000000..9235940a --- /dev/null +++ b/lib/assets/counties_fips_data/ca.json @@ -0,0 +1,292 @@ +[ + { + "fips_code": "001", + "name": "Alameda County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Alpine County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Amador County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Butte County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Calaveras County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Colusa County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Contra Costa County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Del Norte County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "El Dorado County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Fresno County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Glenn County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Humboldt County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Imperial County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Inyo County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Kern County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Kings County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Lake County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Lassen County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Los Angeles County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Madera County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Marin County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Mariposa County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Mendocino County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Merced County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Modoc County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Mono County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Monterey County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Napa County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Nevada County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Orange County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Placer County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Plumas County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Riverside County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Sacramento County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "San Benito County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "San Bernardino County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "San Diego County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "San Francisco County", + "fips_class": "H6" + }, + { + "fips_code": "077", + "name": "San Joaquin County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "San Luis Obispo County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "San Mateo County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Santa Barbara County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Santa Clara County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Santa Cruz County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Shasta County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Sierra County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Siskiyou County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Solano County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Sonoma County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Stanislaus County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Sutter County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Tehama County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Trinity County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Tulare County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Tuolumne County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Ventura County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Yolo County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Yuba County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/co.json b/lib/assets/counties_fips_data/co.json new file mode 100755 index 00000000..341b11fc --- /dev/null +++ b/lib/assets/counties_fips_data/co.json @@ -0,0 +1,322 @@ +[ + { + "fips_code": "001", + "name": "Adams County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Alamosa County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Arapahoe County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Archuleta County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Baca County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Bent County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Boulder County", + "fips_class": "H1" + }, + { + "fips_code": "014", + "name": "Broomfield County", + "fips_class": "H6" + }, + { + "fips_code": "015", + "name": "Chaffee County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Cheyenne County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Clear Creek County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Conejos County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Costilla County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Crowley County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Custer County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Delta County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Denver County", + "fips_class": "H6" + }, + { + "fips_code": "033", + "name": "Dolores County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Douglas County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Eagle County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Elbert County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "El Paso County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Fremont County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Garfield County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Gilpin County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Grand County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Gunnison County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Hinsdale County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Huerfano County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Kiowa County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Kit Carson County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Lake County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "La Plata County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Larimer County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Las Animas County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Logan County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Mesa County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Mineral County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Moffat County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Montezuma County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Montrose County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Morgan County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Otero County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Ouray County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Park County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Phillips County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Pitkin County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Prowers County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Pueblo County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Rio Blanco County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Rio Grande County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Routt County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Saguache County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "San Juan County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "San Miguel County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Sedgwick County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Summit County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Teller County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Weld County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Yuma County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ct.json b/lib/assets/counties_fips_data/ct.json new file mode 100755 index 00000000..293730e8 --- /dev/null +++ b/lib/assets/counties_fips_data/ct.json @@ -0,0 +1,42 @@ +[ + { + "fips_code": "001", + "name": "Fairfield County", + "fips_class": "H4" + }, + { + "fips_code": "003", + "name": "Hartford County", + "fips_class": "H4" + }, + { + "fips_code": "005", + "name": "Litchfield County", + "fips_class": "H4" + }, + { + "fips_code": "007", + "name": "Middlesex County", + "fips_class": "H4" + }, + { + "fips_code": "009", + "name": "New Haven County", + "fips_class": "H4" + }, + { + "fips_code": "011", + "name": "New London County", + "fips_class": "H4" + }, + { + "fips_code": "013", + "name": "Tolland County", + "fips_class": "H4" + }, + { + "fips_code": "015", + "name": "Windham County", + "fips_class": "H4" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/dc.json b/lib/assets/counties_fips_data/dc.json new file mode 100755 index 00000000..2ed8f9eb --- /dev/null +++ b/lib/assets/counties_fips_data/dc.json @@ -0,0 +1,7 @@ +[ + { + "fips_code": "001", + "name": "District Of Columbia", + "fips_class": "H6" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/de.json b/lib/assets/counties_fips_data/de.json new file mode 100755 index 00000000..44cc8ad7 --- /dev/null +++ b/lib/assets/counties_fips_data/de.json @@ -0,0 +1,17 @@ +[ + { + "fips_code": "001", + "name": "Kent County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "New Castle County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Sussex County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/fl.json b/lib/assets/counties_fips_data/fl.json new file mode 100755 index 00000000..964951b1 --- /dev/null +++ b/lib/assets/counties_fips_data/fl.json @@ -0,0 +1,337 @@ +[ + { + "fips_code": "001", + "name": "Alachua County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Baker County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Bay County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Bradford County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Brevard County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Broward County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Calhoun County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Charlotte County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Citrus County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Collier County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Columbia County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "De Soto County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Dixie County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Duval County", + "fips_class": "H6" + }, + { + "fips_code": "033", + "name": "Escambia County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Flagler County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Gadsden County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Gilchrist County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Glades County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Gulf County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Hamilton County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Hardee County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Hendry County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Hernando County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Highlands County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Hillsborough County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Holmes County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Indian River County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Lafayette County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Lake County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Lee County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Leon County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Levy County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Liberty County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Manatee County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Martin County", + "fips_class": "H1" + }, + { + "fips_code": "086", + "name": "Miami Dade County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Nassau County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Okaloosa County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Okeechobee County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Orange County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Osceola County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Palm Beach County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Pasco County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Pinellas County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Polk County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Putnam County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "St. Johns County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "St. Lucie County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Santa Rosa County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Sarasota County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Seminole County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Sumter County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Suwannee County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Taylor County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Volusia County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Wakulla County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Walton County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Washington County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ga.json b/lib/assets/counties_fips_data/ga.json new file mode 100755 index 00000000..e802ad7f --- /dev/null +++ b/lib/assets/counties_fips_data/ga.json @@ -0,0 +1,797 @@ +[ + { + "fips_code": "001", + "name": "Appling County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Atkinson County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Bacon County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Baker County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Baldwin County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Banks County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Barrow County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Bartow County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Ben Hill County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Berrien County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Bibb County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Bleckley County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Brantley County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Brooks County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Bryan County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Bulloch County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Burke County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Butts County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Calhoun County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Camden County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Candler County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Carroll County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Catoosa County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Charlton County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Chatham County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Chattahoochee County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Chattooga County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Cherokee County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Clarke County", + "fips_class": "H6" + }, + { + "fips_code": "061", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Clayton County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Clinch County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Cobb County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Coffee County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Colquitt County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Columbia County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Cook County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Coweta County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Crawford County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Crisp County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Dade County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Dawson County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Decatur County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "De Kalb County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Dodge County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Dooly County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Dougherty County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Douglas County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Early County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Echols County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Effingham County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Elbert County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Emanuel County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Evans County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Fannin County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Fayette County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Floyd County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Forsyth County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Fulton County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Gilmer County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Glascock County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Glynn County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Gordon County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Grady County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Gwinnett County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Habersham County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Hall County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Hancock County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Haralson County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Harris County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Hart County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Heard County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Henry County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Houston County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Irwin County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Jasper County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Jeff Davis County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Jenkins County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Johnson County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Jones County", + "fips_class": "H1" + }, + { + "fips_code": "171", + "name": "Lamar County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Lanier County", + "fips_class": "H1" + }, + { + "fips_code": "175", + "name": "Laurens County", + "fips_class": "H1" + }, + { + "fips_code": "177", + "name": "Lee County", + "fips_class": "H1" + }, + { + "fips_code": "179", + "name": "Liberty County", + "fips_class": "H1" + }, + { + "fips_code": "181", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "183", + "name": "Long County", + "fips_class": "H1" + }, + { + "fips_code": "185", + "name": "Lowndes County", + "fips_class": "H1" + }, + { + "fips_code": "187", + "name": "Lumpkin County", + "fips_class": "H1" + }, + { + "fips_code": "189", + "name": "Mc Duffie County", + "fips_class": "H1" + }, + { + "fips_code": "191", + "name": "Mc Intosh County", + "fips_class": "H1" + }, + { + "fips_code": "193", + "name": "Macon County", + "fips_class": "H1" + }, + { + "fips_code": "195", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "197", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "199", + "name": "Meriwether County", + "fips_class": "H1" + }, + { + "fips_code": "201", + "name": "Miller County", + "fips_class": "H1" + }, + { + "fips_code": "205", + "name": "Mitchell County", + "fips_class": "H1" + }, + { + "fips_code": "207", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "209", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "211", + "name": "Morgan County", + "fips_class": "H1" + }, + { + "fips_code": "213", + "name": "Murray County", + "fips_class": "H1" + }, + { + "fips_code": "215", + "name": "Muscogee County", + "fips_class": "H6" + }, + { + "fips_code": "217", + "name": "Newton County", + "fips_class": "H1" + }, + { + "fips_code": "219", + "name": "Oconee County", + "fips_class": "H1" + }, + { + "fips_code": "221", + "name": "Oglethorpe County", + "fips_class": "H1" + }, + { + "fips_code": "223", + "name": "Paulding County", + "fips_class": "H1" + }, + { + "fips_code": "225", + "name": "Peach County", + "fips_class": "H1" + }, + { + "fips_code": "227", + "name": "Pickens County", + "fips_class": "H1" + }, + { + "fips_code": "229", + "name": "Pierce County", + "fips_class": "H1" + }, + { + "fips_code": "231", + "name": "Pike County", + "fips_class": "H1" + }, + { + "fips_code": "233", + "name": "Polk County", + "fips_class": "H1" + }, + { + "fips_code": "235", + "name": "Pulaski County", + "fips_class": "H1" + }, + { + "fips_code": "237", + "name": "Putnam County", + "fips_class": "H1" + }, + { + "fips_code": "239", + "name": "Quitman County", + "fips_class": "H1" + }, + { + "fips_code": "241", + "name": "Rabun County", + "fips_class": "H1" + }, + { + "fips_code": "243", + "name": "Randolph County", + "fips_class": "H1" + }, + { + "fips_code": "245", + "name": "Richmond County", + "fips_class": "H6" + }, + { + "fips_code": "247", + "name": "Rockdale County", + "fips_class": "H1" + }, + { + "fips_code": "249", + "name": "Schley County", + "fips_class": "H1" + }, + { + "fips_code": "251", + "name": "Screven County", + "fips_class": "H1" + }, + { + "fips_code": "253", + "name": "Seminole County", + "fips_class": "H1" + }, + { + "fips_code": "255", + "name": "Spalding County", + "fips_class": "H1" + }, + { + "fips_code": "257", + "name": "Stephens County", + "fips_class": "H1" + }, + { + "fips_code": "259", + "name": "Stewart County", + "fips_class": "H1" + }, + { + "fips_code": "261", + "name": "Sumter County", + "fips_class": "H1" + }, + { + "fips_code": "263", + "name": "Talbot County", + "fips_class": "H1" + }, + { + "fips_code": "265", + "name": "Taliaferro County", + "fips_class": "H1" + }, + { + "fips_code": "267", + "name": "Tattnall County", + "fips_class": "H1" + }, + { + "fips_code": "269", + "name": "Taylor County", + "fips_class": "H1" + }, + { + "fips_code": "271", + "name": "Telfair County", + "fips_class": "H1" + }, + { + "fips_code": "273", + "name": "Terrell County", + "fips_class": "H1" + }, + { + "fips_code": "275", + "name": "Thomas County", + "fips_class": "H1" + }, + { + "fips_code": "277", + "name": "Tift County", + "fips_class": "H1" + }, + { + "fips_code": "279", + "name": "Toombs County", + "fips_class": "H1" + }, + { + "fips_code": "281", + "name": "Towns County", + "fips_class": "H1" + }, + { + "fips_code": "283", + "name": "Treutlen County", + "fips_class": "H1" + }, + { + "fips_code": "285", + "name": "Troup County", + "fips_class": "H1" + }, + { + "fips_code": "287", + "name": "Turner County", + "fips_class": "H1" + }, + { + "fips_code": "289", + "name": "Twiggs County", + "fips_class": "H1" + }, + { + "fips_code": "291", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "293", + "name": "Upson County", + "fips_class": "H1" + }, + { + "fips_code": "295", + "name": "Walker County", + "fips_class": "H1" + }, + { + "fips_code": "297", + "name": "Walton County", + "fips_class": "H1" + }, + { + "fips_code": "299", + "name": "Ware County", + "fips_class": "H1" + }, + { + "fips_code": "301", + "name": "Warren County", + "fips_class": "H1" + }, + { + "fips_code": "303", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "305", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "307", + "name": "Webster County", + "fips_class": "H1" + }, + { + "fips_code": "309", + "name": "Wheeler County", + "fips_class": "H1" + }, + { + "fips_code": "311", + "name": "White County", + "fips_class": "H1" + }, + { + "fips_code": "313", + "name": "Whitfield County", + "fips_class": "H1" + }, + { + "fips_code": "315", + "name": "Wilcox County", + "fips_class": "H1" + }, + { + "fips_code": "317", + "name": "Wilkes County", + "fips_class": "H1" + }, + { + "fips_code": "319", + "name": "Wilkinson County", + "fips_class": "H1" + }, + { + "fips_code": "321", + "name": "Worth County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/gu.json b/lib/assets/counties_fips_data/gu.json new file mode 100755 index 00000000..744031c8 --- /dev/null +++ b/lib/assets/counties_fips_data/gu.json @@ -0,0 +1,7 @@ +[ + { + "fips_code": "010", + "name": "Guam", + "fips_class": "H4" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/hi.json b/lib/assets/counties_fips_data/hi.json new file mode 100755 index 00000000..d329c60b --- /dev/null +++ b/lib/assets/counties_fips_data/hi.json @@ -0,0 +1,27 @@ +[ + { + "fips_code": "001", + "name": "Hawaii County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Honolulu County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Kalawao County", + "fips_class": "H4" + }, + { + "fips_code": "007", + "name": "Kauai County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Maui County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ia.json b/lib/assets/counties_fips_data/ia.json new file mode 100755 index 00000000..fd51b365 --- /dev/null +++ b/lib/assets/counties_fips_data/ia.json @@ -0,0 +1,497 @@ +[ + { + "fips_code": "001", + "name": "Adair County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Adams County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Allamakee County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Appanoose County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Audubon County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Benton County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Black Hawk County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Boone County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Bremer County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Buchanan County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Buena Vista County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Butler County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Calhoun County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Carroll County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Cass County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Cedar County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Cerro Gordo County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Cherokee County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Chickasaw County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Clarke County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Clayton County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Clinton County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Crawford County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Dallas County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Davis County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Decatur County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Delaware County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Des Moines County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Dickinson County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Dubuque County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Emmet County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Fayette County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Floyd County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Fremont County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Grundy County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Guthrie County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Hamilton County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Hancock County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Hardin County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Harrison County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Henry County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Howard County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Humboldt County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Ida County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Iowa County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Jasper County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Johnson County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Jones County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Keokuk County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Kossuth County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Lee County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Linn County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Louisa County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Lucas County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Lyon County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Mahaska County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Marshall County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Mills County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Mitchell County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Monona County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Muscatine County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "O'brien County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Osceola County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Page County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Palo Alto County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Plymouth County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Pocahontas County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Polk County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Pottawattamie County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Poweshiek County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Ringgold County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Sac County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Scott County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Shelby County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Sioux County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Story County", + "fips_class": "H1" + }, + { + "fips_code": "171", + "name": "Tama County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Taylor County", + "fips_class": "H1" + }, + { + "fips_code": "175", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "177", + "name": "Van Buren County", + "fips_class": "H1" + }, + { + "fips_code": "179", + "name": "Wapello County", + "fips_class": "H1" + }, + { + "fips_code": "181", + "name": "Warren County", + "fips_class": "H1" + }, + { + "fips_code": "183", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "185", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "187", + "name": "Webster County", + "fips_class": "H1" + }, + { + "fips_code": "189", + "name": "Winnebago County", + "fips_class": "H1" + }, + { + "fips_code": "191", + "name": "Winneshiek County", + "fips_class": "H1" + }, + { + "fips_code": "193", + "name": "Woodbury County", + "fips_class": "H1" + }, + { + "fips_code": "195", + "name": "Worth County", + "fips_class": "H1" + }, + { + "fips_code": "197", + "name": "Wright County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/id.json b/lib/assets/counties_fips_data/id.json new file mode 100755 index 00000000..d795bf7b --- /dev/null +++ b/lib/assets/counties_fips_data/id.json @@ -0,0 +1,222 @@ +[ + { + "fips_code": "001", + "name": "Ada County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Adams County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Bannock County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Bear Lake County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Benewah County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Bingham County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Blaine County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Boise County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Bonner County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Bonneville County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Boundary County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Butte County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Camas County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Canyon County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Caribou County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Cassia County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Clark County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Clearwater County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Custer County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Elmore County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Fremont County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Gem County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Gooding County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Idaho County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Jerome County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Kootenai County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Latah County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Lemhi County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Lewis County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Minidoka County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Nez Perce County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Oneida County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Owyhee County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Payette County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Power County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Shoshone County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Teton County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Twin Falls County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Valley County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Washington County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/il.json b/lib/assets/counties_fips_data/il.json new file mode 100755 index 00000000..7f6c7849 --- /dev/null +++ b/lib/assets/counties_fips_data/il.json @@ -0,0 +1,512 @@ +[ + { + "fips_code": "001", + "name": "Adams County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Alexander County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Bond County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Boone County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Brown County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Bureau County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Calhoun County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Carroll County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Cass County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Champaign County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Christian County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Clark County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Clinton County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Coles County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Cook County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Crawford County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Cumberland County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "De Kalb County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "De Witt County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Douglas County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Du Page County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Edgar County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Edwards County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Effingham County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Fayette County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Ford County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Fulton County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Gallatin County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Grundy County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Hamilton County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Hancock County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Hardin County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Henderson County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Henry County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Iroquois County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Jasper County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Jersey County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Jo Daviess County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Johnson County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Kane County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Kankakee County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Kendall County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Knox County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Lake County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "La Salle County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Lawrence County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Lee County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Livingston County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Logan County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Mc Donough County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Mc Henry County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Mc Lean County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Macon County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Macoupin County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Marshall County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Mason County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Massac County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Menard County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Mercer County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Morgan County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Moultrie County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Ogle County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Peoria County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Perry County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Piatt County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Pike County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Pope County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Pulaski County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Putnam County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Randolph County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Richland County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Rock Island County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "St. Clair County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Saline County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Sangamon County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Schuyler County", + "fips_class": "H1" + }, + { + "fips_code": "171", + "name": "Scott County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Shelby County", + "fips_class": "H1" + }, + { + "fips_code": "175", + "name": "Stark County", + "fips_class": "H1" + }, + { + "fips_code": "177", + "name": "Stephenson County", + "fips_class": "H1" + }, + { + "fips_code": "179", + "name": "Tazewell County", + "fips_class": "H1" + }, + { + "fips_code": "181", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "183", + "name": "Vermilion County", + "fips_class": "H1" + }, + { + "fips_code": "185", + "name": "Wabash County", + "fips_class": "H1" + }, + { + "fips_code": "187", + "name": "Warren County", + "fips_class": "H1" + }, + { + "fips_code": "189", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "191", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "193", + "name": "White County", + "fips_class": "H1" + }, + { + "fips_code": "195", + "name": "Whiteside County", + "fips_class": "H1" + }, + { + "fips_code": "197", + "name": "Will County", + "fips_class": "H1" + }, + { + "fips_code": "199", + "name": "Williamson County", + "fips_class": "H1" + }, + { + "fips_code": "201", + "name": "Winnebago County", + "fips_class": "H1" + }, + { + "fips_code": "203", + "name": "Woodford County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/in.json b/lib/assets/counties_fips_data/in.json new file mode 100755 index 00000000..5388af13 --- /dev/null +++ b/lib/assets/counties_fips_data/in.json @@ -0,0 +1,462 @@ +[ + { + "fips_code": "001", + "name": "Adams County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Allen County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Bartholomew County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Benton County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Blackford County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Boone County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Brown County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Carroll County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Cass County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Clark County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Clinton County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Crawford County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Daviess County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Dearborn County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Decatur County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "De Kalb County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Delaware County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Dubois County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Elkhart County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Fayette County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Floyd County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Fountain County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Fulton County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Gibson County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Hamilton County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Hancock County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Harrison County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Hendricks County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Henry County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Howard County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Huntington County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Jasper County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Jay County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Jennings County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Johnson County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Knox County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Kosciusko County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "La Grange County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Lake County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "La Porte County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Lawrence County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Marion County", + "fips_class": "H6" + }, + { + "fips_code": "099", + "name": "Marshall County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Martin County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Miami County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Morgan County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Newton County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Noble County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Ohio County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Orange County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Owen County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Parke County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Perry County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Pike County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Porter County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Posey County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Pulaski County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Putnam County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Randolph County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Ripley County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Rush County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "St. Joseph County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Scott County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Shelby County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Spencer County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Starke County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Steuben County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Sullivan County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Switzerland County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Tippecanoe County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Tipton County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Vanderburgh County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Vermillion County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Vigo County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Wabash County", + "fips_class": "H1" + }, + { + "fips_code": "171", + "name": "Warren County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Warrick County", + "fips_class": "H1" + }, + { + "fips_code": "175", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "177", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "179", + "name": "Wells County", + "fips_class": "H1" + }, + { + "fips_code": "181", + "name": "White County", + "fips_class": "H1" + }, + { + "fips_code": "183", + "name": "Whitley County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ks.json b/lib/assets/counties_fips_data/ks.json new file mode 100755 index 00000000..1ec944a7 --- /dev/null +++ b/lib/assets/counties_fips_data/ks.json @@ -0,0 +1,527 @@ +[ + { + "fips_code": "001", + "name": "Allen County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Anderson County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Atchison County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Barber County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Barton County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Bourbon County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Brown County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Butler County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Chase County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Chautauqua County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Cherokee County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Cheyenne County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Clark County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Cloud County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Coffey County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Comanche County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Cowley County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Crawford County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Decatur County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Dickinson County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Doniphan County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Douglas County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Edwards County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Elk County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Ellis County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Ellsworth County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Finney County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Ford County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Geary County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Gove County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Graham County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Gray County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Greeley County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Greenwood County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Hamilton County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Harper County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Harvey County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Haskell County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Hodgeman County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Jewell County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Johnson County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Kearny County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Kingman County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Kiowa County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Labette County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Lane County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Leavenworth County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Linn County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Logan County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Lyon County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Mc Pherson County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Marshall County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Meade County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Miami County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Mitchell County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Morris County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Morton County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Nemaha County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Neosho County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Ness County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Norton County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Osage County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Osborne County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Ottawa County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Pawnee County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Phillips County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Pottawatomie County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Pratt County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Rawlins County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Reno County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Republic County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Rice County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Riley County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Rooks County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Rush County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Russell County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Saline County", + "fips_class": "H1" + }, + { + "fips_code": "171", + "name": "Scott County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Sedgwick County", + "fips_class": "H1" + }, + { + "fips_code": "175", + "name": "Seward County", + "fips_class": "H1" + }, + { + "fips_code": "177", + "name": "Shawnee County", + "fips_class": "H1" + }, + { + "fips_code": "179", + "name": "Sheridan County", + "fips_class": "H1" + }, + { + "fips_code": "181", + "name": "Sherman County", + "fips_class": "H1" + }, + { + "fips_code": "183", + "name": "Smith County", + "fips_class": "H1" + }, + { + "fips_code": "185", + "name": "Stafford County", + "fips_class": "H1" + }, + { + "fips_code": "187", + "name": "Stanton County", + "fips_class": "H1" + }, + { + "fips_code": "189", + "name": "Stevens County", + "fips_class": "H1" + }, + { + "fips_code": "191", + "name": "Sumner County", + "fips_class": "H1" + }, + { + "fips_code": "193", + "name": "Thomas County", + "fips_class": "H1" + }, + { + "fips_code": "195", + "name": "Trego County", + "fips_class": "H1" + }, + { + "fips_code": "197", + "name": "Wabaunsee County", + "fips_class": "H1" + }, + { + "fips_code": "199", + "name": "Wallace County", + "fips_class": "H1" + }, + { + "fips_code": "201", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "203", + "name": "Wichita County", + "fips_class": "H1" + }, + { + "fips_code": "205", + "name": "Wilson County", + "fips_class": "H1" + }, + { + "fips_code": "207", + "name": "Woodson County", + "fips_class": "H1" + }, + { + "fips_code": "209", + "name": "Wyandotte County", + "fips_class": "H6" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ky.json b/lib/assets/counties_fips_data/ky.json new file mode 100755 index 00000000..0560fc9a --- /dev/null +++ b/lib/assets/counties_fips_data/ky.json @@ -0,0 +1,602 @@ +[ + { + "fips_code": "001", + "name": "Adair County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Allen County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Anderson County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Ballard County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Barren County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Bath County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Bell County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Boone County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Bourbon County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Boyd County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Boyle County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Bracken County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Breathitt County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Breckinridge County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Bullitt County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Butler County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Caldwell County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Calloway County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Campbell County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Carlisle County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Carroll County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Carter County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Casey County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Christian County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Clark County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Clinton County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Crittenden County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Cumberland County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Daviess County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Edmonson County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Elliott County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Estill County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Fayette County", + "fips_class": "H6" + }, + { + "fips_code": "069", + "name": "Fleming County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Floyd County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Fulton County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Gallatin County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Garrard County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Graves County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Grayson County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Green County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Greenup County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Hancock County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Hardin County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Harlan County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Harrison County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Hart County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Henderson County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Henry County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Hickman County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Hopkins County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Jessamine County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Johnson County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Kenton County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Knott County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Knox County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Larue County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Laurel County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Lawrence County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Lee County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Leslie County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Letcher County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Lewis County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Livingston County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Logan County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Lyon County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Mc Cracken County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Mc Creary County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Mc Lean County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Magoffin County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Marshall County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Martin County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Mason County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Meade County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Menifee County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Mercer County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Metcalfe County", + "fips_class": "H1" + }, + { + "fips_code": "171", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "175", + "name": "Morgan County", + "fips_class": "H1" + }, + { + "fips_code": "177", + "name": "Muhlenberg County", + "fips_class": "H1" + }, + { + "fips_code": "179", + "name": "Nelson County", + "fips_class": "H1" + }, + { + "fips_code": "181", + "name": "Nicholas County", + "fips_class": "H1" + }, + { + "fips_code": "183", + "name": "Ohio County", + "fips_class": "H1" + }, + { + "fips_code": "185", + "name": "Oldham County", + "fips_class": "H1" + }, + { + "fips_code": "187", + "name": "Owen County", + "fips_class": "H1" + }, + { + "fips_code": "189", + "name": "Owsley County", + "fips_class": "H1" + }, + { + "fips_code": "191", + "name": "Pendleton County", + "fips_class": "H1" + }, + { + "fips_code": "193", + "name": "Perry County", + "fips_class": "H1" + }, + { + "fips_code": "195", + "name": "Pike County", + "fips_class": "H1" + }, + { + "fips_code": "197", + "name": "Powell County", + "fips_class": "H1" + }, + { + "fips_code": "199", + "name": "Pulaski County", + "fips_class": "H1" + }, + { + "fips_code": "201", + "name": "Robertson County", + "fips_class": "H1" + }, + { + "fips_code": "203", + "name": "Rockcastle County", + "fips_class": "H1" + }, + { + "fips_code": "205", + "name": "Rowan County", + "fips_class": "H1" + }, + { + "fips_code": "207", + "name": "Russell County", + "fips_class": "H1" + }, + { + "fips_code": "209", + "name": "Scott County", + "fips_class": "H1" + }, + { + "fips_code": "211", + "name": "Shelby County", + "fips_class": "H1" + }, + { + "fips_code": "213", + "name": "Simpson County", + "fips_class": "H1" + }, + { + "fips_code": "215", + "name": "Spencer County", + "fips_class": "H1" + }, + { + "fips_code": "217", + "name": "Taylor County", + "fips_class": "H1" + }, + { + "fips_code": "219", + "name": "Todd County", + "fips_class": "H1" + }, + { + "fips_code": "221", + "name": "Trigg County", + "fips_class": "H1" + }, + { + "fips_code": "223", + "name": "Trimble County", + "fips_class": "H1" + }, + { + "fips_code": "225", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "227", + "name": "Warren County", + "fips_class": "H1" + }, + { + "fips_code": "229", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "231", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "233", + "name": "Webster County", + "fips_class": "H1" + }, + { + "fips_code": "235", + "name": "Whitley County", + "fips_class": "H1" + }, + { + "fips_code": "237", + "name": "Wolfe County", + "fips_class": "H1" + }, + { + "fips_code": "239", + "name": "Woodford County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/la.json b/lib/assets/counties_fips_data/la.json new file mode 100755 index 00000000..9deada0f --- /dev/null +++ b/lib/assets/counties_fips_data/la.json @@ -0,0 +1,322 @@ +[ + { + "fips_code": "001", + "name": "Acadia Parish", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Allen Parish", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Ascension Parish", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Assumption Parish", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Avoyelles Parish", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Beauregard Parish", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Bienville Parish", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Bossier Parish", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Caddo Parish", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Calcasieu Parish", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Caldwell Parish", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Cameron Parish", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Catahoula Parish", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Claiborne Parish", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Concordia Parish", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "De Soto Parish", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "East Baton Rouge Parish", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "East Carroll Parish", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "East Feliciana Parish", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Evangeline Parish", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Franklin Parish", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Grant Parish", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Iberia Parish", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Iberville Parish", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Jackson Parish", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Jefferson Parish", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Jefferson Davis Parish", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Lafayette Parish", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Lafourche Parish", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "La Salle Parish", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Lincoln Parish", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Livingston Parish", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Madison Parish", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Morehouse Parish", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Natchitoches Parish", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Orleans Parish", + "fips_class": "H6" + }, + { + "fips_code": "073", + "name": "Ouachita Parish", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Plaquemines Parish", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Pointe Coupee Parish", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Rapides Parish", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Red River Parish", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Richland Parish", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Sabine Parish", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "St. Bernard Parish", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "St. Charles Parish", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "St. Helena Parish", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "St. James Parish", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "St. John The Baptist Parish", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "St. Landry Parish", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "St. Martin Parish", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "St. Mary Parish", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "St. Tammany Parish", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Tangipahoa Parish", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Tensas Parish", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Terrebonne Parish", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Union Parish", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Vermilion Parish", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Vernon Parish", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Washington Parish", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Webster Parish", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "West Baton Rouge Parish", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "West Carroll Parish", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "West Feliciana Parish", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Winn Parish", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ma.json b/lib/assets/counties_fips_data/ma.json new file mode 100755 index 00000000..0dc53ffc --- /dev/null +++ b/lib/assets/counties_fips_data/ma.json @@ -0,0 +1,72 @@ +[ + { + "fips_code": "001", + "name": "Barnstable County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Berkshire County", + "fips_class": "H4" + }, + { + "fips_code": "005", + "name": "Bristol County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Dukes County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Essex County", + "fips_class": "H4" + }, + { + "fips_code": "011", + "name": "Franklin County", + "fips_class": "H4" + }, + { + "fips_code": "013", + "name": "Hampden County", + "fips_class": "H4" + }, + { + "fips_code": "015", + "name": "Hampshire County", + "fips_class": "H4" + }, + { + "fips_code": "017", + "name": "Middlesex County", + "fips_class": "H4" + }, + { + "fips_code": "019", + "name": "Nantucket County", + "fips_class": "H4" + }, + { + "fips_code": "021", + "name": "Norfolk County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Plymouth County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Suffolk County", + "fips_class": "H4" + }, + { + "fips_code": "027", + "name": "Worcester County", + "fips_class": "H4" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/md.json b/lib/assets/counties_fips_data/md.json new file mode 100755 index 00000000..5d9a7776 --- /dev/null +++ b/lib/assets/counties_fips_data/md.json @@ -0,0 +1,122 @@ +[ + { + "fips_code": "001", + "name": "Allegany County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Anne Arundel County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Baltimore County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Calvert County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Caroline County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Carroll County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Cecil County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Charles County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Dorchester County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Frederick County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Garrett County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Harford County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Howard County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Kent County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Prince George's County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Queen Anne's County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "St. Mary's County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Somerset County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Talbot County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Wicomico County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Worcester County", + "fips_class": "H1" + }, + { + "fips_code": "510", + "name": "Baltimore City", + "fips_class": "C7" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/me.json b/lib/assets/counties_fips_data/me.json new file mode 100755 index 00000000..7ed09a48 --- /dev/null +++ b/lib/assets/counties_fips_data/me.json @@ -0,0 +1,82 @@ +[ + { + "fips_code": "001", + "name": "Androscoggin County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Aroostook County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Cumberland County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Hancock County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Kennebec County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Knox County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Oxford County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Penobscot County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Piscataquis County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Sagadahoc County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Somerset County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Waldo County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "York County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/mi.json b/lib/assets/counties_fips_data/mi.json new file mode 100755 index 00000000..b58e599a --- /dev/null +++ b/lib/assets/counties_fips_data/mi.json @@ -0,0 +1,417 @@ +[ + { + "fips_code": "001", + "name": "Alcona County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Alger County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Allegan County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Alpena County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Antrim County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Arenac County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Baraga County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Barry County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Bay County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Benzie County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Berrien County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Branch County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Calhoun County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Cass County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Charlevoix County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Cheboygan County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Chippewa County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Clare County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Clinton County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Crawford County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Delta County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Dickinson County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Eaton County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Emmet County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Genesee County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Gladwin County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Gogebic County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Grand Traverse County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Gratiot County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Hillsdale County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Houghton County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Huron County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Ingham County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Ionia County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Iosco County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Iron County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Isabella County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Kalamazoo County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Kalkaska County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Kent County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Keweenaw County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Lake County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Lapeer County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Leelanau County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Lenawee County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Livingston County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Luce County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Mackinac County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Macomb County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Manistee County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Marquette County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Mason County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Mecosta County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Menominee County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Midland County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Missaukee County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Montcalm County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Montmorency County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Muskegon County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Newaygo County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Oakland County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Oceana County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Ogemaw County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Ontonagon County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Osceola County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Oscoda County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Otsego County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Ottawa County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Presque Isle County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Roscommon County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Saginaw County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "St. Clair County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "St. Joseph County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Sanilac County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Schoolcraft County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Shiawassee County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Tuscola County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Van Buren County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Washtenaw County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Wexford County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/mn.json b/lib/assets/counties_fips_data/mn.json new file mode 100755 index 00000000..064c828d --- /dev/null +++ b/lib/assets/counties_fips_data/mn.json @@ -0,0 +1,437 @@ +[ + { + "fips_code": "001", + "name": "Aitkin County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Anoka County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Becker County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Beltrami County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Benton County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Big Stone County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Blue Earth County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Brown County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Carlton County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Carver County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Cass County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Chippewa County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Chisago County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Clearwater County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Cook County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Cottonwood County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Crow Wing County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Dakota County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Dodge County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Douglas County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Faribault County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Fillmore County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Freeborn County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Goodhue County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Hennepin County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Houston County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Hubbard County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Isanti County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Itasca County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Kanabec County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Kandiyohi County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Kittson County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Koochiching County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Lac Qui Parle County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Lake County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Lake Of The Woods County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Le Sueur County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Lyon County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Mc Leod County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Mahnomen County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Marshall County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Martin County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Meeker County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Mille Lacs County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Morrison County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Mower County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Murray County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Nicollet County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Nobles County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Norman County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Olmsted County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Otter Tail County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Pennington County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Pine County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Pipestone County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Polk County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Pope County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Ramsey County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Red Lake County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Redwood County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Renville County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Rice County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Rock County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Roseau County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "St. Louis County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Scott County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Sherburne County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Sibley County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Stearns County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Steele County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Stevens County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Swift County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Todd County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Traverse County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Wabasha County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Wadena County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Waseca County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Watonwan County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Wilkin County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Winona County", + "fips_class": "H1" + }, + { + "fips_code": "171", + "name": "Wright County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Yellow Medicine County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/mo.json b/lib/assets/counties_fips_data/mo.json new file mode 100755 index 00000000..527c35b3 --- /dev/null +++ b/lib/assets/counties_fips_data/mo.json @@ -0,0 +1,577 @@ +[ + { + "fips_code": "001", + "name": "Adair County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Andrew County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Atchison County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Audrain County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Barry County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Barton County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Bates County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Benton County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Bollinger County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Boone County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Buchanan County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Butler County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Caldwell County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Callaway County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Camden County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Cape Girardeau County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Carroll County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Carter County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Cass County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Cedar County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Chariton County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Christian County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Clark County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Clinton County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Cole County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Cooper County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Crawford County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Dade County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Dallas County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Daviess County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "De Kalb County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Dent County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Douglas County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Dunklin County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Gasconade County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Gentry County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Grundy County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Harrison County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Henry County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Hickory County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Holt County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Howard County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Howell County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Iron County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Jasper County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Johnson County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Knox County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Laclede County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Lafayette County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Lawrence County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Lewis County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Linn County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Livingston County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Mc Donald County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Macon County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Maries County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Mercer County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Miller County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Mississippi County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Moniteau County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Morgan County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "New Madrid County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Newton County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Nodaway County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Oregon County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Osage County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Ozark County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Pemiscot County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Perry County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Pettis County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Phelps County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Pike County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Platte County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Polk County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Pulaski County", + "fips_class": "H1" + }, + { + "fips_code": "171", + "name": "Putnam County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Ralls County", + "fips_class": "H1" + }, + { + "fips_code": "175", + "name": "Randolph County", + "fips_class": "H1" + }, + { + "fips_code": "177", + "name": "Ray County", + "fips_class": "H1" + }, + { + "fips_code": "179", + "name": "Reynolds County", + "fips_class": "H1" + }, + { + "fips_code": "181", + "name": "Ripley County", + "fips_class": "H1" + }, + { + "fips_code": "183", + "name": "St. Charles County", + "fips_class": "H1" + }, + { + "fips_code": "185", + "name": "St. Clair County", + "fips_class": "H1" + }, + { + "fips_code": "186", + "name": "Ste. Genevieve County", + "fips_class": "H1" + }, + { + "fips_code": "187", + "name": "St. Francois County", + "fips_class": "H1" + }, + { + "fips_code": "189", + "name": "St. Louis County", + "fips_class": "H1" + }, + { + "fips_code": "195", + "name": "Saline County", + "fips_class": "H1" + }, + { + "fips_code": "197", + "name": "Schuyler County", + "fips_class": "H1" + }, + { + "fips_code": "199", + "name": "Scotland County", + "fips_class": "H1" + }, + { + "fips_code": "201", + "name": "Scott County", + "fips_class": "H1" + }, + { + "fips_code": "203", + "name": "Shannon County", + "fips_class": "H1" + }, + { + "fips_code": "205", + "name": "Shelby County", + "fips_class": "H1" + }, + { + "fips_code": "207", + "name": "Stoddard County", + "fips_class": "H1" + }, + { + "fips_code": "209", + "name": "Stone County", + "fips_class": "H1" + }, + { + "fips_code": "211", + "name": "Sullivan County", + "fips_class": "H1" + }, + { + "fips_code": "213", + "name": "Taney County", + "fips_class": "H1" + }, + { + "fips_code": "215", + "name": "Texas County", + "fips_class": "H1" + }, + { + "fips_code": "217", + "name": "Vernon County", + "fips_class": "H1" + }, + { + "fips_code": "219", + "name": "Warren County", + "fips_class": "H1" + }, + { + "fips_code": "221", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "223", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "225", + "name": "Webster County", + "fips_class": "H1" + }, + { + "fips_code": "227", + "name": "Worth County", + "fips_class": "H1" + }, + { + "fips_code": "229", + "name": "Wright County", + "fips_class": "H1" + }, + { + "fips_code": "510", + "name": "St. Louis City", + "fips_class": "C7" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/mp.json b/lib/assets/counties_fips_data/mp.json new file mode 100755 index 00000000..8ff76a55 --- /dev/null +++ b/lib/assets/counties_fips_data/mp.json @@ -0,0 +1,22 @@ +[ + { + "fips_code": "085", + "name": "Northern Islands Municipality", + "fips_class": "H1" + }, + { + "fips_code": "100", + "name": "Rota Municipality", + "fips_class": "H1" + }, + { + "fips_code": "110", + "name": "Saipan Municipality", + "fips_class": "H1" + }, + { + "fips_code": "120", + "name": "Tinian Municipality", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ms.json b/lib/assets/counties_fips_data/ms.json new file mode 100755 index 00000000..5e795afe --- /dev/null +++ b/lib/assets/counties_fips_data/ms.json @@ -0,0 +1,412 @@ +[ + { + "fips_code": "001", + "name": "Adams County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Alcorn County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Amite County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Attala County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Benton County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Bolivar County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Calhoun County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Carroll County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Chickasaw County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Choctaw County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Claiborne County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Clarke County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Coahoma County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Copiah County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Covington County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "De Soto County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Forrest County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "George County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Grenada County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Hancock County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Harrison County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Hinds County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Holmes County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Humphreys County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Issaquena County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Itawamba County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Jasper County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Jefferson Davis County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Jones County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Kemper County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Lafayette County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Lamar County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Lauderdale County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Lawrence County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Leake County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Lee County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Leflore County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Lowndes County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Marshall County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Neshoba County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Newton County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Noxubee County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Oktibbeha County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Panola County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Pearl River County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Perry County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Pike County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Pontotoc County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Prentiss County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Quitman County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Rankin County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Scott County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Sharkey County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Simpson County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Smith County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Stone County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Sunflower County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Tallahatchie County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Tate County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Tippah County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Tishomingo County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Tunica County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Walthall County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Warren County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Webster County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Wilkinson County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Winston County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Yalobusha County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Yazoo County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/mt.json b/lib/assets/counties_fips_data/mt.json new file mode 100755 index 00000000..e720febc --- /dev/null +++ b/lib/assets/counties_fips_data/mt.json @@ -0,0 +1,282 @@ +[ + { + "fips_code": "001", + "name": "Beaverhead County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Big Horn County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Blaine County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Broadwater County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Carbon County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Carter County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Cascade County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Chouteau County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Custer County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Daniels County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Dawson County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Deer Lodge County", + "fips_class": "H6" + }, + { + "fips_code": "025", + "name": "Fallon County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Fergus County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Flathead County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Gallatin County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Garfield County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Glacier County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Golden Valley County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Granite County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Hill County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Judith Basin County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Lake County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Lewis And Clark County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Liberty County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Mc Cone County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Meagher County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Mineral County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Missoula County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Musselshell County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Park County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Petroleum County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Phillips County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Pondera County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Powder River County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Powell County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Prairie County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Ravalli County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Richland County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Roosevelt County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Rosebud County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Sanders County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Sheridan County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Silver Bow County", + "fips_class": "H6" + }, + { + "fips_code": "095", + "name": "Stillwater County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Sweet Grass County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Teton County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Toole County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Treasure County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Valley County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Wheatland County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Wibaux County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Yellowstone County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/nc.json b/lib/assets/counties_fips_data/nc.json new file mode 100755 index 00000000..1bf23dce --- /dev/null +++ b/lib/assets/counties_fips_data/nc.json @@ -0,0 +1,502 @@ +[ + { + "fips_code": "001", + "name": "Alamance County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Alexander County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Alleghany County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Anson County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Ashe County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Avery County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Beaufort County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Bertie County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Bladen County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Brunswick County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Buncombe County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Burke County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Cabarrus County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Caldwell County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Camden County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Carteret County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Caswell County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Catawba County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Chatham County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Cherokee County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Chowan County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Cleveland County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Columbus County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Craven County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Cumberland County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Currituck County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Dare County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Davidson County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Davie County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Duplin County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Durham County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Edgecombe County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Forsyth County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Gaston County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Gates County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Graham County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Granville County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Guilford County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Halifax County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Harnett County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Haywood County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Henderson County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Hertford County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Hoke County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Hyde County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Iredell County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Johnston County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Jones County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Lee County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Lenoir County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Mc Dowell County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Macon County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Martin County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Mecklenburg County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Mitchell County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Moore County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Nash County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "New Hanover County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Northampton County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Onslow County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Orange County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Pamlico County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Pasquotank County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Pender County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Perquimans County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Person County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Pitt County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Polk County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Randolph County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Richmond County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Robeson County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Rockingham County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Rowan County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Rutherford County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Sampson County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Scotland County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Stanly County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Stokes County", + "fips_class": "H1" + }, + { + "fips_code": "171", + "name": "Surry County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Swain County", + "fips_class": "H1" + }, + { + "fips_code": "175", + "name": "Transylvania County", + "fips_class": "H1" + }, + { + "fips_code": "177", + "name": "Tyrrell County", + "fips_class": "H1" + }, + { + "fips_code": "179", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "181", + "name": "Vance County", + "fips_class": "H1" + }, + { + "fips_code": "183", + "name": "Wake County", + "fips_class": "H1" + }, + { + "fips_code": "185", + "name": "Warren County", + "fips_class": "H1" + }, + { + "fips_code": "187", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "189", + "name": "Watauga County", + "fips_class": "H1" + }, + { + "fips_code": "191", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "193", + "name": "Wilkes County", + "fips_class": "H1" + }, + { + "fips_code": "195", + "name": "Wilson County", + "fips_class": "H1" + }, + { + "fips_code": "197", + "name": "Yadkin County", + "fips_class": "H1" + }, + { + "fips_code": "199", + "name": "Yancey County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/nd.json b/lib/assets/counties_fips_data/nd.json new file mode 100755 index 00000000..6f1aa08e --- /dev/null +++ b/lib/assets/counties_fips_data/nd.json @@ -0,0 +1,267 @@ +[ + { + "fips_code": "001", + "name": "Adams County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Barnes County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Benson County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Billings County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Bottineau County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Bowman County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Burke County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Burleigh County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Cass County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Cavalier County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Dickey County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Divide County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Dunn County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Eddy County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Emmons County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Foster County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Golden Valley County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Grand Forks County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Griggs County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Hettinger County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Kidder County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "La Moure County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Logan County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Mc Henry County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Mc Intosh County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Mc Kenzie County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Mc Lean County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Mercer County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Morton County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Mountrail County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Nelson County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Oliver County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Pembina County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Pierce County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Ramsey County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Ransom County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Renville County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Richland County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Rolette County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Sargent County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Sheridan County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Sioux County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Slope County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Stark County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Steele County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Stutsman County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Towner County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Traill County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Walsh County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Ward County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Wells County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Williams County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ne.json b/lib/assets/counties_fips_data/ne.json new file mode 100755 index 00000000..3d2a5266 --- /dev/null +++ b/lib/assets/counties_fips_data/ne.json @@ -0,0 +1,467 @@ +[ + { + "fips_code": "001", + "name": "Adams County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Antelope County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Arthur County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Banner County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Blaine County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Boone County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Box Butte County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Boyd County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Brown County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Buffalo County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Burt County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Butler County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Cass County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Cedar County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Chase County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Cherry County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Cheyenne County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Colfax County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Cuming County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Custer County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Dakota County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Dawes County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Dawson County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Deuel County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Dixon County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Dodge County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Douglas County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Dundy County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Fillmore County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Frontier County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Furnas County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Gage County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Garden County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Garfield County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Gosper County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Greeley County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Hall County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Hamilton County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Harlan County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Hayes County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Hitchcock County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Holt County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Hooker County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Howard County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Johnson County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Kearney County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Keith County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Keya Paha County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Kimball County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Knox County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Lancaster County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Logan County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Loup County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Mc Pherson County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Merrick County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Morrill County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Nance County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Nemaha County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Nuckolls County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Otoe County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Pawnee County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Perkins County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Phelps County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Pierce County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Platte County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Polk County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Red Willow County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Richardson County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Rock County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Saline County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Sarpy County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Saunders County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Scotts Bluff County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Seward County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Sheridan County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Sherman County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Sioux County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Stanton County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Thayer County", + "fips_class": "H1" + }, + { + "fips_code": "171", + "name": "Thomas County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Thurston County", + "fips_class": "H1" + }, + { + "fips_code": "175", + "name": "Valley County", + "fips_class": "H1" + }, + { + "fips_code": "177", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "179", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "181", + "name": "Webster County", + "fips_class": "H1" + }, + { + "fips_code": "183", + "name": "Wheeler County", + "fips_class": "H1" + }, + { + "fips_code": "185", + "name": "York County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/nh.json b/lib/assets/counties_fips_data/nh.json new file mode 100755 index 00000000..943e8ae7 --- /dev/null +++ b/lib/assets/counties_fips_data/nh.json @@ -0,0 +1,52 @@ +[ + { + "fips_code": "001", + "name": "Belknap County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Carroll County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Cheshire County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Coos County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Grafton County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Hillsborough County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Merrimack County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Rockingham County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Strafford County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Sullivan County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/nj.json b/lib/assets/counties_fips_data/nj.json new file mode 100755 index 00000000..2945e361 --- /dev/null +++ b/lib/assets/counties_fips_data/nj.json @@ -0,0 +1,107 @@ +[ + { + "fips_code": "001", + "name": "Atlantic County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Bergen County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Burlington County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Camden County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Cape May County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Cumberland County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Essex County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Gloucester County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Hudson County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Hunterdon County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Mercer County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Middlesex County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Monmouth County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Morris County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Ocean County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Passaic County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Salem County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Somerset County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Sussex County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Warren County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/nm.json b/lib/assets/counties_fips_data/nm.json new file mode 100755 index 00000000..350743e9 --- /dev/null +++ b/lib/assets/counties_fips_data/nm.json @@ -0,0 +1,167 @@ +[ + { + "fips_code": "001", + "name": "Bernalillo County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Catron County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Chaves County", + "fips_class": "H1" + }, + { + "fips_code": "006", + "name": "Cibola County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Colfax County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Curry County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "De Baca County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Dona Ana County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Eddy County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Guadalupe County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Harding County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Hidalgo County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Lea County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "028", + "name": "Los Alamos County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Luna County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Mc Kinley County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Mora County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Otero County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Quay County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Rio Arriba County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Roosevelt County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Sandoval County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "San Juan County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "San Miguel County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Santa Fe County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Sierra County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Socorro County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Taos County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Torrance County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Valencia County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/nv.json b/lib/assets/counties_fips_data/nv.json new file mode 100755 index 00000000..9b35fc19 --- /dev/null +++ b/lib/assets/counties_fips_data/nv.json @@ -0,0 +1,87 @@ +[ + { + "fips_code": "001", + "name": "Churchill County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Clark County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Douglas County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Elko County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Esmeralda County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Eureka County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Humboldt County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Lander County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Lyon County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Mineral County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Nye County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Pershing County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Storey County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Washoe County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "White Pine County", + "fips_class": "H1" + }, + { + "fips_code": "510", + "name": "Carson City", + "fips_class": "C7" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ny.json b/lib/assets/counties_fips_data/ny.json new file mode 100755 index 00000000..8cbe4a3d --- /dev/null +++ b/lib/assets/counties_fips_data/ny.json @@ -0,0 +1,312 @@ +[ + { + "fips_code": "001", + "name": "Albany County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Allegany County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Bronx County", + "fips_class": "H6" + }, + { + "fips_code": "007", + "name": "Broome County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Cattaraugus County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Cayuga County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Chautauqua County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Chemung County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Chenango County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Clinton County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Columbia County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Cortland County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Delaware County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Dutchess County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Erie County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Essex County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Fulton County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Genesee County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Hamilton County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Herkimer County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Kings County", + "fips_class": "H6" + }, + { + "fips_code": "049", + "name": "Lewis County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Livingston County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Nassau County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "New York County", + "fips_class": "H6" + }, + { + "fips_code": "063", + "name": "Niagara County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Oneida County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Onondaga County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Ontario County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Orange County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Orleans County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Oswego County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Otsego County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Putnam County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Queens County", + "fips_class": "H6" + }, + { + "fips_code": "083", + "name": "Rensselaer County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Richmond County", + "fips_class": "H6" + }, + { + "fips_code": "087", + "name": "Rockland County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "St. Lawrence County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Saratoga County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Schenectady County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Schoharie County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Schuyler County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Seneca County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Steuben County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Suffolk County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Sullivan County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Tioga County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Tompkins County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Ulster County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Warren County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Westchester County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Wyoming County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Yates County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/oh.json b/lib/assets/counties_fips_data/oh.json new file mode 100755 index 00000000..ab0c5d69 --- /dev/null +++ b/lib/assets/counties_fips_data/oh.json @@ -0,0 +1,442 @@ +[ + { + "fips_code": "001", + "name": "Adams County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Allen County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Ashland County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Ashtabula County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Athens County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Auglaize County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Belmont County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Brown County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Butler County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Carroll County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Champaign County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Clark County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Clermont County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Clinton County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Columbiana County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Coshocton County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Crawford County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Cuyahoga County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Darke County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Defiance County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Delaware County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Erie County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Fairfield County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Fayette County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Fulton County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Gallia County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Geauga County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Guernsey County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Hamilton County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Hancock County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Hardin County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Harrison County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Henry County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Highland County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Hocking County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Holmes County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Huron County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Knox County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Lake County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Lawrence County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Licking County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Logan County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Lorain County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Lucas County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Mahoning County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Medina County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Meigs County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Mercer County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Miami County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Morgan County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Morrow County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Muskingum County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Noble County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Ottawa County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Paulding County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Perry County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Pickaway County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Pike County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Portage County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Preble County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Putnam County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Richland County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Ross County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Sandusky County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Scioto County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Seneca County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Shelby County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Stark County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Summit County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Trumbull County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Tuscarawas County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Van Wert County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Vinton County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Warren County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "171", + "name": "Williams County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Wood County", + "fips_class": "H1" + }, + { + "fips_code": "175", + "name": "Wyandot County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ok.json b/lib/assets/counties_fips_data/ok.json new file mode 100755 index 00000000..bd2964a5 --- /dev/null +++ b/lib/assets/counties_fips_data/ok.json @@ -0,0 +1,387 @@ +[ + { + "fips_code": "001", + "name": "Adair County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Alfalfa County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Atoka County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Beaver County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Beckham County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Blaine County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Bryan County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Caddo County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Canadian County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Carter County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Cherokee County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Choctaw County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Cimarron County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Cleveland County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Coal County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Comanche County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Cotton County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Craig County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Creek County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Custer County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Delaware County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Dewey County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Ellis County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Garfield County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Garvin County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Grady County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Greer County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Harmon County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Harper County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Haskell County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Hughes County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Johnston County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Kay County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Kingfisher County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Kiowa County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Latimer County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Le Flore County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Logan County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Love County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Mc Clain County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Mc Curtain County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Mc Intosh County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Major County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Marshall County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Mayes County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Murray County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Muskogee County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Noble County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Nowata County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Okfuskee County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Oklahoma County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Okmulgee County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Osage County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Ottawa County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Pawnee County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Payne County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Pittsburg County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Pontotoc County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Pottawatomie County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Pushmataha County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Roger Mills County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Rogers County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Seminole County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Sequoyah County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Stephens County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Texas County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Tillman County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Tulsa County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Wagoner County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Washita County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Woods County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Woodward County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/or.json b/lib/assets/counties_fips_data/or.json new file mode 100755 index 00000000..b41d7d67 --- /dev/null +++ b/lib/assets/counties_fips_data/or.json @@ -0,0 +1,182 @@ +[ + { + "fips_code": "001", + "name": "Baker County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Benton County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Clackamas County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Clatsop County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Columbia County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Coos County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Crook County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Curry County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Deschutes County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Douglas County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Gilliam County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Harney County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Hood River County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Josephine County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Klamath County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Lake County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Lane County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Linn County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Malheur County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Morrow County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Multnomah County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Polk County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Sherman County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Tillamook County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Umatilla County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Wallowa County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Wasco County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Wheeler County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Yamhill County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/pa.json b/lib/assets/counties_fips_data/pa.json new file mode 100755 index 00000000..a23c1f9d --- /dev/null +++ b/lib/assets/counties_fips_data/pa.json @@ -0,0 +1,337 @@ +[ + { + "fips_code": "001", + "name": "Adams County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Allegheny County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Armstrong County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Beaver County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Bedford County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Berks County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Blair County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Bradford County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Bucks County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Butler County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Cambria County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Cameron County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Carbon County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Centre County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Chester County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Clarion County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Clearfield County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Clinton County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Columbia County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Crawford County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Cumberland County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Dauphin County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Delaware County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Elk County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Erie County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Fayette County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Forest County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Fulton County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Huntingdon County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Indiana County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Juniata County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Lackawanna County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Lancaster County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Lawrence County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Lebanon County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Lehigh County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Luzerne County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Lycoming County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Mc Kean County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Mercer County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Mifflin County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Montour County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Northampton County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Northumberland County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Perry County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Philadelphia County", + "fips_class": "H6" + }, + { + "fips_code": "103", + "name": "Pike County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Potter County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Schuylkill County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Snyder County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Somerset County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Sullivan County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Susquehanna County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Tioga County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Venango County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Warren County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Westmoreland County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Wyoming County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "York County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/pr.json b/lib/assets/counties_fips_data/pr.json new file mode 100755 index 00000000..a8fa7af0 --- /dev/null +++ b/lib/assets/counties_fips_data/pr.json @@ -0,0 +1,392 @@ +[ + { + "fips_code": "001", + "name": "Adjuntas Municipio", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Aguada Municipio", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Aguadilla Municipio", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Aguas Buenas Municipio", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Aibonito Municipio", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Anasco Municipio", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Arecibo Municipio", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Arroyo Municipio", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Barceloneta Municipio", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Barranquitas Municipio", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Bayamon Municipio", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Cabo Rojo Municipio", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Caguas Municipio", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Camuy Municipio", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Canovanas Municipio", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Carolina Municipio", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Catano Municipio", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Cayey Municipio", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Ceiba Municipio", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Ciales Municipio", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Cidra Municipio", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Coamo Municipio", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Comerio Municipio", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Corozal Municipio", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Culebra Municipio", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Dorado Municipio", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Fajardo Municipio", + "fips_class": "H1" + }, + { + "fips_code": "054", + "name": "Florida Municipio", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Guanica Municipio", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Guayama Municipio", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Guayanilla Municipio", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Guaynabo Municipio", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Gurabo Municipio", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Hatillo Municipio", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Hormigueros Municipio", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Humacao Municipio", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Isabela Municipio", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Jayuya Municipio", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Juana Diaz Municipio", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Juncos Municipio", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Lajas Municipio", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Lares Municipio", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Las Marias Municipio", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Las Piedras Municipio", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Loiza Municipio", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Luquillo Municipio", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Manati Municipio", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Maricao Municipio", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Maunabo Municipio", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Mayaguez Municipio", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Moca Municipio", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Morovis Municipio", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Naguabo Municipio", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Naranjito Municipio", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Orocovis Municipio", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Patillas Municipio", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Penuelas Municipio", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Ponce Municipio", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Quebradillas Municipio", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Rincon Municipio", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Rio Grande Municipio", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Sabana Grande Municipio", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Salinas Municipio", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "San German Municipio", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "San Juan Municipio", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "San Lorenzo Municipio", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "San Sebastian Municipio", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Santa Isabel Municipio", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Toa Alta Municipio", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Toa Baja Municipio", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Trujillo Alto Municipio", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Utuado Municipio", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Vega Alta Municipio", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Vega Baja Municipio", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Vieques Municipio", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Villalba Municipio", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Yabucoa Municipio", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Yauco Municipio", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ri.json b/lib/assets/counties_fips_data/ri.json new file mode 100755 index 00000000..b4b345b4 --- /dev/null +++ b/lib/assets/counties_fips_data/ri.json @@ -0,0 +1,27 @@ +[ + { + "fips_code": "001", + "name": "Bristol County", + "fips_class": "H4" + }, + { + "fips_code": "003", + "name": "Kent County", + "fips_class": "H4" + }, + { + "fips_code": "005", + "name": "Newport County", + "fips_class": "H4" + }, + { + "fips_code": "007", + "name": "Providence County", + "fips_class": "H4" + }, + { + "fips_code": "009", + "name": "Washington County", + "fips_class": "H4" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/sc.json b/lib/assets/counties_fips_data/sc.json new file mode 100755 index 00000000..c5c03ace --- /dev/null +++ b/lib/assets/counties_fips_data/sc.json @@ -0,0 +1,232 @@ +[ + { + "fips_code": "001", + "name": "Abbeville County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Aiken County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Allendale County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Anderson County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Bamberg County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Barnwell County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Beaufort County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Berkeley County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Calhoun County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Charleston County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Cherokee County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Chester County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Chesterfield County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Clarendon County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Colleton County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Darlington County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Dillon County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Dorchester County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Edgefield County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Fairfield County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Florence County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Georgetown County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Greenville County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Greenwood County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Hampton County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Horry County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Jasper County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Kershaw County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Lancaster County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Laurens County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Lee County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Lexington County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Mc Cormick County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Marlboro County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Newberry County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Oconee County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Orangeburg County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Pickens County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Richland County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Saluda County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Spartanburg County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Sumter County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Williamsburg County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "York County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/sd.json b/lib/assets/counties_fips_data/sd.json new file mode 100755 index 00000000..920ebfa8 --- /dev/null +++ b/lib/assets/counties_fips_data/sd.json @@ -0,0 +1,332 @@ +[ + { + "fips_code": "003", + "name": "Aurora County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Beadle County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Bennett County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Bon Homme County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Brookings County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Brown County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Brule County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Buffalo County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Butte County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Campbell County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Charles Mix County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Clark County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Codington County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Corson County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Custer County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Davison County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Day County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Deuel County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Dewey County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Douglas County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Edmunds County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Fall River County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Faulk County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Gregory County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Haakon County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Hamlin County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Hand County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Hanson County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Harding County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Hughes County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Hutchinson County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Hyde County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Jerauld County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Jones County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Kingsbury County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Lake County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Lawrence County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Lyman County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Mc Cook County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Mc Pherson County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Marshall County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Meade County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Mellette County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Miner County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Minnehaha County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Moody County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Pennington County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Perkins County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Potter County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Roberts County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Sanborn County", + "fips_class": "H1" + }, + { + "fips_code": "102", + "name": "Oglala Lakota County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Spink County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Stanley County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Sully County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Todd County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Tripp County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Turner County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Walworth County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Yankton County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Ziebach County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/tn.json b/lib/assets/counties_fips_data/tn.json new file mode 100755 index 00000000..e4827a46 --- /dev/null +++ b/lib/assets/counties_fips_data/tn.json @@ -0,0 +1,477 @@ +[ + { + "fips_code": "001", + "name": "Anderson County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Bedford County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Benton County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Bledsoe County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Blount County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Bradley County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Campbell County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Cannon County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Carroll County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Carter County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Cheatham County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Chester County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Claiborne County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Cocke County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Coffee County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Crockett County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Cumberland County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Davidson County", + "fips_class": "H6" + }, + { + "fips_code": "039", + "name": "Decatur County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "De Kalb County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Dickson County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Dyer County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Fayette County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Fentress County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Gibson County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Giles County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Grainger County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Grundy County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Hamblen County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Hamilton County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Hancock County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Hardeman County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Hardin County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Hawkins County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Haywood County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Henderson County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Henry County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Hickman County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Houston County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Humphreys County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Johnson County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Knox County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Lake County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Lauderdale County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Lawrence County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Lewis County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Loudon County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Mc Minn County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Mc Nairy County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Macon County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Marshall County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Maury County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Meigs County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Moore County", + "fips_class": "H6" + }, + { + "fips_code": "129", + "name": "Morgan County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Obion County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Overton County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Perry County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Pickett County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Polk County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Putnam County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Rhea County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Roane County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Robertson County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Rutherford County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Scott County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Sequatchie County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Sevier County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Shelby County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Smith County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Stewart County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Sullivan County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Sumner County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Tipton County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Trousdale County", + "fips_class": "H6" + }, + { + "fips_code": "171", + "name": "Unicoi County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Union County", + "fips_class": "H1" + }, + { + "fips_code": "175", + "name": "Van Buren County", + "fips_class": "H1" + }, + { + "fips_code": "177", + "name": "Warren County", + "fips_class": "H1" + }, + { + "fips_code": "179", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "181", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "183", + "name": "Weakley County", + "fips_class": "H1" + }, + { + "fips_code": "185", + "name": "White County", + "fips_class": "H1" + }, + { + "fips_code": "187", + "name": "Williamson County", + "fips_class": "H1" + }, + { + "fips_code": "189", + "name": "Wilson County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/tx.json b/lib/assets/counties_fips_data/tx.json new file mode 100755 index 00000000..631d5df9 --- /dev/null +++ b/lib/assets/counties_fips_data/tx.json @@ -0,0 +1,1272 @@ +[ + { + "fips_code": "001", + "name": "Anderson County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Andrews County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Angelina County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Aransas County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Archer County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Armstrong County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Atascosa County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Austin County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Bailey County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Bandera County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Bastrop County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Baylor County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Bee County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Bell County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Bexar County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Blanco County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Borden County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Bosque County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Bowie County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Brazoria County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Brazos County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Brewster County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Briscoe County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Brooks County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Brown County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Burleson County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Burnet County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Caldwell County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Calhoun County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Callahan County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Cameron County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Camp County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Carson County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Cass County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Castro County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Chambers County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Cherokee County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Childress County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Cochran County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Coke County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Coleman County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Collin County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Collingsworth County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Colorado County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Comal County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Comanche County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Concho County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Cooke County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Coryell County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Cottle County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Crane County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Crockett County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Crosby County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Culberson County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Dallam County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Dallas County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Dawson County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Deaf Smith County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Delta County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Denton County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "De Witt County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Dickens County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Dimmit County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Donley County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Duval County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Eastland County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Ector County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Edwards County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Ellis County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "El Paso County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Erath County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Falls County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Fannin County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Fayette County", + "fips_class": "H1" + }, + { + "fips_code": "151", + "name": "Fisher County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Floyd County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Foard County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Fort Bend County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Freestone County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Frio County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Gaines County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Galveston County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Garza County", + "fips_class": "H1" + }, + { + "fips_code": "171", + "name": "Gillespie County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Glasscock County", + "fips_class": "H1" + }, + { + "fips_code": "175", + "name": "Goliad County", + "fips_class": "H1" + }, + { + "fips_code": "177", + "name": "Gonzales County", + "fips_class": "H1" + }, + { + "fips_code": "179", + "name": "Gray County", + "fips_class": "H1" + }, + { + "fips_code": "181", + "name": "Grayson County", + "fips_class": "H1" + }, + { + "fips_code": "183", + "name": "Gregg County", + "fips_class": "H1" + }, + { + "fips_code": "185", + "name": "Grimes County", + "fips_class": "H1" + }, + { + "fips_code": "187", + "name": "Guadalupe County", + "fips_class": "H1" + }, + { + "fips_code": "189", + "name": "Hale County", + "fips_class": "H1" + }, + { + "fips_code": "191", + "name": "Hall County", + "fips_class": "H1" + }, + { + "fips_code": "193", + "name": "Hamilton County", + "fips_class": "H1" + }, + { + "fips_code": "195", + "name": "Hansford County", + "fips_class": "H1" + }, + { + "fips_code": "197", + "name": "Hardeman County", + "fips_class": "H1" + }, + { + "fips_code": "199", + "name": "Hardin County", + "fips_class": "H1" + }, + { + "fips_code": "201", + "name": "Harris County", + "fips_class": "H1" + }, + { + "fips_code": "203", + "name": "Harrison County", + "fips_class": "H1" + }, + { + "fips_code": "205", + "name": "Hartley County", + "fips_class": "H1" + }, + { + "fips_code": "207", + "name": "Haskell County", + "fips_class": "H1" + }, + { + "fips_code": "209", + "name": "Hays County", + "fips_class": "H1" + }, + { + "fips_code": "211", + "name": "Hemphill County", + "fips_class": "H1" + }, + { + "fips_code": "213", + "name": "Henderson County", + "fips_class": "H1" + }, + { + "fips_code": "215", + "name": "Hidalgo County", + "fips_class": "H1" + }, + { + "fips_code": "217", + "name": "Hill County", + "fips_class": "H1" + }, + { + "fips_code": "219", + "name": "Hockley County", + "fips_class": "H1" + }, + { + "fips_code": "221", + "name": "Hood County", + "fips_class": "H1" + }, + { + "fips_code": "223", + "name": "Hopkins County", + "fips_class": "H1" + }, + { + "fips_code": "225", + "name": "Houston County", + "fips_class": "H1" + }, + { + "fips_code": "227", + "name": "Howard County", + "fips_class": "H1" + }, + { + "fips_code": "229", + "name": "Hudspeth County", + "fips_class": "H1" + }, + { + "fips_code": "231", + "name": "Hunt County", + "fips_class": "H1" + }, + { + "fips_code": "233", + "name": "Hutchinson County", + "fips_class": "H1" + }, + { + "fips_code": "235", + "name": "Irion County", + "fips_class": "H1" + }, + { + "fips_code": "237", + "name": "Jack County", + "fips_class": "H1" + }, + { + "fips_code": "239", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "241", + "name": "Jasper County", + "fips_class": "H1" + }, + { + "fips_code": "243", + "name": "Jeff Davis County", + "fips_class": "H1" + }, + { + "fips_code": "245", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "247", + "name": "Jim Hogg County", + "fips_class": "H1" + }, + { + "fips_code": "249", + "name": "Jim Wells County", + "fips_class": "H1" + }, + { + "fips_code": "251", + "name": "Johnson County", + "fips_class": "H1" + }, + { + "fips_code": "253", + "name": "Jones County", + "fips_class": "H1" + }, + { + "fips_code": "255", + "name": "Karnes County", + "fips_class": "H1" + }, + { + "fips_code": "257", + "name": "Kaufman County", + "fips_class": "H1" + }, + { + "fips_code": "259", + "name": "Kendall County", + "fips_class": "H1" + }, + { + "fips_code": "261", + "name": "Kenedy County", + "fips_class": "H1" + }, + { + "fips_code": "263", + "name": "Kent County", + "fips_class": "H1" + }, + { + "fips_code": "265", + "name": "Kerr County", + "fips_class": "H1" + }, + { + "fips_code": "267", + "name": "Kimble County", + "fips_class": "H1" + }, + { + "fips_code": "269", + "name": "King County", + "fips_class": "H1" + }, + { + "fips_code": "271", + "name": "Kinney County", + "fips_class": "H1" + }, + { + "fips_code": "273", + "name": "Kleberg County", + "fips_class": "H1" + }, + { + "fips_code": "275", + "name": "Knox County", + "fips_class": "H1" + }, + { + "fips_code": "277", + "name": "Lamar County", + "fips_class": "H1" + }, + { + "fips_code": "279", + "name": "Lamb County", + "fips_class": "H1" + }, + { + "fips_code": "281", + "name": "Lampasas County", + "fips_class": "H1" + }, + { + "fips_code": "283", + "name": "La Salle County", + "fips_class": "H1" + }, + { + "fips_code": "285", + "name": "Lavaca County", + "fips_class": "H1" + }, + { + "fips_code": "287", + "name": "Lee County", + "fips_class": "H1" + }, + { + "fips_code": "289", + "name": "Leon County", + "fips_class": "H1" + }, + { + "fips_code": "291", + "name": "Liberty County", + "fips_class": "H1" + }, + { + "fips_code": "293", + "name": "Limestone County", + "fips_class": "H1" + }, + { + "fips_code": "295", + "name": "Lipscomb County", + "fips_class": "H1" + }, + { + "fips_code": "297", + "name": "Live Oak County", + "fips_class": "H1" + }, + { + "fips_code": "299", + "name": "Llano County", + "fips_class": "H1" + }, + { + "fips_code": "301", + "name": "Loving County", + "fips_class": "H1" + }, + { + "fips_code": "303", + "name": "Lubbock County", + "fips_class": "H1" + }, + { + "fips_code": "305", + "name": "Lynn County", + "fips_class": "H1" + }, + { + "fips_code": "307", + "name": "Mc Culloch County", + "fips_class": "H1" + }, + { + "fips_code": "309", + "name": "Mc Lennan County", + "fips_class": "H1" + }, + { + "fips_code": "311", + "name": "Mc Mullen County", + "fips_class": "H1" + }, + { + "fips_code": "313", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "315", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "317", + "name": "Martin County", + "fips_class": "H1" + }, + { + "fips_code": "319", + "name": "Mason County", + "fips_class": "H1" + }, + { + "fips_code": "321", + "name": "Matagorda County", + "fips_class": "H1" + }, + { + "fips_code": "323", + "name": "Maverick County", + "fips_class": "H1" + }, + { + "fips_code": "325", + "name": "Medina County", + "fips_class": "H1" + }, + { + "fips_code": "327", + "name": "Menard County", + "fips_class": "H1" + }, + { + "fips_code": "329", + "name": "Midland County", + "fips_class": "H1" + }, + { + "fips_code": "331", + "name": "Milam County", + "fips_class": "H1" + }, + { + "fips_code": "333", + "name": "Mills County", + "fips_class": "H1" + }, + { + "fips_code": "335", + "name": "Mitchell County", + "fips_class": "H1" + }, + { + "fips_code": "337", + "name": "Montague County", + "fips_class": "H1" + }, + { + "fips_code": "339", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "341", + "name": "Moore County", + "fips_class": "H1" + }, + { + "fips_code": "343", + "name": "Morris County", + "fips_class": "H1" + }, + { + "fips_code": "345", + "name": "Motley County", + "fips_class": "H1" + }, + { + "fips_code": "347", + "name": "Nacogdoches County", + "fips_class": "H1" + }, + { + "fips_code": "349", + "name": "Navarro County", + "fips_class": "H1" + }, + { + "fips_code": "351", + "name": "Newton County", + "fips_class": "H1" + }, + { + "fips_code": "353", + "name": "Nolan County", + "fips_class": "H1" + }, + { + "fips_code": "355", + "name": "Nueces County", + "fips_class": "H1" + }, + { + "fips_code": "357", + "name": "Ochiltree County", + "fips_class": "H1" + }, + { + "fips_code": "359", + "name": "Oldham County", + "fips_class": "H1" + }, + { + "fips_code": "361", + "name": "Orange County", + "fips_class": "H1" + }, + { + "fips_code": "363", + "name": "Palo Pinto County", + "fips_class": "H1" + }, + { + "fips_code": "365", + "name": "Panola County", + "fips_class": "H1" + }, + { + "fips_code": "367", + "name": "Parker County", + "fips_class": "H1" + }, + { + "fips_code": "369", + "name": "Parmer County", + "fips_class": "H1" + }, + { + "fips_code": "371", + "name": "Pecos County", + "fips_class": "H1" + }, + { + "fips_code": "373", + "name": "Polk County", + "fips_class": "H1" + }, + { + "fips_code": "375", + "name": "Potter County", + "fips_class": "H1" + }, + { + "fips_code": "377", + "name": "Presidio County", + "fips_class": "H1" + }, + { + "fips_code": "379", + "name": "Rains County", + "fips_class": "H1" + }, + { + "fips_code": "381", + "name": "Randall County", + "fips_class": "H1" + }, + { + "fips_code": "383", + "name": "Reagan County", + "fips_class": "H1" + }, + { + "fips_code": "385", + "name": "Real County", + "fips_class": "H1" + }, + { + "fips_code": "387", + "name": "Red River County", + "fips_class": "H1" + }, + { + "fips_code": "389", + "name": "Reeves County", + "fips_class": "H1" + }, + { + "fips_code": "391", + "name": "Refugio County", + "fips_class": "H1" + }, + { + "fips_code": "393", + "name": "Roberts County", + "fips_class": "H1" + }, + { + "fips_code": "395", + "name": "Robertson County", + "fips_class": "H1" + }, + { + "fips_code": "397", + "name": "Rockwall County", + "fips_class": "H1" + }, + { + "fips_code": "399", + "name": "Runnels County", + "fips_class": "H1" + }, + { + "fips_code": "401", + "name": "Rusk County", + "fips_class": "H1" + }, + { + "fips_code": "403", + "name": "Sabine County", + "fips_class": "H1" + }, + { + "fips_code": "405", + "name": "San Augustine County", + "fips_class": "H1" + }, + { + "fips_code": "407", + "name": "San Jacinto County", + "fips_class": "H1" + }, + { + "fips_code": "409", + "name": "San Patricio County", + "fips_class": "H1" + }, + { + "fips_code": "411", + "name": "San Saba County", + "fips_class": "H1" + }, + { + "fips_code": "413", + "name": "Schleicher County", + "fips_class": "H1" + }, + { + "fips_code": "415", + "name": "Scurry County", + "fips_class": "H1" + }, + { + "fips_code": "417", + "name": "Shackelford County", + "fips_class": "H1" + }, + { + "fips_code": "419", + "name": "Shelby County", + "fips_class": "H1" + }, + { + "fips_code": "421", + "name": "Sherman County", + "fips_class": "H1" + }, + { + "fips_code": "423", + "name": "Smith County", + "fips_class": "H1" + }, + { + "fips_code": "425", + "name": "Somervell County", + "fips_class": "H1" + }, + { + "fips_code": "427", + "name": "Starr County", + "fips_class": "H1" + }, + { + "fips_code": "429", + "name": "Stephens County", + "fips_class": "H1" + }, + { + "fips_code": "431", + "name": "Sterling County", + "fips_class": "H1" + }, + { + "fips_code": "433", + "name": "Stonewall County", + "fips_class": "H1" + }, + { + "fips_code": "435", + "name": "Sutton County", + "fips_class": "H1" + }, + { + "fips_code": "437", + "name": "Swisher County", + "fips_class": "H1" + }, + { + "fips_code": "439", + "name": "Tarrant County", + "fips_class": "H1" + }, + { + "fips_code": "441", + "name": "Taylor County", + "fips_class": "H1" + }, + { + "fips_code": "443", + "name": "Terrell County", + "fips_class": "H1" + }, + { + "fips_code": "445", + "name": "Terry County", + "fips_class": "H1" + }, + { + "fips_code": "447", + "name": "Throckmorton County", + "fips_class": "H1" + }, + { + "fips_code": "449", + "name": "Titus County", + "fips_class": "H1" + }, + { + "fips_code": "451", + "name": "Tom Green County", + "fips_class": "H1" + }, + { + "fips_code": "453", + "name": "Travis County", + "fips_class": "H1" + }, + { + "fips_code": "455", + "name": "Trinity County", + "fips_class": "H1" + }, + { + "fips_code": "457", + "name": "Tyler County", + "fips_class": "H1" + }, + { + "fips_code": "459", + "name": "Upshur County", + "fips_class": "H1" + }, + { + "fips_code": "461", + "name": "Upton County", + "fips_class": "H1" + }, + { + "fips_code": "463", + "name": "Uvalde County", + "fips_class": "H1" + }, + { + "fips_code": "465", + "name": "Val Verde County", + "fips_class": "H1" + }, + { + "fips_code": "467", + "name": "Van Zandt County", + "fips_class": "H1" + }, + { + "fips_code": "469", + "name": "Victoria County", + "fips_class": "H1" + }, + { + "fips_code": "471", + "name": "Walker County", + "fips_class": "H1" + }, + { + "fips_code": "473", + "name": "Waller County", + "fips_class": "H1" + }, + { + "fips_code": "475", + "name": "Ward County", + "fips_class": "H1" + }, + { + "fips_code": "477", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "479", + "name": "Webb County", + "fips_class": "H1" + }, + { + "fips_code": "481", + "name": "Wharton County", + "fips_class": "H1" + }, + { + "fips_code": "483", + "name": "Wheeler County", + "fips_class": "H1" + }, + { + "fips_code": "485", + "name": "Wichita County", + "fips_class": "H1" + }, + { + "fips_code": "487", + "name": "Wilbarger County", + "fips_class": "H1" + }, + { + "fips_code": "489", + "name": "Willacy County", + "fips_class": "H1" + }, + { + "fips_code": "491", + "name": "Williamson County", + "fips_class": "H1" + }, + { + "fips_code": "493", + "name": "Wilson County", + "fips_class": "H1" + }, + { + "fips_code": "495", + "name": "Winkler County", + "fips_class": "H1" + }, + { + "fips_code": "497", + "name": "Wise County", + "fips_class": "H1" + }, + { + "fips_code": "499", + "name": "Wood County", + "fips_class": "H1" + }, + { + "fips_code": "501", + "name": "Yoakum County", + "fips_class": "H1" + }, + { + "fips_code": "503", + "name": "Young County", + "fips_class": "H1" + }, + { + "fips_code": "505", + "name": "Zapata County", + "fips_class": "H1" + }, + { + "fips_code": "507", + "name": "Zavala County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/ut.json b/lib/assets/counties_fips_data/ut.json new file mode 100755 index 00000000..2d10a3be --- /dev/null +++ b/lib/assets/counties_fips_data/ut.json @@ -0,0 +1,147 @@ +[ + { + "fips_code": "001", + "name": "Beaver County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Box Elder County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Cache County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Carbon County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Daggett County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Davis County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Duchesne County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Emery County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Garfield County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Grand County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Iron County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Juab County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Kane County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Millard County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Morgan County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Piute County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Rich County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Salt Lake County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "San Juan County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Sanpete County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Sevier County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Summit County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Tooele County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Uintah County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Utah County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Wasatch County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Weber County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/va.json b/lib/assets/counties_fips_data/va.json new file mode 100755 index 00000000..a4d4e15d --- /dev/null +++ b/lib/assets/counties_fips_data/va.json @@ -0,0 +1,667 @@ +[ + { + "fips_code": "001", + "name": "Accomack County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Albemarle County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Alleghany County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Amelia County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Amherst County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Appomattox County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Arlington County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Augusta County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Bath County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Bedford County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Bland County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Botetourt County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Brunswick County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Buchanan County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Buckingham County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Campbell County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Caroline County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Carroll County", + "fips_class": "H1" + }, + { + "fips_code": "036", + "name": "Charles City County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Charlotte County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Chesterfield County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Clarke County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Craig County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Culpeper County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Cumberland County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Dickenson County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Dinwiddie County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Essex County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Fairfax County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Fauquier County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Floyd County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Fluvanna County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Frederick County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Giles County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Gloucester County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Goochland County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Grayson County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Greene County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Greensville County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Halifax County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Hanover County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Henrico County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Henry County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Highland County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Isle Of Wight County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "James City County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "King And Queen County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "King George County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "King William County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Lancaster County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Lee County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Loudoun County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Louisa County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Lunenburg County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Madison County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Mathews County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Mecklenburg County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Middlesex County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Montgomery County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Nelson County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "New Kent County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Northampton County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Northumberland County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Nottoway County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Orange County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Page County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Patrick County", + "fips_class": "H1" + }, + { + "fips_code": "143", + "name": "Pittsylvania County", + "fips_class": "H1" + }, + { + "fips_code": "145", + "name": "Powhatan County", + "fips_class": "H1" + }, + { + "fips_code": "147", + "name": "Prince Edward County", + "fips_class": "H1" + }, + { + "fips_code": "149", + "name": "Prince George County", + "fips_class": "H1" + }, + { + "fips_code": "153", + "name": "Prince William County", + "fips_class": "H1" + }, + { + "fips_code": "155", + "name": "Pulaski County", + "fips_class": "H1" + }, + { + "fips_code": "157", + "name": "Rappahannock County", + "fips_class": "H1" + }, + { + "fips_code": "159", + "name": "Richmond County", + "fips_class": "H1" + }, + { + "fips_code": "161", + "name": "Roanoke County", + "fips_class": "H1" + }, + { + "fips_code": "163", + "name": "Rockbridge County", + "fips_class": "H1" + }, + { + "fips_code": "165", + "name": "Rockingham County", + "fips_class": "H1" + }, + { + "fips_code": "167", + "name": "Russell County", + "fips_class": "H1" + }, + { + "fips_code": "169", + "name": "Scott County", + "fips_class": "H1" + }, + { + "fips_code": "171", + "name": "Shenandoah County", + "fips_class": "H1" + }, + { + "fips_code": "173", + "name": "Smyth County", + "fips_class": "H1" + }, + { + "fips_code": "175", + "name": "Southampton County", + "fips_class": "H1" + }, + { + "fips_code": "177", + "name": "Spotsylvania County", + "fips_class": "H1" + }, + { + "fips_code": "179", + "name": "Stafford County", + "fips_class": "H1" + }, + { + "fips_code": "181", + "name": "Surry County", + "fips_class": "H1" + }, + { + "fips_code": "183", + "name": "Sussex County", + "fips_class": "H1" + }, + { + "fips_code": "185", + "name": "Tazewell County", + "fips_class": "H1" + }, + { + "fips_code": "187", + "name": "Warren County", + "fips_class": "H1" + }, + { + "fips_code": "191", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "193", + "name": "Westmoreland County", + "fips_class": "H1" + }, + { + "fips_code": "195", + "name": "Wise County", + "fips_class": "H1" + }, + { + "fips_code": "197", + "name": "Wythe County", + "fips_class": "H1" + }, + { + "fips_code": "199", + "name": "York County", + "fips_class": "H1" + }, + { + "fips_code": "510", + "name": "Alexandria City", + "fips_class": "C7" + }, + { + "fips_code": "520", + "name": "Bristol City", + "fips_class": "C7" + }, + { + "fips_code": "530", + "name": "Buena Vista City", + "fips_class": "C7" + }, + { + "fips_code": "540", + "name": "Charlottesville City", + "fips_class": "C7" + }, + { + "fips_code": "550", + "name": "Chesapeake City", + "fips_class": "C7" + }, + { + "fips_code": "570", + "name": "Colonial Heights City", + "fips_class": "C7" + }, + { + "fips_code": "580", + "name": "Covington City", + "fips_class": "C7" + }, + { + "fips_code": "590", + "name": "Danville City", + "fips_class": "C7" + }, + { + "fips_code": "595", + "name": "Emporia City", + "fips_class": "C7" + }, + { + "fips_code": "600", + "name": "Fairfax City", + "fips_class": "C7" + }, + { + "fips_code": "610", + "name": "Falls Church City", + "fips_class": "C7" + }, + { + "fips_code": "620", + "name": "Franklin City", + "fips_class": "C7" + }, + { + "fips_code": "630", + "name": "Fredericksburg City", + "fips_class": "C7" + }, + { + "fips_code": "640", + "name": "Galax City", + "fips_class": "C7" + }, + { + "fips_code": "650", + "name": "Hampton City", + "fips_class": "C7" + }, + { + "fips_code": "660", + "name": "Harrisonburg City", + "fips_class": "C7" + }, + { + "fips_code": "670", + "name": "Hopewell City", + "fips_class": "C7" + }, + { + "fips_code": "678", + "name": "Lexington City", + "fips_class": "C7" + }, + { + "fips_code": "680", + "name": "Lynchburg City", + "fips_class": "C7" + }, + { + "fips_code": "683", + "name": "Manassas City", + "fips_class": "C7" + }, + { + "fips_code": "685", + "name": "Manassas Park City", + "fips_class": "C7" + }, + { + "fips_code": "690", + "name": "Martinsville City", + "fips_class": "C7" + }, + { + "fips_code": "700", + "name": "Newport News City", + "fips_class": "C7" + }, + { + "fips_code": "710", + "name": "Norfolk City", + "fips_class": "C7" + }, + { + "fips_code": "720", + "name": "Norton City", + "fips_class": "C7" + }, + { + "fips_code": "730", + "name": "Petersburg City", + "fips_class": "C7" + }, + { + "fips_code": "735", + "name": "Poquoson City", + "fips_class": "C7" + }, + { + "fips_code": "740", + "name": "Portsmouth City", + "fips_class": "C7" + }, + { + "fips_code": "750", + "name": "Radford City", + "fips_class": "C7" + }, + { + "fips_code": "760", + "name": "Richmond City", + "fips_class": "C7" + }, + { + "fips_code": "770", + "name": "Roanoke City", + "fips_class": "C7" + }, + { + "fips_code": "775", + "name": "Salem City", + "fips_class": "C7" + }, + { + "fips_code": "790", + "name": "Staunton City", + "fips_class": "C7" + }, + { + "fips_code": "800", + "name": "Suffolk City", + "fips_class": "C7" + }, + { + "fips_code": "810", + "name": "Virginia Beach City", + "fips_class": "C7" + }, + { + "fips_code": "820", + "name": "Waynesboro City", + "fips_class": "C7" + }, + { + "fips_code": "830", + "name": "Williamsburg City", + "fips_class": "C7" + }, + { + "fips_code": "840", + "name": "Winchester City", + "fips_class": "C7" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/vi.json b/lib/assets/counties_fips_data/vi.json new file mode 100755 index 00000000..b91775bc --- /dev/null +++ b/lib/assets/counties_fips_data/vi.json @@ -0,0 +1,17 @@ +[ + { + "fips_code": "010", + "name": "St. Croix Island", + "fips_class": "H4" + }, + { + "fips_code": "020", + "name": "St. John Island", + "fips_class": "H4" + }, + { + "fips_code": "030", + "name": "St. Thomas Island", + "fips_class": "H4" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/vt.json b/lib/assets/counties_fips_data/vt.json new file mode 100755 index 00000000..75dc7615 --- /dev/null +++ b/lib/assets/counties_fips_data/vt.json @@ -0,0 +1,72 @@ +[ + { + "fips_code": "001", + "name": "Addison County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Bennington County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Caledonia County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Chittenden County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Essex County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Grand Isle County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Lamoille County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Orange County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Orleans County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Rutland County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Windham County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Windsor County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/wa.json b/lib/assets/counties_fips_data/wa.json new file mode 100755 index 00000000..d0011737 --- /dev/null +++ b/lib/assets/counties_fips_data/wa.json @@ -0,0 +1,197 @@ +[ + { + "fips_code": "001", + "name": "Adams County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Asotin County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Benton County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Chelan County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Clallam County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Clark County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Columbia County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Cowlitz County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Douglas County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Ferry County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Franklin County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Garfield County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Grays Harbor County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Island County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "King County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Kitsap County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Kittitas County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Klickitat County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Lewis County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Mason County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Okanogan County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Pacific County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Pend Oreille County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Pierce County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "San Juan County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Skagit County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Skamania County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Snohomish County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Spokane County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Stevens County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Thurston County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Wahkiakum County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Walla Walla County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Whatcom County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Whitman County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Yakima County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/wi.json b/lib/assets/counties_fips_data/wi.json new file mode 100755 index 00000000..1f645967 --- /dev/null +++ b/lib/assets/counties_fips_data/wi.json @@ -0,0 +1,362 @@ +[ + { + "fips_code": "001", + "name": "Adams County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Ashland County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Barron County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Bayfield County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Brown County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Buffalo County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Burnett County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Calumet County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Chippewa County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Clark County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Columbia County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Crawford County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Dane County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Dodge County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Door County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Douglas County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Dunn County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Eau Claire County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Florence County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Fond Du Lac County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Forest County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Green County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Green Lake County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Iowa County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Iron County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Juneau County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Kenosha County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Kewaunee County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "La Crosse County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Lafayette County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Langlade County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Manitowoc County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Marathon County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Marinette County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Marquette County", + "fips_class": "H1" + }, + { + "fips_code": "078", + "name": "Menominee County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Milwaukee County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Oconto County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Oneida County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Outagamie County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Ozaukee County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Pepin County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Pierce County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Polk County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Portage County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Price County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Racine County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Richland County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Rock County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Rusk County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "St. Croix County", + "fips_class": "H1" + }, + { + "fips_code": "111", + "name": "Sauk County", + "fips_class": "H1" + }, + { + "fips_code": "113", + "name": "Sawyer County", + "fips_class": "H1" + }, + { + "fips_code": "115", + "name": "Shawano County", + "fips_class": "H1" + }, + { + "fips_code": "117", + "name": "Sheboygan County", + "fips_class": "H1" + }, + { + "fips_code": "119", + "name": "Taylor County", + "fips_class": "H1" + }, + { + "fips_code": "121", + "name": "Trempealeau County", + "fips_class": "H1" + }, + { + "fips_code": "123", + "name": "Vernon County", + "fips_class": "H1" + }, + { + "fips_code": "125", + "name": "Vilas County", + "fips_class": "H1" + }, + { + "fips_code": "127", + "name": "Walworth County", + "fips_class": "H1" + }, + { + "fips_code": "129", + "name": "Washburn County", + "fips_class": "H1" + }, + { + "fips_code": "131", + "name": "Washington County", + "fips_class": "H1" + }, + { + "fips_code": "133", + "name": "Waukesha County", + "fips_class": "H1" + }, + { + "fips_code": "135", + "name": "Waupaca County", + "fips_class": "H1" + }, + { + "fips_code": "137", + "name": "Waushara County", + "fips_class": "H1" + }, + { + "fips_code": "139", + "name": "Winnebago County", + "fips_class": "H1" + }, + { + "fips_code": "141", + "name": "Wood County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/wv.json b/lib/assets/counties_fips_data/wv.json new file mode 100755 index 00000000..e3d813c5 --- /dev/null +++ b/lib/assets/counties_fips_data/wv.json @@ -0,0 +1,277 @@ +[ + { + "fips_code": "001", + "name": "Barbour County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Berkeley County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Boone County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Braxton County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Brooke County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Cabell County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Calhoun County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Clay County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Doddridge County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Fayette County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Gilmer County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Grant County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Greenbrier County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Hampshire County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Hancock County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Hardy County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Harrison County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Jackson County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Jefferson County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Kanawha County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Lewis County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Logan County", + "fips_class": "H1" + }, + { + "fips_code": "047", + "name": "Mc Dowell County", + "fips_class": "H1" + }, + { + "fips_code": "049", + "name": "Marion County", + "fips_class": "H1" + }, + { + "fips_code": "051", + "name": "Marshall County", + "fips_class": "H1" + }, + { + "fips_code": "053", + "name": "Mason County", + "fips_class": "H1" + }, + { + "fips_code": "055", + "name": "Mercer County", + "fips_class": "H1" + }, + { + "fips_code": "057", + "name": "Mineral County", + "fips_class": "H1" + }, + { + "fips_code": "059", + "name": "Mingo County", + "fips_class": "H1" + }, + { + "fips_code": "061", + "name": "Monongalia County", + "fips_class": "H1" + }, + { + "fips_code": "063", + "name": "Monroe County", + "fips_class": "H1" + }, + { + "fips_code": "065", + "name": "Morgan County", + "fips_class": "H1" + }, + { + "fips_code": "067", + "name": "Nicholas County", + "fips_class": "H1" + }, + { + "fips_code": "069", + "name": "Ohio County", + "fips_class": "H1" + }, + { + "fips_code": "071", + "name": "Pendleton County", + "fips_class": "H1" + }, + { + "fips_code": "073", + "name": "Pleasants County", + "fips_class": "H1" + }, + { + "fips_code": "075", + "name": "Pocahontas County", + "fips_class": "H1" + }, + { + "fips_code": "077", + "name": "Preston County", + "fips_class": "H1" + }, + { + "fips_code": "079", + "name": "Putnam County", + "fips_class": "H1" + }, + { + "fips_code": "081", + "name": "Raleigh County", + "fips_class": "H1" + }, + { + "fips_code": "083", + "name": "Randolph County", + "fips_class": "H1" + }, + { + "fips_code": "085", + "name": "Ritchie County", + "fips_class": "H1" + }, + { + "fips_code": "087", + "name": "Roane County", + "fips_class": "H1" + }, + { + "fips_code": "089", + "name": "Summers County", + "fips_class": "H1" + }, + { + "fips_code": "091", + "name": "Taylor County", + "fips_class": "H1" + }, + { + "fips_code": "093", + "name": "Tucker County", + "fips_class": "H1" + }, + { + "fips_code": "095", + "name": "Tyler County", + "fips_class": "H1" + }, + { + "fips_code": "097", + "name": "Upshur County", + "fips_class": "H1" + }, + { + "fips_code": "099", + "name": "Wayne County", + "fips_class": "H1" + }, + { + "fips_code": "101", + "name": "Webster County", + "fips_class": "H1" + }, + { + "fips_code": "103", + "name": "Wetzel County", + "fips_class": "H1" + }, + { + "fips_code": "105", + "name": "Wirt County", + "fips_class": "H1" + }, + { + "fips_code": "107", + "name": "Wood County", + "fips_class": "H1" + }, + { + "fips_code": "109", + "name": "Wyoming County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/assets/counties_fips_data/wy.json b/lib/assets/counties_fips_data/wy.json new file mode 100755 index 00000000..9c972d4b --- /dev/null +++ b/lib/assets/counties_fips_data/wy.json @@ -0,0 +1,117 @@ +[ + { + "fips_code": "001", + "name": "Albany County", + "fips_class": "H1" + }, + { + "fips_code": "003", + "name": "Big Horn County", + "fips_class": "H1" + }, + { + "fips_code": "005", + "name": "Campbell County", + "fips_class": "H1" + }, + { + "fips_code": "007", + "name": "Carbon County", + "fips_class": "H1" + }, + { + "fips_code": "009", + "name": "Converse County", + "fips_class": "H1" + }, + { + "fips_code": "011", + "name": "Crook County", + "fips_class": "H1" + }, + { + "fips_code": "013", + "name": "Fremont County", + "fips_class": "H1" + }, + { + "fips_code": "015", + "name": "Goshen County", + "fips_class": "H1" + }, + { + "fips_code": "017", + "name": "Hot Springs County", + "fips_class": "H1" + }, + { + "fips_code": "019", + "name": "Johnson County", + "fips_class": "H1" + }, + { + "fips_code": "021", + "name": "Laramie County", + "fips_class": "H1" + }, + { + "fips_code": "023", + "name": "Lincoln County", + "fips_class": "H1" + }, + { + "fips_code": "025", + "name": "Natrona County", + "fips_class": "H1" + }, + { + "fips_code": "027", + "name": "Niobrara County", + "fips_class": "H1" + }, + { + "fips_code": "029", + "name": "Park County", + "fips_class": "H1" + }, + { + "fips_code": "031", + "name": "Platte County", + "fips_class": "H1" + }, + { + "fips_code": "033", + "name": "Sheridan County", + "fips_class": "H1" + }, + { + "fips_code": "035", + "name": "Sublette County", + "fips_class": "H1" + }, + { + "fips_code": "037", + "name": "Sweetwater County", + "fips_class": "H1" + }, + { + "fips_code": "039", + "name": "Teton County", + "fips_class": "H1" + }, + { + "fips_code": "041", + "name": "Uinta County", + "fips_class": "H1" + }, + { + "fips_code": "043", + "name": "Washakie County", + "fips_class": "H1" + }, + { + "fips_code": "045", + "name": "Weston County", + "fips_class": "H1" + } +] \ No newline at end of file diff --git a/lib/task_helpers/national_shapefile_request.rb b/lib/task_helpers/national_shapefile_request.rb new file mode 100755 index 00000000..dc633f1b --- /dev/null +++ b/lib/task_helpers/national_shapefile_request.rb @@ -0,0 +1,32 @@ +# frozen_string_literal: true + +require_relative './topojson_task_helper' +class NationalShapefileRequest + # Directory containing publicly accessible topojson for each state. + TOPOJSON_DIR = 'app/assets/topojson/national/states' + + # Directory containing geojson file of all states in the US. + GEOJSON_DIR = 'tmp/geojson/national/states' + + # Directory containing the Shapefile of all states in the US. + SHPFILE_DIR = 'tmp/shp/national/states' + + attr_accessor :fetch_url, :zip_filename, :unzip_dir, :shp_filename, :topojson_filename, :geojson_filename + + def initialize + # See: https://www.census.gov/geographies/mapping-files/time-series/geo/carto-boundary-file.html + @fetch_url = 'https://www2.census.gov/geo/tiger/GENZ2018/shp/cb_2018_us_state_500k.zip' + @zip_filename = "#{NationalShapefileRequest::SHPFILE_DIR}/us-states.zip" + @unzip_dir = "#{NationalShapefileRequest::SHPFILE_DIR}/us-states" + @shp_filename = "#{@unzip_dir}/cb_2018_us_state_500k.shp" + @topojson_filename = "#{NationalShapefileRequest::TOPOJSON_DIR}/us-states.topo.json" + @geojson_filename = "#{NationalShapefileRequest::GEOJSON_DIR}/us-states.geo.json" + end + + def cmd(output_format) + output_file = TopojsonTaskHelper.output_file_for(self, output_format) + program = Rails.root.join TopojsonTaskHelper::MAPSHAPER + "#{program} -i #{Rails.root.join(@shp_filename)} -simplify 10% keep-shapes" \ + " -o format=#{output_format} #{output_file}" + end +end diff --git a/lib/task_helpers/state_consistency_checker.rb b/lib/task_helpers/state_consistency_checker.rb new file mode 100755 index 00000000..d0d31f26 --- /dev/null +++ b/lib/task_helpers/state_consistency_checker.rb @@ -0,0 +1,44 @@ +# frozen_string_literal: true + +class StateConsistencyChecker + def self.geojson_for(state) + # NOTE: make sure to run `bundle exec rails states:counties_topojson` first. + state_request = StateShapefileRequest.new state + geojson = nil + File.open(Rails.root.join(state_request.geojson_filename), 'r:UTF-8') do |f| + geojson = JSON.parse( + f.read + ) + end + geojson + end + + def self.county_by_fips_code(state) + # NOTE: make sure to run `bundle exec rails states:fips` first. + fips_filename = "#{StateFipsTaskHelper::FIPS_DIR}/#{state[:symbol].downcase}.json" + fips_data = {} + File.open(Rails.root.join(fips_filename), 'r:UTF-8') do |f| + fips_data = JSON.parse( + f.read, + object_class: County + ) + end + fips_data.index_by(&:std_fips_code) + end + + def self.check(state, geojson, county_by_fips_code) + log_check state, geojson, county_by_fips_code + geojson['features'].each do |feature_entry| + county_fips_code = feature_entry['properties']['COUNTYFP'] + err = "County code #{county_fips_code} not found in #{state[:symbol]} FIPS dataset." + raise ArgumentError, err unless county_by_fips_code.has_key? county_fips_code + end + end + + def self.log_check(state, geojson, county_by_fips_code) + Rails.logger.info "#{state[:symbol]} has #{geojson['features'].length} geojson entries"\ + " and #{county_by_fips_code.length} FIPS entries." + raise ArgumentError, 'Geojson and FIPS dataset counties mismatch' \ + if geojson['features'].length != county_by_fips_code.length + end +end diff --git a/lib/task_helpers/state_fips_task_helper.rb b/lib/task_helpers/state_fips_task_helper.rb new file mode 100755 index 00000000..e51f63b3 --- /dev/null +++ b/lib/task_helpers/state_fips_task_helper.rb @@ -0,0 +1,89 @@ +# frozen_string_literal: true + +require 'csv' + +class StateFipsTaskHelper + FIPS_DIR = 'lib/assets/counties_fips_data' + def self.fips_csv_to_hash(csv_data) + all_fields = %i[ + state_symbol state_fips_code + fips_code name fips_class + ] + extract_fields = %i[name fips_code fips_class] + filter = ->(k, _) { extract_fields.include?(k) } + mapper = lambda { |row| + filtered = row.to_hash.select(&filter) + filtered[:name] = filtered[:name].titleize + filtered + } + table = CSV.new( + csv_data, + headers: all_fields + ).to_a + table.map(&mapper) + end + + # Fetch the list of counties per state and their respective fips data from census.gov website. + def self.fetch_fips_data_for_state(state) + # See: https://www.census.gov/library/reference/code-lists/ansi.html#par_statelist + state_symbol = state[:symbol].downcase + state_url = 'https://www2.census.gov/geo/docs/reference/codes/files' \ + "/st#{state[:fips_code]}_#{state_symbol}_cou.txt" + + Rails.logger.info "Fetched fips data for #{state_symbol} via #{state_url}" + File.open(state_url) + IO.popen(state_url) + URI.parse(state_url).open + # possible bug + fips_csv_to_hash URI.parse(state_url).read + end + + def self.update(state_fips_array, to_replace, replacement) + state_fips_array.map do |county| + county = replacement if county[:fips_code] == to_replace[:fips_code] + county + end + end + + def self.alaska_update(ak_counties) + # See: https://en.wikipedia.org/wiki/Kusilvak_Census_Area,_Alaska + to_replace = { + fips_code: '270', + name: 'Wade Hampton Census Area', + fips_class: 'H5' + } + replacement = { + fips_code: '158', + name: 'Kusilvak Census Area', + fips_class: 'H5' + } + update(ak_counties, to_replace, replacement) + end + + def self.south_dakota_update(sd_counties) + # See: https://en.wikipedia.org/wiki/Oglala_Lakota_County,_South_Dakota + to_replace = { + fips_code: '113', + name: 'Shannon County', + fips_class: 'H1' + } + replacement = { + fips_code: '102', + name: 'Oglala Lakota County', + fips_class: 'H1' + } + update(sd_counties, to_replace, replacement) + end + + def self.virginia_update(va_counties) + # Bedford City, VA is no longer an independent city. + # https://en.wikipedia.org/wiki/Bedford,_Virginia + # https://en.wikipedia.org/wiki/List_of_cities_and_counties_in_Virginia + bedford = { + fips_code: '515', + name: 'Bedford City', + fips_class: 'C7' + } + va_counties.delete_if { |county| county[:fips_code] == bedford[:fips_code] } + end +end diff --git a/lib/task_helpers/state_shapefile_request.rb b/lib/task_helpers/state_shapefile_request.rb new file mode 100755 index 00000000..023976f0 --- /dev/null +++ b/lib/task_helpers/state_shapefile_request.rb @@ -0,0 +1,37 @@ +# frozen_string_literal: true + +require_relative './topojson_task_helper' + +class StateShapefileRequest + # Directory containing publicly accessible topojson for each state. + TOPOJSON_DIR = 'app/assets/topojson/states' + + # Directory containing geojson files for each state that are not available on the web. + # Required for consistency checks. + GEOJSON_DIR = 'tmp/geojson/states' + + # Directory containing the shapefiles for each state. + SHPFILE_DIR = 'tmp/shp/states' + + attr_accessor :fetch_url, :zip_filename, :unzip_dir, :shp_filename, :topojson_filename, :geojson_filename + + def initialize(state) + state_symbol = state[:symbol].downcase + # Use cousub shapefiles then dissolve the subdivisions into their respective counties. + # See: https://www2.census.gov/geo/tiger/GENZ2019/shp/ + @fetch_url = 'https://www2.census.gov/geo/tiger/GENZ2019/shp/' \ + "cb_2019_#{state[:fips_code]}_cousub_500k.zip" + @zip_filename = "#{StateShapefileRequest::SHPFILE_DIR}/#{state_symbol}.zip" + @unzip_dir = "#{StateShapefileRequest::SHPFILE_DIR}/#{state_symbol}" + @shp_filename = "#{@unzip_dir}/cb_2019_#{state[:fips_code]}_cousub_500k.shp" + @topojson_filename = "#{StateShapefileRequest::TOPOJSON_DIR}/#{state_symbol}.topo.json" + @geojson_filename = "#{StateShapefileRequest::GEOJSON_DIR}/#{state_symbol}.geo.json" + end + + def cmd(output_format) + output_file = TopojsonTaskHelper.output_file_for(self, output_format) + program = Rails.root.join TopojsonTaskHelper::MAPSHAPER + "#{program} -i #{Rails.root.join(@shp_filename)} -simplify 10% keep-shapes -dissolve COUNTYFP" \ + " -o format=#{output_format} #{output_file}" + end +end diff --git a/lib/task_helpers/task_helper.rb b/lib/task_helpers/task_helper.rb new file mode 100755 index 00000000..ebce4a6c --- /dev/null +++ b/lib/task_helpers/task_helper.rb @@ -0,0 +1,35 @@ +# frozen_string_literal: true + +require 'json' +require 'zip' + +module TaskHelper + # Delete and recreate the given Rails.root relative dir_name. + def self.reinit_dir(dir_name) + Rails.logger.info "Deleting and recreating folder: #{dir_name}" + FileUtils.rm_rf(Rails.root.join(dir_name)) && + FileUtils.mkdir_p(Rails.root.join(dir_name)) + end + + # Extract the given Rails.root relative zip_file into the Rails.root relative dest_folder. + def self.extract_zip(zip_file, dest_folder) + Zip::File.open(Rails.root.join(zip_file)) do |f| + f.each do |zipped_file| + f.extract( + zipped_file, + Rails.root.join(dest_folder, zipped_file.name) + ) + end + end + end + + # Writes content to the given Rails.root relative filename. + def self.write_json(filename, content) + File.open(Rails.root.join(filename), 'w:UTF-8') do |f| + f.write( + JSON.pretty_generate(content) + .force_encoding('UTF-8') + ) + end + end +end diff --git a/lib/task_helpers/topojson_task_helper.rb b/lib/task_helpers/topojson_task_helper.rb new file mode 100755 index 00000000..9847de2e --- /dev/null +++ b/lib/task_helpers/topojson_task_helper.rb @@ -0,0 +1,64 @@ +# frozen_string_literal: true + +require 'csv' +require 'fileutils' +require 'open-uri' +require 'zip' + +require_relative 'task_helper' + +module TopojsonTaskHelper + MAPSHAPER = 'node_modules/.bin/mapshaper' + + def self.output_file_for(request, output_format) + Rails.root.join({ + geojson: request.geojson_filename, + topojson: request.topojson_filename + }[output_format.to_sym]) + end + + def self.log_cmd_status(cmd, exit_status) + { + true => -> { Rails.logger.info("ok: #{cmd}") }, + false => -> { Rails.logger.error("err: #{cmd}") && abort }, + nil => -> { Rails.logger.error('mapshaper not found - ran `yarn install`') && abort } + }[exit_status] + end + + def self.convert_from_shpfile(request, output_format='topojson') + raise ArgumentError, "invalid output format #{output_format}" unless + %w[geojson topojson].include? output_format + + # Make sure `yarn install` ran. + # https://github.com/mbloch/mapshaper + # `-simplify 40%` retains 40% of the information. + # `-dissolve COUNTYFP` merges the sub-counties polygon into a single county. + Rails.logger.info "Converting shp into #{output_format}" + command = request.cmd(output_format) + exit_status = system(command) + log_cmd_status(command, exit_status) + end + + def self.unzip_shpfiles(request) + Rails.logger.info "Unzipping shp file into #{request.unzip_dir}" + TaskHelper.reinit_dir request.unzip_dir + TaskHelper.extract_zip request.zip_filename, request.unzip_dir + end + + # Download shp file for a specific state then generate topojson. + def self.fetch_shapefile_for(request) + zip_file = Rails.root.join(request.zip_filename) + File.open(zip_file, 'wb') do |f| + Rails.logger.info "Fetching shp file from #{request.fetch_url} into #{zip_file}" + f.write( + URI.parse(request.fetch_url) + .read + ) + unzip_shpfiles request + + # Note that we only serve topojson since it is a more lightweight wire format. + convert_from_shpfile request, 'geojson' + convert_from_shpfile request, 'topojson' + end + end +end diff --git a/lib/tasks/cucumber.rake b/lib/tasks/cucumber.rake new file mode 100755 index 00000000..9c1838d3 --- /dev/null +++ b/lib/tasks/cucumber.rake @@ -0,0 +1,80 @@ +# frozen_string_literal: true + +# IMPORTANT: This file is generated by cucumber-rails - edit at your own peril. +# It is recommended to regenerate this file in the future when you upgrade to a +# newer version of cucumber-rails. Consider adding your own code to a new file +# instead of editing this one. Cucumber will automatically load all features/**/*.rb +# files. + +unless ARGV.any? { |a| a =~ /^gems/ } # Don't load anything when running the gems:* tasks + + vendored_cucumber_bin = Dir[Rails.root.join('vendor/{gems,plugins}/cucumber*/bin/cucumber')].first + $LOAD_PATH.unshift("#{File.dirname(vendored_cucumber_bin)}/../lib") unless vendored_cucumber_bin.nil? + + begin + require 'cucumber/rake/task' + + namespace :cucumber do + Cucumber::Rake::Task.new({ ok: 'test:prepare' }, 'Run features that should pass') do |t| + t.binary = vendored_cucumber_bin # If nil, the gem's binary is used. + t.fork = true # You may get faster startup if you set this to false + t.profile = 'default' + end + + Cucumber::Rake::Task.new({ wip: 'test:prepare' }, 'Run features that are being worked on') do |t| + t.binary = vendored_cucumber_bin + t.fork = true # You may get faster startup if you set this to false + t.profile = 'wip' + end + + Cucumber::Rake::Task.new( + { rerun: 'test:prepare' }, + 'Record failing features and run only them if any exist' + ) do |t| + t.binary = vendored_cucumber_bin + t.fork = true # You may get faster startup if you set this to false + t.profile = 'rerun' + end + + desc 'Run all features' + task all: %i[ok wip] + + task statsetup: :environment do + require 'rails/code_statistics' + ::STATS_DIRECTORIES << ['Cucumber features', 'features'] if File.exist?('features') + ::CodeStatistics::TEST_TYPES << 'Cucumber features' if File.exist?('features') + end + + task annotations_setup: :environment do + Rails.application.configure do + if config.respond_to?(:annotations) + config.annotations.directories << 'features' + config.annotations.register_extensions('feature') { |tag| /#\s*(#{tag}):?\s*(.*)$/ } + end + end + end + end + desc 'Alias for cucumber:ok' + task cucumber: 'cucumber:ok' + + task default: :cucumber + + task features: :cucumber do + warn "*** The 'features' task is deprecated. See rake -T cucumber ***" + end + + # In case we don't have the generic Rails test:prepare hook, append a no-op task that we can depend upon. + task 'test:prepare': :all_environments do + end + + task stats: 'cucumber:statsetup' + + task notes: 'cucumber:annotations_setup' + rescue LoadError + desc 'cucumber rake task not available (cucumber not installed)' + task cucumber: :environment do + abort 'Cucumber rake task is not available. Be sure to install cucumber as a gem or plugin' + end + end + +end diff --git a/lib/tasks/national.rake b/lib/tasks/national.rake new file mode 100755 index 00000000..b4b86ab9 --- /dev/null +++ b/lib/tasks/national.rake @@ -0,0 +1,16 @@ +# frozen_string_literal: true + +require_relative '../task_helpers/national_shapefile_request' + +Rails.logger = Logger.new($stdout) +Rails.logger.level = Logger::INFO +namespace :national do + desc 'Download Shapefile describing US States and convert to topojson.' + task states_topo: :environment do + TaskHelper.reinit_dir NationalShapefileRequest::SHPFILE_DIR + TaskHelper.reinit_dir NationalShapefileRequest::GEOJSON_DIR + TaskHelper.reinit_dir NationalShapefileRequest::TOPOJSON_DIR + request = NationalShapefileRequest.new + TopojsonTaskHelper.fetch_shapefile_for request + end +end diff --git a/lib/tasks/states.rake b/lib/tasks/states.rake new file mode 100755 index 00000000..8bf3a356 --- /dev/null +++ b/lib/tasks/states.rake @@ -0,0 +1,63 @@ +# frozen_string_literal: true + +require 'open-uri' +require 'nokogiri' +require 'json' + +require_relative '../task_helpers/task_helper' +require_relative '../task_helpers/topojson_task_helper' +require_relative '../task_helpers/state_fips_task_helper' +require_relative '../task_helpers/state_consistency_checker' +require_relative '../../lib/task_helpers/state_shapefile_request' +require_relative '../../db/seed_data' + +Rails.logger = Logger.new($stdout) +Rails.logger.level = Logger::INFO + +namespace :states do + desc 'Download shapefiles for each state and convert to topojson with boundaries for each county.' + task counties_topojson: :environment do + TaskHelper.reinit_dir StateShapefileRequest::SHPFILE_DIR + TaskHelper.reinit_dir StateShapefileRequest::TOPOJSON_DIR + TaskHelper.reinit_dir StateShapefileRequest::GEOJSON_DIR + SeedData.states.each do |state| + request = StateShapefileRequest.new(state) + TopojsonTaskHelper.fetch_shapefile_for request + end + end + + desc "Download FIPS data for each state's counties." + task fips: :environment do + # Download to lib directory since the contents should not be served via Sprockets. + TaskHelper.reinit_dir StateFipsTaskHelper::FIPS_DIR + updates = { + AK: StateFipsTaskHelper.method(:alaska_update), + SD: StateFipsTaskHelper.method(:south_dakota_update), + VA: StateFipsTaskHelper.method(:virginia_update) + } + SeedData.states.each do |state| + fips_data = StateFipsTaskHelper.fetch_fips_data_for_state( + state + ) + fips_data = updates[state[:symbol].to_sym].call(fips_data)\ + if updates.has_key?(state[:symbol].to_sym) + fips_data_filename = "#{StateFipsTaskHelper::FIPS_DIR}/#{state[:symbol].downcase}.json" + Rails.logger.info "Writing FIPS data for #{state[:name]} to "\ + " #{Rails.root.join(fips_data_filename)}" + TaskHelper.write_json( + fips_data_filename, + fips_data + ) + end + end + + desc 'Check the consistency of data in geojson and FIPS dataset' + task check_consistency: :environment do + # Consistency checks needed otherwise the UI will break for some states. + SeedData.states.each do |state| + county_by_fips_code = StateConsistencyChecker.county_by_fips_code state + geojson = StateConsistencyChecker.geojson_for state + StateConsistencyChecker.check state, geojson, county_by_fips_code + end + end +end diff --git a/package.json b/package.json new file mode 100755 index 00000000..ee000720 --- /dev/null +++ b/package.json @@ -0,0 +1,46 @@ +{ + "name": "actionmap", + "private": "true", + "description": "See README.md on project repository", + "version": "0.0.1", + "main": "babel.config.js", + "engines": { + "node": "12.x || 14.x || 16.x", + "yarn": "1.22.x" + }, + "dependencies": { + "@fortawesome/fontawesome-free": "^5.13.0", + "@rails/ujs": "^6.0.3-1", + "@rails/webpacker": "^5.1.1", + "bootstrap": "^4.5.0", + "bootswatch": "^4.5.0", + "d3": "^5.16.0", + "expose-loader": "^0.7.5", + "jquery": "^3.5.1", + "popper.js": "^1.16.1", + "sass": "^1.26.5", + "select2": "^4.0.13", + "timeago": "^1.6.7", + "topojson": "^3.0.2", + "turbolinks": "^5.2.0" + }, + "devDependencies": { + "eslint": "^6.8.0", + "eslint-config-airbnb-base": "^14.1.0", + "eslint-plugin-import": "^2.20.2", + "mapshaper": "^0.5.10", + "webpack-dev-server": "^3.11.0" + }, + "scripts": { + "lint": "./node_modules/.bin/eslint \"app/**/*.js\" \"config/**/*.js\"", + "lint_fix": "./node_modules/.bin/eslint --fix \"app/**/*.js\" \"config/**/*.js\"" + }, + "keywords": [ + "CS169", + "Software", + "Engineering", + "ESAAS" + ], + "author": "CS169 Staff", + "license": "ISC" +} diff --git a/postcss.config.js b/postcss.config.js new file mode 100755 index 00000000..9b79ca0c --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,12 @@ +module.exports = { + plugins: [ + require('postcss-import'), + require('postcss-flexbugs-fixes'), + require('postcss-preset-env')({ + autoprefixer: { + flexbox: 'no-2009', + }, + stage: 3, + }), + ], +}; diff --git a/public/404.html b/public/404.html new file mode 100755 index 00000000..2be3af26 --- /dev/null +++ b/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +